-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlex.cpp
More file actions
225 lines (200 loc) · 4.48 KB
/
lex.cpp
File metadata and controls
225 lines (200 loc) · 4.48 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
#include "lex.h"
#include <sstream>
#include <string>
#include <algorithm>
static map<Token,string> tokenPrint = {
{PROGRAM, "PROGRAM"},
{WRITE, "WRITE"},
{INT, "INT"},
{ END, "END" },
{ IF, "IF" },
{FLOAT, "FLOAT"},
{STRING, "STRING"},
{ REPEAT, "REPEAT" },
{BEGIN, "BEGIN"},
{ IDENT, "IDENT" },
{ ICONST, "ICONST" },
{ RCONST, "RCONST" },
{ SCONST, "SCONST" },
{ PLUS, "PLUS" },
{ MINUS, "MINUS" },
{ MULT, "MULT" },
{ DIV, "DIV" },
{REM, "REM"},
{ ASSOP, "ASSOP" },
{ LPAREN, "LPAREN" },
{ RPAREN, "RPAREN" },
{ COMMA, "COMMA" },
{ EQUAL, "EQUAL" },
{ GTHAN, "GTHAN" },
{ SEMICOL, "SEMICOL" },
{ ERR, "ERR" },
{ DONE, "DONE" },
};
//Keywords mapping
static map<string,Token> kwmap = {
{"PROGRAM", PROGRAM},
{"WRITE", WRITE},
{ "INT", INT},
{ "FLOAT", FLOAT},
{ "STRING", STRING},
{ "REPEAT", REPEAT },
{ "BEGIN", BEGIN },
{"IF", IF},
{ "END", END },
};
LexItem getNextToken(istream& in, int& linenumber){
enum TokState{
START,INID,INSTRING,ININT,INREAL,INCOMMENT,VALIDREAL
} state = START;
string lexeme;
char ch;
while(in.get(ch)){
//cout<<"reading- "<<ch<<" line " << linenumber<<endl;
switch(state){
case START:
if(ch =='\n'){
linenumber++;
continue;
}
else if(isspace(ch)){
continue;
}
else if(ch == '#'){
state = INCOMMENT;
continue;
}
lexeme += ch;
if(isalpha(ch)){
state = INID;
}
else if(isdigit(ch)){
state = ININT;
}
else if(ch == '\"'){
state = INSTRING;
}
else if(ch == '.'){
state = INREAL;
}
else{
switch(ch){
case '+': return LexItem(PLUS, lexeme, linenumber);
case '-': return LexItem(MINUS, lexeme, linenumber);
case '*': return LexItem(MULT, lexeme, linenumber);
case '/': return LexItem(DIV, lexeme, linenumber);
case '%': return LexItem(REM, lexeme, linenumber);
case '=':
if(in.peek() == '='){
lexeme += in.get();
return LexItem(EQUAL, lexeme, linenumber);
} else{
return LexItem(ASSOP, lexeme, linenumber);
}
case '(': return LexItem(LPAREN, lexeme, linenumber);
case ')': return LexItem(RPAREN, lexeme, linenumber);
case ',': return LexItem(COMMA, lexeme, linenumber);
case '>': return LexItem(GTHAN, lexeme, linenumber);
case ';': return LexItem(SEMICOL, lexeme, linenumber);
default: return LexItem(ERR, lexeme, linenumber);
}
}
break;
case INID:
if(isalnum(ch) || ch == '_'){
lexeme += ch;
continue;
} else {
if(ch == '\n')
linenumber++;
else if(!isspace(ch))
in.putback(ch);
return id_or_kw(lexeme, linenumber);
}
break;
case ININT:
if(isdigit(ch)){
lexeme += ch;
continue;
}
else if (ch == '.'){
lexeme += ch;
state= INREAL;
continue;
} else if(isalpha(ch)){
return LexItem(ERR, lexeme, linenumber);
}
else {
//lexeme += ch;
in.putback(ch);
return LexItem(ICONST, lexeme, linenumber);
}
break;
case INREAL:
if(isdigit(ch)) {
lexeme += ch;
state = VALIDREAL;
}
else {
return LexItem(ERR, lexeme, linenumber);
}
break;
case VALIDREAL:
if(isdigit(ch)){
lexeme += ch;
continue;
}
else {
in.putback(ch);
return LexItem(RCONST, lexeme, linenumber);
}
break;
case INSTRING:
if(ch == EOF || ch == '\n'){
return LexItem(ERR, lexeme, linenumber);
}
else if (ch == '\"'){
// lexeme += ch;
return LexItem(SCONST, lexeme.substr(1), linenumber);
}
else {
lexeme += ch;
continue;
}
break;
case INCOMMENT:
if(ch == '\n'){
state = START;
linenumber++;
}
else{
continue;
}
break;
}
}
// if(ch == EOF)
return LexItem(DONE, lexeme, linenumber);
}
LexItem id_or_kw(const string& lexeme, int linenum){
string s = lexeme;
transform(s.begin(), s.end(), s.begin(), ::toupper);
if(kwmap.find(s) == kwmap.end()){
LexItem result(IDENT, lexeme, linenum);
return result;
}
LexItem result(kwmap[s], lexeme, linenum);
return result;
}
ostream& operator<< (ostream& out,const LexItem& tok){
Token t = tok.GetToken();
out<<tokenPrint[t];
if(t == IDENT || t== ICONST || t == RCONST || t == SCONST){
string s= tok.GetLexeme();
if(t != SCONST)
transform(s.begin(), s.end(), s.begin(), ::toupper);
out<<"("<<s<<")";
}
//out<<tok.GetLinenum();
return out;
}