-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathscan.c
163 lines (123 loc) · 3.04 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
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
#include "scan.h"
char buf[MAXSYMB];
FILE *input;
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) {
printf("scan: max buf length: %d\n", MAXSYMB);
exit(1);
}
c = advance();
} while (isalpha(c) || isdigit(c) || c == '_');
buf[i] = '\0'; // terminate
// check for reserved words
if (!strcmp(buf, "print"))
return PRINTSYM;
// if not reserved, this is by default IDENTifier
else {
return IDENT;
}
}
else if (isdigit(c)) {
// make a number (integer)
do {
buf[i++] = c;
if (i >= MAXSYMB) {
printf("scan: max buf length: %d\n", MAXSYMB);
exit(1);
}
c = advance();
} while (isdigit(c));
buf[i] = '\0';
return NUMBER;
}
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;
// lparen
case '(':
c = advance();
return LPAREN;
// rparen
case ')':
c = advance();
return RPAREN;
// semicolon
case ';':
c = advance();
return SEMICOLON;
// period
case '.':
c = advance();
return PERIOD;
default:
printf("scan: default error\n");
exit(1);
}
}
void printsymb(Symbol s) {
switch (s) {
case IDENT:
printf("IDENT \"%s\"\n", buf); break;
case NUMBER:
printf("NUMBER \"%s\"\n", buf); break;
case LPAREN:
printf("LPAREN \"(\"\n"); break;
case RPAREN:
printf("RPAREN \")\"\n"); break;
case TIMES:
printf("TIMES \"*\"\n"); break;
case SLASH:
printf("SLASH \"/\"\n"); break;
case PLUS:
printf("PLUS \"+\"\n"); break;
case MINUS:
printf("MINUS \"-\"\n"); break;
case SEMICOLON:
printf("SEMICOLON \";\"\n"); break;
case PRINTSYM:
printf("PRINTSYM \"print\"\n"); break;
case PERIOD:
printf("PERIOD \".\"\n"); break;
case ENDOFFILE:
printf("ENDOFFILE\n"); break;
default:
printf("Unrecognized symbol\n"); break;
}
}
/* EOF */