-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathscan.c
executable file
·258 lines (201 loc) · 4.94 KB
/
scan.c
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
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
#include "scan.h"
#include "error.h"
#define TRUE 1
#define FALSE 0
char buf[MAXSYMB];
FILE *input;
void maxbuf() {
fprintf(stderr, " maximum length for token=%d", MAXSYMB);
}
void setinput(FILE* inputfile) {
input = inputfile;
}
int advance() {
return fgetc(input);
}
Symbol scan() {
static int c = ' ';
int i = 0; // buf counter
while (isspace(c)) {
c = advance();
}
if (c == EOF)
return ENDOFFILE;
if (isalpha(c)) {
// make a "word"
do {
buf[i++] = c;
if (i >= MAXSYMB) {
errnum(ERROR_EXCEEDED_BUFFER_LENGTH);
maxbuf();
exit(EXIT_FAILURE);
}
c = advance();
} while (isalpha(c) || isdigit(c) || c == '_');
buf[i] = '\0'; // terminate
// now, check for reserved words
if (!strcmp(buf, "procedure"))
return PROCSYM;
else if (!strcmp(buf, "var"))
return VARSYM;
else if (!strcmp(buf, "is"))
return BECOMES;
else if (!strcmp(buf, "const"))
return CONSTSYM;
else if (!strcmp(buf, "array"))
return ARRAYSYM;
else if (!strcmp(buf, "do"))
return DOSYM;
else if (!strcmp(buf, "while"))
return WHILESYM;
else if (!strcmp(buf, "if"))
return IFSYM;
else if (!strcmp(buf, "then"))
return THENSYM;
else if (!strcmp(buf, "else"))
return ELSESYM;
else if (!strcmp(buf, "end"))
return ENDSYM;
else if (!strcmp(buf, "begin"))
return BEGINSYM;
else if (!strcmp(buf, "call"))
return CALLSYM;
else if (!strcmp(buf, "return"))
return RETURNSYM;
else if (!strcmp(buf, "print"))
return PRINTSYM;
else if (!strcmp(buf, "emit"))
return EMITSYM;
else if (!strcmp(buf, "and"))
return ANDSYM;
else if (!strcmp(buf, "or"))
return ORSYM;
else if (!strcmp(buf, "xor"))
return XORSYM;
// by default IDENTifier
else {
return IDENT;
}
}
else if (isdigit(c)) {
// make a number (integer)
do {
buf[i++] = c;
if (i >= MAXSYMB) {
errnum(ERROR_EXCEEDED_BUFFER_LENGTH);
maxbuf();
exit(EXIT_FAILURE);
}
c = advance();
} while (isdigit(c));
buf[i] = '\0';
return NUMBER;
}
// ("<"|"<="|">"|">=")
else if (c == '<' || c == '>') {
if (c == '<') {
c = advance();
if (c == '=') {
c = advance();
return LEQ;
}
else
return LSS;
}
else if (c == '>') {
c = advance();
if (c == '=') {
c = advance();
return GEQ;
}
else
return GTR;
}
else {
errnum(ERROR_COMPARATION_OR_SHIFT_SYMBOL);
return 0;
}
}
else
switch (c) {
// add
case '+':
c = advance();
return PLUS;
// subtract
case '-':
c = advance();
return MINUS;
// multiply
case '*':
c = advance();
return TIMES;
// divide
case '/':
c = advance();
return SLASH;
// mod
case '%':
c = advance();
return PERCENT;
// equal
case '=':
c = advance();
return EQL;
case '#':
c = advance();
return NEQ;
// lparen
case '(':
c = advance();
return LPAREN;
// rparen
case ')':
c = advance();
return RPAREN;
// lbracket
case '[':
c = advance();
return LBRACKET;
// rbracket
case ']':
c = advance();
return RBRACKET;
// lbracket
case '{':
c = advance();
return LCURLY;
// rbracket
case '}':
c = advance();
return RCURLY;
// exclamation
case '!':
c = advance();
return EXCLAMATION;
// colon
case ':':
c = advance();
return COLON;
// semicolon
case ';':
c = advance();
return SEMICOLON;
// comma
case ',':
c = advance();
return COMMA;
// period
case '.':
c = advance();
return PERIOD;
default:
errnum(ERROR_TOKEN_NOT_IDENTIFIED);
return 0;
}
}
/* EOF */