-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPA3.cpp
More file actions
681 lines (575 loc) · 11.7 KB
/
PA3.cpp
File metadata and controls
681 lines (575 loc) · 11.7 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
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
// Course: CS3820-01 Programming Languages
// Name: Sajan, Kefin
// Assignment: Programming Assignment 3
// Date assigned: 12/13/18
// Date due: 12/20/18
// Date handed in: 12/20/18
// Remark: This is a program created to simulate a recursive descent parser
#include <iostream>
#include <stdio.h>
#include <ctype.h>
#include <string.h>
using namespace std;
//Buffer definition//
#define BUFFERSIZE 80
char tokenBuffer[BUFFERSIZE];
bool needToken = true;
enum tokenType { AND, BEGIN, END, FOR, IF, NOT, OR, READ, WHILE, WRITE, COMMENT, ID, REAL, STRING, PLUS, MULTIPLICATION, ASSIGNMENT, EQUAL, GREATERTHAN, LESSTHAN, LEFTP, COMMA, RIGHTP, SEMICOLON, INVALID, DIVISION, INTEGER };
//Scanner Functions Headers//
tokenType lexical_error(void);
// Return Invaild if the input is not in the system
void skipSpaces();
// Skips over space characters in the input stream.
void clearBuffer(void);
// Sets all the elements of the buffer tokenBuffer[] to the null character.
tokenType getId(void);
// Looks for identifiers.
tokenType getComment(void);
// Looks for comment, or division char depending on the next character.
tokenType getReal(void);
// Looks for a real const, or integer.
tokenType getStrings(void);
// Looks for a string const
void displayToken(tokenType code);
// Get an argument as a token code, then displays the appropriate message, also prints the contents of the buffer.
//New function implemented for Assignment 3//
tokenType getnexttoken(void);
// Calls the function int scanner (void) from the scanner assignment
// to get the code of the next token from the input source file
tokenType peektoken(void);
// Calls the function getnexttoken(void) and then returns the code
// returned by getnexttoken(void)
tokenType readtoken(void);
// Calls the function getnexttoken(void), sets the global variable
// needToken to true and returns the code returned by getnexttoken(void)
void match(tokenType token);
// Receives as argument a token code (to be matched with the next input token)
void syntaxerror(tokenType token);
// Receives as argument a token code and then prints an appropriate
// error message and then skip to the next line.This also make sures
// that errors in your input source program are only missing tokens.
//Parcer Function Headers//
void program(void);
void stmntlist(void);
void stmnt(void);
//Scanner Functions//
tokenType lexical_error(void)
// Return Invaild if the input is not in the system
{
tokenType userInput;
int num = cin.get();
tokenBuffer[0] = num;
return INVALID;
}
void skipSpaces()
// Skips over space characters in the input stream.
{
int usrInp;
usrInp = cin.get();
while (isspace(usrInp))
usrInp = cin.get();
cin.putback(usrInp);
}
void clear_buf(void)
{
for (int i = 0; i < BUFFERSIZE; i++)
tokenBuffer[i] = '\0';
}
tokenType getId(void)
// Looks for identifiers.
{
static char reservedWords[][10] =
{ "AND", "BEGIN", "END", "FOR", "IF", "NOT", "OR", "READ", "WHILE", "WRITE" };
tokenType userInput;
int usrInp;
int i = 0;
usrInp = cin.get();
if (isalpha(usrInp))
{
tokenBuffer[i++] = usrInp;
usrInp = cin.get();
while (isalnum(usrInp))
{
tokenBuffer[i++] = usrInp;
usrInp = cin.get();
}
cin.putback(usrInp);
int first = 0, mid, last = 9;
bool ntFd = true;
while (first <= last && ntFd)
{
mid = (first + last) / 2;
int answer = strcmp(tokenBuffer, reservedWords[mid]);
if (answer == 0)
ntFd = false;
else if (answer > 0)
first = mid + 1;
else
last = mid - 1;
}
if (ntFd)
userInput = ID;
else
userInput = (tokenType)mid;
}
else
{
cin.putback(usrInp);
return INVALID;
}
return userInput;
}
tokenType getComment(void)
// Finds comment, or divide char depending on the next character.
{
tokenType userInput;
int usrInp;
int i = 0;
usrInp = cin.get();
if (cin.peek() == '*' && usrInp == '/')
{
tokenBuffer[i++] = usrInp;
usrInp = cin.get();
//tokenBuffer[i++] = usrInp;
usrInp = cin.get();
while (!(usrInp == '*' && cin.peek() == '/') && cin.peek() != EOF)
{
tokenBuffer[i++] = usrInp;
usrInp = cin.get();
//Buffer Increase
}
if (cin.peek() == EOF)
userInput = INVALID;
else
{
tokenBuffer[i++] = usrInp;
usrInp = cin.get();
tokenBuffer[i++] = usrInp;
return COMMENT;
}
}
else
{
cin.putback(usrInp);
return INVALID;
}
return userInput;
}
tokenType getReal(void)
// Looks for a real constant, or integer.
{
tokenType userInput;
int usrInp;
int i = 0;
if (isdigit(usrInp))
{
tokenBuffer[i++] = usrInp;
usrInp = cin.get();
while (isdigit(usrInp))
{
tokenBuffer[i++] = usrInp;
usrInp = cin.get();
//Buffer Increase
}
if (usrInp == '.')
{
tokenBuffer[i++] = usrInp;
usrInp = cin.get();
if (isdigit(usrInp))
{
tokenBuffer[i++] = usrInp;
usrInp = cin.get();
while (isdigit(usrInp))
{
tokenBuffer[i++] = usrInp;
usrInp = cin.get();
}
cin.putback(usrInp);
return REAL;
}
else
{
cin.putback(usrInp);
userInput = INVALID;
}
}
else
{
cin.putback(usrInp);
userInput = INVALID;
}
}
else
{
cin.putback(usrInp);
return INVALID;
}
return userInput;
}
tokenType getStrings(void)
// Looks for a string constant.
{
tokenType userInput;
int usrInp;
int i = 0;
usrInp = cin.get();
if (usrInp == '\"')
{
tokenBuffer[i++] = usrInp;
usrInp = cin.get();
while (!(usrInp == '\"') && usrInp != EOF)
{
tokenBuffer[i++] = usrInp;
usrInp = cin.get();
}
if (usrInp == EOF)
userInput = INVALID;
else
{
tokenBuffer[i++] = usrInp;
userInput = STRING;
}
}
else
{
cin.putback(usrInp);
return INVALID;
}
return userInput;
}
tokenType getPlus(void)
{
int usrInp;
int i = 0;
usrInp = cin.get();
if (usrInp == '+')
{
tokenBuffer[i++] = usrInp;
return PLUS;
}
else
{
cin.putback(usrInp);
return INVALID;
}
}
tokenType getMul(void)
{
int usrInp;
int i = 0;
usrInp = cin.get();
if (usrInp == '*')
{
tokenBuffer[i++] = usrInp;
return MULTIPLICATION;
}
else
{
cin.putback(usrInp);
return INVALID;
}
}
tokenType getAssign(void)
{
int usrInp;
int usrInp2;
int i = 0;
usrInp = cin.get();
usrInp2 = cin.peek();
if (usrInp == ':' && usrInp2 == '=')
{
tokenBuffer[i++] = usrInp;
usrInp = cin.get();
tokenBuffer[i] = usrInp;
return ASSIGNMENT;
}
else
{
cin.putback(usrInp);
return INVALID;
}
}
tokenType getEqual(void)
{
tokenType userInput;
int usrInp;
int i = 0;
usrInp = cin.get();
if (usrInp == '=')
{
tokenBuffer[i++] = usrInp;
userInput= EQUAL;
}
else
{
cin.putback(usrInp);
userInput= INVALID;
}
return userInput;
}
tokenType getGreater(void)
{
tokenType userInput;
int usrInp;
int i = 0;
usrInp = cin.get();
if (usrInp == '>')
{
tokenBuffer[i++] = usrInp;
return GREATERTHAN;
}
else
{
cin.putback(usrInp);
return INVALID;
}
}
tokenType getLess(void)
{
int usrInp;
int i = 0;
usrInp = cin.get();
if (usrInp == '<')
{
tokenBuffer[i++] = usrInp;
return LESSTHAN;
}
else
{
cin.putback(usrInp);
return INVALID;
}
}
tokenType getLP(void)
{
tokenType userInput;
int usrInp;
int i = 0;
usrInp = cin.get();
if (usrInp == '(')
{
tokenBuffer[i++] = usrInp;
return LEFTP;
}
else
{
cin.putback(usrInp);
return INVALID;
}
}
tokenType getRP(void)
{
tokenType userInput;
int usrInp;
int i = 0;
usrInp = cin.get();
if (usrInp == ')')
{
tokenBuffer[i++] = usrInp;
return RIGHTP;
}
else
{
cin.putback(usrInp);
return INVALID;
}
}
tokenType getComma(void)
{
int usrInp;
int i = 0;
usrInp = cin.get();
if (usrInp == ',')
{
tokenBuffer[i++] = usrInp;
return COMMA;
}
else
{
cin.putback(usrInp);
return INVALID;
}
}
tokenType getSColon(void)
{
int usrInp;
int i = 0;
usrInp = cin.get();
if (usrInp == ';')
{
tokenBuffer[i++] = ';';
return SEMICOLON;
}
else
{
cin.putback(usrInp);
return INVALID;
}
}
tokenType scanner(void)
{
skipSpaces();
int usrInp = cin.get();
if(usrInp == EOF)
return(tokenType)EOF;
if (usrInp == '/')
{
cin.putback(usrInp);
return getComment();
}
if (isalpha(usrInp))
{
cin.putback(usrInp);
return getId();
}
if (isdigit(usrInp))
{
cin.putback(usrInp);
return getReal();
}
if (usrInp == '\"')
{
cin.putback(usrInp);
return getStrings();
}
if (usrInp == '+')
{
cin.putback(usrInp);
return getPlus();
}
if (usrInp == '*')
{
cin.putback(usrInp);
return getMul();
}
if (usrInp == '=')
{
cin.putback(usrInp);
return getEqual();
}
if (usrInp == ':')
{
cin.putback(usrInp);
return getAssign();
}
if(usrInp == '>')
{
cin.putback(usrInp);
return getGreater();
}
if (usrInp == '<')
{
cin.putback(usrInp);
return getLess();
}
if (usrInp == '(')
{
cin.putback(usrInp);
return getLP();
}
if (usrInp == ')')
{
cin.putback(usrInp);
return getRP();
}
if (usrInp == ',')
{
cin.putback(usrInp);
return getComma();
}
if (usrInp == ';')
{
cin.putback(usrInp);
return getSColon();
}
// Can be only a lexical error //
cin.putback(usrInp);
return lexical_error();
}
void display_token(tokenType code)
// Get an argument as a token code, then displays the appropriate message, also prints the contents of the buffer.
{
const char *MESS[] = { "and", "begin", "end", "for", "if", "not", "or", "read", "while", "write", "comment", "identifier", "real constant", "string", "plus", "multiplication", "assignment", "equal", "greater than", "less than", "left parenthesis", "comma", "right parenthesis", "semicolon", "invalid", "division", "integer" };
cout << " \n\t\t" << MESS[(int)code] << "\t" << tokenBuffer;
}
//New function implemented for Assignment 3
tokenType getnexttoken(void)
{
tokenType nexttoken;
if (needToken)
{
nexttoken = scanner();
needToken = false;
}
return nexttoken;
}
tokenType peektoken(void)
{
return getnexttoken();
}
tokenType readtoken(void)
{
tokenType tok = getnexttoken();
needToken = true;
return tok;
}
void syntaxerror(tokenType token)
{
static char message[][20] = { "AND", "BEGIN", "END", "FOR", "IF", "NOT","OR", "READ", "WHILE", "WRITE", "COMMENT", "IDENTIFIER", "REAL CONSTANT","STRING", "PLUS", "MULTIPLICATION", "ASSIGNMENT", "EQUAL", "GREATER THAN",
"LESS THAN", "LEFT PARENTHESIS", "COMMA", "RIGHT PARENTHESIS", "SEMICOLON","INVALID", "DIVISION", "INTEGER"
};
cout<< " token \"" << message[(int)token] << "\"\t"<< " # "
<< (int)token << endl;
}
void match(tokenType token)
{
int tok = readtoken();
if (token == tok)
{ if (tok != SEMICOLON)
{
cout << tokenBuffer << endl;
clear_buf();
}
}
else
syntaxerror(token);
}
//End of Scanner Functions//
//Parser Functions//
void program(void)
{
match(BEGIN);
stmntlist();
match(END);
}
void stmntlist(void)
{
tokenType nexttoken = peektoken();
if(nexttoken){
stmnt();
match(SEMICOLON);
stmntlist();
}
else
syntaxerror(nexttoken);
}
void stmnt(void)
{
tokenType nexttoken = peektoken();
if (nexttoken)
{
match(peektoken());
match(ASSIGNMENT);
stmntlist();
match(SEMICOLON);
}
else
syntaxerror(nexttoken);
}
//End of Parser Functions//
//Main Function//
int main()
{
program();
return 0;
}