-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathparse.c
More file actions
301 lines (258 loc) · 8.41 KB
/
parse.c
File metadata and controls
301 lines (258 loc) · 8.41 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
#include "data.h"
static void (*currentLineNumberPlusPlus)() = &increaseCurrentLineNumber;
static void (*resetCurrentLineCounter)() = &resetCurrentLineNumber;
Bool countAndVerifyDataArguments(char *line)
{
Bool isValid = True;
int size = 0, n = 0, num = 0;
char c = 0;
char args[MAX_LINE_LEN + 1] = {0}, *p;
line = strstr(line, DATA) + strlen(DATA);
/* we make the pointer p to point on the position of the first character coming sfter the .data
instruction within the full line, so that p will point on the begining of the arguments string*/
/*copies the string of arguments pointer by p into the args local string we will use for parsing*/
strcpy(args, line);
isValid = verifyCommaSyntax(args);
p = strtok(line, ", \t\n\f\r");
while (p != NULL)
{
sscanf(p, "%d%n%c", &num, &n, &c);
if (c == '.' && n > 0)
isValid = yieldError(wrongArgumentTypeNotAnInteger);
num = atoi(p);
if (!num && *p != '0')
isValid = yieldError(expectedNumber);
n = num = c = 0;
size++;
p = strtok(NULL, ", \t\n\f\r");
}
if (isValid)
increaseDataCounter(size);
return isValid;
}
Bool verifyCommaSyntax(char *line)
{
int commasCounter = 0;
Bool insideToken = False;
Bool isFirstToken = True;
Bool isValid = True;
char *s = line;
s = trimFromLeft(s);
while ((*s == ',' || isspace(*s)) && *s != '\0')
{
if (*s == ',')
commasCounter++;
s++;
}
if (!*s && commasCounter > 0)
return yieldError(wrongCommasSyntaxIllegalApearenceOfCommasInLine);
else if (*s && strlen(s) && commasCounter > 0)
isValid = yieldError(illegalApearenceOfCommaBeforeFirstParameter);
commasCounter = 0;
isFirstToken = True;
while (s && *s != '\0')
{
if (insideToken)
{
if (commasCounter > 1)
{
isValid = yieldError(wrongCommasSyntaxExtra);
commasCounter = 1;
}
else if (commasCounter < 1 && !isFirstToken)
isValid = yieldError(wrongCommasSyntaxMissing);
if (isFirstToken == True)
isFirstToken = False;
while (*s != '\0' && !isspace(*s) && *s != ',')
s++;
if (*s == ',' || isspace(*s))
{
insideToken = False;
commasCounter = 0;
s--;
}
}
else
{
while (*s == ',' || isspace(*s))
{
if (*s == ',')
commasCounter++;
s++;
}
if (*s && (isprint(*s) && !isspace(*s)))
insideToken = True;
}
s++;
}
if (commasCounter)
isValid = yieldError(illegalApearenceOfCommaAfterLastParameter);
return isValid;
}
Bool countAndVerifyStringArguments(char *line)
{
char *args, *closing = 0, *opening = 0;
int size = 0;
args = strstr(line, STRING) + strlen(STRING);
args = trimFromLeft(args);
if (!*args)
return yieldError(emptyStringDeclatretion);
opening = strchr(args, '\"');
if (!opening || !*opening)
{
yieldError(expectedQuotes);
yieldError(closingQuotesForStringIsMissing);
return False;
}
else
{
closing = strrchr(args, '\"');
if (opening == closing && (opening[0] == args[0]))
return yieldError(closingQuotesForStringIsMissing);
if (opening == closing && (opening[0] != args[0]))
return yieldError(expectedQuotes);
else
{
size = strlen(opening) - strlen(closing);
increaseDataCounter(size);
}
}
return True;
}
Bool parseLine(char *token, char *line)
{
State (*globalState)() = &getGlobalState;
Bool isValid = True;
if (isComment(token))
return True;
if (isLabelDeclaration(token))
{
char *next = 0;
if (!isLabelDeclarationStrict(token))
{
char lineClone[MAX_LINE_LEN] = {0}, *rest = 0;
strcpy(lineClone, line);
isValid = yieldError(missingSpaceBetweenLabelDeclaretionAndInstruction);
token = line;
next = strchr(line, ':');
next++;
*next = '\0';
rest = strchr(lineClone, ':');
rest++;
sprintf(line, "%s%c%s", token, ' ', rest);
strncpy(lineClone, line, strlen(line));
next = (*globalState)() == firstRun ? strtok(lineClone, " \t\n\f\r") : strtok(lineClone, ", \t\n\f\r");
return parseLine(next, line) && False;
}
else
{
next = (*globalState)() == firstRun ? strtok(NULL, " \t\n\f\r") : strtok(NULL, ", \t\n\f\r");
if (!next)
return yieldError(emptyLabelDecleration);
if ((*globalState)() == firstRun)
return handleLabel(token, next, line) && isValid;
else
return isValid && parseLine(next, line + strlen(token) + 1);
}
}
else if (isInstruction(token))
{
char *next;
int type;
type = getInstructionType(token);
if (!isInstructionStrict(token))
{
isValid = yieldError(missinSpaceAfterInstruction);
token = getInstructionName(token);
}
next = (*globalState)() == firstRun ? strtok(NULL, " \t\n\f\r") : strtok(NULL, ", \t\n\f\r");
if (isValid && next == NULL)
{
if (type == _TYPE_DATA || type == _TYPE_STRING)
return type == _TYPE_DATA ? yieldWarning(emptyDataDeclaretion) : yieldError(emptyStringDeclatretion);
else
return type == _TYPE_ENTRY ? yieldWarning(emptyEntryDeclaretion) : yieldWarning(emptyExternalDeclaretion);
}
else if (next != NULL)
{
if ((*globalState)() == firstRun)
return handleInstruction(type, token, next, line) && isValid;
else
{
if (type == _TYPE_DATA)
return writeDataInstruction(next) && isValid;
else if (type == _TYPE_STRING)
return writeStringInstruction(next) && isValid;
else
return True;
}
}
}
else if (isOperation(token))
{
char args[MAX_LINE_LEN] = {0};
strcpy(args, (line + strlen(token)));
return (*globalState)() == firstRun ? handleOperation(token, args) : writeOperationBinary(token, args);
}
else
{
if (strlen(token) > 1)
return yieldError(undefinedTokenNotOperationOrInstructionOrLabel);
else
return yieldError(illegalApearenceOfCharacterInTheBegningOfTheLine);
}
return isValid;
}
Bool handleSingleLine(char *line)
{
State (*globalState)() = &getGlobalState;
char lineCopy[MAX_LINE_LEN] = {0};
Bool result = True;
char *token;
strcpy(lineCopy, line);
token = ((*globalState)() == firstRun) ? strtok(lineCopy, " \t\n\f\r") : strtok(lineCopy, ", \t\n\f\r");
result = parseLine(token, line);
(*currentLineNumberPlusPlus)();
return result;
}
void parseAssemblyCode(FILE *src)
{
State (*globalState)() = &getGlobalState;
void (*setState)(State) = &setGlobalState;
int c = 0, i = 0;
char line[MAX_LINE_LEN] = {0};
Bool isValidCode = True;
State nextState;
char *(*fileName)() = &getFileNamePath;
(*resetCurrentLineCounter)();
if ((*globalState)() == secondRun)
printf("\n\n\nSecond Run:(%s)\n", (*fileName)());
else if ((*globalState)() == firstRun)
printf("\n\n\nFirst Run:(%s)\n", (*fileName)());
while (((c = fgetc(src)) != EOF))
{
if (isspace(c) && i > 0)
line[i++] = ' ';
else if (!isspace(c))
line[i++] = c;
if (i >= MAX_LINE_LEN - 2)
c = '\n';
if (c == '\n')
{
if (i > 0)
{
isValidCode = handleSingleLine(line) && isValidCode;
memset(line, 0, MAX_LINE_LEN);
i = 0;
}
}
}
if (i > 0)
isValidCode = handleSingleLine(line) && isValidCode;
if (!isValidCode)
nextState = assemblyCodeFailedToCompile;
else
nextState = (*globalState)() == firstRun ? secondRun : exportFiles;
(*resetCurrentLineCounter)();
(*setState)(nextState);
}