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
use std::borrow::Cow;
use std::ops::Deref;
use std::rc::Rc;

use antlr_rust::common_token_stream::CommonTokenStream;

use antlr_rust::parser_rule_context::ParserRuleContext;
use antlr_rust::token::Token;
use antlr_rust::token_factory::ArenaCommonFactory;
use antlr_rust::tree::{ParseTreeVisitor, TerminalNode, Tree, Visitable, VisitableDyn};
use antlr_rust::InputStream;

use crate::grammar::ast::{
    CompilationUnit, Expression, File, Keyword, LineColumn, LocationRange, PrintStatement, Script,
    Statement, StringLiteral,
};
use crate::grammar::quickbmslexer::*;
use crate::grammar::quickbmsparser::{
    quickbmsParser, quickbmsParserContextType, Print_statementContext, ScriptContext,
    String_literalContext,
};
use crate::grammar::quickbmsvisitor::quickbmsVisitor;

// Some macros to get the locations of tokens. It might be possible to define these as functions,
// but after trying for quite a while I wasn't able to get the trait bounds right, so I just made
// them macros instead.
#[macro_export]
macro_rules! ctx_location_range {
    ($ctx:expr) => {{
        let start = token_location_range![$ctx.start().deref()].start;
        let end = token_location_range![$ctx.stop().deref()].end;

        LocationRange { start, end }
    }};
}

#[macro_export]
macro_rules! token_location_range {
    ($token:expr) => {{
        let start = LineColumn {
            line: $token.line,
            column: $token.column,
        };

        // TODO: How does this work with multi-line tokens?
        let end = LineColumn {
            line: $token.line,
            column: $token.column + ($token.stop - $token.start),
        };

        LocationRange { start, end }
    }};
}

struct QuickBMSVisitorImpl {
    return_stack: Vec<CompilationUnit>,
    keywords_by_location: Vec<(LocationRange, Keyword)>,
}

impl QuickBMSVisitorImpl {
    pub fn get_result(&self) -> Option<File> {
        if self.return_stack.len() > 0 {
            match self.return_stack.last().unwrap() {
                CompilationUnit::CUScript(script) => Some(File {
                    script: script.clone(),
                    keywords_by_location: self.keywords_by_location.clone(),
                }),
                _ => panic!(),
            }
        } else {
            panic!()
        }
    }
}

impl<'i> ParseTreeVisitor<'i, quickbmsParserContextType> for QuickBMSVisitorImpl {
    fn visit_terminal(&mut self, node: &TerminalNode<'i, quickbmsParserContextType>) {
        let location = token_location_range![node.symbol];
        match node.symbol.get_token_type() {
            PRINT => {
                if let Cow::Borrowed(s) = node.symbol.text {
                    let keyword = Keyword {
                        content: s.to_string(),
                        location,
                    };
                    self.return_stack
                        .push(CompilationUnit::CUKeyword(keyword.clone()));

                    self.keywords_by_location
                        .push((keyword.location.clone(), keyword));
                } else {
                    panic!();
                }
            }
            STRING_LITERAL => {
                if let Cow::Borrowed(s) = node.symbol.text {
                    self.return_stack
                        .push(CompilationUnit::CUStringLiteral(StringLiteral {
                            content: s[1..(s.len() - 1)].to_string(),
                            location,
                        }));
                } else {
                    panic!();
                }
            }
            _ => {}
        }
    }
}

impl<'i> quickbmsVisitor<'i> for QuickBMSVisitorImpl {
    fn visit_script(&mut self, ctx: &ScriptContext<'i>) {
        let location = ctx_location_range![ctx];

        let mut statements = vec![];
        for child in ctx.get_children() {
            child.as_ref().accept_dyn(self);
            let statement = match self.return_stack.pop().unwrap() {
                CompilationUnit::CUStatement(statement) => statement,
                _ => panic!(),
            };

            statements.push(statement);
        }

        let script = Script {
            statements,
            location,
        };

        self.return_stack.push(CompilationUnit::CUScript(script));
    }

    fn visit_string_literal(&mut self, ctx: &String_literalContext<'i>) {
        ctx.get_child(0).unwrap().as_ref().accept_dyn(self);
        let string_literal = match self.return_stack.pop().unwrap() {
            CompilationUnit::CUStringLiteral(string_literal) => string_literal,
            _ => panic!(),
        };

        self.return_stack
            .push(CompilationUnit::CUExpression(Expression::ExpStringLiteral(
                string_literal,
            )));
    }

    fn visit_print_statement(&mut self, ctx: &Print_statementContext<'i>) {
        let location = ctx_location_range![ctx];

        ctx.get_child(0).unwrap().as_ref().accept_dyn(self);
        let print_keyword = match self.return_stack.pop().unwrap() {
            CompilationUnit::CUKeyword(keyword) => keyword,
            _ => panic!(),
        };

        ctx.get_child(1).unwrap().as_ref().accept_dyn(self);
        let expression = match self.return_stack.pop().unwrap() {
            CompilationUnit::CUExpression(expression) => expression,
            _ => panic!(),
        };

        let value = PrintStatement {
            print_keyword,
            expression,
            location,
        };
        self.return_stack
            .push(CompilationUnit::CUStatement(Statement::StmPrintStatement(
                value,
            )));
    }
}

pub fn parse_str(contents: &str) -> File {
    let tf = ArenaCommonFactory::default();

    let mut _lexer = quickbmsLexer::new_with_token_factory(InputStream::new(contents), &tf);
    let token_source = CommonTokenStream::new(_lexer);
    let mut parser = quickbmsParser::new(token_source);
    let result = parser.script().expect("parsed unsuccessfully");

    let mut visitor = QuickBMSVisitorImpl {
        return_stack: vec![],
        keywords_by_location: vec![],
    };
    result.accept(&mut visitor);

    visitor.get_result().unwrap()
}

#[test]
fn test_visitor() {
    fn parse<'a>(tf: &'a ArenaCommonFactory<'a>) -> Rc<ScriptContext<'a>> {
        let mut _lexer = quickbmsLexer::new_with_token_factory(
            InputStream::new("print \"Hello, World!\"\n"),
            tf,
        );
        let token_source = CommonTokenStream::new(_lexer);
        let mut parser = quickbmsParser::new(token_source);
        let result = parser.script().expect("parsed unsuccessfully");

        let mut visitor = QuickBMSVisitorImpl {
            return_stack: vec![],
            keywords_by_location: vec![],
        };
        result.accept(&mut visitor);

        if let Some(file) = visitor.get_result() {
            assert_eq!(
                file.script,
                Script {
                    statements: vec![Statement::StmPrintStatement(PrintStatement {
                        print_keyword: {
                            Keyword {
                                content: "print".to_string(),
                                location: LocationRange {
                                    start: LineColumn { line: 1, column: 0 },
                                    end: LineColumn { line: 1, column: 4 },
                                },
                            }
                        },
                        expression: Expression::ExpStringLiteral(StringLiteral {
                            content: "Hello, World!".to_string(),
                            location: LocationRange {
                                start: LineColumn { line: 1, column: 6 },
                                end: LineColumn {
                                    line: 1,
                                    column: 20
                                },
                            },
                        }),
                        location: LocationRange {
                            start: LineColumn { line: 1, column: 0 },
                            end: LineColumn {
                                line: 1,
                                column: 20
                            },
                        }
                    })],
                    location: LocationRange {
                        start: LineColumn { line: 1, column: 0 },
                        end: LineColumn {
                            line: 1,
                            column: 20
                        },
                    }
                }
            );

            assert_eq!(
                file.keywords_by_location,
                vec![(
                    LocationRange {
                        start: LineColumn { line: 1, column: 0 },
                        end: LineColumn { line: 1, column: 4 }
                    },
                    Keyword {
                        content: "print".to_string(),
                        location: LocationRange {
                            start: LineColumn { line: 1, column: 0 },
                            end: LineColumn { line: 1, column: 4 }
                        }
                    }
                )]
            );
        } else {
            assert!(false);
        }

        result
    }
    let tf = ArenaCommonFactory::default();

    let _result = parse(&tf);
}