-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathparser.h
200 lines (154 loc) · 4.92 KB
/
parser.h
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
#ifndef PARSER_H
#define PARSER_H
// ReRap Version 0.9
// Copyright 2011 Matthew Mikolay.
//
// This file is part of ReRap.
//
// ReRap is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// ReRap is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with ReRap. If not, see <http://www.gnu.org/licenses/>.
#include <cstdlib>
#include <ctime>
#include <vector>
#include "exceptions/parsersyntax.h"
#include "nodelist.h"
#include "token.h"
/*** Operations ***/
#include "operations/add.h"
#include "operations/and.h"
#include "operations/call.h"
#include "operations/divide.h"
#include "operations/equal.h"
#include "operations/exponent.h"
#include "operations/greater.h"
#include "operations/greateq.h"
#include "operations/intdivide.h"
#include "operations/length.h"
#include "operations/less.h"
#include "operations/lesseq.h"
#include "operations/multiply.h"
#include "operations/negate.h"
#include "operations/not.h"
#include "operations/remainder.h"
#include "operations/select.h"
#include "operations/slice.h"
#include "operations/subtract.h"
#include "operations/unequal.h"
#include "operations/or.h"
/*** Statements ***/
#include "statements/assign.h"
#include "statements/case.h"
#include "statements/do.h"
#include "statements/end.h"
#include "statements/exit.h"
#include "statements/extern.h"
#include "statements/for.h"
#include "statements/if.h"
#include "statements/input.h"
#include "statements/intern.h"
#include "statements/output.h"
#include "statements/repeat.h"
#include "statements/return.h"
#include "statements/selectassign.h"
#include "statements/sliceassign.h"
#include "statements/while.h"
class Parser
{
public:
/*** Constructor ***/
Parser(std::string pFilename, std::vector<Token> pTokens);
/*** Parse from zero-level ***/
void parse();
/*** Descend the asbtract syntax tree ***/
void executeProgram();
/*** Destructor ***/
~Parser();
private:
/*** The name of the file being parsed ***/
std::string filename;
/*** The list of nodes for the generated abstract syntax tree ***/
NodeList* list;
/*** The list of tokens ***/
std::vector<Token> tokens;
/*** The current index of the token being processed ***/
unsigned int index;
/*** If the token list contains more tokens ***/
bool hasTokens();
/*** If the token list contains more tokens ***/
bool hasTokens(unsigned int offset);
/*** Get the next token ***/
Token getToken();
/*** Put back a token ***/
void putToken();
/*** Peek at the next token ***/
Token peekToken();
/*** Peek at the next token ***/
Token peekToken(unsigned int offset);
/*** Parse an expression ***/
Object* parseExpression();
/*** Parse a statement ***/
Node* parseStatement();
/*** Parse an assign statement ***/
Assign* parseAssign();
/*** Parse a call statement ***/
Call* parseCall();
/*** Parse a case statement ***/
Case* parseCase();
/*** Parse a do statement ***/
Do* parseDo();
/*** Parse an end statement ***/
End* parseEnd();
/*** Parse an exit statement ***/
Exit* parseExit();
/*** Parse an extern statement ***/
Extern* parseExtern();
/*** Parse a for statement ***/
For* parseFor();
/*** Parse an if statement ***/
If* parseIf();
/*** Parse an input statement***/
Input* parseInput();
/*** Parse an intern statement ***/
Intern* parseIntern();
/*** Parse an output statement***/
Output* parseOutput();
/*** Parse a procedure definition ***/
void parseProcedure();
/*** Parse a function definition ***/
void parseFunction();
/*** Parse a repeat statement ***/
Repeat* parseRepeat();
/*** Parse a return statement ***/
Return* parseReturn();
/*** Parse a slice/select assign statement ***/
Node* parseSliceSelectAssign();
/*** Parse a while statement ***/
While* parseWhile();
/*** Parse a separation ***/
void parseSeparation();
/*** Begin sub-expression parser definitions ***/
Object* parseSubExpression10();
Object* parseSubExpression9();
Object* parseSubExpression8();
Object* parseSubExpression7();
Object* parseSubExpression6();
Object* parseSubExpression5();
Object* parseSubExpression4();
Object* parseSubExpression3();
Object* parseSubExpression2();
Object* parseSubExpression1();
Object* parseSubExpression1a(Object* pExpr);
Object* parseValue();
/*** End sub-expression parser definitions ***/
};
#endif