noyalib 0.0.41

A pure Rust YAML library with zero unsafe code and full serde integration
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
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
// SPDX-License-Identifier: MIT OR Apache-2.0
// Copyright (c) 2026 Noyalib. All rights reserved.

//! Formatter for YAML CST.

use crate::cst::document::parse_document;
use crate::cst::green::{GreenChild, GreenNode};
use crate::cst::syntax::SyntaxKind;
use crate::error::Result;
use crate::prelude::*;

/// Configuration for the formatter.
#[derive(Debug, Clone, Copy)]
pub struct FormatConfig {
    /// Number of spaces per indentation level. Defaults to 2.
    pub indent_size: usize,
}

impl Default for FormatConfig {
    fn default() -> Self {
        Self { indent_size: 2 }
    }
}

/// Auto-formats a messy YAML file into a canonical style based on the CST.
///
/// This uses the default configuration (2 spaces indentation).
pub fn format(input: &str) -> Result<String> {
    format_with_config(input, &FormatConfig::default())
}

/// Auto-formats a messy YAML file into a canonical style based on the CST,
/// using the provided configuration.
pub fn format_with_config(input: &str, config: &FormatConfig) -> Result<String> {
    if input.trim().is_empty() {
        return Ok(String::new());
    }
    let doc = parse_document(input)?;
    let mut formatter = Formatter::new(input, config);
    formatter.format_node(doc.syntax(), 0)?;
    Ok(formatter.finish())
}

struct Formatter<'a> {
    source: &'a str,
    config: &'a FormatConfig,
    out: String,
    indent_level: usize,
    at_line_start: bool,
    /// Whether the last thing written was a space.
    last_was_space: bool,
}

impl<'a> Formatter<'a> {
    fn new(source: &'a str, config: &'a FormatConfig) -> Self {
        Self {
            source,
            config,
            out: String::with_capacity(source.len()),
            indent_level: 0,
            at_line_start: true,
            last_was_space: false,
        }
    }

    fn finish(self) -> String {
        let mut out = self.out;
        if !out.ends_with('\n') && !out.is_empty() {
            out.push('\n');
        }
        out
    }

    fn indent(&mut self) {
        if self.at_line_start {
            for _ in 0..(self.indent_level * self.config.indent_size) {
                self.out.push(' ');
            }
            self.at_line_start = false;
            self.last_was_space = self.indent_level > 0;
        }
    }

    fn newline(&mut self) {
        if self.at_line_start {
            return;
        }
        // A block scalar's token carries the indentation of the line
        // that follows it, so after writing one the cursor sits on a
        // line holding nothing but spaces. Ending that line would add a
        // blank line, and a keep-chomped scalar counts blank lines as
        // content, so the value would gain a newline. Drop the spaces
        // and we are already at the start of a line (found by
        // formatting the spec-torture corpus).
        let trimmed = self.out.trim_end_matches([' ', '\t']).len();
        let line_is_only_space =
            trimmed < self.out.len() && (trimmed == 0 || self.out.as_bytes()[trimmed - 1] == b'\n');
        if line_is_only_space {
            self.out.truncate(trimmed);
        } else {
            self.out.push('\n');
        }
        self.at_line_start = true;
        self.last_was_space = false;
    }

    fn write_raw(&mut self, text: &str) {
        if text.is_empty() {
            return;
        }
        // Indentation is written eagerly, so writing it before a token
        // that opens with a line break leaves a line of nothing but
        // spaces. Inside a keep-chomped block scalar that line is
        // content and silently adds a newline to the value (found by
        // formatting the spec-torture corpus).
        if !text.starts_with(['\n', '\r']) {
            self.indent();
        }
        self.out.push_str(text);
        if let Some(last_newline) = text.rfind('\n') {
            let trailing = &text[last_newline + 1..];
            self.at_line_start = trailing.is_empty();
            self.last_was_space = trailing.ends_with(' ');
        } else {
            self.at_line_start = false;
            self.last_was_space = text.ends_with(' ');
        }
    }

    fn ensure_space(&mut self) {
        if !self.at_line_start && !self.last_was_space {
            self.out.push(' ');
            self.last_was_space = true;
        }
    }

    fn format_node(&mut self, node: &GreenNode, base: usize) -> Result<()> {
        match node.kind() {
            SyntaxKind::Document | SyntaxKind::Stream => {
                self.format_children(node, base)?;
            }
            SyntaxKind::BlockMapping => {
                self.format_block_mapping(node, base)?;
            }
            SyntaxKind::BlockSequence => {
                self.format_block_sequence(node, base)?;
            }
            SyntaxKind::MappingEntry => {
                self.format_mapping_entry(node, base)?;
            }
            SyntaxKind::SequenceItem => {
                self.format_sequence_item(node, base)?;
            }
            SyntaxKind::FlowMapping | SyntaxKind::FlowSequence => {
                self.write_verbatim(node, base);
            }
            _ => {
                self.format_children(node, base)?;
            }
        }
        Ok(())
    }

    fn format_children(&mut self, node: &GreenNode, base: usize) -> Result<()> {
        let mut pos = base;
        for child in node.children() {
            match child {
                GreenChild::Node(inner) => {
                    self.format_node(inner, pos)?;
                }
                GreenChild::Token { kind, len } => {
                    self.handle_token(*kind, &self.source[pos..pos + *len as usize]);
                }
            }
            pos += child.text_len();
        }
        Ok(())
    }

    fn handle_token(&mut self, kind: SyntaxKind, text: &str) {
        match kind {
            SyntaxKind::Comment => {
                self.ensure_space();
                self.write_raw(text.trim_end());
                self.newline();
            }
            SyntaxKind::Newline => {
                self.newline();
            }
            SyntaxKind::Whitespace | SyntaxKind::Bom => {
                // Skip
            }
            SyntaxKind::DocStart => {
                self.write_raw("---");
                self.newline();
            }
            SyntaxKind::DocEnd => {
                self.write_raw("...");
                self.newline();
            }
            SyntaxKind::ColonIndicator => {
                self.write_raw(":");
            }
            SyntaxKind::DashIndicator => {
                if !self.at_line_start {
                    self.newline();
                }
                self.write_raw("-");
            }
            _ if kind.is_token() => {
                let trimmed = if matches!(kind, SyntaxKind::PlainScalar) {
                    text.trim()
                } else {
                    text
                };
                self.write_raw(trimmed);
            }
            _ => {}
        }
    }

    fn format_block_mapping(&mut self, node: &GreenNode, base: usize) -> Result<()> {
        let mut pos = base;
        for child in node.children() {
            match child {
                GreenChild::Node(inner) if inner.kind() == SyntaxKind::MappingEntry => {
                    self.format_mapping_entry(inner, pos)?;
                }
                GreenChild::Token { kind, len } => {
                    self.handle_token(*kind, &self.source[pos..pos + *len as usize]);
                }
                GreenChild::Node(inner) => {
                    self.format_node(inner, pos)?;
                }
            }
            pos += child.text_len();
        }
        Ok(())
    }

    fn format_block_sequence(&mut self, node: &GreenNode, base: usize) -> Result<()> {
        let mut pos = base;
        for child in node.children() {
            match child {
                GreenChild::Node(inner) if inner.kind() == SyntaxKind::SequenceItem => {
                    self.format_sequence_item(inner, pos)?;
                }
                GreenChild::Token { kind, len } => {
                    self.handle_token(*kind, &self.source[pos..pos + *len as usize]);
                }
                GreenChild::Node(inner) => {
                    self.format_node(inner, pos)?;
                }
            }
            pos += child.text_len();
        }
        Ok(())
    }

    fn format_mapping_entry(&mut self, node: &GreenNode, base: usize) -> Result<()> {
        let mut pos = base;
        let mut saw_colon = false;
        // An explicit key (`? key`) needs the space after its indicator
        // as much as a sequence item needs the one after `-`: `?[a, b]`
        // is a plain scalar, not an explicit key (found by the
        // ultra-complex fixture).
        let mut saw_question = false;
        // A value whose tag or anchor sits alone on the line after the
        // colon (`k:` / `  !!pairs` / `  - a`) is written as `k: !!pairs`:
        // the line break is dropped and the property joins the key line,
        // where it needs no indentation of its own (found by the
        // ultra-complex fixture, which lost the property's indent).
        let children: Vec<&GreenChild> = node.children().collect();
        let mut drop_newline_at: Option<usize> = None;
        if let Some(colon) = children.iter().position(|c| {
            matches!(
                c,
                GreenChild::Token {
                    kind: SyntaxKind::ColonIndicator,
                    ..
                }
            )
        }) {
            let mut i = colon + 1;
            let is_ws = |c: &GreenChild| {
                matches!(
                    c,
                    GreenChild::Token {
                        kind: SyntaxKind::Whitespace,
                        ..
                    }
                )
            };
            while i < children.len() && is_ws(children[i]) {
                i += 1;
            }
            if i < children.len()
                && matches!(
                    children[i],
                    GreenChild::Token {
                        kind: SyntaxKind::Newline,
                        ..
                    }
                )
            {
                let newline = i;
                i += 1;
                while i < children.len() && is_ws(children[i]) {
                    i += 1;
                }
                if i < children.len()
                    && matches!(
                        children[i],
                        GreenChild::Token {
                            kind: SyntaxKind::TagMark | SyntaxKind::AnchorMark,
                            ..
                        }
                    )
                {
                    drop_newline_at = Some(newline);
                }
            }
        }

        for (index, child) in children.iter().enumerate() {
            match child {
                GreenChild::Token { kind, len } => {
                    let text = &self.source[pos..pos + *len as usize];
                    if drop_newline_at == Some(index) {
                        pos += child.text_len();
                        continue;
                    }
                    if (saw_colon || saw_question)
                        && !matches!(
                            kind,
                            SyntaxKind::ColonIndicator
                                | SyntaxKind::Newline
                                | SyntaxKind::Whitespace
                                | SyntaxKind::Comment
                        )
                    {
                        self.ensure_space();
                    }
                    if matches!(kind, SyntaxKind::ColonIndicator) {
                        // An explicit key's value indicator starts its own
                        // line: `? a` / `: b`. On the key's line it would
                        // turn the key into a mapping (`? a: b`).
                        if saw_question && !self.at_line_start {
                            self.newline();
                        }
                        saw_colon = true;
                        saw_question = false;
                    }
                    if matches!(kind, SyntaxKind::QuestionIndicator) {
                        saw_question = true;
                    }
                    self.handle_token(*kind, text);
                }
                GreenChild::Node(inner) => {
                    if saw_question && !saw_colon {
                        self.ensure_space();
                        // A mapping used as an explicit key continues on
                        // the lines below the `?`, and those lines must
                        // be indented past it or they become entries of
                        // the surrounding mapping instead. Without this
                        // the key is torn apart and the value is lost
                        // (found by formatting the spec-torture corpus).
                        if inner.kind() == SyntaxKind::BlockMapping {
                            self.indent_level += 1;
                            self.format_node(inner, pos)?;
                            self.indent_level -= 1;
                        } else {
                            self.format_node(inner, pos)?;
                        }
                    } else if saw_colon {
                        if matches!(
                            inner.kind(),
                            SyntaxKind::BlockMapping | SyntaxKind::BlockSequence
                        ) {
                            self.newline();
                            self.indent_level += 1;
                            self.format_node(inner, pos)?;
                            self.indent_level -= 1;
                        } else {
                            self.ensure_space();
                            self.format_node(inner, pos)?;
                        }
                    } else {
                        self.format_node(inner, pos)?;
                    }
                }
            }
            pos += child.text_len();
        }
        self.newline();
        Ok(())
    }

    fn format_sequence_item(&mut self, node: &GreenNode, base: usize) -> Result<()> {
        let mut pos = base;
        let mut saw_dash = false;

        for child in node.children() {
            match child {
                GreenChild::Token { kind, len } => {
                    let text = &self.source[pos..pos + *len as usize];
                    if saw_dash
                        && !matches!(
                            kind,
                            SyntaxKind::DashIndicator
                                | SyntaxKind::Newline
                                | SyntaxKind::Whitespace
                                | SyntaxKind::Comment
                        )
                    {
                        self.ensure_space();
                    }
                    if matches!(kind, SyntaxKind::DashIndicator) {
                        saw_dash = true;
                    }
                    self.handle_token(*kind, text);
                }
                GreenChild::Node(inner) => {
                    if saw_dash {
                        if matches!(
                            inner.kind(),
                            SyntaxKind::BlockMapping | SyntaxKind::BlockSequence
                        ) {
                            self.ensure_space();
                            self.indent_level += 1;
                            self.format_node(inner, pos)?;
                            self.indent_level -= 1;
                        } else {
                            self.ensure_space();
                            self.format_node(inner, pos)?;
                        }
                    } else {
                        self.format_node(inner, pos)?;
                    }
                }
            }
            pos += child.text_len();
        }
        self.newline();
        Ok(())
    }

    fn write_verbatim(&mut self, node: &GreenNode, base: usize) {
        self.indent();
        let text = node.text(&self.source[base..base + node.text_len()]);
        self.out.push_str(&text);
        self.at_line_start = text.ends_with('\n');
        self.last_was_space = text.ends_with(' ');
    }
}