gcode/
visitor.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
231
use alloc::vec::Vec;

use crate::{
    core::{
        ControlFlow, Diagnostics as _, HasDiagnostics, Number, ProgramVisitor,
        Span, TokenType,
    },
    diags::Diagnostics,
    types::{
        Argument, Block, Code, Comment, CommentKind, GeneralCode,
        MiscellaneousCode, Program, ToolChangeCode, WordAddress,
    },
};

/// [`ProgramVisitor`](crate::core::ProgramVisitor) that builds an owned [`Program`] and collects [`Diagnostics`].
///
/// Used by [`parse`](crate::parse); typically not constructed by users.
#[derive(Debug)]
pub struct AstBuilder {
    blocks: Vec<Block>,
    diagnostics: Diagnostics,
}

impl AstBuilder {
    /// Creates a new `AstBuilder`.
    pub const fn new() -> Self {
        Self {
            blocks: Vec::new(),
            diagnostics: Diagnostics::new(),
        }
    }

    /// Returns the built [`Program`], or [`Err`] with the collected [`Diagnostics`] if any diagnostic was emitted.
    pub fn finish(self) -> Result<Program, Diagnostics> {
        let AstBuilder {
            blocks,
            diagnostics,
        } = self;
        if diagnostics.is_empty() {
            Ok(Program { blocks })
        } else {
            Err(diagnostics)
        }
    }
}

impl Default for AstBuilder {
    fn default() -> Self {
        Self::new()
    }
}

impl HasDiagnostics for AstBuilder {
    fn diagnostics(&mut self) -> &mut dyn crate::core::Diagnostics {
        &mut self.diagnostics
    }
}

impl ProgramVisitor for AstBuilder {
    fn start_block(
        &mut self,
    ) -> ControlFlow<impl crate::core::BlockVisitor + '_> {
        ControlFlow::Continue(BlockBuilder::new(
            &mut self.blocks,
            &mut self.diagnostics,
        ))
    }
}

#[derive(Debug)]
struct BlockBuilder<'a> {
    blocks: &'a mut Vec<Block>,
    diags: &'a mut Diagnostics,
    comments: Vec<Comment>,
    codes: Vec<Code>,
    word_addresses: Vec<WordAddress>,
    line_number: Option<u32>,
}

impl<'a> BlockBuilder<'a> {
    fn new(blocks: &'a mut Vec<Block>, diags: &'a mut Diagnostics) -> Self {
        Self {
            blocks,
            diags,
            comments: Vec::new(),
            codes: Vec::new(),
            word_addresses: Vec::new(),
            line_number: None,
        }
    }
}

impl crate::core::BlockVisitor for BlockBuilder<'_> {
    fn line_number(&mut self, n: u32, _: Span) {
        self.line_number = Some(n);
    }

    fn comment(&mut self, value: &str, span: Span) {
        let (kind, value) = if let Some(value) = value.strip_prefix(';') {
            (CommentKind::Semicolon, value)
        } else if let Some(value) = value.strip_prefix('(') {
            (CommentKind::Parentheses, value)
        } else {
            return self.diags.emit_unexpected(
                value,
                &[TokenType::Comment],
                span,
            );
        };

        self.comments.push(Comment {
            value: value.into(),
            span,
            kind,
        });
    }

    fn word_address(
        &mut self,
        letter: char,
        value: crate::core::Value<'_>,
        span: Span,
    ) {
        self.word_addresses.push(WordAddress {
            letter,
            value: value.into(),
            span,
        });
    }

    fn start_general_code(
        &mut self,
        number: Number,
    ) -> ControlFlow<impl crate::core::CommandVisitor + '_> {
        let v = CodeBuilder {
            diags: self.diags,
            number,
            codes: &mut self.codes,
            constructor: |number, args, span| {
                Code::General(GeneralCode { number, span, args })
            },
            args: Vec::new(),
        };
        core::ops::ControlFlow::Continue(v)
    }

    fn start_miscellaneous_code(
        &mut self,
        number: Number,
    ) -> ControlFlow<impl crate::core::CommandVisitor + '_> {
        let v = CodeBuilder {
            diags: self.diags,
            number,
            codes: &mut self.codes,
            constructor: |number, args, span| {
                Code::Miscellaneous(MiscellaneousCode { number, span, args })
            },
            args: Vec::new(),
        };
        core::ops::ControlFlow::Continue(v)
    }

    fn start_tool_change_code(
        &mut self,
        number: Number,
    ) -> ControlFlow<impl crate::core::CommandVisitor + '_> {
        let v = CodeBuilder {
            diags: self.diags,
            number,
            codes: &mut self.codes,
            constructor: |number, args, span| {
                Code::ToolChange(ToolChangeCode { number, span, args })
            },
            args: Vec::new(),
        };
        core::ops::ControlFlow::Continue(v)
    }

    fn end_line(self, span: Span) {
        let block = Block {
            line_number: self.line_number,
            comments: self.comments,
            codes: self.codes,
            word_addresses: self.word_addresses,
            span,
        };
        self.blocks.push(block);
    }
}

impl HasDiagnostics for BlockBuilder<'_> {
    fn diagnostics(&mut self) -> &mut dyn crate::core::Diagnostics {
        self.diags
    }
}

struct CodeBuilder<'a, F> {
    codes: &'a mut Vec<Code>,
    diags: &'a mut Diagnostics,
    constructor: F,
    args: Vec<Argument>,
    number: Number,
}

impl<F: FnOnce(Number, Vec<Argument>, Span) -> Code> crate::core::CommandVisitor
    for CodeBuilder<'_, F>
{
    fn argument(
        &mut self,
        letter: char,
        value: crate::core::Value<'_>,
        span: Span,
    ) {
        self.args.push(Argument {
            letter,
            value: value.into(),
            span,
        });
    }

    fn end_command(self, span: Span) {
        let code = (self.constructor)(self.number, self.args, span);
        self.codes.push(code);
    }
}

impl<F> HasDiagnostics for CodeBuilder<'_, F> {
    fn diagnostics(&mut self) -> &mut dyn crate::core::Diagnostics {
        self.diags
    }
}