-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathairtravel.py
201 lines (153 loc) · 5.87 KB
/
airtravel.py
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
"""
Model for flight details
"""
class Flight:
"""
A flight with a particular passenger aircraft.
"""
def __init__(self, number, aircraft):
if not number[:2].isalpha():
raise ValueError("No airline code in '{}'".format(number))
if not number[:2].isupper():
raise ValueError("Invalid airline code in '{}'".format(number))
if not (number[2:].isdigit() and int(number[2:]) <= 9999):
raise ValueError("No airline code in '{}'".format(number))
self._number = number
self._aircraft = aircraft
rows, seats = self._aircraft.seating_plan()
self._seating = [None] + [{letter: None for letter in seats} for _ in rows]
def number(self):
return self._number
def airline(self):
return self._number[:2]
def aircraft_model(self):
return self._aircraft.model()
def _parse_seat(self, seat):
"""
Parse a seat into a valid row and letter
Args:
seat: A seat designator such as 21F
Returns:
A tuple containing int and str for row and seat
:param seat:
:return:
"""
row_numbers, seat_letters = self._aircraft.seating_plan()
letter = seat[-1]
if letter not in seat_letters:
raise ValueError("Invalid seat letter {}".format(letter))
row_text = seat[:-1]
try:
row = int(row_text)
except ValueError:
raise ValueError("Invalid seat row {}".format(row_text))
if row not in row_numbers:
raise ValueError("Invalid row number {}".format(row))
return row, letter
def allocate_seat(self, seat, passenger):
"""
Allocate a seat to a passenger
Args:
seat: A seat designator such as '12C' or 21F'
passenger: The passenger name
Raises:
ValueError: If the seat is unavailable
:param seat:
:param passenger:
:return:
"""
row, letter = self._parse_seat(seat)
if self._seating[row][letter] is not None:
raise ValueError("Seat {} already occupied".format(seat))
self._seating[row][letter] = passenger
def relocate_passenger(self, from_seat, to_seat):
"""
Relocates a passenger from one seat to another
Args:
from_seat: The existing seat designator for the passenger to be moved
to_seat: The new seat designator
:param from_seat:
:param to_seat:
:return:
"""
from_row, from_letter = self._parse_seat(from_seat)
if self._seating[from_row][from_letter] is None:
raise ValueError("No passenger to relocate in seat {}".format(from_seat))
to_row, to_letter = self._parse_seat(to_seat)
if self._seating[to_row][to_letter] is not None:
raise ValueError("Seat {} is already occupied".format(to_seat))
self._seating[to_row][to_letter] = self._seating[from_row][from_letter]
self._seating[from_row][from_letter] = None
def num_of_seats_available(self):
"""
Check how many seats on the flight are still available
:return:
"""
return sum(sum(1 for s in row.values() if s is None)
for row in self._seating
if row is not None)
def make_boarding_cards(self, card_printer):
for passenger, seat in sorted(self._passenger_seats()):
card_printer(passenger, seat, self.number(), self.aircraft_model())
def _passenger_seats(self):
"""
An iterable series of passenger seating allocations
:return:
"""
row_numbers, seat_letters = self._aircraft.seating_plan()
for row in row_numbers:
for letter in seat_letters:
passenger = self._seating[row][letter]
if passenger is not None:
yield passenger, "{}{}".format(row, letter)
class Aircraft:
def __init__(self, registration):
self._registration = registration
def registration(self):
return self._registration
def num_seats(self):
rows, row_seats = self.seating_plan()
return len(rows) * len(row_seats)
class AirbusA319(Aircraft):
def model(self):
return "Airbus A319"
def seating_plan(self):
return range(1, 23), "ABCDEF"
class Boeing777(Aircraft):
def model(self):
return "Boeing 777"
def seating_plan(self):
"""
For simplicity sake, ingore the complexity of first-class
:return:
"""
return range(1, 56), "ABCDEGHJK"
def make_flights():
"""
Create a dummy flight with some passengers
:return:
"""
f = Flight("SN766", AirbusA319("G-EUPT"))
f.allocate_seat("12A", "Oliver Martinez")
f.allocate_seat("15F", "Emily Sophie Brown")
f.allocate_seat("15E", "Sophie Chloe Davis")
f.allocate_seat("1C", "Daniel Smith")
f.allocate_seat("1E", "Charlotte Lucy Jones")
g = Flight("AF72", Boeing777("F-GSPS"))
g.allocate_seat("55A", "Larry Wall")
g.allocate_seat("33G", "Yukihiro Matsumoto")
g.allocate_seat("4B", "Brian Kernighan")
g.allocate_seat("4A", "Dennis Ritchie")
return f, g
def console_card_printer(passenger, seat, flight_number, aircraft):
output = "| Name: {0}" \
" Flight: {1}" \
" Seat: {2}" \
" Aircraft: {3}" \
" |".format(passenger, seat, flight_number, aircraft)
banner = "+" + "-" * (len(output) - 2) + "+"
border = "|" + " " * (len(output) - 2) + "|"
lines = [banner, border, output, border, banner]
card = "\n".join(lines)
print(card)
print()