-
Notifications
You must be signed in to change notification settings - Fork 0
/
travelPack.cpp
242 lines (191 loc) · 4.63 KB
/
travelPack.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
#include "travelPack.h"
#include "customUtilities.h"
#include <iostream>
#include <iomanip>
using namespace std;
TravelPack::TravelPack()
{
id = 0;
destinations = {};
departureDate = Date(0, 0, 0);
returnDate = Date(999999, 12, 31);
price = 0;
maxBookings = 0;
currentBookings = 0;
}
#pragma region GETTERS
int TravelPack::getId() const
{
return this->id;
}
std::vector<std::string> TravelPack::getDestinations() const
{
return this->destinations;
}
std::string TravelPack::getDestinationAt(const int index) const
{
if (index >= (int) this->destinations.size())
return "";
return this->destinations.at(index);
}
size_t TravelPack::getDestinationsSize() const
{
return this->destinations.size();
}
Date TravelPack::getDeparture() const
{
return this->departureDate;
}
Date TravelPack::getReturn() const
{
return this->returnDate;
}
int TravelPack::getPrice() const
{
return this->price;
}
int TravelPack::getMaxBookings() const
{
return this->maxBookings;
}
int TravelPack::getCurrentBookings() const
{
return this->currentBookings;
}
#pragma endregion
#pragma region SETTERS
bool TravelPack::setId(const int id)
{
this->id = id;
return true;
}
bool TravelPack::setDestinations(const std::vector<std::string>& destinations)
{
if (destinations.empty())
return false;
this->destinations = vector<string>(destinations);
return true;;
}
bool TravelPack::setDeparture(const Date departureDate)
{
if (departureDate > this->returnDate)
return false;
this->departureDate = departureDate;
return true;
}
bool TravelPack::setReturn(const Date returnDate)
{
if (returnDate < this->departureDate)
return false;
this->returnDate = returnDate;
return true;
}
bool TravelPack::setPrice(const int price)
{
if (price < 0)
return false;
this->price = price;
return true;
}
bool TravelPack::setMaxBookings(const int maxBookings)
{
if (maxBookings <= 0 || maxBookings < this->currentBookings)
return false;
this->maxBookings = maxBookings;
return true;
}
bool TravelPack::setCurrentBookings(int currentBookings)
{
if (currentBookings < 0 || currentBookings > this->maxBookings)
return false;
this->currentBookings = currentBookings;
return true;
}
#pragma endregion
// OTHER PUBLIC METHODS
void TravelPack::printSummary() const
{
cout << left << setw(20) << this->destinations.front() << right
<< " - " << this->departureDate
<< " ~ " << this->returnDate
<< " - Tickets left: " << (this->maxBookings - this->currentBookings);
}
bool TravelPack::isAvailable() const
{
if (this->id >= 1)
return true;
else
return false;
}
void TravelPack::makeAvailable()
{
this->id = abs(this->id);
}
void TravelPack::makeUnavailable()
{
this->id = -abs(this->id);
}
void TravelPack::updateAvailability()
{
Date now = Date().now();
if (this->departureDate < now || this->currentBookings >= this->maxBookings)
this->makeUnavailable();
}
bool TravelPack::containsDestination(const string & s) const
{
string aux;
for (size_t i = 0; i < this->destinations.size(); i++)
{
aux = this->destinations.at(i);
cu::strLower(aux);
if (aux.find(s) != string::npos)
return true;
}
return false;
}
// OUTPUT STREAM OPERATOR OVERRIDES
std::ostream& operator<<(std::ostream& stream, const TravelPack& pack)
{
stream << setw(PACK_OUTPUT_ALIGNMENT) << "Id: " << pack.id << endl;
stream << setw(PACK_OUTPUT_ALIGNMENT) << "Destinations: " << pack.destinations.front();
if (pack.destinations.size() != 1)
{
stream << " - ";
for (size_t i = 1; i < pack.destinations.size() - 1; i++)
{
stream << pack.destinations.at(i) << ", ";
}
stream << pack.destinations.back();
}
stream << endl;
stream << setw(PACK_OUTPUT_ALIGNMENT) << "Departure: " << pack.departureDate << endl;
stream << setw(PACK_OUTPUT_ALIGNMENT) << "Fim: " << pack.returnDate << endl;
stream << setw(PACK_OUTPUT_ALIGNMENT) << "Price: " << pack.price << endl;
stream << setw(PACK_OUTPUT_ALIGNMENT) << "Max Bookings: " << pack.maxBookings << endl;
stream << setw(PACK_OUTPUT_ALIGNMENT) << "Current Bookings: " << pack.currentBookings;
return stream;
}
std::ofstream& operator<<(std::ofstream& stream, const TravelPack& pack)
{
stream << pack.id << endl;
stream << pack.destinations.front();
if (pack.destinations.size() != 1)
{
stream << " - ";
for (size_t i = 1; i < pack.destinations.size() - 1; i++)
{
stream << pack.destinations.at(i) << ", ";
}
stream << pack.destinations.back();
}
stream << endl;
stream << pack.departureDate << endl;
stream << pack.returnDate << endl;
stream << pack.price << endl;
stream << pack.maxBookings << endl;
stream << pack.currentBookings;
return stream;
}
// T1G02
// up201800170 Breno Accioly
// up201806516 Tiago Silva