-
Notifications
You must be signed in to change notification settings - Fork 0
/
CarList.cpp
264 lines (256 loc) · 5.64 KB
/
CarList.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
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
#include <iostream>
#include <string>
#include <cstdlib>
#include <fstream>
#include "car_add.cpp"
//#include "payment.cpp"
//#include "wagon.cpp"
//#include "mainten_part.cpp"
using namespace std;
class CarList
{
private:
int Car_List;
car_add obj1;
public:
void del_service(char id)
{
fstream file;
vector<string> v;
string tp;
int count = 0; char a;
file.open("service.txt", ios::in);
if (file.is_open())
{
while (getline(file, tp))
{
// cout << tp << "\n";
v.push_back(tp);
}
file.close();
}
else
cout << "File open is unsuccesfull" << endl;
for (int i = 0; i < v.size(); i++)
{
a = v[i][0];
if (a == id)
{
v.erase(v.begin() + count);
}
count++;
}
file.open("service.txt", std::ofstream::out | std::ofstream::trunc);
for (int i = 0; i < v.size(); i++)
{
tp = v[i];
file << tp;
file << "\n";
}
file.close();
cout << "the payment ID is: " << id << endl;
cout << "the car name is: " << "Service" << endl;
cout << "the amount for the repair is: " << 3500 << endl;
}
void del_sedan(char id)
{
fstream file;
vector<string> v;
string tp;
int count = 0; char a;
file.open("sedan.txt", ios::in);
if (file.is_open())
{
while (getline(file, tp))
{
// cout << tp << "\n";
v.push_back(tp);
}
file.close();
}
else
cout << "File open is unsuccesfull" << endl;
for (int i = 0; i < v.size(); i++)
{
a = v[i][0];
if (a == id)
{
v.erase(v.begin() + count);
}
count++;
}
file.open("sedan.txt", std::ofstream::out | std::ofstream::trunc);
for (int i = 0; i < v.size(); i++)
{
tp = v[i];
file << tp;
file << "\n";
}
file.close();
cout << "the payment ID is: " << id << endl;
cout << "the car name is: " << "Sedan" << endl;
cout << "the amount for the repair is: " << 5000 << endl;
}
void del_hatchback(char id)
{
fstream file;
vector<string> v;
string tp;
int count = 0; char a;
file.open("hatchback.txt", ios::in);
if (file.is_open())
{
while (getline(file, tp))
{
// cout << tp << "\n";
v.push_back(tp);
}
file.close();
}
else
cout << "File open is unsuccesfull" << endl;
for (int i = 0; i < v.size(); i++)
{
a = v[i][0];
if (a == id)
{
v.erase(v.begin() + count);
}
count++;
}
file.open("hatchback.txt", std::ofstream::out | std::ofstream::trunc);
for (int i = 0; i < v.size(); i++)
{
tp = v[i];
file << tp;
file << "\n";
}
file.close();
cout << "the payment ID is: " << id << endl;
cout << "the car name is:" << "Hatchback" << endl;
cout << "the amount for the repair is: " << 8000 << endl;
}
void display()
{
cout << "enter the type of wagon you want to rent: " << endl;
cout << "enter 1 for hatchback " << endl;
cout << "enter 2 for sedan " << endl;
cout << "enter 3 for service " << endl;
int r;
char choice;
cin >> r;
switch (r)
{
case 1:
{
fstream newfile;
newfile.open("hatchback.txt", ios::in);
if (newfile.is_open())
{
string tp;
while (getline(newfile, tp))
{
cout << tp << "\n";
}
newfile.close();
}
else
cout << "file open is unsuccesfull" << endl;
cout << "Enter Car chosen\n";
cin >> choice;
del_hatchback(choice);
// to hatchback func(choice);
// this function in wagon will call payment
}
break;
case 2:
{
fstream newfile1;
newfile1.open("sedan.txt", ios::in);
if (newfile1.is_open())
{
string tp;
while (getline(newfile1, tp))
{
cout << tp << "\n";
}
newfile1.close();
}
else
cout << "File open is unsuccesfull" << endl;
cout << "Enter wagon chosen\n";
cin >> choice;
del_sedan(choice);
// to sedan func(choice);
// this function in wagon will call payment
break;
}
case 3:
{
fstream newfile2;
newfile2.open("service.txt", ios::in);
if (newfile2.is_open())
{
string tp;
while (getline(newfile2, tp))
{
cout << tp << "\n";
}
newfile2.close();
}
else
{
cout << "File open is unsuccesfull" << endl;
}
cout << "Enter wagon chosen\n";
cin >> choice;
del_service(choice);
// to service func(choice);
// this function in wagon will call payment
//void del(char id)
}
}
}
void add()
{
cout << "Enter the type of wagon you want to add: " << endl;
cout << "Enter 1 for hatchback " << endl;
cout << "Enter 2 for sedan " << endl;
cout << "Enter 3 for service " << endl;
int q;
cin >> q;
string cname;
cout << "Enter the name of the car" << endl;
cin >> cname;
int cost;
cout << "Enter the cost of the car" << endl;
cin >> cost;
string type;
cout << "Enter the type of the car" << endl;
cin >> type;
int ageOfCar;
cout << "Enter the age of the car" << endl;
cin >> ageOfCar;
obj1.att_set(cname, type, cost, ageOfCar);
switch (q)
{
case 1:
break;
case 2:
break;
case 3:
break;
}
}
void total_wagon()
{
if (Car_List == 0)
{
cout << "No car available";
}
else
{
cout << "Total car available: " << Car_List;
}
}
};