-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmain.c
210 lines (172 loc) · 4.72 KB
/
main.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
/*
* main.c
* Analizador Sintactico
*
* Created by Alan Rodriguez
* Fernando Romero
* Jose Jesus Perez Aguinaga
*
*
*/
#include "analex.h"
#include "anasin.h"
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <fcntl.h>
void runAndClean(){
fprintf(stdout, "\n-----Ejectuando Analizador Sintactico-----\n\n");
// Corre anasin
anasin();
// Reinicia automatas y limpia inputs
clear(&pila);
clearInput();
freeInp();
inputSize = 0;
inputSizeLex = 0;
}
int main (int argc, const char * argv[]) {
int i;
/*Stack hola;
initStack(&hola);
for (i=0; i<53; i++) {
push(&hola, i);
if(i%3 == 0){
pop(&hola);
}
char ret[BUFSIZ];
memset(ret, '\0', BUFSIZ);
int pilaprint[BUFSIZ];
int k;
despliega(&hola, pilaprint);
for (k=0; k<hola.size; k++) {
strcat(ret,itoaC(pilaprint[k]));
strcat(ret," ");
}
fprintf(stdout,"Pila: %s\n", ret);
fprintf(stdout,"Size: %d\n\n", hola.size);
}*/
if (argc != 2) {
fprintf(stderr, "Forma de uso: %s origen\n",argv[0]);
return -1;
}
if((fuente=fopen(argv[1],"r")) == NULL){
fprintf(stderr, "Error al abrir el archivo: %s",argv[1]);
return -1;
}
if ((fdLexemas=open("lexemas.txt",O_WRONLY | O_CREAT | O_TRUNC,0666)) < 0) {
fprintf(stderr, "Error al crear archivo lexemas.txt");
return -1;
}
if ((fdTabla=open("tabla_simbolos.txt",O_WRONLY | O_CREAT | O_TRUNC,0666)) < 0) {
fprintf(stderr, "Error al crear archivo tabla_simbolos.txt");
return -1;
}
if ((fdOutput=open("output.txt",O_WRONLY | O_CREAT | O_TRUNC,0666)) < 0) {
fprintf(stderr, "Error al crear archivo output.txt");
return -1;
}
//Crear automatas
automata automatas[cuantosAutomatas];
automatas[0].funcion = automataComentarios;
automatas[1].funcion = automataIdentificadores;
automatas[2].funcion = automataOperadoresLogicos;
automatas[3].funcion = automataOperadoresComparacion;
automatas[4].funcion = automataOperadoresAsignacion;
automatas[5].funcion = automataNumerosReales;
automatas[6].funcion = automataNumeros;
automatas[7].funcion = automataPuntuacion;
automatas[8].funcion = automataCadenaCaracteres;
automatas[9].funcion = automataOperadoresAgrupacion;
automatas[10].funcion = automataAritmetico;
reset(automatas);
resetInp();
//fprintf(stdout, "Dame opcion a ejecutar:");
//scanf("%d",&eleccion);
fprintf(stdout, "\n\n-----Ejectuando Analizador Lexico-----\n\n");
char c;
while ((c = getc(fuente)) != EOF) {
if (c == '\n' || c == '\t') {
continue;
}
// Si el automata regresa 1 es que llega a estado terminal
if (automatas[0].funcion(&automatas[0],c) == 1) {
reset(automatas);
continue;
}
if (automatas[1].funcion(&automatas[1],c) == 1) {
reset(automatas);
continue;
}
if (automatas[2].funcion(&automatas[2],c) == 1) {
reset(automatas);
continue;
}
if (automatas[3].funcion(&automatas[3],c) == 1) {
reset(automatas);
continue;
}
if (automatas[4].funcion(&automatas[4],c) == 1) {
reset(automatas);
continue;
}
if (automatas[5].funcion(&automatas[5],c) == 1) {
reset(automatas);
continue;
}
if (automatas[6].funcion(&automatas[6],c) == 1) {
reset(automatas);
continue;
}
if (automatas[7].funcion(&automatas[7],c) == 1) {
reset(automatas);
continue;
}
if (automatas[8].funcion(&automatas[8],c) == 1) {
reset(automatas);
continue;
}
if (automatas[9].funcion(&automatas[9],c) == 1) {
reset(automatas);
continue;
}
if (automatas[10].funcion(&automatas[10],c) == 1) {
reset(automatas);
continue;
}
}
strcpy(inputLex[inputSizeLex],"$");
strcpy(inputRealLex[inputSizeLex],"$");
inputSizeLex++;
// Igualas los datos del analex con los del anasin
inputSize = inputSizeLex;
cuantosTokens = cuantosTokensLex;
for (i=0; i<inputSizeLex; i++) {
input[i] = inputLex[i];
inputReal[i] = inputRealLex[i];
}
// Transferir arreglo de tokens para que el anasin lo use
for (i=0; i<cuantosTokensLex; i++) {
tokenTemp[i] = tokenTempLex[i];
}
// Inicializa Valores
inicializaGramatica();
// Inicializa Pila
initStack(&pila);
// Correr anasin
fprintf(stdout, "\n-----Ejectuando Analizador Sintactico-----\n\n");
anasin();
fprintf(stdout, "\n");
//imprimeTokens();
reset(automatas);
clearInput();
clear(&pila);
inputSize = inputSizeLex = 0;
// Si hay error salir
if (errorSintactico == 1) {
clear(&pila);
return EXIT_SUCCESS;
}
fclose(fuente);
return 0;
}