forked from toful/SyntacticalAnalyzer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFASyntacticAnalyzer.y
346 lines (297 loc) · 8.58 KB
/
FASyntacticAnalyzer.y
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
%define parse.error verbose
%{
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
int num_estats = -1;
int num_estats_finals = 0;
int estat_inicial = -1;
int num_simbols = 0;
char* simbols_alfabet[10];
int estats_finals[10];
char* cadena;
typedef struct Transicio
{
char* estat_inicial;
char* estats_finals;
char* simbols_alfabet[10];
int num_transicions;
}Transicio;
Transicio transicions[10*10];
int num_transicions=0;
char* codi_afd = "int transicio ( int estat, char simbol ) {\n\tint proxim_estat;\n";
char* codi_afn = "int * transicio ( int estat, char simbol ) {\n\tstatic int proxim_estat[NUM_ESTATS+1], n=0;\n";
int afd = 1;
extern FILE* yyin;
//extern int yylex (void);
int yylex();
void yyerror(char * s);
int simbol_existeix(char * symbol);
int num_estats_valid(int x);
int estat_valid(int x);
int final_existeix(int estat);
void transicio_valida(char* estat_origen, char* symbol, char* estat_desti);
int existeixTransicio(char* estat_origen, char* estat_desti);
void afegeix_trans_AFN(char* estat_origen, char* symbol, char* estat_desti);
void afegeix_trans_AFD(char* estat_origen, char* symbol, char* estat_desti);
int simbol_existeix_transicio(char* symbol, int pos);
%}
%union {
char *stringut;
};
/* declare tokens */
%token ALFABET
%token OBRE
%token TANCA
%token COMA
%token ESTATS
%token TRANSICIONS
%token ESTAT_INICIAL
%token ESTATS_FINALS
%token COMENTARI
%token OBRE_P
%token TANCA_P
%token SEPARADOR
%token <stringut> SIMBOL
%token <stringut> NUMERO
%%
af: alfabet estats transicions inicial finals
;
alfabet : ALFABET OBRE simbol TANCA | ALFABET OBRE TANCA {
yyerror("[ERROR]: L'alfabet ha de contindre un o més símbols\n");
};
simbol : simbol COMA simbol | SIMBOL {
if( simbol_existeix($1) )
printf("[AVIS] El símbol %s ya existeix\n", $1);
else{
strcpy( simbols_alfabet[num_simbols], $1 );
num_simbols++;
}
};
estats: ESTATS OBRE NUMERO TANCA {
if( num_estats_valid( atoi($3) ) ){
num_estats = atoi($3);
}
else{
yyerror("Error número de estats no vàlids.");
}
} | OBRE TANCA { yyerror("Error número de estats no vàlids.");
};
transicions: TRANSICIONS OBRE llista_transicions TANCA
;
llista_transicions: transicio | transicio COMA llista_transicions
;
transicio: OBRE_P NUMERO COMA SIMBOL SEPARADOR NUMERO TANCA_P { transicio_valida($2, $4, $6); }
| OBRE_P NUMERO COMA NUMERO SEPARADOR NUMERO TANCA_P { transicio_valida($2, $4, $6); }
;
inicial: ESTAT_INICIAL OBRE NUMERO TANCA {
if( estat_valid(atoi($3)) )
{
estat_inicial = atoi($3);
}
else
{
yyerror("[ERROR]: estat inicial incorrecte\n");
}
} | ESTAT_INICIAL OBRE TANCA {
yyerror("[ERROR]: Els autòmats finits han de tenir un estat inicial\n");
} | ESTAT_INICIAL OBRE num TANCA {
yyerror("[ERROR]: no pot haver més d'un estat inicial\n");
}
;
finals: ESTATS_FINALS OBRE num TANCA | ESTATS_FINALS '{' '}' {
yyerror("[ERROR]: Els autòmats finits han de tenir algún estat final");
}
;
num: num COMA num | NUMERO {
if( estat_valid(atoi($1)) )
{
if( !final_existeix( atoi($1) ) ){
estats_finals[num_estats_finals] = atoi($1);
num_estats_finals ++;
}
}
}
;
%%
int num_estats_valid(int x){
if ( x >= 1 ){
return 1;
}
else{
return 0;
}
}
int estat_valid(int x){
if( x < num_estats )
{
return 1;
}
else
{
return 0;
}
}
int simbol_existeix(char* symbol){
for(int i=0 ; i < num_simbols; i++){
if( strcmp(simbols_alfabet[i] , symbol) == 0 )
{
return 1;
}
}
return 0;
}
int final_existeix(int estat){
for(int i=0 ; i < num_estats_finals; i++){
if( estats_finals[i]==estat )
{
return 1;
}
}
return 0;
}
void transicio_valida(char* estat_origen, char* symbol, char* estat_desti)
{
if(!estat_valid(atoi(estat_origen)))
{
cadena = malloc(80);
sprintf(cadena, "[ERROR] El estat %s de la transició(%s, %s; %s) és desconegut\n", estat_origen, estat_origen, symbol, estat_desti);
yyerror(cadena);
}
if(!estat_valid(atoi(estat_desti)))
{
cadena = malloc(80);
sprintf(cadena, "[ERROR] El estat %s de la transició(%s, %s; %s) és desconegut\n", estat_desti, estat_origen, symbol, estat_desti);
yyerror(cadena);
}
if(!simbol_existeix(symbol))
{
cadena = malloc(80);
sprintf(cadena, "[ERROR] El símbol %s de la transició(%s, %s; %s) és desconegut\n", symbol, estat_origen, symbol, estat_desti);
yyerror(cadena);
}
int pos = existeixTransicio(estat_origen, estat_desti);
if (pos != -1)
{
if (simbol_existeix_transicio(symbol, pos))
{
printf("[AVIS] Transició (%s, %s, %s) repetida.\n", estat_origen, symbol, estat_desti);
}
else
{
if(afd) printf("[AVIS] S'ha detectat que el AF és no determinista.\n");
strcpy(transicions[pos].simbols_alfabet[transicions[pos].num_transicions++], symbol);
afd = 0;
afegeix_trans_AFD(estat_origen, symbol, estat_desti);
afegeix_trans_AFN(estat_origen, symbol, estat_desti);
}
}
else
{
Transicio temp;
temp.num_transicions = 1;
temp.estat_inicial = malloc(16*sizeof(char));
temp.estats_finals = malloc(16*sizeof(char));
for (int i = 0; i < 10; ++i)
{
temp.simbols_alfabet[i] = malloc(16*sizeof(char));
}
strcpy(temp.estat_inicial, estat_origen);
strcpy(temp.simbols_alfabet[0], symbol);
strcpy(temp.estats_finals, estat_desti);
transicions[num_transicions++] = temp;
afegeix_trans_AFD(estat_origen, symbol, estat_desti);
afegeix_trans_AFN(estat_origen, symbol, estat_desti);
}
}
int simbol_existeix_transicio(char* symbol, int pos){
for(int i=0 ; i < transicions[pos].num_transicions; i++){
if( strcmp(transicions[pos].simbols_alfabet[i] , symbol) == 0 )
{
return 1;
}
}
return 0;
}
void afegeix_trans_AFD(char* estat_origen, char* symbol, char* estat_desti)
{
cadena = malloc(strlen(codi_afd)+70);
sprintf(cadena, "%s\tif ( (estat == %s) && (simbol == \'%s\') ) proxim_estat = %s;\n", codi_afd, estat_origen, symbol, estat_desti);
codi_afd = cadena;
}
void afegeix_trans_AFN(char* estat_origen, char* symbol, char* estat_desti)
{
cadena = malloc(strlen(codi_afn)+80);
sprintf(cadena, "%s\tif ( (estat == %s) && (simbol == \'%s\') ) proxim_estat[n++] = %s;\n", codi_afn, estat_origen, symbol, estat_desti);
codi_afn = cadena;
}
void acabar_codi()
{
if (afd)
{
cadena = malloc(strlen(codi_afd)+20);
sprintf(cadena, "%s\treturn proxim_estat;\n}\n", codi_afd);
codi_afd = cadena;
}
else
{
cadena = malloc(strlen(codi_afn)+50);
sprintf(cadena, "%s\treturn proxim_estat;\n}\n", codi_afn);
codi_afn = cadena;
}
}
int existeixTransicio(char* estat_origen, char* estat_desti)
{
for (int i = 0; i < num_transicions; i++)
{
if ((strcmp(transicions[i].estat_inicial, estat_origen) == 0) && (strcmp(transicions[i].estats_finals, estat_desti) == 0))
{
return i;
}
}
return -1;
}
void start()
{
for (int i = 0; i < 10; i++)
{
simbols_alfabet[i] = malloc(16*sizeof(char));
}
}
void yyerror(char * s){
fprintf(stderr, "Error: %s\n", s);
exit(1);
}
int main(int argc, char **argv){
start();
if ( argc > 1 )
yyin = fopen( argv[1] , "r" );
else
yyin = stdin;
yyparse();
acabar_codi();
printf("El número d'estats és: %i\n", num_estats);
printf("L'estat inicial és: %i\n", estat_inicial);
printf("Els estats finals són: %i", estats_finals[0]);
for (int i=1 ; i < num_estats_finals; i++){
printf(", %i", estats_finals[i]);
}
if (afd)
printf ("\n\n%s", codi_afd);
else
printf ("\n\n%s", codi_afn);
//creem la llibreria
FILE* llibreria = fopen("af.h", "wa");
if (afd)
fprintf(llibreria, "int transicion (int estado, char simbolo);");
else
fprintf(llibreria, "int * transicion (int estado, char simbolo);");
fclose(llibreria);
FILE* funcio = fopen("af.c", "wa");
if (afd)
fprintf(funcio, "%s", codi_afd);
else
fprintf(funcio, "%s", codi_afn);
fclose(funcio);
return(1);
}