-
Notifications
You must be signed in to change notification settings - Fork 0
/
regex-compiler.c
401 lines (395 loc) · 8.74 KB
/
regex-compiler.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
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
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
#include<stdio.h>
#include<stdlib.h>
#include"regex.h"
int lex(char old_string[], int new_string[])
{
int index = 0;
int new_index = 0;
int length = sizeof(old_string) / sizeof(char);
int escaped = 0;
while(index < length)
{
switch(old_string[index])
{
case '\\':
if(escaped)
{
new_string[new_index] = '\\';
escaped = 0;
}
else
{
escaped = 1;
new_index--; //So that new index is not incremented
}
break;
case '*':
if(escaped)
{
new_string[new_index] = '*';
escaped = 0;
}
else
new_string[new_index] = STAR;
break;
case '+':
if(escaped)
{
new_string[new_index] = '+';
escaped = 0;
}
else
new_string[new_index] = PLUS;
break;
case '?':
if(escaped)
{
new_string[new_index] = '?';
escaped = 0;
}
else
new_string[new_index] = QUES;
break;
case '|':
if(escaped)
{
new_string[new_index] = '|';
escaped = 0;
}
else
new_string[new_index] = PIPE;
break;
case '(':
if(escaped)
{
new_string[new_index] = '(';
escaped = 0;
}
else
new_string[new_index] = LEFT_PAREN;
break;
case ')':
if(escaped)
{
new_string[new_index] = ')';
escaped = 0;
}
else
new_string[new_index] = RIGHT_PAREN;
break;
case '\0':
goto DONE;
default:
new_string[new_index] = old_string[index];
break;
}
if(escaped && old_string[index] != '\\')
return 0; //ERROR: Something was illeagally escaped
index++;
new_index++;
}
DONE:
new_string[new_index] = EMPTY;
return 1;
}
int parse(int **string, Node_t *node) //returns 1 on success
{
NodeType_t type = node->type;
if(**string == EMPTY)
{
//This automatically closes the leaves when all input is consumed
node->type = EPSILON;
return 1;
}
switch(type)
{
case START:
{
//Nothing can go wrong here
Node_t *left = malloc(sizeof(Node_t));
left->type = JUX;
node->left = left;
if(!parse(string, left))
{
return 0;
}
Node_t *right = malloc(sizeof(Node_t));
right->type = START_;
node->right = right;
if(!parse(string, right))
{
return 0;
}
return 1;
}
case START_:
{
if(**string == PIPE)
{
//branches for a pipe
(*string)++; //Consume the pipe
Node_t *left = malloc(sizeof(Node_t));
left->type = JUX;
node->left = left;
if(!parse(string, left))
{
return 0;
}
Node_t *right = malloc(sizeof(Node_t));
right->type = START_;
node->right = right;
if(!parse(string, right))
{
return 0;
}
return 1;
}
node->type = EPSILON; //if no pipe was found
return;
}
case JUX:
{
Node_t *left = malloc(sizeof(Node_t));
left->type = QUANT;
node->left = left;
if(!parse(string, left))
{
return 0;
}
Node_t *right = malloc(sizeof(Node_t));
right->type = JUX_;
node->right = right;
if(!parse(string, right))
{
return 0;
}
return 1;
}
case JUX_:
{
if(**string < REG_BOUND || **string == LEFT_PAREN) //We cannot find a RIGHT_PAREN here
{
//do not consume the input since we have only determined
//that it is either a character or a group
Node_t *left = malloc(sizeof(Node_t));
left->type = QUANT;
node->left = left;
if(!parse(string, left))
{
return 0;
}
Node_t *right = malloc(sizeof(Node_t));
right->type = JUX_;
node->right = right;
if(!parse(string, right))
{
return 0;
}
return 1;
}
node->type = EPSILON; //No more juxtoposition
return 1;
}
case QUANT:
{
Node_t *left = malloc(sizeof(Node_t));
left->type = LEAF;
node->left = left;
if(!parse(string, left))
{
return 0;
}
if(**string == STAR)
{
node->character = STAR;
(*string)++; //Consume the STAR
} else if(**string == PLUS) {
node->character = PLUS;
(*string)++; //Consume the PLUS
} else if(**string == QUES) {
node->character = QUES;
(*string)++; //Consume the QUES
} else {
node->character = EMPTY;
}
return 1;
}
case LEAF:
{
if(**string == LEFT_PAREN)
{
(*string)++; //Consume the left paren
Node_t *left = malloc(sizeof(Node_t));
left->type = START;
node->left = left;
node->right = NULL;
if(!parse(string, left))
{
return 0;
}
if(**string == RIGHT_PAREN)
{
(*string)++; //Consume the right paren
} else {
return 0; //ERROR: No right paren was found
}
return 1;
} else if(**string < REG_BOUND) {
node->character = **string;
node->left = NULL;
node->right = NULL;
(*string)++; //Consumes a regular character
return 1;
} else {
//ERROR: Unrecognized character
//This is where most errors are expected to be caught
return 0;
}
}
}
}
InstructList_t *generate(Node_t *node, InstructList_t *list)
{
switch(node->type)
{
case START:
list = generate(node->left, list);
return generate(node->right, list);
case START_: //We know this is an or otherwise it would be an EPSILON
{
InstructList_t *save = malloc(sizeof(InstructList_t));
save->index = list->index + 1; //XXX: I SHOULD REALLY LOOK THIS OVER AS I WAS VERY SLEEPY WHEN I WROTE IT!!!!!!!!!!!!!!!!!
save->instruct.opcode = SPLIT;
save->instruct.left = save->index + 1;
list->next = save;
list = generate(node->left, save);
save->instruct.right = list->index + 1;
return generate(node->right, list);
}
case JUX:
list = generate(node->left, list);
return generate(node->right, list);
case JUX_:
list = generate(node->left, list);
return generate(node->right, list);
case QUANT:
{
switch(node->character)
{
case STAR:
{
InstructList_t *save = malloc(sizeof(InstructList_t));
save->index = list->index + 1;
save->instruct.opcode = SPLIT;
save->instruct.left = save->index + 1;
list->next = save;
list = generate(node->left, save);
list->next = malloc(sizeof(InstructList_t));
list->next->index = list->index + 1;
list = list->next;
list->instruct.opcode = JMP;
list->instruct.left = save->index;
save->instruct.right = list->index + 1;
return list;
}
case PLUS:
{
InstructList_t *save = list;
list = generate(node->left, list);
list->next = malloc(sizeof(InstructList_t));
list->next->index = list->index + 1;
list = list->next;
list->instruct.opcode = SPLIT;
list->instruct.left = save->index + 1;
list->instruct.right = list->index + 1;
return list;
}
case QUES:
{
InstructList_t *save = malloc(sizeof(InstructList_t));
save->index = list->index + 1;
save->instruct.opcode = SPLIT;
save->instruct.left = save->index + 1;
list->next = save;
list = generate(node->left, save);
save->instruct.right = list->index + 1;
return list;
}
case EMPTY:
return generate(node->left, list);
}
}
case LEAF:
{
if(node->left == NULL)
{
list->next = malloc(sizeof(InstructList_t));
list->next->index = list->index + 1;
list = list->next;
list->instruct.opcode = CHAR;
list->instruct.character = (char) node->character;
return list;
} else {
return generate(node->left, list);
}
}
case EPSILON:
return list;
}
}
void free_tree(Node_t *node)
{
if(node->left != NULL)
{
free_tree(node->left);
}
if(node->right != NULL)
{
free_tree(node->right);
}
free(node);
}
InstructArray_t *compile(char regex[])
{
int length = sizeof(regex) / sizeof(char);
length++;
int *lexed_string = (int *) malloc(sizeof(int) * length);
if(!lex(regex, lexed_string))
{
printf("Lexing failed...\n");
return NULL;
}
Node_t *root = malloc(sizeof(Node_t));
root->type = START;
int *free_lexed_string = lexed_string;
if(!parse(&lexed_string, root))
{
printf("Parsing failed...\n");
return NULL;
}
free(free_lexed_string);
InstructList_t *instruct_list_head = malloc(sizeof(InstructList_t));
instruct_list_head->index = 0;
instruct_list_head->instruct.opcode = BEGIN;
InstructList_t *instruct_list_tail = generate(root, instruct_list_head);
free_tree(root);
instruct_list_tail->next = malloc(sizeof(InstructList_t));
instruct_list_tail->next->index = instruct_list_tail->index + 1;
instruct_list_tail = instruct_list_tail->next;
instruct_list_tail->instruct.opcode = MATCH;
length = instruct_list_tail->index + 1;
Instruct_t *array = malloc(sizeof(Instruct_t) * length);
int index = 0;
while(index < length)
{
array[index] = instruct_list_head->instruct;
InstructList_t *to_delete = instruct_list_head;
instruct_list_head = instruct_list_head->next;
free(to_delete);
index++;
}
InstructArray_t *ret_val = malloc(sizeof(InstructArray_t));
ret_val->array = array;
ret_val->length = length;
return ret_val;
}