-
Notifications
You must be signed in to change notification settings - Fork 113
/
43.dcl-error-handle.c
127 lines (103 loc) · 2.25 KB
/
43.dcl-error-handle.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
#include <stdio.h>
#include <string.h>
#include <ctype.h>
#define MAXTOKEN 100
#define DATATYPE_LEN 6
enum { NAME, PARENS, BRACKETS };
void dcl(void);
void dirdcl(void);
int isvalid_datatype(const char*);
int gettoken(void);
int tokentype; // type of last token
char token[MAXTOKEN]; // last token string
char name[MAXTOKEN]; // identifier name
char datatype[MAXTOKEN]; // data type = char, int, etc.
char out[1000]; // output string
// gcc 43.dcl-error-handle.c getch.c
main()
{
while (gettoken() != EOF) { // 1st token on line
strcpy(datatype, token);
if (tokentype != NAME) {
printf("%c is not a valid datatype\n", tokentype);
continue;
} else if (!isvalid_datatype(datatype)) {
printf("%s is not a valid datatype\n", datatype);
continue;
}
out[0] = '\0';
dcl();
if (tokentype != '\n')
printf("syntax error\n");
printf("%s: %s %s\n", name, out, datatype);
}
return 0;
}
void dcl(void)
{
int ns;
for (ns = 0; gettoken() == '*';)
ns++;
dirdcl();
while (ns-- > 0)
strcat(out, " pointer to");
}
void dirdcl(void)
{
int type;
if (tokentype == '(') {
dcl();
if (tokentype != ')')
printf("error: missing )\n");
} else if (tokentype == NAME)
strcpy(name, token);
else
printf("error: expected name or (dcl)\n");
while ((type = gettoken()) == PARENS || type == BRACKETS)
if (type == PARENS)
strcat(out, " function returning");
else {
strcat(out, " array");
strcat(out, token);
strcat(out, " of");
}
}
int gettoken(void)
{
int c, getch(void);
void ungetch(int);
char *p = token;
while ((c = getch()) == ' ' || c == '\t')
;
if (c == '(') {
if ((c = getch()) == ')') {
strcpy(token, "()");
return tokentype = PARENS;
} else {
ungetch(c);
return tokentype = '(';
}
} else if (c == '[') {
for (*p++ = c; (*p++ = getch()) != ']'; )
;
*p = '\0';
return tokentype = BRACKETS;
} else if (isalpha(c)) {
for (*p++ = c; isalnum(c = getch()); )
*p++ = c;
*p = '\0';
ungetch(c);
return tokentype = NAME;
} else {
return tokentype = c;
}
}
int isvalid_datatype(const char* s)
{
char *datatypes[DATATYPE_LEN] = { "char", "short", "int", "long", "float", "double" };
int len = 0;
while (len < DATATYPE_LEN)
if (strcmp(s, datatypes[len++]) == 0)
return 1;
return 0;
}