-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLexer.h
More file actions
286 lines (268 loc) · 8.96 KB
/
Lexer.h
File metadata and controls
286 lines (268 loc) · 8.96 KB
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
#include "Parser.h"
class Lexer{
public:
explicit Lexer(const std::stringstream& codeSource)
:code {codeSource.str()},
p {Tokens}
{
}
void Lex()
{
while(peek().has_value()) //->Check
{
HandleToken(peek().value());
}
// -> handle a statement not having a semicolon
}
private:
std::string code;
int currIndex= 0;
std::string currTokenBuff;
std::vector<Token> Tokens;
Parser p {Tokens};
std::optional<char> peek(int ahead=0)
{
if(currIndex+ahead<code.length() && currIndex+ahead>=0)
return code[currIndex+ahead];
return {};
}
void consume()
{
currTokenBuff.push_back(code.at(currIndex++));
}
void HandleToken(char c)
{
//const char* type =typeid(T).name();
switch(c)
{
case ';' :
consume();
Tokens.push_back({.type = TokenType::_semiColon,.value = currTokenBuff});
currTokenBuff.clear();
for(Token x:Tokens){
std::cout<<x.value.value()<<","<<x.type<<std::endl;
}
p.SetTokens(Tokens);
p.Parse();
Tokens.clear();
return;
case '=' :
consume();
Tokens.push_back({.type = TokenType::_equals,.value = currTokenBuff});
currTokenBuff.clear();
return;
case '+':
case '-':
case '*':
case '/':
case '^':
case '%':
consume();
Tokens.push_back({.type = TokenType::_operator,.value = currTokenBuff});
currTokenBuff.clear();
return;
case '(' :
case '{' :
case '[' :
HandleBrackets(c);
return;
case '\"':
case '\'':
HandleStringLiteral(c);
return;
default:
break;
}
if(isalpha(c) || c=='_')
{
Handle_Var_KeyWord();
}
else if(isdigit(c) || peek().value()=='-' || peek().value()=='.')
{
Handle_Int_Float_Double();
}
else if(isspace(c) || c == '\n')
{
consume();
currTokenBuff.clear();
}
else
{
std::cerr<<"Invalid statement"<<std::endl;
exit(EXIT_FAILURE);
}
}
//-> assumed that the current character was -> " or '
inline void HandleStringLiteral(char opening){
consume();
currTokenBuff.clear();
while(peek().has_value() && peek().value()!=opening)
{
switch(peek().value())
{
case '\\':
currIndex+=1;
if(peek().has_value() && peek().value() != opening)
{
char c = peek().value();
switch(c)
{
case '\'':
case '\"':
case '\\':
consume();
break;
case 'n':
case 't':
case 'r':
currTokenBuff.push_back('\\');
consume();
break;
default:
std::cerr << "Invalid Syntax:Invalid character escaped:->"<<"\\"<<c<<std::endl;
exit(EXIT_FAILURE);
}
}
else
{
std::cerr << R"(Invalid Syntax:Slash must be escaped: -> "\")";
exit(EXIT_FAILURE);
}
continue;
}
consume();
}
Tokens.push_back({.type = TokenType::_stringLiteral,.value = currTokenBuff});
consume(); //-> to remove the closing quotes
currTokenBuff.clear();
}
//-> assumed that the current char is the beginning of the var/keyword and is valid (ie it is a '_' or an alphabet
inline void Handle_Var_KeyWord(){
int alphabet= 0;
alphabet += (peek().value() != '_');
consume();
while (peek().has_value()) {
if (isalpha(peek().value()) || peek().value() == '_') {
alphabet+= (peek().value() != '_');
consume();
}
else if(isalnum(peek().value()) && alphabet){
consume();
}
else
break;
}
if (FUNCTIONAL_KEYWORDS.find(currTokenBuff) != FUNCTIONAL_KEYWORDS.end() ) {
Tokens.push_back({.type = TokenType::_func_keyWord, .value = currTokenBuff});
}
else if(NON_FUNCTIONAL_KEYWORDS.find(currTokenBuff) != NON_FUNCTIONAL_KEYWORDS.end()){
Tokens.push_back({.type = TokenType::_non_func_keyWord, .value = currTokenBuff});
}
else {
Tokens.push_back({.type = TokenType::_variable, .value = currTokenBuff});
if (Variables.find(currTokenBuff) != Variables.end())
Variables.insert(currTokenBuff);
}
currTokenBuff.clear();
}
//-> assumed that the current char is the beginning of the int/float/double and is valid (ie it is a '-' or '.' or a number
inline void Handle_Int_Float_Double() {
int nums = 0;
std::string afterDecimal;
bool decimalPoint = false;
nums += isdigit(peek().value());
consume();
while (peek().has_value()) {
if (isdigit(peek().value())) {
if(decimalPoint)
afterDecimal+=peek().value();
nums += 1;
consume();
}
else if (peek().value() == '-') {
if (!nums)
consume();
else {
break;
}
}
else if (peek().value() == '.') {
if (!decimalPoint) {
if (!nums)
currTokenBuff.push_back('0');
decimalPoint = true;
consume();
}
else {
std::cerr << "Invalid decimal point:->" << currTokenBuff << peek(0).value() << std::endl;
exit(EXIT_FAILURE);
}
}
else
break;
}
if (!nums || currTokenBuff.back() == '.') {
std::cerr << "Invalid decimal point/number/token:->" << currTokenBuff << std::endl;
exit(EXIT_FAILURE);
}
[[maybe_unused]] TokenType type = _integerLiteral;
if(afterDecimal.length()>7) //-> check if there are any trailing zeroes to decide if it is float or double
type=_doubleLiteral;
else if(afterDecimal.length()<=7 && !afterDecimal.empty())
type = _floatLiteral;
Tokens.push_back({.type = type, .value = currTokenBuff});
currTokenBuff.clear();
}
inline void HandleBrackets(char opening){
int count[] = {0,0,0};
consume();
switch(opening)
{
case '(' :
count[0]+=1;
break;
case '{':
count[1]+=1;
break;
case '[':
count[2]+=1;
break;
default:
break;
}
while(peek().has_value()){
switch(peek().value())
{
case '(' :
count[0] += 1;
break;
case '{':
count[1] += 1;
break;
case '[':
count[2] +=1;
break;
case ')' :
count[0] -= 1;
break;
case '}':
count[1] -= 1;
break;
case ']':
count[2] -=1;
break;
}
if (count[0] == 0 && count[1] == 0 && count[2] == 0) {
consume();
Tokens.push_back({.type = TokenType::_expr, .value = currTokenBuff});
currTokenBuff.clear();
return;
}
if(peek().value() == ';'){
std::cerr<<"Invalid Brackets:Close the opened brackets"<<std::endl;
exit(EXIT_FAILURE);
}
consume();
}
}
};