-
Notifications
You must be signed in to change notification settings - Fork 0
/
scanner.cpp
executable file
·290 lines (242 loc) · 4.48 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
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
287
288
289
290
/*
*
* This is a simple scanner for scicalc
*
* Friedrich Feichtinger, 08.09.2012
*
*/
#include "scanner.h"
#include <cmath>
#include <QDebug>
const QChar Scanner::eof_CHAR=QChar::LineSeparator; // end of line
QChar Scanner::ch; // last character
QString Scanner::in; // input string
int Scanner::pos; // current position in input string
Token* Scanner::peeked; // peeked Token
void Scanner::init(QString line)
{
in=line;
peeked=0;
pos=0;
nextCh();
}
Token* Scanner::next()
{
Token *t;
if(peeked!=0) // last token was peeked, so return this instead of reading a new one
{
t=peeked;
peeked=0;
return t;
}
t=new Token();
while(ch<=' ') // skip all whitespace characters
{
nextCh();
}
if(ch==eof_CHAR)
{
t->kind=Token::eof;
}
else if(isLetter(ch) || ch=='$')
{
readName(t);
}
else if(ch=='#')
{
readUnit(t);
}
else if(isDecimal(ch))
{
readNumber(t);
}
else
{
switch(ch.toLatin1())
{
case '=': nextCh(); t->kind=Token::assign; break;
case '+': nextCh(); t->kind=Token::plus; break;
case '-': nextCh(); t->kind=Token::minus; break;
case '*': nextCh(); t->kind=Token::times; break;
case '/': nextCh();
if(ch!='/')
{
// this is a single '/'
t->kind=Token::slash;
break;
}
// this is "//" line comment so jump to next case
case '%':
// line comment (MATLAB style)
do
{
nextCh();
}
while(ch!=eof_CHAR);
t=next(); // continue scanning after comment
break;
case '^': nextCh(); t->kind=Token::hat; break;
case '(': nextCh(); t->kind=Token::lpar; break;
case ')': nextCh(); t->kind=Token::rpar; break;
case ',': nextCh(); t->kind=Token::comma; break;
case '|': nextCh();
if(ch=='|')
{
nextCh();
t->kind=Token::parallel;
}
else
{
// unknown token
t->kind=Token::none;
}
break;
case ';': nextCh(); t->kind=Token::semicolon; break;
case '<': nextCh(); t->kind=Token::langle; break;
case '>': nextCh(); t->kind=Token::rangle; break;
default:
{
// unknown token
t->kind=Token::none;
break;
}
}
}
return t;
}
Token* Scanner::peek()
{
if(peeked==0)
{
peeked=next();
}
return peeked;
}
void Scanner::nextCh()
{
if(pos<in.size())
{
ch=in.at(pos);
// replace the latin mu by the greek mu
if(ch.unicode()==181)
{
ch=956;
}
//qDebug() << "unicode:" << ch.unicode();
pos++;
}
else
{
ch=eof_CHAR;
}
}
bool Scanner::isLetter(QChar c)
{
return c.isLetter() || c=='_';
}
bool Scanner::isDecimal(QChar c)
{
return (c>='0' && c<='9');
}
void Scanner::readName(Token *t)
{
int i=0;
do
{
t->string.append(ch);
nextCh();
i++;
}
while(isLetter(ch) || isDecimal(ch));
t->kind=Token::ident;
}
void Scanner::readUnit(Token *t)
{
nextCh();
int i=0;
do
{
t->string.append(ch);
nextCh();
i++;
}
while(!ch.isSpace());
t->kind=Token::unit;
}
void Scanner::readNumber(Token *t)
{
t->kind=Token::number;
long double value=0;
// digits before '.'/','
do
{
value*=10;
//value+=(int)(ch-'0');
value+=ch.digitValue();
nextCh();
}
while(isDecimal(ch));
if(ch=='.' || ch==',') // support both decimal separators (American, European)
{
// digits after '.'/','
nextCh();
long double base=1;
while(isDecimal(ch))
{
base/=10;
//value+=(int)(ch-'0')*base;
value+=ch.digitValue()*base;
nextCh();
}
}
switch(ch.toLatin1())
{
// scientific prefix
case 'a': value/=1000; // don't break!
case 'f': value/=1000; // don't break!
case 'p': value/=1000; // don't break!
case 'n': value/=1000; // don't break!
case 'u': value/=1000; // don't break!
case 'm': value/=1000; nextCh(); break;
case 'E': value*=1000; // don't break!
case 'P': value*=1000; // don't break!
case 'T': value*=1000; // don't break!
case 'G': value*=1000; // don't break!
case 'M': value*=1000; // don't break!
case 'k': value*=1000; nextCh(); break;
// power of 10 extension
case 'e':
{
nextCh();
int sign=1;
if(ch=='+')
{
sign=1;
nextCh();
}
else if(ch=='-')
{
sign=-1;
nextCh();
}
int exp=0;
while(isDecimal(ch))
{
exp*=10;
//exp+=(int)(ch-'0');
exp+=ch.digitValue();
nextCh();
}
exp*=sign;
value*=pow(10, exp);
break;
}
}
if(ch==QChar(0x00B0)) // ° degree sign
{
value*=M_PI/180;
nextCh();
}
t->value=value;
//qDebug() << "value scanned" << value;
}