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
32 lines (31 loc) · 1.41 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
#include <iostream>
using namespace std;
#include "Interpreteur.h"
#include "Exceptions.h"
int main(int argc, char* argv[]) {
string nomFich;
if (argc != 2) {
cout << "Usage : " << argv[0] << " nom_fichier_source" << endl << endl;
cout << "Entrez le nom du fichier que voulez-vous interpréter : ";
getline(cin, nomFich);
} else
nomFich = argv[1];
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
cout << endl << "================ Syntaxe Correcte" << endl;
// 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) interpreteur.getArbre()->executer();
// 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;
}
return 0;
}