-
Notifications
You must be signed in to change notification settings - Fork 0
/
Verleih.cpp
490 lines (345 loc) · 10.1 KB
/
Verleih.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
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
#include "Verleih.h"
#include "Kunde.h"
#include <fstream>
using namespace std;
void Verleih::schreibeInDatei(string name) {
ofstream f;
map<int, Kunde *>::iterator iterKu;
map<int, CD *>::iterator iterCD;
vector<AusleihPos *>::iterator iterAu;
//Kundendaten speichern
f.open("Kunden.txt");
if(!f.is_open())
throw "ERROR: could not open file Kunden.txt";
for(iterKu = _kunden.begin(); iterKu != _kunden.end(); iterKu++) {
f << (*iterKu).second->toString() << endl;
}
f.close();
f.open("CDs.txt");
if(!f.is_open())
throw "ERROR: could not open file CDs.txt";
for(iterCD = _cds.begin(); iterCD != _cds.end(); iterCD++) {
f << (*iterCD).second->toString() << endl;
}
f.close();
f.open("Ausleihen.txt");
if(!f.is_open())
throw "ERROR: could not open file Ausleihen.txt";
for(iterAu = _ausleihen.begin(); iterAu != _ausleihen.end(); iterAu++) {
f << (*iterAu)->toString() << endl;
}
f.close();
}
void Verleih::leseAusDatei(string name) {
ifstream f;
string temp;
Kunde *k, *pK;
CD *cd, *pCD;
AusleihPos *apos;
int id;
// ------- Kunden einlesen ---------------
f.open("Kunden.txt");
if(!f.is_open())
throw "ERROR: could not open file Kunden.txt";
while(!f.eof()) {
getline(f, temp);
if(temp != "") {
k = new Kunde(Kunde::parse(temp));
_kunden.insert(pair<int, Kunde *>(k->ident(), k));
}
}
f.close();
// ------------ CDs einlesen ----------
f.open("CDs.txt");
if(!f.is_open())
throw "ERROR: could not open file CDs.txt";
while(!f.eof()) {
getline(f, temp);
if(temp != "") {
cd = new CD(CD::parse(temp));
_cds.insert(pair<int, CD *>(cd->ident(), cd));
}
}
f.close();
// -------------- AusleihPositionen einlesen -------------------------
f.open("Ausleihen.txt");
if(!f.is_open())
throw "ERROR: could not open file Ausleihen.txt";
while(!f.eof()) {
getline(f, temp);
if(temp != "") {
apos = new AusleihPos(AusleihPos::parse(temp));
_ausleihen.push_back(apos);
//Ausleihe beim Kunden merken
id = apos->identKunde();
k = (*_kunden.find(id)).second;
k->ausleihen(apos);
//Ausleihe bei der CD merken
id = apos->identCD();
cd = (*_cds.find(id)).second;
cd->ausleihen(apos);
}
}
f.close();
}
int Verleih::kundeAnlegen(string name, string ort, int typ) {
int id;
Kunde *k = new Kunde(name, ort, typ);
id = k->ident();
_kunden.insert(pair<int, Kunde *>(id, k));
return id;
}
void Verleih::kundeEntfernen(int id) {
map<int, Kunde *>::iterator iter;
vector<AusleihPos *> ausleihen;
iter = _kunden.find(id);
ausleihen = (*iter).second->holeAusleihen();
if(!(ausleihen.empty()))
throw "ERROR: Kunde has even more CDs!!!!";
if(iter == _kunden.end())
throw "ERROR: KundenID does not exist. erased nothing!!";
delete (*iter).second;
_kunden.erase(iter);
}
string Verleih::kundenliste() {
ostringstream os;
map<int, Kunde *>::iterator iter;
for(iter = _kunden.begin(); iter != _kunden.end(); iter++) {
os << (*iter).second->toString() << endl;
}
return os.str();
}
Kunde *Verleih::getKunde(int id) {
Kunde *k;
map<int, Kunde *>::iterator iter;
iter = _kunden.find(id);
if(iter == _kunden.end())
throw "ERROR: no such KundenID found!!";
k = (*iter).second;
return k;
}
void Verleih::kundeBearbeiten(int id, string name, string ort, int typ) {
map<int, Kunde *>::iterator iter;
PreisStrategie *ps;
ps = PreisStrategie::itoPS(typ);
iter = _kunden.find(id);
if(iter == _kunden.end())
throw "ERROR: KundenID not found!!";
(*iter).second->setzeName(name);
(*iter).second->setzeOrt(ort);
(*iter).second->setzePStrat(ps);
}
int Verleih::cdAnlegen(string titel, string interpret, int typ) {
int id;
CD *cd = new CD(titel, interpret, typ);
id = cd->ident();
_cds.insert(pair<int, CD *>(id, cd));
return id;
}
void Verleih::cdEntfernen(int id) {
map<int, CD *>::iterator iter;
AusleihPos *apos;
iter = _cds.find(id);
apos = (*iter).second->holeAusleihe();
if(apos != NULL)
throw "ERROR: cd is even loan!!!";
if(iter == _cds.end())
throw "ERROR: No such cdID found!!";
_cds.erase(iter);
}
void Verleih::cdTypSetzen(int id, int typ) {
map<int, CD *>::iterator iter;
iter = _cds.find(id);
if(iter == _cds.end())
throw "ERROR: No such cdID found!!";
(*iter).second->setzeTyp(typ);
}
string Verleih::cdliste() {
map<int, CD *>::iterator iter;
ostringstream os;
for(iter = _cds.begin(); iter != _cds.end(); iter++) {
os << (*iter).second->toString() << endl;
}
return os.str();
}
CD *Verleih::getCD(int id) {
map<int, CD *>::iterator iter;
CD *cd;
iter = _cds.find(id);
if(iter == _cds.end())
throw "ERROR: No such cdID found!!";
cd = (*iter).second;
return cd;
}
void Verleih::cdsVerleihen(int kundeID, vector<int> cdIDs, Date tag) {
map<int, Kunde *>::iterator iterKunde;
map<int, CD *>::iterator iterCD;
vector<int>::iterator iterAnzahl;
//Kunden raussuchen
iterKunde = _kunden.find(kundeID);
if(iterKunde == _kunden.end())
throw "ERROR: No such KundenID found!!";
for(iterAnzahl = cdIDs.begin(); iterAnzahl != cdIDs.end(); iterAnzahl++) {
//CD raussuchen
iterCD = _cds.find(*iterAnzahl);
if(iterCD == _cds.end())
throw "ERROR: No such cdID found!!";
if((*iterCD).second->holeAusleihe() == NULL) {
//AusleihPos erstellen und einfügen
AusleihPos *apos = new AusleihPos(*(*iterCD).second, *(*iterKunde).second, tag);
_ausleihen.push_back(apos);
(*iterCD).second->ausleihen(apos);
(*iterKunde).second->ausleihen(apos);
}
else
throw "ERROR: CD already loan!!";
}
}
int Verleih::cdsZuruecknehmen(vector<int> ids, Date tag) {
int preis = 0, id;
vector<int>::iterator iter;
map<int, CD *>::iterator iterCD;
map<int, Kunde *>::iterator iterKunde;
vector<AusleihPos *>::iterator iterAusleihen, toDel;
Kunde *k;
CD *cd;
AusleihPos *apos;
for(iter = ids.begin(); iter != ids.end(); iter++) {
//CD raussuchen
iterCD = _cds.find(*iter);
if(iterCD == _cds.end())
throw "ERROR: No such cdID found!!";
cd = (*iterCD).second;
//AusleihPos raussuchen
apos = cd->holeAusleihe();
if (apos == NULL)
throw "ERROR: no such AusleihPos found!!";
//dazugehörigen Kunden raussuchen
id = apos->getKunde()->ident();
iterKunde = _kunden.find(id);
if(iterKunde == _kunden.end())
throw "ERROR: No such cdID found!!";
k = (*iterKunde).second;
preis += k->preis(*cd, tag);
//freigeben
cd->rueckgabe();
k->rueckgabe(apos);
for(iterAusleihen = _ausleihen.begin(); iterAusleihen != _ausleihen.end(); iterAusleihen++) {
if((*iterAusleihen) == apos) {
toDel = iterAusleihen;
break;
}
}
if(toDel != _ausleihen.end()) {
delete (*toDel);
_ausleihen.erase(toDel);
}
else
throw "ERROR: AusleihPos not found!!";
}
return preis;
}
string Verleih::ausleihliste() {
ostringstream os("");
vector<AusleihPos *>::iterator iter;
for(iter = _ausleihen.begin(); iter != _ausleihen.end(); iter++) {
os << (*iter)->toString() << endl;
}
return os.str();
}
string Verleih::sucheCDnachTitel(string titel) {
ostringstream os;
for(map<int, CD *>::iterator iter = _cds.begin(); iter != _cds.end(); iter++) {
if((*iter).second->titel() == titel) {
os << cdInfo((*iter).second->ident()) << endl;
}
}
if(os.str() == "")
throw "ERROR: no such Titel found!!";
return os.str();
}
string Verleih::sucheCDnachInterpret(string interpret) {
ostringstream os;
for(map<int, CD *>::iterator iter = _cds.begin(); iter != _cds.end(); iter++) {
if((*iter).second->interpret() == interpret) {
os << cdInfo((*iter).second->ident()) << endl;
}
}
if(os.str() == "")
throw "ERROR: no such Interpret found!!";
return os.str();
}
string Verleih::sucheCDnachTyp(int typ) {
ostringstream os;
for(map<int, CD *>::iterator iter = _cds.begin(); iter != _cds.end(); iter++) {
if((*iter).second->holeTyp() == typ) {
os << cdInfo((*iter).second->ident()) << endl;
}
}
if(os.str() == "")
throw "ERROR: no such Typ found!!";
return os.str();
}
string Verleih::sucheKundeNachName(string name) {
ostringstream os;
for(map<int, Kunde *>::iterator iter = _kunden.begin(); iter != _kunden.end(); iter++) {
if((*iter).second->name() == name) {
os << kundeInfo((*iter).second->ident()) << endl;
}
}
if(os.str() == "")
throw "ERROR: no such Name found!!";
return os.str();
}
string Verleih::sucheKundeNachOrt(string ort) {
ostringstream os;
for(map<int, Kunde *>::iterator iter = _kunden.begin(); iter != _kunden.end(); iter++) {
if((*iter).second->ort() == ort) {
os << kundeInfo((*iter).second->ident()) << endl;
}
}
if(os.str() == "")
throw "ERROR: no such Ort found!!";
return os.str();
}
string Verleih::sucheKundeNachTyp(int typ) {
ostringstream os;
for(map<int, Kunde *>::iterator iter = _kunden.begin(); iter != _kunden.end(); iter++) {
if((*iter).second->getTyp() == typ) {
os << kundeInfo((*iter).second->ident()) << endl;
}
}
if(os.str() == "")
throw "ERROR: no such typ found!!";
return os.str();
}
string Verleih::kundeInfo(int id) {
Kunde *k;
ostringstream os;
vector<AusleihPos *> ausleihen;
vector<AusleihPos *>::iterator iterAus;
if(_kunden.find(id) != _kunden.end())
k = (*_kunden.find(id)).second;
else
throw "ERROR: no such KundenID found";
os << endl << k->toString() << endl << "Ausleihen: \n";
ausleihen = k->holeAusleihen();
for(iterAus = ausleihen.begin(); iterAus != ausleihen.end(); iterAus++) {
os << (*iterAus)->toString() << endl;
}
return os.str();
}
string Verleih::cdInfo(int id) {
CD *cd;
ostringstream os;
if(_cds.find(id) != _cds.end())
cd = (*_cds.find(id)).second;
else
throw "ERROR: no such CD-ID found";
os << cd->toString() << "\tverfuegbar: ";
if(cd->holeAusleihe() == NULL)
os << "ja\n";
else
os << "nein\n";
return os.str();
}