-
Notifications
You must be signed in to change notification settings - Fork 1
/
scanner.flex
201 lines (145 loc) · 3.71 KB
/
scanner.flex
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
%{
#include "parser.h"
int ident_check(char* yytext);
int string_check(char** yytext);
int char_check(char** yytext);
int int_check(char* yytext);
void q_strip(char** yytext);
void escape_fix(char** yytext);
char escp_pick(char c);
%}
DIGIT [0-9]
LETTER [a-zA-Z]
%%
(" "|\t|\n|\r) /* skip whitespace */
\/\/.* /* skip comment type 1 */
\/\*(\/[^\*]|[^\/]\*|\*[^\/]|\/[^\*]|[^\/\*][^\/\*]|[^\/\*])*\*\/ /* skip comment type 2 */
array { return TOKEN_T_ARRAY; }
auto { return TOKEN_T_AUTO; }
boolean { return TOKEN_T_BOOLEAN; }
char { return TOKEN_T_CHAR; }
else { return TOKEN_ELSE; }
false { return TOKEN_FALSE; }
for { return TOKEN_FOR; }
function { return TOKEN_FUNCTION; }
if { return TOKEN_IF; }
integer { return TOKEN_T_INTEGER; }
print { return TOKEN_PRINT; }
return { return TOKEN_RETURN; }
string { return TOKEN_T_STRING; }
true { return TOKEN_TRUE; }
void { return TOKEN_VOID; }
while { return TOKEN_WHILE; }
(_|{LETTER})({LETTER}|{DIGIT}|_)* { return ident_check(yytext); }
\"(([^\"\\\n]|\\[^\s])*)\" { return string_check(&yytext); }
\'(\\[^\s]|[^\\\n])\' { return char_check(&yytext); }
{DIGIT}+ { return int_check(yytext); }
\; { return TOKEN_SEMICOLON; }
\: { return TOKEN_COLON; }
\, { return TOKEN_COMMA; }
\( { return TOKEN_LP; }
\) { return TOKEN_RP; }
\[ { return TOKEN_LB; }
\] { return TOKEN_RB; }
\{ { return TOKEN_LCB; }
\} { return TOKEN_RCB; }
(\+){2} { return TOKEN_INCREMENT; }
(\-){2} { return TOKEN_DECREMENT; }
\^ { return TOKEN_EXPONENT; }
\* { return TOKEN_MULT; }
\/ { return TOKEN_DIV; }
\% { return TOKEN_MOD; }
\+ { return TOKEN_ADD; }
\- { return TOKEN_MINUS; }
\> { return TOKEN_GT; }
\>\= { return TOKEN_GE; }
\< { return TOKEN_LT; }
\<\= { return TOKEN_LE; }
\=\= { return TOKEN_EQ; }
\!\= { return TOKEN_NEQ; }
\! { return TOKEN_NOT; }
\&\& { return TOKEN_AND; }
\|\| { return TOKEN_OR; }
\= { return TOKEN_ASSIGN; }
. { return TOKEN_SCAN_ERROR; }
%%
int ident_check(char* yytext) {
if(strlen(yytext) < 255 ) {
return TOKEN_IDENT;
} else {
return TOKEN_IDENT_ERROR;
}
};
int string_check(char** yytext) {
q_strip(yytext);
escape_fix(yytext);
if(strlen(*yytext) < 255 ) {
return TOKEN_STRING_LITERAL;
} else {
return TOKEN_STRING_ERROR;
}
};
int char_check(char** yytext) {
q_strip(yytext);
escape_fix(yytext);
if(strlen(*yytext) == 1 || strlen(*yytext) == 0) {
return TOKEN_CHAR_LITERAL;
} else {
return TOKEN_CHAR_ERROR;
}
};
int int_check(char* yytext) {
int64_t max = 9223372036854775807;
if(atoi(yytext) <= max && strlen(yytext) <= 19) {
return TOKEN_INTEGER_LITERAL;
} else {
return TOKEN_INTEGER_ERROR;
}
};
void q_strip(char** yytext) {
char* c = *yytext+strlen(*yytext)-1;
if(*c == '\'' || '\"') { /* eliminates quotes from end */
*c='\0';
}
(*yytext)++;
};
void escape_fix(char** yytext) {
int jumped = 0;
char* c = *yytext;
char* b = *yytext;
int len = strlen(c);
while(*c) {
if(*c == '\\') {
jumped++;
c++;
*c = escp_pick(*c);
}
if(jumped) {
*(c-jumped) = *c;
}
c++;
}
b+=len-jumped;
while(*b) {
*b = '\0';
}
};
char escp_pick(char c) {
switch(c) {
case 'a': return '\a';
case 'b': return '\b';
case 'e': return '\e';
case 'f': return '\f';
case 'n': return '\n';
case 'r': return '\r';
case 't': return '\t';
case 'v': return '\v';
case '\\': return '\\';
case '\'': return '\'';
case '\"': return '\"';
case '?': return '\?';
case '0': return '\0';
default: return c;
}
};
int yywrap() { return 1; }