This repository has been archived by the owner on May 17, 2024. It is now read-only.
forked from Feelzor/InterpreteurCpp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.cpp
81 lines (74 loc) · 2.69 KB
/
main.cpp
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
#include <iostream>
#include <fstream>
using namespace std;
#include "Interpreteur.h"
#include "Exceptions.h"
#include "VisiteurExecuter.h"
#include "VisiteurCompiler.h"
#include "ValeurEntiere.h"
#include "TableProcedures.h"
void compiler(ostream& out, const TableSymboles& symboles, Noeud* arbre);
int main(int argc, char* argv[]) {
srand (time(NULL));
bool compile = false;
string nomFich;
ofstream o;
ostream* out;
if (argc < 3) {
cout << "Usage : " << argv[0] << "<interpreter|compiler> <nom_fichier_source> [fichierDestination]" << endl << endl;
cout << "Entrez le nom du fichier que voulez-vous interpréter : ";
getline(cin, nomFich);
} else {
compile = strcmp(argv[1], "compiler") == 0;
nomFich = argv[2];
if (argc == 4) {
o.open(argv[3]);
if (o) {
out = &o;
} else {
out = &cout;
}
} else {
out = &cout;
}
}
ifstream fichier(nomFich.c_str());
try {
if (fichier.fail()) throw FichierException();
Interpreteur interpreteur(fichier);
interpreteur.analyse();
// Si pas d'exception levée, l'analyse syntaxique a réussi
if(interpreteur.getArbre() != nullptr){
cout << endl << "================ Syntaxe Correcte" << endl;
} else {
cout << endl << "================ Syntaxe Incorrecte" << endl;
return 1;
}
if (compile) {
compiler(*out, interpreteur.getTable(), interpreteur.getArbre());
} else {
// On affiche le contenu de la table des symboles avant d'exécuter le programme
cout << endl << "================ Table des symboles avant exécution : " << interpreteur.getTable();
cout << endl << "================ Execution de l'arbre" << endl;
// On exécute le programme si l'arbre n'est pas vide
if (interpreteur.getArbre() != nullptr) {
VisiteurExecuter visiteur;
interpreteur.getArbre()->accepter(visiteur);
}
// Et on vérifie qu'il a fonctionné en regardant comment il a modifié la table des symboles
cout << endl << "================ Table des symboles apres exécution : " << interpreteur.getTable();
}
} catch (InterpreteurException & e) {
cout << e.what() << endl;
}
if (o) {
o.close();
}
return 0;
}
void compiler(ostream& out, const TableSymboles& symboles, Noeud* arbre) {
out << "import random" << endl;
VisiteurCompiler visiteur(out, 0);
TableProcedures::getTable()->compilerProcedures(visiteur);
arbre->accepter(visiteur);
}