-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.cpp
146 lines (132 loc) · 4.46 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
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
/* INF3105 - Structures de données et algorithmes
* UQAM / Département d'informatique
* Été 2022 / TP4
* http://ericbeaudry.uqam.ca/INF3105/tp4/
*
* En principe, vous ne devriez pas toucher à ce fichier. Mais, vous demeurez
* libre de le modifier si vous juger cela pertinent ou requis.
* Dans tous les cas, vous devez remettre ce fichier.
*/
#include <fstream>
#include <iostream>
#include "dateheure.h"
#include "coordonnees.h"
#include "agenda.h"
using namespace std;
int tp4(istream& entree);
int main(int argc, const char** argv){
if(argc>1){
// Lecture depuis un fichier.
std::ifstream entreefichier(argv[1]);
if(entreefichier.fail()){
cerr << "Erreur d'ouverture du fichier '" << argv[1] << "'!" << std::endl;
return 1;
}
return tp4(entreefichier);
}else{
// Lecture depuis l'entrée standard (stdin).
return tp4(cin);
}
}
int tp4(istream& entree){
Agenda agenda;
while(entree){
string cmd;
entree >> cmd;
if(entree.fail() || cmd=="")
break;
if(cmd=="creer"){
string id;
Coordonnees position;
float puissance=0;
char unite=0, pointvirgule=0;
entree >> id >> position >> puissance >> unite;
if(unite=='k'){
puissance*=1000;
entree >> unite;
}
entree >> pointvirgule;
if(unite!='W' || pointvirgule!=';')
cout << "Erreur format commande creer" << endl;
else if(puissance==0)
cout << "Erreur puissance" << endl;
else{
agenda.creer(id, position, (int) puissance);
cout << "OK" << endl;
}
}
else if(cmd=="trouver"){
Coordonnees position;
float rayon, puissancemin;
char unite1=0, unite2=0, pointvirgule=0;
entree >> position >> rayon >> unite1;
if(unite1=='k'){
rayon*=1000;
entree >> unite1;
}
entree >> puissancemin >> unite2;
if(unite2=='k'){
puissancemin*=1000;
entree >> unite2;
}
entree >> pointvirgule;
if(unite1!='m' || unite2!='W' || pointvirgule!=';')
cout << "Erreur format commande creer" << endl;
else{
ArbreMap<string, int> resultat =
agenda.trouver(position, (int) rayon, (int) puissancemin);
// Les lignes suivante on besoin du Lab8
auto iter=resultat.debut();
while(iter){
cout << iter.cle() << " " << iter.valeur() << "m";
if(++iter)
cout << ", ";
}
cout << ";" << endl;
}
}
else if(cmd=="reserverI"){
std::string id;
DateHeure datemin;
int duree=0;
char pointvirgule=0;
entree >> id >> datemin >> duree >> pointvirgule;
if(pointvirgule!=';')
cout << "Erreur format reserverI !" << endl;
else{
DateHeure date = agenda.reserverI(id, datemin, duree);
cout << date << endl;
}
}
else if(cmd=="reserverC"){
Coordonnees position;
float rayon, puissancemin;
char unite1=0, unite2=0, pointvirgule=0;
entree >> position >> rayon >> unite1;
if(unite1=='k'){
rayon*=1000;
entree >> unite1;
}
entree >> puissancemin >> unite2;
if(unite2=='k'){
puissancemin*=1000;
entree >> unite2;
}
DateHeure datemin;
int duree;
entree >> datemin >> duree >> pointvirgule;
if(unite1!='m' || unite2!='W' || pointvirgule!=';')
cout << "Erreur format commande creer" << endl;
else{
std::string borneid;
DateHeure date = agenda.reserverC(position, rayon, puissancemin, datemin, duree, borneid);
cout << borneid << " " << date << endl;
}
}
else{
cout << "Commande invalidate : " << cmd << endl;
return 1;
}
}
return 0;
}