marginalia 0.2.1

Trivia-preserving parsing and formatting for logos + lalrpop
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
use crate::Span;

#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash)]
pub enum Side {
    Leading,
    Trailing,
}

#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash)]
pub struct TriviaSlot {
    pub span: Span,
    pub side: Side,
}

#[derive(Clone, Debug)]
pub enum Doc {
    Nil,
    Text(String),
    Line,
    SoftLine,
    HardLine,
    Indent(isize, Box<Doc>),
    Align(Box<Doc>),
    FlatAlt(Box<Doc>, Box<Doc>),
    Group(Box<Doc>),
    Concat(Vec<Doc>),
    Trivia(TriviaSlot),
}

#[must_use]
pub const fn nil() -> Doc {
    Doc::Nil
}

#[must_use]
pub fn text(s: impl Into<String>) -> Doc {
    Doc::Text(s.into())
}

#[must_use]
pub fn char(c: char) -> Doc {
    Doc::Text(c.to_string())
}

#[must_use]
pub const fn line() -> Doc {
    Doc::Line
}

#[must_use]
pub const fn softline() -> Doc {
    Doc::SoftLine
}

#[must_use]
pub const fn hardline() -> Doc {
    Doc::HardLine
}

#[must_use]
pub fn indent(n: isize, d: Doc) -> Doc {
    Doc::Indent(n, Box::new(d))
}

#[must_use]
pub fn align(d: Doc) -> Doc {
    Doc::Align(Box::new(d))
}

#[must_use]
pub fn hang(n: isize, d: Doc) -> Doc {
    align(indent(n, d))
}

#[must_use]
pub fn flat_alt(flat: Doc, broken: Doc) -> Doc {
    Doc::FlatAlt(Box::new(flat), Box::new(broken))
}

#[must_use]
pub fn group(d: Doc) -> Doc {
    Doc::Group(Box::new(d))
}

#[must_use]
pub fn concat<I: IntoIterator<Item = Doc>>(parts: I) -> Doc {
    Doc::Concat(parts.into_iter().collect())
}

#[must_use]
pub const fn trivia(span: Span, side: Side) -> Doc {
    Doc::Trivia(TriviaSlot { span, side })
}

#[must_use]
pub fn space() -> Doc {
    text(" ")
}
#[must_use]
pub fn comma() -> Doc {
    text(",")
}
#[must_use]
pub fn semi() -> Doc {
    text(";")
}
#[must_use]
pub fn colon() -> Doc {
    text(":")
}
#[must_use]
pub fn dot() -> Doc {
    text(".")
}
#[must_use]
pub fn equals() -> Doc {
    text("=")
}
#[must_use]
pub fn lparen() -> Doc {
    text("(")
}
#[must_use]
pub fn rparen() -> Doc {
    text(")")
}
#[must_use]
pub fn lbracket() -> Doc {
    text("[")
}
#[must_use]
pub fn rbracket() -> Doc {
    text("]")
}
#[must_use]
pub fn lbrace() -> Doc {
    text("{")
}
#[must_use]
pub fn rbrace() -> Doc {
    text("}")
}
#[must_use]
pub fn langle() -> Doc {
    text("<")
}
#[must_use]
pub fn rangle() -> Doc {
    text(">")
}
#[must_use]
pub fn dquote() -> Doc {
    text("\"")
}
#[must_use]
pub fn squote() -> Doc {
    text("'")
}

#[must_use]
pub fn hcat<I: IntoIterator<Item = Doc>>(parts: I) -> Doc {
    concat(parts)
}

#[must_use]
pub fn hsep<I: IntoIterator<Item = Doc>>(parts: I) -> Doc {
    interleave(parts, space)
}

#[must_use]
pub fn vcat<I: IntoIterator<Item = Doc>>(parts: I) -> Doc {
    interleave(parts, hardline)
}

#[must_use]
pub fn vsep<I: IntoIterator<Item = Doc>>(parts: I) -> Doc {
    interleave(parts, line)
}

#[must_use]
pub fn sep<I: IntoIterator<Item = Doc>>(parts: I) -> Doc {
    group(vsep(parts))
}

#[must_use]
pub fn cat<I: IntoIterator<Item = Doc>>(parts: I) -> Doc {
    group(interleave(parts, softline))
}

#[must_use]
pub fn punctuate<I: IntoIterator<Item = Doc>>(sep: &Doc, parts: I) -> Vec<Doc> {
    let items: Vec<Doc> = parts.into_iter().collect();
    let last = items.len().saturating_sub(1);
    items
        .into_iter()
        .enumerate()
        .flat_map(|(i, d)| {
            if i == last {
                vec![d]
            } else {
                vec![d, sep.clone()]
            }
        })
        .collect()
}

#[must_use]
pub fn enclose(left: Doc, right: Doc, body: Doc) -> Doc {
    concat([left, body, right])
}

#[must_use]
pub fn parens(d: Doc) -> Doc {
    enclose(lparen(), rparen(), d)
}
#[must_use]
pub fn brackets(d: Doc) -> Doc {
    enclose(lbracket(), rbracket(), d)
}
#[must_use]
pub fn braces(d: Doc) -> Doc {
    enclose(lbrace(), rbrace(), d)
}
#[must_use]
pub fn angles(d: Doc) -> Doc {
    enclose(langle(), rangle(), d)
}
#[must_use]
pub fn dquotes(d: Doc) -> Doc {
    enclose(dquote(), dquote(), d)
}
#[must_use]
pub fn squotes(d: Doc) -> Doc {
    enclose(squote(), squote(), d)
}

#[must_use]
pub fn enclose_sep<I: IntoIterator<Item = Doc>>(left: Doc, right: Doc, sep: &Doc, parts: I) -> Doc {
    enclose(left, right, concat(punctuate(sep, parts)))
}

#[must_use]
pub fn list<I: IntoIterator<Item = Doc>>(parts: I) -> Doc {
    enclose_sep(lbracket(), rbracket(), &text(", "), parts)
}

#[must_use]
pub fn tupled<I: IntoIterator<Item = Doc>>(parts: I) -> Doc {
    enclose_sep(lparen(), rparen(), &text(", "), parts)
}

fn interleave<I: IntoIterator<Item = Doc>, F: Fn() -> Doc>(parts: I, sep: F) -> Doc {
    let mut out = Vec::new();
    for (i, p) in parts.into_iter().enumerate() {
        if i > 0 {
            out.push(sep());
        }
        out.push(p);
    }
    concat(out)
}

impl Doc {
    #[must_use]
    pub fn append(self, other: Doc) -> Doc {
        match (self, other) {
            (Doc::Nil, x) | (x, Doc::Nil) => x,
            (Doc::Concat(mut a), Doc::Concat(b)) => {
                a.extend(b);
                Doc::Concat(a)
            }
            (Doc::Concat(mut a), b) => {
                a.push(b);
                Doc::Concat(a)
            }
            (a, Doc::Concat(mut b)) => {
                b.insert(0, a);
                Doc::Concat(b)
            }
            (a, b) => Doc::Concat(vec![a, b]),
        }
    }

    /// `self <+> other` — concatenate with a single space between.
    #[must_use]
    pub fn space(self, other: Doc) -> Doc {
        self.append(space()).append(other)
    }

    /// `self </> other` — concatenate with `line` between (space when flat,
    /// newline when broken).
    #[must_use]
    pub fn line(self, other: Doc) -> Doc {
        self.append(line()).append(other)
    }

    /// `self <$> other` — concatenate with `hardline` between.
    #[must_use]
    pub fn hardline(self, other: Doc) -> Doc {
        self.append(hardline()).append(other)
    }

    /// `self <//> other` — concatenate with `softline` between (empty when
    /// flat, newline when broken).
    #[must_use]
    pub fn softline(self, other: Doc) -> Doc {
        self.append(softline()).append(other)
    }
}

/// Force a subtree onto one line: `line` becomes a space, `softline` vanishes,
/// and `group` / `flat_alt` collapse to their flat layout. A `hardline` still
/// breaks — a mandatory break cannot be flattened — matching Wadler `flatten`.
///
/// Useful when a context forbids layout regardless of width (a bracketed or
/// offside-suppressed region), so you can keep building one `Doc` per construct
/// and flatten it at the boundary rather than maintaining a separate flat path.
#[must_use]
pub fn flatten(d: &Doc) -> Doc {
    match d {
        Doc::Line => Doc::Text(" ".to_owned()),
        Doc::SoftLine => Doc::Nil,
        Doc::FlatAlt(flat, _) => flatten(flat),
        Doc::Group(inner) => flatten(inner),
        Doc::Indent(n, inner) => Doc::Indent(*n, Box::new(flatten(inner))),
        Doc::Align(inner) => Doc::Align(Box::new(flatten(inner))),
        Doc::Concat(parts) => Doc::Concat(parts.iter().map(flatten).collect()),
        Doc::Nil | Doc::Text(_) | Doc::HardLine | Doc::Trivia(_) => d.clone(),
    }
}

/// Layout knobs for [`Block::of`] (and the [`block`] shortcut).
///
/// A block is the formatter's bread-and-butter delimited list: it stays on one
/// line when it fits and explodes to one item per line when it does not. The
/// knobs cover the variations real grammars need without a separate function
/// (or a row of unlabelled booleans) per shape.
#[derive(Clone, Copy, Debug)]
pub struct Block {
    /// Hanging indent applied to the items in the broken layout.
    pub nest: isize,
    /// Put a space just inside the delimiters in the flat layout (`{ a, b }`).
    pub pad: bool,
    /// Emit the separator after the final item in the broken layout.
    pub trailing: bool,
}

impl Default for Block {
    fn default() -> Self {
        Self {
            nest: 2,
            pad: false,
            trailing: false,
        }
    }
}

impl Block {
    /// Pad the flat layout with a space just inside each delimiter (`{ a, b
    /// }`).
    #[must_use]
    pub const fn padded(mut self) -> Self {
        self.pad = true;
        self
    }

    /// Emit the separator after the final item when the block breaks.
    #[must_use]
    pub const fn trailing(mut self) -> Self {
        self.trailing = true;
        self
    }

    /// Override the hanging indent (default 2).
    #[must_use]
    pub const fn nest(mut self, n: isize) -> Self {
        self.nest = n;
        self
    }

    /// Build the delimited group. `sep` goes between items (and after the last
    /// when [`Block::trailing`] is set); the line break itself is supplied by
    /// the block, so pass just the punctuation (e.g. [`comma`]).
    #[must_use]
    pub fn of<I: IntoIterator<Item = Doc>>(
        self,
        open: Doc,
        close: Doc,
        sep: &Doc,
        items: I,
    ) -> Doc {
        let edge = if self.pad { line() } else { softline() };
        let between = sep.clone().append(line());
        let body = concat(punctuate(&between, items));
        let trail = if self.trailing {
            flat_alt(nil(), sep.clone())
        } else {
            nil()
        };
        group(concat([
            open,
            indent(self.nest, concat([edge.clone(), body, trail])),
            edge,
            close,
        ]))
    }
}

/// A delimited list that stays on one line when it fits and breaks to one item
/// per line (hanging-indented two spaces) when it does not — the everyday
/// `(a, b)`-style layout. Reach for [`Block`] when you need padded braces, a
/// trailing separator, or a different indent.
#[must_use]
pub fn block<I: IntoIterator<Item = Doc>>(open: Doc, close: Doc, sep: &Doc, items: I) -> Doc {
    Block::default().of(open, close, sep, items)
}