This repository has been archived by the owner on Aug 12, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
UVManager.cpp
280 lines (251 loc) · 8.4 KB
/
UVManager.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
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
#include "includes.h"
/* Permet d'ajouter ou de mettre à jour une UV à l'UVManager
* Arguments : Code de l'UV (chaine de caractères)
* Titre de l'UV (chaine de caractères)
* Demi UV (booléen)
*/
void UVManager::addUV(QString c, QString t, bool p, bool a, bool d){
UV* findUV=getUV(c);
if(findUV!=NULL)
findUV->editUV(t, p, a, d);
else
{
UV* uv = new UV(c, t, p, a, d);
TabUV.insert(make_pair(c,*uv));
}
}
/* Permet d'ajouter une catégorie à une UV par le UVManager
* Arguments : le code de l'UV (chaine de caractères)
* la catégorie à ajouter (Catégorie)
* le nombre de crédits apportés à cette catégorie (int)
*/
void UVManager::editUVCategorie(QString c, Categorie cat, int cre){
UV* findUV=getUV(c);
if(findUV!=NULL){
findUV->addCreditsCat(cat, cre);
}
}
/* Permet d'accéder à une UV existante
* Argument : Code de l'UV (chaine de caracères)
* Retour : Un pointeur sur l'objet UV recherché si l'UV est trouvé
* Le pointeur NULL si l'UV n'est pas trouvée
*/
UV* UVManager::getUV (QString c){
map<QString, UV>::iterator it=TabUV.find(c);
if (it!=TabUV.end()){
return &(it->second);
}
else return NULL;
}
QStringList UVManager::getTabCursus(QString c){
UV* findUV=getUV(c);
if(findUV!=NULL)
return findUV->getTab_Cursus();
else return QStringList();
}
unsigned int UVManager::getNbCreditsCategorie(QString c, Categorie cat){
UV* findUV=getUV(c);
if(findUV!=NULL)
return findUV->getCreditsCat(cat);
return 0;
}
unsigned int UVManager::getNbTotCredits(QString c){
UV* findUV=getUV(c);
if(findUV!=NULL)
return findUV->getCreditsCat(CS)+
findUV->getCreditsCat(TM)+
findUV->getCreditsCat(TSH)+
findUV->getCreditsCat(SP);
else return 0;
}
bool UVManager::hasCursus(QString c, QString cursus){
UV* findUV=getUV(c);
if(findUV!=NULL)
if(findUV->getTab_Cursus().contains(cursus))
return true;
cout<<"ne fait pas partie du bon Cursus\n";
return false;
}
/* Permet de supprimer une UV de l'UVManager
* Argument : Le code de l'UV (chaine de caractères)
*/
void UVManager::deleteUV(QString c)
{
TabUV.erase(c);
}
/* Permet de lister toutes les UV chargées dans l'application
* Argument: aucuns
* Retourne une QStringList contenant le code de chaque UV
* */
QStringList UVManager::listerUV()
{
QStringList list;
for(map<QString, UV>::iterator it=TabUV.begin() ; it!=TabUV.end() ; ++it)
{
list.append(it->first); // accede à la clé
}
return list;
}
/* Permet d'ajouter un Cursus à une UV par le UVManager
* Arguments : le code de l'UV (chaine de caractères)
* la code du Cursus à ajouter (chaine de caractères)
*/
void UVManager::addUVCursus(QString c, QString cur){
UV* findUV=getUV(c);
if(findUV!=NULL){
findUV->ajouterCursus(cur);
}
}
QString UVManager::getUVfromCatCursus(Categorie cat, QString cursus, QStringList* listeUVsPresentes, QStringList TriUVs){
cout<<"...Recherche d'Uvs... Critere : cat="<<cat<<"; cursus="<<cursus.toStdString()<<"\n";
UV* findUV;
for(int i=0; i<TriUVs.size(); i++){
findUV=getUV(TriUVs.at(i));
cout<<"test de l'UV "<<findUV->getCode().toStdString()<<", donne "<<findUV->getCreditsCat(cat)<<" credits dans cette categorie; hasCategorie renvoie : "<<findUV->hasCategorie(cat)<<"; dejà présent dans la liste renvoie : "<<listeUVsPresentes->contains(TriUVs.at(i))<<"\n";
if(hasCursus(TriUVs.at(i), cursus)&&!listeUVsPresentes->contains(TriUVs.at(i))&&findUV->hasCategorie(cat)){
cout<<"UV "<<findUV->getCode().toStdString()<<" OK !\n";
return TriUVs.at(i); //Retourne le code de l'UV
}
}
cout<<"Aucune UV trouvée...\n";
return QString::null; //Si aucune UV ne correspond, on renvoie NULL
}
/* Permet de retirer tous les Cursus d'une UV par le UVManager
* Arguments : le code de l'UV (chaine de caractères)
*/
void UVManager::removeAllUVCursus(QString c)
{
UV* findUV=getUV(c);
if(findUV!=NULL){
findUV->deleteAllCursus();
}
}
int UVManager::check_integrity()
{
QFile fichier("../UTProfiler_P14_Brocheton_Goerens/data/uv.txt");
if(fichier.open(QIODevice::ReadOnly | QIODevice::Text)) // si l'ouverture a réussi
{
QString test;
QTextStream flux(&fichier);
while(!flux.atEnd())
{
test = flux.readLine();
for (unsigned int i=0;i<5;i++)
{
test = flux.readLine();
if (test=="#")
return 1;
}
test = flux.readLine();
if (test!="#")
return 1;
}
}
else
{
return 2;
}
return 0;
}
void UVManager::load()
{
QFile fichier("../UTProfiler_P14_Brocheton_Goerens/data/uv.txt");
if(fichier.open(QIODevice::ReadOnly | QIODevice::Text)) // si l'ouverture a réussi
{
QTextStream flux(&fichier);
while(! flux.atEnd())
{
QString code = flux.readLine();
QString titre= flux.readLine();
QString saison = flux.readLine();
QStringList tsaison = saison.split(",");
QString Credits_Categorie = flux.readLine();
QStringList tCredits_Categorie = Credits_Categorie.split(",");
QString Tab_Cursus = flux.readLine();
QStringList tTab_Cursus = Tab_Cursus.split(",");
QString DemiUV = flux.readLine();
QString separateur = flux.readLine();
addUV(code,titre,tsaison.at(0).toInt(),tsaison.at(1).toInt(),DemiUV.toInt());
editUVCategorie(code,CS,tCredits_Categorie.at(0).toInt());
editUVCategorie(code,TM,tCredits_Categorie.at(1).toInt());
editUVCategorie(code,TSH,tCredits_Categorie.at(2).toInt());
editUVCategorie(code,SP,tCredits_Categorie.at(3).toInt());
if(tTab_Cursus.at(0)!="")
{
for(int i=0;i<tTab_Cursus.size();i++)
addUVCursus(code,tTab_Cursus.at(i));
}
}
}
}
void UVManager::deleteUV_fichier(QString c)
{
QFile fichier("../UTProfiler_P14_Brocheton_Goerens/data/uv.txt");
if(fichier.open(QIODevice::ReadWrite | QIODevice::Text)) // si l'ouverture a réussi
{
QTextStream flux(&fichier);
QStringList tout;
while(! flux.atEnd())
{
tout.append(flux.readLine());
}
int ind=tout.indexOf(c);
for (unsigned int i=0;i<7;i++)
{
tout.removeAt(ind);
}
fichier.resize(0);
for(QList<QString>::iterator it=tout.begin() ; it!=tout.end() ; ++it)
{
flux<<*it<<"\n";
}
}
}
void UVManager::addUV_fichier(QString c)
{
int ind;
UV* uv = getUV(c);
QFile fichier("../UTProfiler_P14_Brocheton_Goerens/data/uv.txt");
if(fichier.open(QIODevice::ReadWrite | QIODevice::Text)) // si l'ouverture a réussi
{
QTextStream flux(&fichier);
QStringList tout;
while(! flux.atEnd())
{
tout.append(flux.readLine());
}
if (tout.contains(c))
{
ind=tout.indexOf(c);
for (unsigned int i=0;i<7;i++)
{
tout.removeAt(ind);
}
}
else
{
ind=tout.size();
}
tout.insert(ind,"#");
tout.insert(ind,QString::number(uv->getDemiUV()));
QString cursus;
QStringList tabCursus = getTabCursus(uv->getCode());
for(int i=0;i<tabCursus.size();i++)
{
if (i==tabCursus.size()-1)
cursus+=tabCursus.at(i);
else
cursus+=tabCursus.at(i)+",";
}
tout.insert(ind,cursus);
tout.insert(ind,QString::number(uv->getCreditsCat(CS))+","+QString::number(uv->getCreditsCat(TM))+","+QString::number(uv->getCreditsCat(TSH))+","+QString::number(uv->getCreditsCat(SP)));
tout.insert(ind,QString::number(uv->getPresentPrintemps())+","+QString::number(uv->getPresentAutomne()));
tout.insert(ind,uv->getTitre());
tout.insert(ind,uv->getCode());
fichier.resize(0);
for(QList<QString>::iterator it=tout.begin() ; it!=tout.end() ; ++it)
{
flux<<*it<<"\n";
}
}
}