-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgetSource.c
548 lines (424 loc) · 10.1 KB
/
getSource.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
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
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include "getSource.h"
#define MAXLINE 120
#define MAXERROR 30
static FILE *fpi;
static FILE *fptex;//LateX処理用
static char line[MAXLINE]; //1行分の入力バッファ
static int lineIndex; //上のバッファのインデックス
static char ch; //nextChar()で読み取った1文字を格納する
static Token cToken;//LateX処理用
static KindT idKind;//LateX処理用
static int spaces; //LateX処理用
static int CR; //LateX処理用
static int printed; //LateX処理用
static int errorNo = 0;
static char nextChar();
static void printSpaces();
static void printcToken();//LateX処理用
struct keyWd { //予約語
char *word;
KeyId keyId;
};
static struct keyWd KeyWdT[] = { //予約語、演算子、区切り記号の字句とそれに対応するトークン名
{"begin", Begin},
{"end", End},
{"if", If},
{"then", Then},
{"while", While},
{"do", Do},
{"return", Ret},
{"function", Func},
{"var", Var},
{"const", Const},
{"odd", Odd},
{"write", Write},
{"writeln",WriteLn},
{"$dummy1",end_of_KeyWd},
{"+", Plus},
{"-", Minus},
{"*", Mult},
{"/", Div},
{"(", Lparen},
{")", Rparen},
{"=", Equal},
{"<", Lss},
{">", Gtr},
{"<>", NotEq},
{"<=", LssEq},
{">=", GtrEq},
{",", Comma},
{".", Period},
{";", Semicolon},
{":=", Assign},
{"$dummy2",end_of_KeySym}
};
int isKeyWd(KeyId k)
{
return (k < end_of_KeyWd);
}
int isKeySym(KeyId k)
{
if (k < end_of_KeyWd) return 0;
return (k < end_of_KeySym);
}
static KeyId charClassT[256];
static void initCharClassT()
{
int i;
//とりあえず、全ての配列にotherを代入
for(i=0; i<256; i++)
charClassT[i] = others;
//ASCⅡコードに基づいた添字を使う
for(i='0'; i<='9';i++)
charClassT[i] = digit;
for(i='A'; i<='Z'; i++)
charClassT[i] = letter;
for(i='a'; i<='z'; i++)
charClassT[i] = letter;
charClassT['+'] = Plus;
charClassT['-'] = Minus;
charClassT['*'] = Mult;
charClassT['/'] = Div;
charClassT['('] = Lparen;
charClassT[')'] = Rparen;
charClassT['='] = Equal;
charClassT['<'] = Lss;
charClassT['>'] = Gtr;
charClassT[','] = Comma;
charClassT['.'] = Period;
charClassT[';'] = Semicolon;
charClassT[':'] = colon;
}
int openSource(char fileName[])
{
if((fpi = fopen(fileName, "r")) == NULL){
printf("can't open %s\n", fileName);
return 0;
}
/*
char fileNameO[30];
strcpy(fileNameO,fileName);
strcat(fileNameO,".tex");
if((fptex = fopen(fileNameO, "w")) == NULL){
printf("can't open %s\n", fileNameO);
return 0;
}
*/
printf("open\n");
return 1;
}
void closeSource()
{
fclose(fpi);
//fclose(fptex);
printf("close\n");
}
void initSource()
{
lineIndex = -1;
ch = '\n';
printed = 1; //LateX処理用
initCharClassT();
/*
fprintf(fptex,"\\documentstyle[12pt]{article}\n");
fprintf(fptex,"\\begin{document}\n");
fprintf(fptex,"\\fboxsep=0pt\n");
fprintf(fptex,"\\def\\insert#1{$\\fbox{#1}$}\n");
fprintf(fptex,"\\def\\delete#1{$\\fboxrule=.5mm\\fbox{#1}$}\n");
fprintf(fptex,"\\rm\n");
*/
}
void errorNoCheck()
{
if (errorNo++ > MAXERROR){
//fprintf(fptex, "too many errors\n</PRE>\n</BODY>\n</HTML>\n");
//fprintf(fptex, "too many errors\n\\end{document}\n");
printf("abort compilation\n");
exit (1);
}
}
void errorType(char *m)
{
printSpaces();
//fprintf(fptex, "\\(\\stackrel{\\mbox{\\scriptsize %s}}{\\mbox{", m);
printcToken();
//fprintf(fptex, "}}\\)");
errorNoCheck();
}
void errorInsert(KeyId k)
{
if (k < end_of_KeyWd){
//fprintf(fptex, "\\ \\insert{{\\bf %s}}", KeyWdT[k].word);
}else{
//fprintf(fptex, "\\ \\insert{$%s$}", KeyWdT[k].word);
}
errorNoCheck();
}
void errorMissingId()
{
//fprintf(fptex, "\\insert{Id}");
errorNoCheck();
}
void errorMissingOp()
{
//fprintf(fptex, "\\insert{$\\otimes$}");
errorNoCheck();
}
void errorDelete()
{
int i=(int)cToken.kind;
printSpaces();
printed = 1;//LateX処理
if (i < end_of_KeyWd){
//fprintf(fptex, "\\delete{{\\bf %s}}", KeyWdT[i].word);
}else if (i < end_of_KeySym){
//fprintf(fptex, "\\delete{$%s$}", KeyWdT[i].word);
}else if (i==(int)Id){
//fprintf(fptex, "\\delete{%s}", cToken.u.id);
}else if (i==(int)Num){
//fprintf(fptex, "\\delete{%d}", cToken.u.value);
}
}
void errorMessage(char *m)
{
//fprintf(fptex, "$^{%s}$", m);
errorNoCheck();
}
void errorF(char *m)
{
errorMessage(m);
//fprintf(fptex, "fatal errors\n\\end{document}\n");
if (errorNo) printf("total %d errors\n", errorNo);
printf("abort compilation\n");
exit (1);
}
char nextChar()
{ //最初の読み込み
if(lineIndex == -1){
//1行単位で読み込む
if(fgets(line, MAXLINE,fpi) != NULL){
lineIndex = 0;
}else{
errorF("end of file\n");
exit(1);
}
}
//取得行から1文字とりだし、インデックスを次に進める
char ch = line[lineIndex++];
//行末にきたら
if((ch == '\n') || (ch =='\r')){
//インデックスを-1に戻す
lineIndex = -1;
return '\n';
}
return ch;
}
Token nextToken()
{
int i = 0; //字句の文字数カウントに使う
int num; //字句が定数値の場合に使用する
KeyId cc; //字句パターンに含まれる文字(整数値で表現)を格納する
Token temp; //戻り値として生成するトークン
char ident[MAXNAME]; //字句入力用のバッファ
memset(ident, '\0', MAXNAME); //identを\0でうめる 末尾にNULLをつけない
printcToken();
spaces = 0; //空白カウントに使う
CR = 0; //改行カウントに使う
//次のトークンまでの空白や改行をカウント
while(1){
if(ch == ' ' ){
spaces++;
printf(" ");//出力確認用
}else if(ch == '\t'){
spaces+= 4;
printf(" ");//出力確認用
//nextCharを初めて呼んだ場合(initSourceで\nに初期化されているから) or nextCharで行末に達した場合
}else if(ch == '\n'){
printf("\n");//出力確認用
spaces = 0;
CR++;
//空白でも改行でもない場合はループを抜ける
}else{
break;
}
ch = nextChar();
}
//字句パターンを調べる
switch (cc = charClassT[ch]){
//最初の文字がletter(英字)
case letter:
do{
if(i < MAXNAME){
ident[i] = ch;
i++;
ch = nextChar();
}
}while( charClassT[ch] == letter || charClassT[ch] == digit );
//字句の最大長を超えていたらエラー
if(i >= MAXNAME){
errorMessage("too long");
i = MAXNAME - 1;
}
//ループを出たときの最後の文字は、この字句のパターン外なので、ヌル文字でつぶす(chには残っている)
ident[i] = '\0';
//パターンに一致した字句が予約語に含まれていないか調べる
for(i=0; i<end_of_KeyWd; i++){
//字句が予約語に含まれていたら
if(strcmp(ident, KeyWdT[i].word) == 0){
//その字句に対応するトークン名はその予約語となる
temp.kind = KeyWdT[i].keyId;
strcpy(temp.u.id, KeyWdT[i].word);//出力確認用
cToken = temp;//LateX処理用
printed = 0; //LateX処理用
printf("%s", temp.u.id);//出力確認用
return temp;
}
}
//予約語に含まれていないとき、その字句に対応するトークン名は識別子となる
temp.kind = Id;
strcpy(temp.u.id , ident);
break;
//最初の文字がdigit(数字)
case digit:
num = 0;
do{
//次の文字が数字1だった場合に備えて、数字の繰り上げ処理を行う
num = 10*num + (ch-'0');
i++;
ch = nextChar();
}while(charClassT[ch] == digit);
//字句の最大長を超えていたらエラー
if(i >= MAXNAME){
errorMessage("too long");
}
//字句に対応するトークン名は定数値となる
temp.kind = Num;
temp.u.value = num;
break;
//最初の文字がcolon(:)
case colon:
if( (ch = nextChar()) == '='){
//字句に対応するトークン名はAssignとなる
temp.kind = Assign;
strcpy(temp.u.id, ":=");//出力確認用
ch = nextChar();
break;
}else{
//字句に対応するトークン名はnulとなる
temp.kind = nul;
char str[2] ={':', ch};
strcpy(temp.u.id, str);//出力確認用
break;
}
//最初の文字がLss(<)
case Lss:
if( (ch = nextChar()) == '='){
//字句に対応するトークン名はLssEqとなる
temp.kind = LssEq;
strcpy(temp.u.id, "<=");//出力確認用
ch = nextChar();
break;
}else if(ch == '>'){
//字句に対応するトークン名はNotEqとなる
temp.kind = NotEq;
strcpy(temp.u.id, "<>");//出力確認用
ch = nextChar();
break;
}else{
//字句に対応するトークン名はLssとなる
temp.kind = Lss;
strcpy(temp.u.id, "<");//出力確認用
break;
}
//最初の文字がGtr(>)
case Gtr:
if((ch = nextChar()) == '=' ){
//字句に対応するトークン名はGtrEqとなる
temp.kind = GtrEq;
strcpy(temp.u.id, ">=");//出力確認用
ch = nextChar();
break;
}else{
//字句に対応するトークン名はGtrとなる
temp.kind = Gtr;
strcpy(temp.u.id, ">");//出力確認用
break;
}
default:
temp.kind = cc;
char * str = &ch;
strcpy(temp.u.id, str);//出力確認用
ch = nextChar();
break;
}
cToken =temp;//LateX処理用
printed = 0; //LateX処理用
if(temp.kind == Num){
printf("%d", temp.u.value);
}else{
printf("%s", temp.u.id);
}
return temp;
}
Token checkGet(Token t, KeyId k)
{
//[const] [ident] [=]の場合はなにもせずに次のトークンを取得する
if(t.kind == k) return nextToken();
//[const] [ident] [(予約語) or (演算子、区切り記号)]の場合は読み飛ばして、次のトークンを取得する
if ((isKeyWd(t.kind) && isKeyWd(k)) || (isKeySym(t.kind) && isKeySym(k))){
errorDelete(); //LateX処理
errorInsert(k);//LateX処理
return nextToken();
}
errorInsert(k);//LateX処理
return t;
}
static void printSpaces()
{
while (CR-- > 0){
//fprintf(fptex, "\\ \\par\n");
}
while (spaces-- > 0){
//fprintf(fptex, "\\ ");
}
CR = 0; spaces = 0;
}
static void printcToken()
{
int i=(int)cToken.kind;
if (printed){
printed = 0; return;
}
printed = 1;
printSpaces();
if (i < end_of_KeyWd){
//fprintf(fptex, "{\\bf %s}", KeyWdT[i].word);
}else if (i < end_of_KeySym){
//fprintf(fptex, "$%s$", KeyWdT[i].word);
}else if (i==(int)Id){
switch (idKind) {
case varId:
//fprintf(fptex, "%s", cToken.u.id);
return;
case parId:
//fprintf(fptex, "{\\sl %s}", cToken.u.id);
return;
case funcId:
//fprintf(fptex, "{\\it %s}", cToken.u.id);
return;
case constId:
//fprintf(fptex, "{\\sf %s}", cToken.u.id);
return;
}
}else if (i==(int)Num){
//fprintf(fptex, "%d", cToken.u.value);
}
}
void setIdKind(KindT k)
{
idKind = k;
return;
}