-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDanhSachChuyenBay.cpp
227 lines (211 loc) · 6.9 KB
/
DanhSachChuyenBay.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
#include "DanhSachChuyenBay.h"
#include "DanhSachMayBay.h"
#include "DanhSachVeSuccess.h"
#include "ArrayList.h"
#include "ChuyenBay.h"
#include "Ve.h"
/********************************************
* @Description Hàm khởi tạo Danh Sách Chuyến Bay với số lượng phần tử là maxSize
********************************************/
template <class ChuyenBay, class MayBay, class Ve>
DanhSachChuyenBay<ChuyenBay, MayBay, Ve>::DanhSachChuyenBay(int maxSize) {
ArrayList<ChuyenBay>::setMaxSize(maxSize);
}
/********************************************
* @Description Hàm tìm kiếm chuyến bay theo mã chuyến bay của Danh Sách Chuyến Bay
* @parameter Chuỗi mã chuyến bay cần tìm
* @return Trả về vị trí của phần tử tìm thấy, nếu không trả về -1
********************************************/
template <class ChuyenBay, class MayBay, class Ve>
int DanhSachChuyenBay<ChuyenBay, MayBay, Ve>::timKiemChuyenBay(string maChuyenBay) {
for (int i = 0; i < ArrayList<ChuyenBay>::getSize(); i++) {
ChuyenBay temp = ArrayList<ChuyenBay>::getItem(i);
if (temp.getMaChuyenBay() == maChuyenBay) {
return i;
}
}
return -1;
}
/********************************************
* @Description Hàm hiển thị số lần bay theo số hiệu máy bay của Danh Sách Chuyến Bay
* @parameter Chuỗi số hiệu máy bay cần tìm
********************************************/
template <class ChuyenBay, class MayBay, class Ve>
void DanhSachChuyenBay<ChuyenBay, MayBay, Ve>::hienThiSoLanBay(string soHieuMayBay) {
int thongKeHoanTat = 0;
int thongKeConVe = 0;
int thongKeHetVe = 0;
int thongKeDaHuy = 0;
setColor(2);
cout << "\t\t\t\t\t";
cout << "DANH SACH CAC CHUYEN BAY CUA MAY BAY " << soHieuMayBay << ": " << endl;
setColor(7);
cout << setfill('-');
setColor(4);
cout << setw(145) << "-" << endl;
setColor(7);
cout << setfill(' ');
cout << setw(15) << left << "MA CHUYEN BAY";
cout << setw(25) << left << "NGAY KHOI HANH";
cout << setw(25) << left << "SAN BAY DEN";
cout << setw(15) << left << "TRANG THAI";
cout << setw(100) << left << "DANH SACH VE DUOC DAT" << endl;
cout << setfill('-');
setColor(4);
cout << setw(145) << "-" << endl;
setColor(7);
cout << setfill(' ');
for (int i = 0; i < ArrayList<ChuyenBay>::getSize(); i++) {
ChuyenBay temp = ArrayList<ChuyenBay>::getItem(i);
if (temp.getSoHieuMayBay() == soHieuMayBay) {
if (temp.getTrangThai() == 0) {
thongKeDaHuy++;
setColor(4);
}
else if (temp.getTrangThai() == 1) {
thongKeConVe++;
setColor(9);
}
else if (temp.getTrangThai() == 2) {
thongKeHetVe++;
setColor(4);
}
else if (temp.getTrangThai() == 3) {
thongKeHoanTat++;
setColor(10);
}
temp.display();
setColor(7);
cout << endl;
}
}
cout << setfill('-');
setColor(4);
cout << setw(145) << "-" << endl;
setColor(7);
cout << setfill(' ');
cout << endl;
setColor(2);
cout << "\t\t\t\t\t";
cout << "THONG KE: " << endl;
setColor(7);
cout << "\t\t\t";
cout << "So chuyen bay hoan tat: " << thongKeHoanTat << " chuyen." << endl;
cout << "\t\t\t";
cout << "So chuyen bay da huy: " << thongKeDaHuy << " chuyen." << endl;
cout << "\t\t\t";
cout << "So chuyen bay con ve: " << thongKeConVe << " chuyen." << endl;
cout << "\t\t\t";
cout << "So chuyen bay het ve: " << thongKeHetVe << " chuyen." << endl;
}
/********************************************
* @Description Hàm xử lý đọc file Danh Sách Chuyến Bay
* @parameter Danh sách máy bay, danh sách vé thành công
********************************************/
template <class ChuyenBay, class MayBay, class Ve>
void DanhSachChuyenBay<ChuyenBay, MayBay, Ve>::xuLyDocFile(DanhSachMayBay<MayBay> DSMB, DanhSachVeSuccess<Ve> DSVS) {
ifstream ifile("ChuyenBay.txt");
if (!ifile) {
cout << "Khong mo duoc file ChuyenBay.txt!" << endl;
exit(1);
return;
}
string s;
while (getline(ifile, s)) {
stringstream ss(s);
string temp;
vector<string> dataTemp;
while (getline(ss, temp, '|')) {
dataTemp.push_back(temp);
}
if (dataTemp.size() < 6 && dataTemp.size() > 7) {
continue;
}
MayBay* timKiemMayBay = DSMB.timKiemMayBay(dataTemp[1]);
if (timKiemMayBay != NULL) {
ChuyenBay* newItem = new ChuyenBay(dataTemp[0], dataTemp[1], dataTemp[2], dataTemp[3]);
newItem->setTimestamp();
newItem->setTrangThai(dataTemp[4]);
newItem->setSoCho(timKiemMayBay->getSoCho());
newItem->setDanhSachVe(dataTemp[5], dataTemp[0], DSVS);
newItem->setDanhSachGheTrong();
ArrayList<ChuyenBay>::add(*newItem);
}
}
ifile.close();
}
/********************************************
* @Description Hàm cập nhật file Danh Sách Chuyến Bay
********************************************/
template <class ChuyenBay, class MayBay, class Ve>
void DanhSachChuyenBay<ChuyenBay, MayBay, Ve>::updateFile() {
ofstream ofile;
ofile.open("ChuyenBay.txt", ios::out);
for (int i = 0; i < ArrayList<ChuyenBay>::getSize(); i++) {
ChuyenBay data = ArrayList<ChuyenBay>::getItem(i);
ofile << data.thongTinFile();
if (i != ArrayList<ChuyenBay>::getSize() - 1) {
ofile << endl;
}
}
ofile.close();
}
/********************************************
* @Description Hàm hiển thị tất cả các chuyến bay của Danh Sách Chuyến Bay
********************************************/
template <class ChuyenBay, class MayBay, class Ve>
void DanhSachChuyenBay<ChuyenBay, MayBay, Ve>::hienThiChuyenBay() {
cout << "Thoi gian hien tai: " << getCurrentDate() << endl;
setColor(2);
cout << "\t\t\t\t\t";
cout << "DANH SACH CAC CHUYEN BAY:" << endl;
setColor(7);
cout << setfill('-');
setColor(4);
cout << setw(165) << "-" << endl;
setColor(7);
cout << setfill(' ');
cout << setw(15) << left << "MA CHUYEN BAY";
cout << setw(25) << left << "NGAY KHOI HANH";
cout << setw(25) << left << "SAN BAY DEN";
cout << setw(15) << left << "TRANG THAI";
cout << setw(100) << left << "DANH SACH VE DUOC DAT" << endl;
cout << setfill('-');
setColor(4);
cout << setw(165) << "-" << endl;
setColor(7);
cout << setfill(' ');
for (int i = 0; i < ArrayList<ChuyenBay>::getSize(); i++) {
ChuyenBay item = ArrayList<ChuyenBay>::getItem(i);
if (item.getTrangThai() == 0) {
setColor(4);
}
else if (item.getTrangThai() == 1) {
setColor(9);
}
else if (item.getTrangThai() == 2) {
setColor(4);
}
else if (item.getTrangThai() == 3) {
setColor(10);
}
item.display();
setColor(7);
}
cout << setfill('-');
setColor(4);
cout << setw(165) << "-" << endl;
setColor(7);
cout << setfill(' ');
cout << endl;
}
/********************************************
* @Description Hàm update trạng thái của tất cả các chuyến bay trong Danh Sách Chuyến Bay
********************************************/
template <class ChuyenBay, class MayBay, class Ve>
void DanhSachChuyenBay<ChuyenBay, MayBay, Ve>::updateTrangThai() {
for (int i = 0; i < ArrayList<ChuyenBay>::getSize(); i++) {
ChuyenBay* data = ArrayList<ChuyenBay>::getPointerItem(i);
data->updateTrangThai();
}
}