-
Notifications
You must be signed in to change notification settings - Fork 3.2k
/
Copy pathHotelManager.cpp
128 lines (107 loc) · 3.78 KB
/
HotelManager.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
#include "HotelManager.hpp"
#include <iostream>
HotelManager::HotelManager() : bookingIdCounter(1) {}
HotelManager::~HotelManager() {
for (auto room : rooms) delete room;
for (auto guest : guests) delete guest;
for (auto booking : bookings) delete booking;
}
void HotelManager::addRoom(Room* room) {
rooms.push_back(room);
}
void HotelManager::addGuest(Guest* guest) {
guests.push_back(guest);
}
Booking* HotelManager::createBooking(std::string guestId, std::string roomNumber,
std::string checkInDate, std::string checkOutDate,
int numberOfNights) {
Guest* guest = findGuest(guestId);
Room* room = findRoom(roomNumber);
if (!guest || !room || room->getStatus() != RoomStatus::AVAILABLE) {
return nullptr;
}
Booking* booking = new Booking(generateBookingId(), guest, room,
checkInDate, checkOutDate, numberOfNights);
bookings.push_back(booking);
return booking;
}
bool HotelManager::checkIn(std::string bookingId) {
Booking* booking = findBooking(bookingId);
if (!booking || booking->getStatus() != BookingStatus::CONFIRMED) {
return false;
}
booking->setStatus(BookingStatus::CHECKED_IN);
booking->getRoom()->setStatus(RoomStatus::OCCUPIED);
return true;
}
bool HotelManager::checkOut(std::string bookingId) {
Booking* booking = findBooking(bookingId);
if (!booking || booking->getStatus() != BookingStatus::CHECKED_IN) {
return false;
}
booking->setStatus(BookingStatus::CHECKED_OUT);
booking->getRoom()->setStatus(RoomStatus::AVAILABLE);
return true;
}
bool HotelManager::cancelBooking(std::string bookingId) {
Booking* booking = findBooking(bookingId);
if (!booking || booking->getStatus() != BookingStatus::CONFIRMED) {
return false;
}
booking->setStatus(BookingStatus::CANCELLED);
booking->getRoom()->setStatus(RoomStatus::AVAILABLE);
return true;
}
void HotelManager::displayAvailableRooms() const {
std::cout << "\nAvailable Rooms:" << std::endl;
for (const auto& room : rooms) {
if (room->getStatus() == RoomStatus::AVAILABLE) {
room->displayInfo();
std::cout << "------------------------" << std::endl;
}
}
}
void HotelManager::displayBookingHistory(std::string guestId) const {
std::cout << "\nBooking History:" << std::endl;
for (const auto& booking : bookings) {
if (booking->getGuest()->getGuestId() == guestId) {
booking->displayInfo();
std::cout << "------------------------" << std::endl;
}
}
}
void HotelManager::displayAllGuests() const {
std::cout << "\nAll Guests:" << std::endl;
for (const auto& guest : guests) {
guest->displayInfo();
std::cout << "------------------------" << std::endl;
}
}
void HotelManager::displayAllBookings() const {
std::cout << "\nAll Bookings:" << std::endl;
for (const auto& booking : bookings) {
booking->displayInfo();
std::cout << "------------------------" << std::endl;
}
}
Room* HotelManager::findRoom(const std::string& roomNumber) const {
for (auto room : rooms) {
if (room->getRoomNumber() == roomNumber) return room;
}
return nullptr;
}
Guest* HotelManager::findGuest(const std::string& guestId) const {
for (auto guest : guests) {
if (guest->getGuestId() == guestId) return guest;
}
return nullptr;
}
Booking* HotelManager::findBooking(const std::string& bookingId) const {
for (auto booking : bookings) {
if (booking->getBookingId() == bookingId) return booking;
}
return nullptr;
}
std::string HotelManager::generateBookingId() {
return "BK" + std::to_string(bookingIdCounter++);
}