forked from aaparikh/Car-rental-system-cpp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathOOP_PBL.cpp
1570 lines (1550 loc) · 37.6 KB
/
OOP_PBL.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
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#include <iostream>
#include <iomanip>
#include <fstream>
#include <string.h>
#include <conio.h>
using namespace std;
//////////////////////////////////////////////////////////////////////////////////////////////////////////////
/********************************************* CLASSES ******************************************************/
class Cars
{
protected:
char name[30];
int ID; //format 4 digit
bool booked; // 1 or 0
public:
void getdata();
void putdata();
void modify();
bool booked_status(){
return booked;
}
int get_ID(){
return ID;
}
char* get_name(){
return name;
}
void bookit(){
this->booked = 1;
}
void unbookit(){
this->booked = 0;
}
}c;
class Login{
protected:
char username[100];
char password[50];
};
class Login_user:public Login{
public:
void Register();
int check_user_existence(char[]);
void login(char user_n[], char pass[]);
//display available cars
int show_hatchback();
int show_sedan();
int show_suv();
int show_luxury();
//book the available cars
void book_hatchback();
void book_sedan();
void book_suv();
void book_luxury();
//invoices
//void invoice(int);
void bill(int); //void bill(float,int,char*);
//do work function
void do_user_work();
void unbook();
int search_car_hatchback(int);
int search_car_sedan(int);
int search_car_suv(int);
int search_car_luxury(int);
};
class Login_admin:public Login{
public:
void login_admin(char user_n[],char pass[]);
//void register_admin();
void Export_user_data(); //exporting user data to csv
void Read_user_data();
//this is file class in original code
void search_car();
void delete_c();
void Export();
void modify_car();
void add_car_hatchback();
void add_car_luxury();
void add_car_sedan();
void add_car_suv();
//display versions
void display_car_hatchback();
void display_car_luxury();
void display_car_sedan();
void display_car_suv();
//do work function
void do_work();
};
//////////////////////////////////////////////////////////////////////////////////////////////////////////////
/********************************************* STRING OPERATIONS ********************************************/
int str_len(char c[])
{
int length=0;
while(c[length]!='\0')
{
length++;
}
return length;
}
string conv_to_str(char* a,int size)
{
int i;
string s = "";
for(i=0;i<size;i++)
{
s = s + a[i];
}
return s;
}
int isSubstring(string s1, string s2)
{
int M = s1.length();
int N = s2.length();
for (int i = 0; i <= N - M; i++) { // A loop to slide pat[] one by one
int j;
for (j = 0; j < M; j++) //For current index i, check for pattern match
if (s2[i + j] != s1[j])
break;
if (j == M)
return i;
}
return -1;
}
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
/******************************************CAR CLASS FUNCTIONS****************************************************/
void Cars::getdata()
{
cout<<"Enter name of car: ";
scanf(" %[^\n]s",name);
while(1)
{
cout<<"Enter ID of the car: ";
cin>>ID;
if(ID/10000 == 0 && ID/1000!=0)
break;
else
cout<<"4 Digit please"<<endl;
}
while(1)
{
cout<<"Booked status(1 for yes/0 for no): ";
cin>>booked;
if(booked==1||booked==0)
break;
else
cout<<"Enter (1 for yes/0 for no)"<<endl;
}
}
void Cars::putdata()
{
if(booked==1)
cout<<"\t"<<"|"<<setw(20)<<name<<" |"<<setw(5)<<ID<<" |"<<setw(4)<<"Yes"<<" |"<<endl;
else
cout<<"\t"<<"|"<<setw(20)<<name<<" |"<<setw(5)<<ID<<" |"<<setw(4)<<"No"<<" |"<<endl;
}
void Cars::modify() //function to modify the records
{
int ch;
cout<<"Current details are"<<endl;
putdata();
cout<<"Modify:\n 1.Name\n 2.ID\n 3.Booked?\n 4.All\n Your choie: ";
cin>>ch;
switch(ch)
{
case 1:
cout<<"Enter new name of the Car: ";
cin>>name;
break;
case 2:
cout<<"Enter new ID: ";
cin>>ID;
break;
case 3:
cout<<"Booking status?(1 for yes/0 for no): ";
cin>>booked;
break;
case 4:
getdata();
break;
default:
cout<<"Wrong option selected, refer menu"<<endl;
}
}
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
/**********************************************LOGIN ADMIN CODES****************************************************/
void Login_admin::login_admin(char user_n[], char pass[])
{
string name;
int ch = 0,round = 0;
ifstream fin("admin_data.txt",ios::in);
if(!(fin)) //check if the file is empty
{
cout<<"No admin Data Available!"<<endl;
fin.close();
return;
}
else{
while(fin>>username>>password)
{
if(strcmp(user_n,username)==0 && strcmp(pass,password)==0)
{
name = conv_to_str(user_n,str_len(user_n));
size_t found = name.find("@cadmin.ac.in");
cout<<"Hello "<<name.substr(0,found)<<endl;
round = 1;
do_work();
}
else if(strcmp(user_n,username)==0)
{
cout<<"Entered password is incorrect"<<endl;
round = 1;
/*cout<<"You might want to consider registering(y/n): ";
cin>>ans;
if(ans=='y'||ans=='Y'){
this->register_admin();
}
else{
cout<<"Allright see ya!"<<endl;
}*/
}
}
fin.close();
if(round==0)
{
cout<<"This User does not exist!"<<endl;
}
}
}
/*void Login_admin :: register_admin()
{
ofstream fout("admin_data.txt",ios::app);
cout<<"Enter username(mail): ";
cin>>username;
cout<<"Enter your preferred password: ";
cin>>password;
fout<<username<<" "<<password<<endl;
fout.close();
}*/
void Login_admin::Read_user_data()
{
ifstream fin("login_data.txt",ios::in);
if(!(fin)) //check if the file is empty
{
cout<<"No User Data Available!"<<endl;
fin.close();
return;
}
while(fin>>username>>password)
{
cout<<"|"<<setw(20)<<username<<"|"<<setw(10)<<password<<"|"<<endl;
}
fin.close();
}
void Login_admin::Export_user_data()
{
ifstream fin("login_data.txt",ios::in);
if(!(fin)) //check if the file is empty
{
cout<<"No User Data Available!"<<endl;
fin.close();
return;
}
ofstream fout("Login_data.csv",ios::out);
fout<<"USERNAME"<<","<<"PASSWORD"<<endl;
while(fin>>username>>password)
{
fout<<username<<","<<password<<endl;
}
fin.close();
fout.close();
}
void Login_admin::add_car_hatchback(){
char ch='y';
ofstream fout("HATCHBACK.txt",ios::out|ios::app);
while(ch=='y'|ch=='Y')
{
c.getdata();
fout.write((char*)&c,sizeof(c));
cout<<"\nDo you wish to add more(y/n): ";
cin>>ch;
}
cout<<"\nData added to file\n"<<endl;
fout.close();
}
void Login_admin::add_car_luxury(){
char ch='y';
ofstream fout("LUXURY.txt",ios::out|ios::app);
while(ch=='y'|ch=='Y')
{
c.getdata();
fout.write((char*)&c,sizeof(c));
cout<<"\nDo you wish to add more(y/n): ";
cin>>ch;
}
cout<<"\nData added to file\n"<<endl;
fout.close();
}
void Login_admin::add_car_sedan(){
char ch='y';
ofstream fout("SEDAN.txt",ios::out|ios::app);
while(ch=='y'|ch=='Y')
{
c.getdata();
fout.write((char*)&c,sizeof(c));
cout<<"\nDo you wish to add more(y/n): ";
cin>>ch;
}
cout<<"\nData added to file\n"<<endl;
fout.close();
}
void Login_admin::add_car_suv(){
char ch='y';
ofstream fout("SUV.txt",ios::out|ios::app);
while(ch=='y'|ch=='Y')
{
c.getdata();
fout.write((char*)&c,sizeof(c));
cout<<"\nDo you wish to add more(y/n): ";
cin>>ch;
}
cout<<"\nData added to file\n"<<endl;
fout.close();
}
void Login_admin::display_car_hatchback()
{
ifstream fin("HATCHBACK.txt",ios::in);
if(!(fin)) //check if the file is empty
{
cout<<"No HATCHBACK Data Available!"<<endl;
fin.close();
return;
}
cout<<"\t"<<"|"<<setw(20)<<"NAME"<<" |"<<setw(5)<<"ID"<<" |"<<setw(4)<<"BOOKED"<<" |\n"<<endl;
while(fin.read((char*)&c,sizeof(c)))
{
c.putdata();
cout<<endl;
}
fin.close();
}
void Login_admin::display_car_luxury()
{
ifstream fin("LUXURY.txt",ios::in);
if(!(fin)) //check if the file is empty
{
cout<<"No LUXURY Data Available!"<<endl;
fin.close();
return;
}
cout<<"\t"<<"|"<<setw(20)<<"NAME"<<" |"<<setw(5)<<"ID"<<" |"<<setw(4)<<"BOOKED"<<" |\n"<<endl;
while(fin.read((char*)&c,sizeof(c)))
{
c.putdata();
cout<<endl;
}
fin.close();
}
void Login_admin::display_car_sedan()
{
ifstream fin("SEDAN.txt",ios::in);
if(!(fin)) //check if the file is empty
{
cout<<"No SEDAN Data Available!"<<endl;
fin.close();
return;
}
cout<<"\t"<<"|"<<setw(20)<<"NAME"<<" |"<<setw(5)<<"ID"<<" |"<<setw(4)<<"BOOKED"<<" |\n"<<endl;
while(fin.read((char*)&c,sizeof(c)))
{
c.putdata();
cout<<endl;
}
fin.close();
}
void Login_admin::display_car_suv()
{
ifstream fin("SUV.txt",ios::in);
if(!(fin)) //check if the file is empty
{
cout<<"No SUV Data Available!"<<endl;
fin.close();
return;
}
cout<<"\t"<<"|"<<setw(20)<<"NAME"<<" |"<<setw(5)<<"ID"<<" |"<<setw(4)<<"BOOKED"<<" |\n"<<endl;
while(fin.read((char*)&c,sizeof(c)))
{
c.putdata();
cout<<endl;
}
fin.close();
}
void Login_admin::Export()
{
ofstream fout("cars.csv");
//writing hatchback file to excel cars file
ifstream fin1("HATCHBACK.txt",ios::in); //open hatchback
fout<<"HATCHBACK"<<endl;
while(fin1.read((char*)&c,sizeof(c)))
{
if(c.booked_status()==0)
fout<<c.get_name()<<","<<c.get_ID()<<","<<"Yes"<<endl;
else
fout<<c.get_name()<<","<<c.get_ID()<<","<<"No"<<endl;
}
fout<<endl;
fin1.close();//close hatchback
//writing Sedan file to excel cars file
ifstream fin2("SEDAN.txt",ios::in); //open hatchback
fout<<"SEDAN"<<endl;
while(fin2.read((char*)&c,sizeof(c)))
{
if(c.booked_status()==0)
fout<<c.get_name()<<","<<c.get_ID()<<","<<"Yes"<<endl;
else
fout<<c.get_name()<<","<<c.get_ID()<<","<<"No"<<endl;
}
fout<<endl;
fin2.close();//close Sedan
//writing Suv file to excel cars file
ifstream fin3("SUV.txt",ios::in); //open hatchback
fout<<"SUV"<<endl;
while(fin3.read((char*)&c,sizeof(c)))
{
if(c.booked_status()==0)
fout<<c.get_name()<<","<<c.get_ID()<<","<<"Yes"<<endl;
else
fout<<c.get_name()<<","<<c.get_ID()<<","<<"No"<<endl;
}
fout<<endl;
fin3.close();//close Suv
//writing luxury file to excel cars file
ifstream fin4("LUXURY.txt",ios::in); //open hatchback
fout<<"LUXURY"<<endl;
while(fin4.read((char*)&c,sizeof(c)))
{
if(c.booked_status()==0)
fout<<c.get_name()<<","<<c.get_ID()<<","<<"Yes"<<endl;
else
fout<<c.get_name()<<","<<c.get_ID()<<","<<"No"<<endl;
}
fout<<endl;
fin4.close();//close luxury
fout.close();//close the excel file
}
void Login_admin::search_car()
{
int entered_id;
char found = 'n';
cout<<"\nEnter the ID to be searched: ";
cin>>entered_id;
//searching the hatchback file
ifstream fin1("HATCHBACK.txt",ios::in);
while(fin1.read((char*)&c,sizeof(c)))
{
if(c.get_ID()==entered_id)
{
c.putdata();
found = 'y';
}
}
fin1.close();
if(found =='y'){return;}
//searching the sedan file
ifstream fin2("SEDAN.txt",ios::in);
while(fin2.read((char*)&c,sizeof(c)))
{
if(c.get_ID()==entered_id)
{
c.putdata();
found = 'y';
}
}
fin2.close();
if(found =='y'){return;}
//searching the suv file
ifstream fin3("SUV.txt",ios::in);
while(fin3.read((char*)&c,sizeof(c)))
{
if(c.get_ID()==entered_id)
{
c.putdata();
found = 'y';
}
}
fin3.close();
if(found =='y'){return;}
//searching the luxury file
ifstream fin4("LUXURY.txt",ios::in);
while(fin4.read((char*)&c,sizeof(c)))
{
if(c.get_ID()==entered_id)
{
c.putdata();
found = 'y';
}
}
fin4.close();
if(found =='n'){cout<<"\nCar of ID "<<entered_id<<"is not in the file.\n";}
return;
}
void Login_admin::modify_car() //fuction to modify the records of file
{
int entered_id;
char found = 'n';
cout<<"\nEnter the ID to be searched: ";
cin>>entered_id;
//searching and modifying the hatchback file
fstream fio1("HATCHBACK.txt",ios::in|ios::out);
fio1.seekg(0);
while(!fio1.eof())
{
int loc = fio1.tellg(); //storing the current location in loc
fio1.read((char*)&c,sizeof(c));
if(c.get_ID()==entered_id)
{
c.modify();
found = 'y';
fio1.seekg(loc); //moving the pointer to current location
fio1.write((char*)&c,sizeof(c));
cout<<"\nYour record of ID "<<entered_id<<" has been updated"<<endl;
break;
}
}
fio1.close();
if(found =='y'){return;}
//searching and modifying the sedan file
fstream fio2("SEDAN.txt",ios::in|ios::out);
fio2.seekg(0);
while(!fio2.eof())
{
int loc = fio2.tellg(); //storing the current location in loc
fio2.read((char*)&c,sizeof(c));
if(c.get_ID()==entered_id)
{
c.modify();
found = 'y';
fio2.seekg(loc); //moving the pointer to current location
fio2.write((char*)&c,sizeof(c));
cout<<"\nYour record of ID "<<entered_id<<" has been updated"<<endl;
}
}
fio2.close();
if(found =='y'){return;}
//searching and modifying the suv file
fstream fio3("SUV.txt",ios::in|ios::out);
fio3.seekg(0);
while(!fio3.eof())
{
int loc = fio3.tellg(); //storing the current location in loc
fio3.read((char*)&c,sizeof(c));
if(c.get_ID()==entered_id)
{
c.modify();
found = 'y';
fio3.seekg(loc); //moving the pointer to current location
fio3.write((char*)&c,sizeof(c));
cout<<"\nYour record of ID "<<entered_id<<" has been updated"<<endl;
}
}
fio3.close();
if(found =='y'){return;}
//searching and modifying the hatchback file
fstream fio4("LUXURY.txt",ios::in|ios::out);
fio4.seekg(0);
while(!fio4.eof())
{
int loc = fio4.tellg(); //storing the current location in loc
fio4.read((char*)&c,sizeof(c));
if(c.get_ID()==entered_id)
{
c.modify();
found = 'y';
fio4.seekg(loc); //moving the pointer to current location
fio4.write((char*)&c,sizeof(c));
cout<<"\nYour record of ID "<<entered_id<<" has been updated"<<endl;
}
}
fio4.close();
if(found =='n'){cout<<"\nCar of ID "<<entered_id<<"is not in the file.\n";}
return;
}
void Login_admin::delete_c() //function to delete the records of file
{
int entered_id;
char found = 'n';
cout<<"\nEnter the ID to be deleted: ";
cin>>entered_id;
//fstream fio1("HATCHBACK.txt",ios::in|ios::out|ios::app);
ifstream fin1("HATCHBACK.txt",ios::in);
ofstream fout1("temp1.txt",ios::out|ios::app);
while(fin1.read((char*)&c,sizeof(c)))
{
if(c.get_ID()==entered_id)
{
found = 'y';
}
else{
fout1.write((char*)&c,sizeof(c)); //writing to temp file
}
}
fin1.close();
fout1.close();
remove("HATCHBACK.txt");
rename("temp1.txt","HATCHBACK.txt");
if(found=='y'){
cout<<"Record successfully deleted"<<endl;
return;
}
//fstream fio2("SEDAN.txt",ios::in|ios::out|ios::app);
ifstream fin2("SEDAN.txt",ios::in);
ofstream fout2("temp2.txt",ios::out|ios::app);
while(fin2.read((char*)&c,sizeof(c)))
{
if(c.get_ID()==entered_id)
{
found = 'y';
}
else{
fout2.write((char*)&c,sizeof(c)); //writing to temp file
}
}
fin2.close();
fout2.close();
remove("SEDAN.txt");
rename("temp2.txt","SEDAN.txt");
if(found=='y'){
cout<<"Record successfully deleted"<<endl;
return;
}
//fstream fio3("SUV.txt",ios::in|ios::out|ios::app);
ifstream fin3("SUV.txt",ios::in);
ofstream fout3("temp3.txt",ios::out|ios::app);
while(fin3.read((char*)&c,sizeof(c)))
{
if(c.get_ID()==entered_id)
{
found = 'y';
}
else{
fout3.write((char*)&c,sizeof(c)); //writing to temp file
}
}
fin3.close();
fout3.close();
remove("SUV.txt");
rename("temp3.txt","SUV.txt");
if(found=='y'){
cout<<"Record successfully deleted"<<endl;
return;
}
ifstream fin4("LUXURY.txt",ios::in);
ofstream fout4("temp4.txt",ios::out|ios::app);
while(fin4.read((char*)&c,sizeof(c)))
{
if(c.get_ID()==entered_id)
{
found = 'y';
}
else{
fout4.write((char*)&c,sizeof(c)); //writing to temp file
}
}
fin4.close();
fout4.close();
remove("LUXURY.txt");
rename("temp4.txt","LUXURY.txt");
if(found=='y'){
cout<<"Record successfully deleted"<<endl;
return;
}
else{
cout<<"Record not found"<<endl;
}
}
void Login_admin::do_work()
{
int ch,op;
int choose;
do{
cout<<"\nChoose option \n 1.Add Data \n 2.Display Data \n 3.Search Data \n 4.Modify Data \n 5.Delete Data\n 6.Export Car data\n 7.To see all the users\n 8.Export user data\n 9.Exit"<<endl;
cout<<"Enter choice: ";
cin>>ch;
switch(ch)
{
case 1:
cout<<"Add Car Data\n";
cout<<"Enter\n 1.Hatchback\n 2.Sedan\n 3.SUV\n 4.Luxury\n Your choice: ";
cin>>choose;
switch(choose)
{
case 1:
add_car_hatchback();
break;
case 2:
add_car_sedan();
break;
case 3:
add_car_suv();
break;
case 4:
add_car_luxury();
break;
default:
cout<<"Wrong option selected"<<endl;
}
break;
case 2:
choose = 0;
cout<<"Display Record\n";
cout<<"Enter\n 1.Hatchback\n 2.Sedan\n 3.SUV\n 4.Luxury\n 5.All\n Your choice: ";
cin>>choose;
switch(choose)
{
case 1:
display_car_hatchback();
break;
case 2:
display_car_sedan();
break;
case 3:
display_car_suv();
break;
case 4:
display_car_luxury();
break;
case 5:
display_car_hatchback();
display_car_sedan();
display_car_suv();
display_car_luxury();
break;
default:
cout<<"Wrong option selected"<<endl;
}
break;
case 3:
cout<<"Search Record\n";
search_car();
break;
case 4:
cout<<"Modify Record\n";
modify_car();
break;
case 5:
cout<<"Delete Record\n";
delete_c();
break;
case 6:
cout<<"Export car data in process"<<endl;
Export();
break;
case 7:
cout<<"User Data"<<endl;
Read_user_data();
break;
case 8:
cout<<"Export file in process"<<endl;
Export_user_data();
break;
case 9:
cout<<"Thank You for using the program :)"<<endl;
break;
default:
cout<<"Wrong choice\n";
}
}while(ch!=9);
return;
}
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
/****************************************** LOGIN USER CODES **************************************************/
int Login_user::check_user_existence(char uname[] )
{
int flag = 0;
ifstream fin("login_data.txt",ios::in);
while(fin>>username>>password)
{
if(strcmp(uname,username)==0){
flag = 1;
}
}
fin.close();
if(flag==1)
{
return 1;
}
return 0;
}
void Login_user :: Register()
{
char new_name[100];
char pass[50];
int val;
ofstream fout("login_data.txt",ios::app);
do{
cout<<"Enter username(mail): ";
cin>>new_name;
//check username exists or not
val = check_user_existence(new_name);
if(val==1){cout<<"Username already exists use another one "<<endl;}
}while(val==1);
cout<<"Enter your preferred password: ";
cin>>pass;
fout<<new_name<<" "<<pass<<endl;
fout.close();
}
int Login_user :: show_hatchback()
{
ifstream fin("HATCHBACK.txt",ios::in);
if(!(fin)) //check if the file is empty
{
cout<<"No HATCHBACK Data Available!"<<endl;
fin.close();
return 1;
}
cout<<"\tFORMAT"<<endl;
cout<<"\t"<<"|"<<setw(20)<<"NAME"<<" |"<<setw(5)<<"ID"<<" |"<<setw(4)<<"BOOKED"<<" |"<<endl;
cout<<"\n\tAvailable hatchback cars are\n"<<endl;
while(fin.read((char*)&c,sizeof(c)))
{
if(c.booked_status()==0){
c.putdata();
}
}
fin.close();
fin.open("HATCHBACK.txt",ios::in);
cout<<"\n\tUnvailable hatchback cars are\n"<<endl;
while(fin.read((char*)&c,sizeof(c)))
{
if(c.booked_status()==1){
c.putdata();
}
}
fin.close();
return 0;
}
int Login_user :: show_sedan()
{
ifstream fin("SEDAN.txt",ios::in);
if(!(fin)) //check if the file is empty
{
cout<<"No SEDAN Data Available!"<<endl;
fin.close();
return 1;
}
cout<<"FORMAT"<<endl;
cout<<"\t"<<"|"<<setw(20)<<"NAME"<<" |"<<setw(5)<<"ID"<<" |"<<setw(4)<<"BOOKED"<<" |"<<endl;
cout<<"Available SEDAN cars are"<<endl;
while(fin.read((char*)&c,sizeof(c)))
{
if(c.booked_status()==0){
c.putdata();
}
}
fin.close();
fin.open("SEDAN.txt",ios::in);
cout<<"\nUnvailable SEDAN cars are"<<endl;
while(fin.read((char*)&c,sizeof(c)))
{
if(c.booked_status()==1){
c.putdata();
}
}
fin.close();
return 0;
}
int Login_user :: show_suv()
{
ifstream fin("SUV.txt",ios::in);
if(!(fin)) //check if the file is empty
{
cout<<"No SUV Data Available!"<<endl;
fin.close();
return 1;
}
cout<<"FORMAT"<<endl;
cout<<"\t"<<"|"<<setw(20)<<"NAME"<<" |"<<setw(5)<<"ID"<<" |"<<setw(4)<<"BOOKED"<<" |"<<endl;
cout<<"Available SUV cars are"<<endl;
while(fin.read((char*)&c,sizeof(c)))
{
if(c.booked_status()==0){
c.putdata();
}
}
fin.close();
fin.open("SUV.txt",ios::in);
cout<<"\nUnvailable SUV cars are"<<endl;
while(fin.read((char*)&c,sizeof(c)))
{
if(c.booked_status()==1){
c.putdata();
}
}
fin.close();
return 0;
}
int Login_user :: show_luxury()
{
ifstream fin("LUXURY.txt",ios::in);
if(!(fin)) //check if the file is empty
{
cout<<"No LUXURY Data Available!"<<endl;
fin.close();
return 1;
}
cout<<"FORMAT"<<endl;
cout<<"\t"<<"|"<<setw(20)<<"NAME"<<" |"<<setw(5)<<"ID"<<" |"<<setw(4)<<"BOOKED"<<" |"<<endl;
cout<<"Available LUXURY cars are"<<endl;
while(fin.read((char*)&c,sizeof(c)))
{
if(c.booked_status()==0){
c.putdata();
}
}
fin.close();
fin.open("LUXURY.txt",ios::in);
cout<<"\nUnvailable LUXURY cars are"<<endl;
while(fin.read((char*)&c,sizeof(c)))
{
if(c.booked_status()==1){
c.putdata();
}
}
fin.close();
return 0;
}
void Login_user :: book_hatchback()
{
int car_to_book;
char found = 'n';
int check;
do{
cout<<"Enter the ID of car to book: ";
cin>>car_to_book;
check = search_car_hatchback(car_to_book);
if(check == 0){
cout<<"ID is wrong :( refer menu"<<endl;
}
}while(check==0);
fstream fio("HATCHBACK.txt",ios::in|ios::out);
//check valid id
fio.seekg(0);
while(!fio.eof())
{
int loc = fio.tellg();
fio.read((char*)&c,sizeof(c));
if(c.get_ID() == car_to_book && c.booked_status() == 0){
c.bookit();
found = 'y';
fio.seekg(loc);
fio.write((char*)&c,sizeof(c));
}
else if(c.get_ID() == car_to_book && c.booked_status() == 1)
{
cout<<"Sorry its Already booked"<<endl;
found = 'y';
}
}
fio.close();
if(found=='n'){
cout<<"Not Available!"<<endl;
return;
}
else if(found == 'y'){
//invoice function
cout<<"You've chosen a hatchback car"<<endl;
bill(car_to_book); //this->invoice(car_to_book,name_of_car);
//cout<<"Thank You for Booking!"<<endl;
return;
}
}
void Login_user :: book_sedan()
{
int car_to_book;
char found = 'n';
int check;
do{
cout<<"Enter the ID of car to book: ";
cin>>car_to_book;
check = search_car_sedan(car_to_book);
if(check == 0){
cout<<"ID is wrong :( refer menu"<<endl;
}
}while(check==0);
fstream fio("SEDAN.txt",ios::in|ios::out);