-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.cpp
512 lines (487 loc) · 13.6 KB
/
main.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
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
#include <iostream>
#include <fstream>
#include <algorithm>
#include <string>
#include <ctime>
#include <cstdlib>
#include <string>
#include <limits>
#include <bits/stdc++.h>
using namespace std;
void appendToRegistrationFile(string s)
{
fstream my_file;
my_file.open("registrationRecord.txt", ios::app);
if (!my_file)
{
cout << "File not created!";
}
else
{
cout << "..";
s.erase(remove(s.begin(), s.end(), ' '), s.end()); // Removes spaces from a string
my_file << s << std::endl;
my_file.close();
}
}
string getRegistrationFromFile(string phoneNumber)
{
string regCode = " ";
string pNumber;
// Read from the text file
ifstream MyReadFile("registrationRecord.txt");
// Use a while loop together with the getline() function to read the file line by line
while (getline(MyReadFile, pNumber))
{
if (pNumber == phoneNumber)
{
getline(MyReadFile, regCode);
break;
}
}
// Close the file
MyReadFile.close();
return regCode;
}
bool isRegistrationPresent(string regno)
{
string regCode = " ";
bool isPresent = false;
// Read from the text file
ifstream MyReadFile("registrationRecord.txt");
// Use a while loop together with the getline() function to read the file line by line
while (getline(MyReadFile, regCode))
{
if (regCode == regno)
{
isPresent = true;
break;
}
}
// Close the file
MyReadFile.close();
return isPresent;
}
string randomRegistrationNumber()
{ // This function generates a random 6 digit number
srand((unsigned)time(0));
int random_integer;
int lowest = 100000, highest = 999999;
int range = (highest - lowest) + 1;
random_integer = lowest + int(range * rand() / (RAND_MAX + 1.0));
return to_string(random_integer);
}
void appendToAppointmentFile(string s)
{
fstream my_file;
my_file.open("appointmentRecord.txt", ios::app);
if (!my_file)
{
cout << "File not created!";
}
else
{
cout << "..";
remove(s.begin(), s.end(), ' '); // Removes spaces from a string
my_file << s << std::endl;
my_file.close();
}
}
bool isAppointmnetPresent(string regno)
{
string regCode;
bool isPresent = false;
// Read from the text file
ifstream MyReadFile("appointmentRecord.txt");
// Use a while loop together with the getline() function to read the file line by line
while (getline(MyReadFile, regCode))
{
if (regCode == regno)
{
isPresent = true;
break;
}
}
// Close the file
MyReadFile.close();
return isPresent;
}
int getSlotCount(string slot)
{
string slotToCheck = slot;
int count = 0;
string Slot;
// Read from the text file
ifstream MyReadFile("appointmentRecord.txt");
// Use a while loop together with the getline() function to read the file line by line
while (getline(MyReadFile, Slot))
{
if (slotToCheck == Slot)
{
count = count + 1;
}
}
// Close the file
MyReadFile.close();
return count;
}
void setApplointmentFromFile(string regno, string slotUpgrade)
{
string regCode;
string slot;
// Read from the text file
ifstream filein("appointmentRecord.txt");//File to read from
ofstream fileout("fileout.txt"); //Temporary file
string strTemp;
while (getline(filein, regCode))
{
strTemp = regCode;
strTemp += "\n";
fileout << strTemp;
if (regCode == regno)
{
getline(filein, slot);
strTemp = slotUpgrade;
strTemp += "\n";
fileout << strTemp;
}
}
// Close the file
filein.close();
fileout.close();
remove("appointmentRecord.txt");
rename("fileout.txt", "appointmentRecord.txt");
}
void appointmentModify()
{
cout << "Welcome to COVID Vaccination Appointment Modification Portal." << endl
<< "**Please Note slot change is conditional to availabilty"
<< endl
<< "Please Enter your Registration number : " << endl;
string regno;
cout << "Registration Number : ";
cin >> regno;
int slot1_max = 60;
int slot2_max = 60;
if (isRegistrationPresent(regno))
{
if (isAppointmnetPresent(regno))
{
cout << "You can select Slot 1 or slot 2 based on availability below"
<< endl
<< "Slot Details:"
<< endl
<< "Slot 1 - 07-07-2021 from 9:00 AM to 12:00 PM"
<< endl
<< "Slot 2 - 08-07-2021 from 9:00 AM to 12:00 PM"
<< endl;
cout << "Slot Availabiltiy:"
<< endl
<< "Slot 1 " << slot1_max - getSlotCount("slot1") << endl
<< "Slot 2 " << slot2_max - getSlotCount("slot2") << endl
<< endl;
int input = 0;
cout << "Press 1 for slot 1 and Press 2 for slot 2";
while (true)
{
try
{
cin >> input;
if (input == 1)
{
if (slot1_max - getSlotCount("slot1") != 0)
{
setApplointmentFromFile(regno, "slot1");
cout << "Appointment Modified to slot 1 Successfull";
return;
}
else
{
cout << "Slot full. Try again after some time";
return;
}
}
else if (input == 2)
{
if (slot2_max - getSlotCount("slot2") != 0)
{
setApplointmentFromFile(regno, "slot2");
cout << "Appointment Modified to slot 2 Successfull";
return;
}
else
{
cout << "Slot full. Try again after some time";
return;
}
}
else
{
cout << "Wrong Input. Try again";
}
}
catch (exception e)
{
cout << "Wrong Input. Try again";
}
}
}
else
{
cout << "No Appointment Found"
<< endl
<< "Kindly book an appointment first or check your registration number";
return;
}
}
else
{
cout << "No Registration Found"
<< endl
<< "Kindly Register yourself first or check your registration number";
return;
}
}
void appointment()
{
cout << "Welcome to COVID Vaccination Appointment Portal." << endl
<< "Please Enter your Registration number : " << endl;
string regno;
cout << "Registration Number : ";
cin >> regno;
int slot1_max = 60;
int slot2_max = 60;
if (isRegistrationPresent(regno))
{
if (!isAppointmnetPresent(regno))
{
cout << "You can select Slot 1 or slot 2 based on availability below"
<< endl
<< "Slot Details:"
<< endl
<< "Slot 1 - 07-07-2021 from 9:00 AM to 12:00 PM"
<< endl
<< "Slot 2 - 08-07-2021 from 9:00 AM to 12:00 PM"
<< endl;
cout << "Slot Availabiltiy:"
<< endl
<< "Slot 1 " << slot1_max - getSlotCount("slot1") << endl
<< "Slot 2 " << slot2_max - getSlotCount("slot2") << endl
<< endl;
int input = 0;
cout << "Press 1 for slot 1 and Press 2 for slot 2";
while (true)
{
try
{
cin >> input;
if (input == 1)
{
if (slot1_max - getSlotCount("slot1") != 0)
{
appendToAppointmentFile(regno);
appendToAppointmentFile("slot1");
cout << "Appointment Successfull";
return;
}
else
{
cout << "Slot full. Try again after some time";
return;
}
}
else if (input == 2)
{
if (slot2_max - getSlotCount("slot2") != 0)
{
appendToAppointmentFile(regno);
appendToAppointmentFile("slot2");
cout << "Appointment Successfull";
return;
}
else
{
cout << "Slot full. Try again after some time";
return;
}
}
else
{
cout << "Wrong Input. Try again";
}
}
catch (exception e)
{
cout << "Wrong Input. Try again";
}
}
}
else
{
cout << "You are already Registered"
<< endl
<< "Kindly modify your appoinrmnet if required";
return;
}
}
else
{
cout << "No Registration Found"
<< endl
<< "Kindly Register yourself first or check your registration number";
return;
}
}
void registration()
{
cout << "Welcome to COVID Vaccination registeration Portal." << endl
<< "Please Enter your details" << endl;
char name[60];
string phoneNumber;
cout << "Press Enter to Continue";
cin.ignore(std::numeric_limits<streamsize>::max(), '\n');
cout << "Name : ";
cin.getline(name, 60);
cout << "Press Enter to Continue";
cin.ignore(std::numeric_limits<streamsize>::max(), '\n');
while (true)
{
cout << "Phone Number : ";
cin >> phoneNumber;
if (phoneNumber.length() != 10)
{
cout << "Phone Number should be of 10 digits."
<< endl
<< "Please enter a valid phone number;";
}
else
{
break;
}
}
if (!isRegistrationPresent(phoneNumber))
{
appendToRegistrationFile(name);
appendToRegistrationFile(phoneNumber);
appendToRegistrationFile(randomRegistrationNumber());
cout << endl
<< "Registration Successfull"
<< endl
<< randomRegistrationNumber() << " is you registration number. Please store it for future referance."
<< endl;
}
else
{
cout << "User Already Registered";
}
int input = 0;
cout << endl
<< "To book an applointmnet for vaccination press 1. To go back to main portal press 2" << endl;
while (true)
{
try
{
cin >> input;
if (input == 1)
{
appointment();
break;
}
else if (input == 2)
{
cout << endl
<< "Thank you for Registeration. To book a slot. Re-Execute the program and select 'Book Appointmnet' " << endl;
break;
}
else
{
cout << "Wrong Input. Try again";
}
}
catch (exception e)
{
cout << "Wrong Input. Try again";
}
}
}
int main()
{
cout << endl
<< "------------" << endl
<< "Welcome to COVID Vaccination portal" << endl;
while (true)
{
cout << "Press 1 to register yourself" << endl
<< "Press 2 to book an applointment for vaccination shot" << endl
<< "Press 3 to modify your booking" << endl
<< "Press 4 to know your ID" << endl
<< "Press 5 to exit"
<< endl;
int input = 0;
try
{
cin >> input;
if (input == 1)
{
registration();
cout << endl
<< "To Exist press 0, To continue press 1";
cin >> input;
}
else if (input == 2)
{
appointment();
cout << endl
<< "To Exist press 0, To continue press 1";
cin >> input;
}
else if (input == 3)
{
appointmentModify();
cout << endl
<< "To Exist press 0, To continue press 1";
cin >> input;
}
else if (input == 4)
{
cout << endl
<< "Enter you phoneNumber";
string phoneNumber;
cin >> phoneNumber;
if (getRegistrationFromFile(phoneNumber) != " ")
{
cout << "Your Registration Number is : " << getRegistrationFromFile(phoneNumber);
}
else
{
cout << "No Record Found";
}
}
else if (input == 5)
{
cout << "Thank you for using the portal"
<< endl
<< "Stay home, Be safe";
break;
}
if (input == 0)
{
cout << "Thank you for using the portal"
<< endl
<< "Stay home, Be safe";
break;
}
else
{
cout << endl
<< "*--------*"
<< endl;
}
}
catch (exception e)
{
cout << "Wrong Input. Try again";
}
}
return 0;
}