-
Notifications
You must be signed in to change notification settings - Fork 0
/
Analog.cpp
184 lines (175 loc) · 3.95 KB
/
Analog.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
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
/*************************************************************************
Analog - Classe qui teste nos programmes
-------------------
début : 21/01/2019
copyright : (C) Mathéo ATCHE et Andréa CROC
e-mail : [email protected] et [email protected]
*************************************************************************/
//---------- Réalisation de la classe <Analog> (fichier Analog.cpp) ------------
//---------------------------------------------------------------- INCLUDE
//-------------------------------------------------------- Include système
#include <iostream>
using namespace std;
#include<string>
#include<fstream>
#include<cstring>
//------------------------------------------------------ Include personnel
#include "LectureLog.h"
#include "AnalyseLog.h"
//------------------------------------------------------------- Constantes
//----------------------------------------------------------------- PUBLIC
//----------------------------------------------------- Méthodes publiques
bool checkNumber (char* str)
{
int t = strlen(str);
bool check=true;
for (int i=0; i<t; i++)
{
if(!isdigit(str[i]))
{
check=false;
}
}
return check;
}
int main(int argc, char* argv [])
// Algorithme :
//
{
bool erreur=false;
bool g;
bool t;
bool e;
int h=0;
string outFile="";
if (argc==1)
{
cerr << "Erreur, pas de fichier '.log' indiqué" << endl;
erreur = true;
return 1;
}
else if (argc==2)
{
string fic = argv[1];
int n=fic.find(".log");
if (n>0)
{
try
{
AnalyseLog a (fic);
}
catch (const char* message)
{
cerr << message << endl;
erreur=true;
return 1;
}
}
else
{
cerr << "Erreur, ce n'est pas un fichier .log" << endl;
erreur=true;
return 1;
}
}
else
{
//parcours des options
for (int i=1; i<argc-1; i++)
{
if (strcmp(argv[i],"-g")==0)
{
g=true;
outFile = argv[i+1];
int n=outFile.find(".dot");
if(outFile=="-e" || outFile=="-t" || i==argc-2)
{
cerr << "Erreur, aucun fichier indiqué après l'option -g" << endl;
erreur=true;
return 1;
}
if(n<0)
{
cerr << "Erreur, le fichier indiqué suite à l'option -g n'est pas un .dot" << endl;
erreur=true;
return 1;
}
ifstream fic(outFile.c_str());
if(fic)
{
string choix;
cout<<"Le fichier existe déjà, le contenu sera écrasé."<<endl;
cout<<"Voulez-vous continuer? Oui/Non : ";
cin>>choix;
cout<<endl;
while(choix!="Oui" && choix!="Non")
{
cout<<"Voulez-vous continuer? Oui/Non : ";
cin>>choix;
cout<<endl;
}
if(choix=="Non")
{
cerr <<"Fermeture du programme"<<endl;
erreur=true;
return 1;
}
}
i++;
}
else if (strcmp(argv[i],"-t")==0)
{
t=true;
h=atoi(argv[i+1]);
if (i>=argc-2 || strcmp(argv[i+1],"-g")==0 || strcmp(argv[i+1],"-e")==0)
{
cerr << "Erreur, pas d'heure indiquée après l'option -t" << endl;
erreur =true;
return 1;
}
if (!checkNumber(argv[i+1]) || h<0 || h>24)
{
cerr << "Erreur, indiquez une heure valide après l'option -t" << endl;
erreur = true;
return 1;
}
i++;
}
else if (strcmp(argv[i],"-e")==0)
{
e=true;
if (i<argc-2 && strcmp(argv[i+1],"-g")!=0 && strcmp(argv[i+1],"-t")!=0)
{
cerr << "Erreur, des paramètres inutiles ont été détecté" << endl;
erreur=true;
return 1;
}
}
else
{
cerr << "Erreur, l'option n'existe pas" << endl;
erreur=true;
return 1;
}
}
if(!erreur)
{
string fic = argv[argc-1];
int n=fic.find(".log");
if (n>0)
{
try
{
AnalyseLog a (fic, g, e, t, outFile, h);
}
catch (const char* message)
{
cerr << message << endl;
}
}
else
cerr << "Erreur, ce n'est pas un fichier .log" << endl;
}
}
return 0;
} //----- Fin de main