-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtp1.c
46 lines (43 loc) · 1.06 KB
/
tp1.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
#include "gramatica/gramatica2.h"
#include "defs.h"
#include <stdio.h>
#include <stdlib.h>
#include <ctype.h>
#include <string.h>
extern gramatica;
extern tipoDeArchivo;
int analizarEntrada(int argc, char ** argv) {
gramatica_t gram;
automata_t autom;
if (argc == 2) {
char * archivo = argv[1];
tipoDeArchivo = 0;
if (strstr(archivo, ".gr") != NULL) {
FILE * pFile = fopen(archivo, "r");
if (pFile == NULL) {
printf(
"El archivo ingresado no pudo ser leido. Verifique que este realmente exista\n");
exit(EXIT_FAILURE);
}
stdin = pFile;
tipoDeArchivo = GRAMATICA;
gramatica = nuevaGramatica();
} else {
printf(
"El archivo ingresado no corresponde con un formato esperado. Debe ingresar o un .dot o un .gr\n");
exit(EXIT_FAILURE);
}
yylex();
switch (tipoDeArchivo) {
case GRAMATICA:
crearAnalizador(gramatica);
system("gcc -g -o ASDR ASDR.c");
break;
}
return EXIT_SUCCESS;
} else {
printf(
"Los argumentos no son validos. Debe ingresar: ejecutable <archivo.gr/archivo.dot>\n");
exit(EXIT_FAILURE);
}
}