wdl_format/token/
pre.rs

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
//! Tokens emitted during the formatting of particular elements.

use wdl_ast::SyntaxKind;
use wdl_ast::SyntaxTokenExt;

use crate::Comment;
use crate::LineSpacingPolicy;
use crate::Token;
use crate::TokenStream;
use crate::Trivia;

/// A token that can be written by elements.
///
/// These are tokens that are intended to be written directly by elements to a
/// [`TokenStream`](super::TokenStream) consisting of [`PreToken`]s. Note that
/// this will transformed into a [`TokenStream`](super::TokenStream) of
/// [`PostToken`](super::PostToken)s by a
/// [`Postprocessor`](super::Postprocessor) (authors of elements are never
/// expected to write [`PostToken`](super::PostToken)s directly).
#[derive(Debug, Eq, PartialEq)]
pub enum PreToken {
    /// A blank line.
    BlankLine,

    /// The end of a line.
    LineEnd,

    /// The end of a word.
    WordEnd,

    /// The start of an indented block.
    IndentStart,

    /// The end of an indented block.
    IndentEnd,

    /// How to handle blank lines from this point onwards.
    LineSpacingPolicy(LineSpacingPolicy),

    /// Literal text.
    Literal(String, SyntaxKind),

    /// Trivia.
    Trivia(Trivia),
}

/// The line length to use when displaying pretokens.
const DISPLAY_LINE_LENGTH: usize = 90;

impl std::fmt::Display for PreToken {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        match self {
            PreToken::BlankLine => write!(f, "{}<BlankLine>", " ".repeat(DISPLAY_LINE_LENGTH)),
            PreToken::LineEnd => write!(f, "<EOL>"),
            PreToken::WordEnd => write!(f, "<WordEnd>"),
            PreToken::IndentStart => write!(f, "<IndentStart>"),
            PreToken::IndentEnd => write!(f, "<IndentEnd>"),
            PreToken::LineSpacingPolicy(policy) => {
                write!(f, "<LineSpacingPolicy@{:?}>", policy)
            }
            PreToken::Literal(value, kind) => {
                write!(
                    f,
                    "{:width$}<Literal@{:?}>",
                    value,
                    kind,
                    width = DISPLAY_LINE_LENGTH
                )
            }
            PreToken::Trivia(trivia) => match trivia {
                Trivia::BlankLine => {
                    write!(f, "{}<OptionalBlankLine>", " ".repeat(DISPLAY_LINE_LENGTH))
                }
                Trivia::Comment(comment) => match comment {
                    Comment::Preceding(value) => {
                        write!(
                            f,
                            "{:width$}<Comment@Preceding>",
                            value,
                            width = DISPLAY_LINE_LENGTH
                        )
                    }
                    Comment::Inline(value) => {
                        write!(
                            f,
                            "{:width$}<Comment@Inline>",
                            value,
                            width = DISPLAY_LINE_LENGTH
                        )
                    }
                },
            },
        }
    }
}

impl Token for PreToken {
    /// Returns a displayable version of the token.
    fn display<'a>(&'a self, _config: &'a crate::Config) -> impl std::fmt::Display {
        self
    }
}

impl TokenStream<PreToken> {
    /// Inserts a blank line token to the stream if the stream does not already
    /// end with a blank line. This will replace any [`Trivia::BlankLine`]
    /// tokens with [`PreToken::BlankLine`].
    pub fn blank_line(&mut self) {
        self.trim_while(|t| matches!(t, PreToken::BlankLine | PreToken::Trivia(Trivia::BlankLine)));
        self.0.push(PreToken::BlankLine);
    }

    /// Inserts an end of line token to the stream if the stream does not
    /// already end with an end of line token.
    ///
    /// This will also trim any trailing [`PreToken::WordEnd`] tokens.
    pub fn end_line(&mut self) {
        self.trim_while(|t| matches!(t, PreToken::WordEnd | PreToken::LineEnd));
        self.0.push(PreToken::LineEnd);
    }

    /// Inserts a word end token to the stream if the stream does not already
    /// end with a word end token.
    pub fn end_word(&mut self) {
        self.trim_end(&PreToken::WordEnd);
        self.0.push(PreToken::WordEnd);
    }

    /// Inserts an indent start token to the stream. This will also end the
    /// current line.
    pub fn increment_indent(&mut self) {
        self.end_line();
        self.0.push(PreToken::IndentStart);
    }

    /// Inserts an indent end token to the stream. This will also end the
    /// current line.
    pub fn decrement_indent(&mut self) {
        self.end_line();
        self.0.push(PreToken::IndentEnd);
    }

    /// Inserts a blank lines allowed context change.
    pub fn blank_lines_allowed(&mut self) {
        self.0
            .push(PreToken::LineSpacingPolicy(LineSpacingPolicy::Always));
    }

    /// Inserts a blank lines allowed between comments context change.
    pub fn blank_lines_allowed_between_comments(&mut self) {
        self.0.push(PreToken::LineSpacingPolicy(
            LineSpacingPolicy::BeforeComments,
        ));
    }

    /// Inserts any preceding trivia into the stream.
    fn push_preceding_trivia(&mut self, token: &wdl_ast::Token) {
        assert!(!token.syntax().kind().is_trivia());
        let preceding_trivia = token.syntax().preceding_trivia();
        for token in preceding_trivia {
            match token.kind() {
                SyntaxKind::Whitespace => {
                    if !self.0.last().map_or(false, |t| {
                        matches!(t, PreToken::BlankLine | PreToken::Trivia(Trivia::BlankLine))
                    }) {
                        self.0.push(PreToken::Trivia(Trivia::BlankLine));
                    }
                }
                SyntaxKind::Comment => {
                    let comment = PreToken::Trivia(Trivia::Comment(Comment::Preceding(
                        token.text().trim_end().to_owned(),
                    )));
                    self.0.push(comment);
                }
                _ => unreachable!("unexpected trivia: {:?}", token),
            };
        }
    }

    /// Inserts any inline trivia into the stream.
    fn push_inline_trivia(&mut self, token: &wdl_ast::Token) {
        assert!(!token.syntax().kind().is_trivia());
        if let Some(token) = token.syntax().inline_comment() {
            let inline_comment = PreToken::Trivia(Trivia::Comment(Comment::Inline(
                token.text().trim_end().to_owned(),
            )));
            self.0.push(inline_comment);
        }
    }

    /// Pushes an AST token into the stream.
    ///
    /// This will also push any preceding or inline trivia into the stream.
    /// Any token may have preceding or inline trivia, unless that token is
    /// itself trivia (i.e. trivia cannot have trivia).
    pub fn push_ast_token(&mut self, token: &wdl_ast::Token) {
        self.push_preceding_trivia(token);
        self.0.push(PreToken::Literal(
            token.syntax().text().to_owned(),
            token.syntax().kind(),
        ));
        self.push_inline_trivia(token);
    }

    /// Pushes a literal string into the stream in place of an AST token.
    /// This will insert any trivia that would have been inserted with the AST
    /// token.
    pub fn push_literal_in_place_of_token(&mut self, token: &wdl_ast::Token, replacement: String) {
        self.push_preceding_trivia(token);
        self.0
            .push(PreToken::Literal(replacement, token.syntax().kind()));
        self.push_inline_trivia(token);
    }

    /// Pushes a literal string into the stream.
    /// This will not insert any trivia.
    pub fn push_literal(&mut self, value: String, kind: SyntaxKind) {
        self.0.push(PreToken::Literal(value, kind));
    }

    /// Returns the kind of the last literal token in the stream.
    pub fn last_literal_kind(&self) -> Option<SyntaxKind> {
        match self.0.last_chunk::<3>() {
            Some([_, _, PreToken::Literal(_, kind)]) => Some(*kind),
            Some([_, PreToken::Literal(_, kind), _]) => Some(*kind),
            Some([PreToken::Literal(_, kind), _, _]) => Some(*kind),
            _ => None,
        }
    }
}