-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathparse.php
More file actions
440 lines (405 loc) · 12.5 KB
/
parse.php
File metadata and controls
440 lines (405 loc) · 12.5 KB
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
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
<?php
ini_set('display_errors', 'stderr');
# cheack if '--help' then print help
if ($argc < 3)
{
if ($argc == 2)
{
if (!strcmp($argv[1], "--help"))
{
echo("\n\nSkript typu filtr načte ze standardního vstupu zdrojový kód v IPPcode23, zkontroluje lexikální a
syntaktickou správnost kódu a vypíše na standardní výstup XML reprezentaci programu.\n\n");
echo("Použití: php8.1 parse.php [--help] < file\n");
echo(" --help Vypíše nápovědu\n");
echo(" file Název vstupného souboru s IPPcode23 kódem\n\n");
echo("Chyby v kódu:\n");
echo(" 21 - chybná nebo chybějící hlavička ve zdrojovém kódu zapsaném v IPPcode23\n");
echo(" 22 - neznámý nebo chybný operační kód ve zdrojovém kódu zapsaném v IPPcode23\n");
echo(" 23 - jiná lexikální nebo syntaktická chyba zdrojového kódu zapsaného v IPPcode23\n\n");
exit(0);
}
else
{
echo("Unknown argument!\n");
exit(10);
}
}
}
else
{
echo("Wrong number of arguments!\n");
exit(10);
}
$ins_order = 1;
$header = false;
# check if header exits
while ($header == false && $line = fgets(STDIN))
{
$cut = strpos($line, '#');
if ($cut !== false)
$line = substr($line, 0, $cut);
$code_line = preg_split('/\s+/', trim($line));
if (!strcmp(trim($code_line[0]), ".IPPcode23"))
{
echo("<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n");
echo("<program language=\"IPPcode23\">\n");
$header = true;
checkNumOfPar($code_line, 1);
}
elseif (substr($code_line[0], 0, 1) != "")
{
echo("Missing or wrong header \".IPPcode23\"!\n");
exit(21);
}
}
if ($header == false)
{
echo("Missing or wrong header \".IPPcode23\"!\n");
exit(21);
}
# starts taking line by line check if the line is in the right format
# removes everything after #, splits line and saves it into $code_line array
# case sorts all instructions depending on the number of arguments they require
while ($line = fgets(STDIN))
{
$cut = strpos($line, '#');
if ($cut !== false)
$line = substr($line, 0, $cut);
$code_line = preg_split('/\s+/', trim($line));
switch(strtoupper($code_line[0]))
{
# OP
case 'CREATEFRAME':
case 'PUSHFRAME':
case 'POPFRAME':
case 'RETURN':
case 'BREAK':
noArg();
break;
# OP <symb>
case 'WRITE':
case 'EXIT':
case 'PUSHS':
case 'DPRINT':
opSymb();
break;
# OP <var>
case 'DEFVAR':
case 'POPS':
opVar();
break;
# OP <label>
case 'LABEL':
case 'JUMP':
case 'CALL':
opLabel();
break;
# OP <var> <symb>
case 'MOVE':
case 'INT2CHAR':
case 'NOT':
case 'STRLEN':
case 'TYPE':
opVarSymb();
break;
# OP <var> <symb1> <symb2>
case 'ADD':
case 'SUB':
case 'MUL':
case 'IDIV':
case 'LT':
case 'GT':
case 'EQ':
case 'AND':
case 'OR':
case 'STRI2INT':
case 'CONCAT':
case 'GETCHAR':
case 'SETCHAR':
opVarSymbSymb();
break;
# OP ⟨label⟩ ⟨symb1⟩ ⟨symb2⟩
case 'JUMPIFEQ':
case 'JUMPIFNEQ':
opLabelSymbSymb();
break;
# OP <var> <type>
case 'READ':
opRead();
break;
default:
if ($code_line[0] != '')
{
echo("Wrong operation code!\n");
exit(22);
}
break;
}
}
echo("</program>\n");
# check for situation: PROCEDURE
function noArg()
{
global $code_line, $ins_order;
echo("\t<instruction order=\"".$ins_order."\" opcode=\"".strtoupper($code_line[0])."\">\n");
$ins_order++;
checkNumOfPar($code_line, 1);
echo("\t</instruction>\n");
}
# check for situation: INSTRUCTION <symb>
function opSymb()
{
global $code_line, $ins_order;
echo("\t<instruction order=\"".$ins_order."\" opcode=\"".strtoupper($code_line[0])."\">\n");
$type = checkSymb($code_line[1]);
if ($type != "none")
{
$var = $code_line[1];
$var = edditVar($type, $var);
echo("\t\t<arg1 type=\"".$type."\">".trim($var)."</arg1>\n");
$ins_order++;
checkNumOfPar($code_line, 2);
echo("\t</instruction>\n");
}
else
{
echo("Wrong or missing <symb> for instruction ".$code_line[0]."!\n");
exit(23);
}
}
# check for situation: INSTRUCTION <var>
function opVar()
{
global $code_line, $ins_order;
echo("\t<instruction order=\"".$ins_order."\" opcode=\"".strtoupper($code_line[0])."\">\n");
if (checkVar($code_line[1]))
{
$var3 = edditVar("var", $code_line[1]);
echo("\t\t<arg1 type=\"var\">".trim($var3)."</arg1>\n");
$ins_order++;
checkNumOfPar($code_line, 2);
echo("\t</instruction>\n");
}
else
{
echo("Wrong or missing <var> for instruction DEFVAR!\n");
exit(23);
}
}
# check for situation: INSTRUCTION <label>
function opLabel()
{
global $code_line, $ins_order;
echo("\t<instruction order=\"".$ins_order."\" opcode=\"".strtoupper($code_line[0])."\">\n");
if (checkLabel($code_line[1]))
{
echo("\t\t<arg1 type=\"label\">".trim($code_line[1])."</arg1>\n");
$ins_order++;
checkNumOfPar($code_line, 2);
echo("\t</instruction>\n");
}
else
{
echo("Wrong or missing <label> for instruction LABEL!\n");
exit(23);
}
}
# check for situation: INSTRUCTION <var> <symb>
function opVarSymb()
{
global $code_line, $ins_order;
echo("\t<instruction order=\"".$ins_order."\" opcode=\"".strtoupper($code_line[0])."\">\n");
if (checkVar($code_line[1]))
{
$var3 = edditVar("var", $code_line[1]);
echo("\t\t<arg1 type=\"var\">".$var3."</arg1>\n");
$type = checkSymb($code_line[2]);
if ($type != "none")
{
$var = $code_line[2];
$var = edditVar($type, $var);
echo("\t\t<arg2 type=\"".$type."\">".$var."</arg2>\n");
$ins_order++;
checkNumOfPar($code_line, 3);
echo("\t</instruction>\n");
}
else
{
echo("Wrong or missing <symb> for instruction MOVE!\n");
exit(23);
}
}
else
{
echo("Wrong or missing <var> for instruction MOVE!\n");
exit(23);
}
}
# check for situation: INSTRUCTION <var> <symb1> <symb2>
function opVarSymbSymb()
{
global $code_line, $ins_order;
echo("\t<instruction order=\"".$ins_order."\" opcode=\"".strtoupper($code_line[0])."\">\n");
if (checkVar($code_line[1]))
{
$var3 = edditVar("var", $code_line[1]);
echo("\t\t<arg1 type=\"var\">".$var3."</arg1>\n");
$type = checkSymb($code_line[2]);
$type2 = checkSymb($code_line[3]);
if ($type != "none" && $type2 != "none")
{
$var = $code_line[2];
$var2 = $code_line[3];
$var = edditVar($type, $var);
$var2 = edditVar($type2, $var2);
echo("\t\t<arg2 type=\"".$type."\">".$var."</arg2>\n");
echo("\t\t<arg3 type=\"".$type2."\">".$var2."</arg3>\n");
$ins_order++;
checkNumOfPar($code_line, 4);
echo("\t</instruction>\n");
}
else
{
echo("Wrong or missing <symb> for instruction ".$code_line[0]."!\n");
exit(23);
}
}
else
{
echo("Wrong or missing <var> for instruction ".$code_line[0]."!\n");
exit(23);
}
}
# check for situation: INSTRUCTION <label> <symb1> <symb2>
function opLabelSymbSymb()
{
global $code_line, $ins_order;
echo("\t<instruction order=\"".$ins_order."\" opcode=\"".strtoupper($code_line[0])."\">\n");
if (checkLabel($code_line[1]))
{
echo("\t\t<arg1 type=\"label\">".$code_line[1]."</arg1>\n");
$type = checkSymb($code_line[2]);
$type2 = checkSymb($code_line[3]);
if ($type != "none" && $type2 != "none")
{
$var = $code_line[2];
$var2 = $code_line[3];
$var = edditVar($type, $var);
$var2 = edditVar($type2, $var2);
echo("\t\t<arg2 type=\"".$type."\">".$var."</arg2>\n");
echo("\t\t<arg3 type=\"".$type2."\">".$var2."</arg3>\n");
$ins_order++;
checkNumOfPar($code_line, 4);
echo("\t</instruction>\n");
}
else
{
echo("Wrong or missing <symb> for instruction ".$code_line[0]."!\n");
exit(23);
}
}
else
{
echo("Wrong or missing <label> for instruction ".$code_line[0]."!\n");
exit(23);
}
}
# check for situation: INSTRUCTION <var> <type>
function opRead()
{
global $code_line, $ins_order;
echo("\t<instruction order=\"".$ins_order."\" opcode=\"".strtoupper($code_line[0])."\">\n");
if (checkVar($code_line[1]))
{
$var = edditVar("var", $code_line[1]);
echo("\t\t<arg1 type=\"var\">".$var."</arg1>\n");
if (preg_match("/^[a-zA-Z][a-zA-Z0-9]*$/", $code_line[2]))
{
echo("\t\t<arg2 type=\"type\">".$code_line[2]."</arg2>\n");
$ins_order++;
checkNumOfPar($code_line, 3);
echo("\t</instruction>\n");
}
else
{
echo("Wrong or missing <type> for instruction READ!\n");
exit(23);
}
}
else
{
echo("Wrong or missing <var> for instruction READ!\n");
exit(23);
}
}
# This function replace '&', '<' and '>' with '&', '<', '>' in string
# $type - var/string, $var - value to eddit
# @return string
function edditVar($type, $var)
{
if ($type != "var") $var = substr($var, strpos($var, '@') + 1, strlen($var) - 1);
if ($type == "string" || $type == "var")
{
$var = str_replace("&", "&", $var);
$var = str_replace("<", "<", $var);
$var = str_replace(">", ">", $var);
}
return $var;
}
# check if the number of param on the line is right
function checkNumOfPar($param, $n)
{
if (sizeof($param) > $n)
if ($param[$n] != "")
{
echo("Wrong number of param!\n");
exit(23);
}
}
# check Regex of <symb>
# int, bool, nil, string or var
# $var - value to check
# # @return string - type of var
function checkSymb($var)
{
$correct = false;
$type = "none";
if (preg_match("/^int@[+-]?[1-9][0-9]*(_[0-9]+)*$/", $var)) $correct = true;
elseif (preg_match("/^int@0/", $var)) $correct = true;
elseif (preg_match("/^int@0[xX][0-9a-fA-F]+(_[0-9a-fA-F]+)*$/", $var)) $correct = true;
elseif (preg_match("/^int@0[oO]?[0-7]+(_[0-7]+)*$/", $var)) $correct = true;
elseif (preg_match("/^int@0[bB][01]+(_[01]+)*$/", $var)) $correct = true;
elseif (preg_match("/^bool@(true|false)$/", $var)) $correct = true;
elseif (preg_match("/^nil@nil$/", $var)) $correct = true;
elseif (preg_match("/^string@*/", $var))
{
preg_match_all("/\\\[0-9]{3}/", $var, $matches1);
preg_match_all("/\\\[0-9]*/", $var, $matches2);
if (count($matches1[0]) == count($matches2[0]))
$correct = true;
}
if ($correct)
{
$type = substr($var, 0, strpos($var, '@'));
}
elseif (preg_match("/^(LF|GF|TF)@[a-zA-Z_$\-&@%*!?][a-zA-Z_$\-&@%*!?0-9]*$/", $var))
{
$correct = true;
$type = "var";
}
return $type;
}
# check Regex of <var>
# $var - value to check
# @return bool
function checkVar($var)
{
return preg_match("/(LF|GF|TF)@[a-zA-Z_$-&%*!?][a-zA-Z_$\-&%*!?0-9]*/", $var);
}
# check if label's Regex is right format
# $label - label to check
# @return bool
function checkLabel($label)
{
return preg_match("/^[a-zA-Z_$&\-%*!?][a-zA-Z_$\-&%*!?0-9]*$/", $label);
}