-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAirlineSystem.cpp
More file actions
539 lines (430 loc) · 11.3 KB
/
Copy pathAirlineSystem.cpp
File metadata and controls
539 lines (430 loc) · 11.3 KB
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
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
#include "AirlineSystem.h"
#include <iostream>
#include <algorithm>
#include <fstream>
#include <sstream>
void AirlineSystem::showFlights() const
{
if (flights.empty())
{
std::cout << "No flights available.\n";
return;
}
for (const auto& flight : flights)
{
flight.displayInfo();
std::cout << "---------------------\n";
}
}
void AirlineSystem::showPassengers() const
{
if (passengers.empty())
{
std::cout << "No passengers available.\n";
return;
}
for (const auto& passenger : passengers)
{
passenger.displayInfo();
}
}
void AirlineSystem::showReservations() const
{
if (reservations.empty())
{
std::cout << "No reservations.\n";
return;
}
for (const auto& reservation : reservations)
{
reservation.displayInfo();
}
}
void AirlineSystem::addFlight()
{
std::string flightNumber;
std::string departureCity;
std::string arrivalCity;
std::string departureTime;
int totalSeats;
std::cout << "Flight number: ";
std::cin >> flightNumber;
std::cout << "Departure city: ";
std::cin >> departureCity;
std::cout << "Arrival city: ";
std::cin >> arrivalCity;
std::cout << "Departure time: ";
std::cin >> departureTime;
std::cout << "Total seats: ";
std::cin >> totalSeats;
flights.emplace_back(
flightNumber,
departureCity,
arrivalCity,
departureTime,
totalSeats
);
saveFlights();
std::cout << "Flight successfully added.\n";
}
void AirlineSystem::addPassenger()
{
int id;
std::string firstName;
std::string lastName;
std::cout << "Passenger ID: ";
std::cin >> id;
std::cout << "First name: ";
std::cin >> firstName;
std::cout << "Last name: ";
std::cin >> lastName;
passengers.emplace_back(
id,
firstName,
lastName
);
savePassengers();
std::cout << "Passenger successfully added.\n";
}
void AirlineSystem::searchFlightByDestination() const
{
std::string destination;
std::cout << "Enter destination city: ";
std::cin >> destination;
bool found = false;
for (const auto& flight : flights)
{
if (flight.getArrivalCity() == destination)
{
flight.displayInfo();
found = true;
}
}
if (!found)
{
std::cout << "No flights found.\n";
}
}
void AirlineSystem::makeReservation()
{
int passengerId;
std::string flightNumber;
std::cout << "Passenger ID: ";
std::cin >> passengerId;
std::cout << "Flight number: ";
std::cin >> flightNumber;
Passenger* passengerPtr = nullptr;
Flight* flightPtr = nullptr;
for (auto& passenger : passengers)
{
if (passenger.getPassengerId() == passengerId)
{
passengerPtr = &passenger;
break;
}
}
for (auto& flight : flights)
{
if (flight.getFlightNumber() == flightNumber)
{
flightPtr = &flight;
break;
}
}
if (passengerPtr == nullptr)
{
std::cout << "Passenger not found.\n";
return;
}
if (flightPtr == nullptr)
{
std::cout << "Flight not found.\n";
return;
}
for (const auto& reservation : reservations)
{
if (reservation.getPassengerId() == passengerId &&
reservation.getFlightNumber() == flightNumber)
{
std::cout << "Passenger already has a reservation for this flight.\n";
return;
}
}
int numberOfTickets;
std::cout << "Available seats: "
<< flightPtr->getAvailableSeats()
<< "\n";
std::cout << "Number of tickets: ";
std::cin >> numberOfTickets;
if (!flightPtr->reserveSeats(numberOfTickets)){
std::cout << "Not enough available seats.\n";
std::cout << "Only "
<< flightPtr->getAvailableSeats()
<< " seats are available.\n";
return;
}
int reservationId =
static_cast<int>(reservations.size()) + 1;
for (int i = 0; i < numberOfTickets; i++){
reservations.emplace_back(
reservationId++,
passengerId,
flightNumber
);
}
saveReservations();
saveFlights(); // jer se promenio broj slobodnih mesta
std::cout << "Reservation successfully created.\n";
}
void AirlineSystem::cancelReservation()
{
int reservationId;
std::cout << "Reservation ID: ";
std::cin >> reservationId;
auto reservationIt =
std::find_if(
reservations.begin(),
reservations.end(),
[reservationId](const Reservation& reservation)
{
return reservation.getReservationId() == reservationId;
}
);
if (reservationIt == reservations.end())
{
std::cout << "Reservation not found.\n";
return;
}
for (auto& flight : flights)
{
if (flight.getFlightNumber() ==
reservationIt->getFlightNumber())
{
flight.cancelSeat();
break;
}
}
reservations.erase(reservationIt);
saveReservations();
saveFlights(); // zbog broja slobodnih mesta
std::cout << "Reservation cancelled.\n";
}
void AirlineSystem::removeFlight()
{
std::string flightNumber;
std::cout << "Flight number: ";
std::cin >> flightNumber;
for (const auto& reservation : reservations)
{
if (reservation.getFlightNumber() == flightNumber)
{
std::cout << "Cannot delete flight with active reservations.\n";
return;
}
}
auto flightIt =
std::find_if(
flights.begin(),
flights.end(),
[&flightNumber](const Flight& flight)
{
return flight.getFlightNumber() == flightNumber;
}
);
if (flightIt == flights.end())
{
std::cout << "Flight not found.\n";
return;
}
flights.erase(flightIt);
saveFlights();
std::cout << "Flight removed.\n";
}
void AirlineSystem::removePassenger()
{
int passengerId;
std::cout << "Passenger ID: ";
std::cin >> passengerId;
for (const auto& reservation : reservations)
{
if (reservation.getPassengerId() == passengerId)
{
std::cout << "Cannot delete passenger with active reservations.\n";
return;
}
}
auto passengerIt =
std::find_if(
passengers.begin(),
passengers.end(),
[passengerId](const Passenger& passenger)
{
return passenger.getPassengerId() == passengerId;
}
);
if (passengerIt == passengers.end())
{
std::cout << "Passenger not found.\n";
return;
}
passengers.erase(passengerIt);
savePassengers();
std::cout << "Passenger removed.\n";
}
void AirlineSystem::saveFlights() const
{
std::ofstream file("flights.txt");
for (const auto& flight : flights)
{
file
<< flight.getFlightNumber() << ";"
<< flight.getDepartureCity() << ";"
<< flight.getArrivalCity() << ";"
<< flight.getDepartureTime() << ";"
<< flight.getTotalSeats() << ";"
<< flight.getAvailableSeats() << ";"
<< static_cast<int>(flight.getStatus())
<< "\n";
}
}
void AirlineSystem::loadFlights()
{
flights.clear();
std::ifstream file("flights.txt");
std::string line;
while (getline(file, line))
{
std::stringstream ss(line);
std::string flightNumber;
std::string departureCity;
std::string arrivalCity;
std::string departureTime;
std::string seatsString;
std::string availableSeatsString;
std::string statusString;
getline(ss, flightNumber, ';');
getline(ss, departureCity, ';');
getline(ss, arrivalCity, ';');
getline(ss, departureTime, ';');
getline(ss, seatsString, ';');
getline(ss, availableSeatsString, ';');
getline(ss, statusString);
Flight flight(
flightNumber,
departureCity,
arrivalCity,
departureTime,
stoi(seatsString)
);
flight.setAvailableSeats(
stoi(availableSeatsString)
);
flight.setStatus(
static_cast<FlightStatus>(stoi(statusString))
);
flights.push_back(flight);
}
}
void AirlineSystem::savePassengers() const
{
std::ofstream file("passengers.txt");
for (const auto& passenger : passengers)
{
file
<< passenger.getPassengerId() << ";"
<< passenger.getFirstName() << ";"
<< passenger.getLastName()
<< "\n";
}
}
void AirlineSystem::loadPassengers()
{
passengers.clear();
std::ifstream file("passengers.txt");
std::string line;
while (getline(file, line))
{
std::stringstream ss(line);
std::string idString;
std::string firstName;
std::string lastName;
getline(ss, idString, ';');
getline(ss, firstName, ';');
getline(ss, lastName);
passengers.emplace_back(
stoi(idString),
firstName,
lastName
);
}
}
void AirlineSystem::saveReservations() const
{
std::ofstream file("reservations.txt");
for (const auto& reservation : reservations)
{
file
<< reservation.getReservationId() << ";"
<< reservation.getPassengerId() << ";"
<< reservation.getFlightNumber()
<< "\n";
}
}
void AirlineSystem::loadReservations()
{
reservations.clear();
std::ifstream file("reservations.txt");
std::string line;
while (getline(file, line))
{
std::stringstream ss(line);
std::string reservationId;
std::string passengerId;
std::string flightNumber;
getline(ss, reservationId, ';');
getline(ss, passengerId, ';');
getline(ss, flightNumber);
reservations.emplace_back(
stoi(reservationId),
stoi(passengerId),
flightNumber
);
}
}
void AirlineSystem::changeFlightStatus()
{
std::string flightNumber;
std::cout << "Flight number: ";
std::cin >> flightNumber;
for (auto& flight : flights)
{
if (flight.getFlightNumber() == flightNumber)
{
int choice;
std::cout << "\nChoose new status:\n";
std::cout << "1. On Time\n";
std::cout << "2. Delayed\n";
std::cout << "3. Cancelled\n";
std::cout << "Choice: ";
std::cin >> choice;
switch (choice)
{
case 1:
flight.setStatus(FlightStatus::OnTime);
break;
case 2:
flight.setStatus(FlightStatus::Delayed);
break;
case 3:
flight.setStatus(FlightStatus::Cancelled);
break;
default:
std::cout << "Invalid option.\n";
return;
}
std::cout << "Flight status updated successfully.\n";
return;
}
}
std::cout << "Flight not found.\n";
}