-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscanner.cpp
180 lines (159 loc) · 3.7 KB
/
scanner.cpp
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
#include "scanner.h"
#include "calcex.h"
#include <iostream>
#include <string>
using namespace std;
//Uncomment this to get debug information
//#define debug
const int numberOfKeywords = 6;
const string keywd[numberOfKeywords] = {
string("S"), string("R"), string("C"), string("P"), string("M"), string("-v"),
};
int isLetter(char c) {
return ((c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z'));
}
int isDigit(char c) {
return (c >= '0' && c <= '9');
}
int isWhiteSpace(char c) {
return (c == ' ' || c == '\t' || c == '\n');
}
Scanner::Scanner(istream* in):
inStream(in),
lineCount(1),
colCount(-1),
needToken(true),
lastToken(nullptr)
{}
Scanner::~Scanner() {
try {
delete inStream;
} catch (...) {}
}
void Scanner::putBackToken() {
needToken = false;
}
Token* Scanner::getToken() {
if (!needToken) {
needToken=true;
return lastToken;
}
Token* t;
int state=0;
bool foundOne=false;
int c;
string lex;
TokenType type;
int k;
int column, line;
c = inStream->get();
#ifdef debug
cout << c << endl;
#endif
while (!foundOne) {
colCount++;
switch (state) {
case 0 :
lex = "";
column=colCount;
line = lineCount;
if (isLetter(c)) state=1;
else if (isDigit(c)) state=2;
else if (c=='+') state=3;
else if (c=='-') state=4;
else if (c=='*') state=5;
else if (c=='/') state=6;
else if (c=='(') state=7;
else if (c==')') state=8;
else if (c=='%') state=9;
else if (c=='=') state=10;
else if (c=='\n') {
colCount=-1;
lineCount++;
}
else if (isWhiteSpace(c));
else if (inStream->eof() or c== EOF) {
foundOne=true;
type=eof;
}
else {
cout << "* scanner error" << endl;
throw UnrecognizedToken;
}
break;
case 1 :
if (isLetter(c) || isDigit(c)) state=1;
else {
for (k=0;k<numberOfKeywords;k++)
if (lex == keywd[k]) {
foundOne = true;
type = keyword;
}
if (!foundOne) {
type = identifier;
foundOne = true;
}
}
break;
case 2 :
if (isDigit(c)) state=2;
else {
type = number;
foundOne=true;
}
break;
case 3 :
type = add;
foundOne = true;
break;
case 4 :
type = sub;
foundOne = true;
break;
case 5 :
type = times;
foundOne=true;
break;
case 6 :
type = divide;
foundOne=true;
break;
case 7 :
type = lparen;
foundOne=true;
break;
case 8 :
type = rparen;
foundOne=true;
break;
case 9 :
type = module;
foundOne=true;
break;
case 10 :
type = eol;
foundOne=true;
break;
}
if (!foundOne) {
lex = lex + (char)c;
c = inStream->get();
#ifdef debug
cout << c << endl;
#endif
}
}
inStream->putback(c);
colCount--;
if (type == number || type == identifier || type == keyword) {
t = new LexicalToken(type,new string(lex), line, column);
}
else {
t = new Token(type,line,column);
}
#ifdef debug
cout << "just found " << lex << " with type " << type << endl;
#endif
lastToken = t;
return t;
}