-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDanhSachVeSuccess.cpp
130 lines (116 loc) · 3.76 KB
/
DanhSachVeSuccess.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
#include "DanhSachVeSuccess.h"
#include "Header.h"
#include "LinkedList.h"
#include "Node.h"
/********************************************
* @Description Hàm xử lý đọc file cho Danh Sách Vé Thành Công
********************************************/
template <class Ve>
void DanhSachVeSuccess<Ve>::xuLyDocFile() {
ifstream ifile("VeThanhCong.txt");
if (!ifile) {
cout << "Khong mo duoc file VeThanhCong.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) {
continue;
}
//Khởi tạo một đối tượng Vé mới
Ve* newItem = new Ve(dataTemp[0], dataTemp[1], dataTemp[2], dataTemp[3]);
//Set các thuộc tính cho Vé đó
newItem->setSoGhe(dataTemp[4]);
newItem->setDate(dataTemp[5]);
newItem->setTimestamp();
//Thêm vào danh sách Vé Thành Công
LinkedList<Ve>::addTail(*newItem);
}
ifile.close();
}
/********************************************
* @Description Hàm xử lý ghi file cho Danh Sách Vé Thành Công
* @parameter Vé muốn ghi file
********************************************/
template <class Ve>
void DanhSachVeSuccess<Ve>::xuLyGhiFile(Ve data) {
ofstream ofile;
ofile.open("VeThanhCong.txt", ios::in | ios::app);
if (LinkedList<Ve>::getSize() != 0) {
ofile << endl;
}
ofile << data.thongTinFile();
ofile.close();
}
/********************************************
* @Description Hàm xử lý cập nhật laị file cho Danh Sách Vé Thành Công
********************************************/
template <class Ve>
void DanhSachVeSuccess<Ve>::updateFile() {
ofstream ofile;
ofile.open("VeThanhCong.txt", ios::out);
Node<Ve>* pWalker = LinkedList<Ve>::getHead();
while (pWalker != NULL) {
ofile << pWalker->_data.thongTinFile();
if (pWalker != LinkedList<Ve>::getTail()) {
ofile << endl;
}
pWalker = pWalker->_pNext;
}
ofile.close();
}
/********************************************
* @Description Hàm tìm kiếm Vé trong Danh Sách Vé Thành Công
* @parameter Số ghế và Chuỗi Mã Chuyến Bay muốn tìm
* @return Trả về địa chỉ của Vé tìm thấy, nếu không tìm thấy thì trả về NULL
********************************************/
template <class Ve>
Ve* DanhSachVeSuccess<Ve>::timKiemVe(int maSoGhe, string maChuyenBay) {
Node<Ve>* pWalker = LinkedList<Ve>::getHead();
while (pWalker != NULL) {
if (pWalker->_data.getSoGhe() == maSoGhe && pWalker->_data.getMaChuyenBay() == maChuyenBay) {
return &(pWalker->_data);
}
pWalker = pWalker->_pNext;
}
return NULL;
}
/********************************************
* @Description Hàm tìm kiếm Vé trong Danh Sách Vé Thành Công
* @parameter Chuỗi Mã Vé muốn tìm
* @return Trả về địa chỉ của Vé tìm thấy, nếu không tìm thấy thì trả về NULL
********************************************/
template <class Ve>
Ve* DanhSachVeSuccess<Ve>::timKiemVe(string maVe) {
Node<Ve>* pWalker = LinkedList<Ve>::getHead();
while (pWalker != NULL) {
if (pWalker->_data.getMaVe() == maVe) {
return &(pWalker->_data);
}
pWalker = pWalker->_pNext;
}
return NULL;
}
/********************************************
* @Description Hàm tìm kiếm Vé (Node) trong Danh Sách Vé Thành Công
* @parameter Chuỗi Mã Vé muốn tìm
* @return Trả về Node chứa Vé tìm thấy, nếu không tìm thấy thì trả về NULL
********************************************/
template <class Ve>
Node<Ve>* DanhSachVeSuccess<Ve>::timKiemNode(string maVe) {
Node<Ve>* pWalker = LinkedList<Ve>::getHead();
while (pWalker != NULL) {
if (pWalker->_data.getMaVe() == maVe) {
return pWalker;
}
pWalker = pWalker->_pNext;
}
return NULL;
}