-
Notifications
You must be signed in to change notification settings - Fork 35
/
LMSCode.cpp
604 lines (562 loc) · 11.5 KB
/
LMSCode.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
#include <iostream.h>
#include<conio.h>
#include<iomanip.h>//input-output manipulator
#include<stdlib.h>
#include<string.h>
#include<stdio.h>
#include<fstream.h>
class book
{
char bno[6];//bookno.
char bname[50];//bookname
char aname[20];//authorname
public:
void createbook()
{
cout<<"\nNEW BOOK ENTRY...\n";
cout<<"\nENTER BOOK NO.";
cin>>bno;
cout<<"\nENTER BOOK NAME";
gets(bname);//enables enter with space
cout<<"\nENTER AUTHOR NAME";
gets(aname);
cout<<"\n\n\nBook Created..";
}
void showbook()
{
cout<<"\nBook Number: "<<bno;
cout<<"\nBook Name: ";
puts(bname);
cout<<"\nBook Author Name: ";
puts(aname);
}
void modifybook()
{
cout<<"\nBook Number: "<<bno;
cout<<"\nModify Book Name :";
gets(bname);
cout<<"\nModify Author's Name :";
gets(aname);
}
char* retbno()//string return
{
return bno;
}
void report()
{
cout<<bno<<setw(30)<<bname<<setw(30)<<aname<<endl;
}
};//class ends here
class student
{
char admno[6];//admission no.
char name[20];
char stbno[6];// student book no
int token;//total book of student
public:
void createstudent()
{
clrscr();
cout<<"\nNEW STUDENT ENTRY...\n";
cout<<"\nEnter The Admission No. ";
cin>>admno;
cout<<"Enter The Student Name ";
gets(name);
token=0;
stbno[0]='\0';
cout<<"\n\nStudent Record Created...";
}
void showstudent()
{
cout<<"\nAdmission Number : "<<admno;
cout<<"\nStudent Name : ";
puts(name);
cout<<"\nNo of Book Issued : "<<token;
if(token==1)
{
cout<<"\nBook Number "<<stbno;
}
}
void modifystudent()
{
cout<<"\nAdmission No. "<<admno;
cout<<"\nModify Student Name : ";
gets(name);
}
char* retadmno()
{
return admno;
}
char* retstbno()
{
return stbno;
}
int rettoken()
{
return token;
}
void addtoken()
{
token=1;
}
void resettoken()
{
token=0;
}
void getstbno(char t[])
{
strcpy(stbno,t);
}
void report()
{
cout<<"\t"<<admno<<setw(20)<<name<<setw(10)<<token<<endl ;
}
};//class ends here
fstream fp,fp1;//object
book bk;//book class object
student st;//student class object
void writebook()
{
char ch;
fp.open("book.dat",ios::out|ios::app);//write and append data
do{
clrscr();
bk.createbook();
fp.write((char*)&bk,sizeof(book));//size of class
cout<<"\n\nDo you want to add more record...(y/n?) ";
cin>>ch;
}while(ch=='y'||ch=='Y');
fp.close();
}
void writestudent()
{
char ch;
fp.open("student.dat",ios::out|ios::app);//write and append data
do{
clrscr();
st.createstudent();
fp.write((char*)&st,sizeof(student));//size of class
cout<<"\n\nDo you want to add more record...(y/n?) ";
cin>>ch;
}while(ch=='y'||ch=='Y');
fp.close();
}
void displayspb(char n[])
{
cout<<"\nBOOK DETAILS\n";
int flag=0;//book not found
fp.open("book.dat",ios::in);//read data
while(fp.read((char *)&bk,sizeof(book)))
{
if(strcmpi(bk.retbno(),n)==0)//not case sensitive
{
bk.showbook();
flag=1;
}
}
fp.close();
if(flag==0)//book not found
{
cout<<"\n\nBook does not exist";
}
getch();
}
void displaysps(char n[])
{
cout<<"\nSTUDENT DETAILS\n";
int flag=0;//student not found
fp.open("student.dat", ios::in);//read data
while(fp.read((char *)&st,sizeof(student)))
{
if(strcmpi(st.retadmno(),n)==0)//not case sensitive
{
st.showstudent();
flag=1;
}
}
fp.close();
if(flag==0)//student not found
{
cout<<"\n\nStudent does not exist";
}
getch();
}
void modifybook()
{
char n[6];
int found=0;//seach book of given data
clrscr();
cout<<"\n\nMODIFY BOOK RECORD...";
cout<<"\n\nEnter the book no. ";
cin>>n;
fp.open("book.dat",ios::in|ios::out);
while(fp.read((char*)&bk,sizeof(book)) && found==0)
{
if(strcmpi(bk.retbno(),n)==0)
{
bk.showbook();
cout<<"\nEnter the new details book";
bk.modifybook();
int pos=-1*sizeof(bk);
fp.seekp(pos,ios::cur);//back from current position
fp.write((char *)&bk,sizeof(book));
cout<<"\n\nRecord Updated";
found=1;
}
}
fp.close();
if(found==0)
{
cout<<"\n\nRecord Not Found";
}
getch();//press key to get out
}
void modifystudent()
{
char n[6];
int found=0;//seach book of given data
clrscr();
cout<<"\n\nMODIFY STUDENT RECORD...";
cout<<"\n\nEnter the Admission no. ";
cin>>n;
fp.open("student.dat",ios::in|ios::out);
while(fp.read((char*)&st,sizeof(student)) && found==0)
{
if(strcmpi(st.retadmno(),n)==0)
{
st.showstudent();
cout<<"\nEnter the new details of student";
st.modifystudent();
int pos=-1*sizeof(st);
fp.seekp(pos,ios::cur);//back from current position
fp.write((char *)&st,sizeof(student));
cout<<"\n\nRecord Updated";
found=1;
}
}
fp.close();
if(found==0)
{
cout<<"\n\nRecord Not Found";
}
getch();//press key to get out
}
void deletestudent()
{
char n[6];
int flag=0;
clrscr();
cout<<"\n\n\n\tDELETE STUDENT...";
cout<<"\n\nEnter the Admission no> : ";
cin>>n;
fp.open("student.dat",ios::in|ios::out);
fstream fp2;
fp2.open("temp.dat",ios::out);
fp.seekg(0,ios::beg);
while(fp.read((char*)&st,sizeof(student)))
{
if(strcmpi(st.retadmno(),n)!=0)
{
fp2.write((char*)&st,sizeof(student));
}
else{
flag=1;//student found
}
}
fp2.close();
fp.close();
remove("student.dat");
rename("temp.dat","student.dat");//data after deletion moved to temp
if(flag==1)
{
cout<<"\n\n\tRecord Deleted..";
}
else
{
cout<<"\n\nRecord not Found";
}
getch();
}
void deletebook()
{
char n[6];//book no.
int flag=0;
clrscr();
cout<<"\n\n\n\tDELETE BOOK...";
cout<<"\n\nEnter the Book no> : ";
cin>>n;
fp.open("book.dat",ios::in|ios::out);
fstream fp2;//New onject
fp2.open("Temp.dat",ios::out);//temp having data else than that to be deleted
fp.seekg(0,ios::beg);
while(fp.read((char*)&bk,sizeof(book)))
{
if(strcmpi(bk.retbno(),n)!=0)
{
fp2.write((char*)&st,sizeof(book));
}
else{
flag=1;//student found
}
}
fp2.close();
fp.close();
remove("book.dat");
rename("Temp.dat","book.dat");//data after deletion moved to temp
if(flag==1)
{
cout<<"\n\n\tRecord Deleted... ";
}
else
{
cout<<"\n\nRecord not Found";
}
getch();
}
void displayalls()
{
clrscr();
fp.open("student.dat",ios::in);//read mode
if(!fp)
{
cout<<"File Could Not Be Open";
getch();
return;//press any key and return
}
cout<<"\n\n\t\tStudent List\n\n";
cout<<"==================================================================\n";
cout<<"\tAdmission No."<<setw(10)<<"Name"<<setw(20)<<"Book Issued\n";
cout<<"==================================================================\n";
while(fp.read((char*)&st,sizeof(student)))
{
st.report();
}
fp.close();
getch();
}
void displayallb()
{
clrscr();
fp.open("book.dat",ios::in);//read mode
if(!fp)
{
cout<<"File Could Not Be Open";
getch();
return;//press any key and return
}
cout<<"\n\n\t\tBook List\n\n";
cout<<"==================================================================\n";
cout<<"\tBook No."<<setw(20)<<"Book Name"<<setw(25)<<"Book Author\n";
cout<<"==================================================================\n";
while(fp.read((char*)&bk,sizeof(book)))
{
bk.report();
}
fp.close();
getch();
}
void bookissue()
{
char sn[6],bn[6];
int found=0,flag=0;
clrscr();
cout<<"\n\nBOOK ISSUE...";
cout<<"\n\n\tEnter Admission no.";
cin>>sn;
fp.open("student.dat",ios::in|ios::out);
fp1.open("book.dat",ios::in|ios::out);
while(fp.read((char*)&st,sizeof(student))&& found==0)
{
if(strcmpi(st.retadmno(),sn)==0)//compare admsn no.
{
found=1;
if(st.rettoken()==0)//if book not issued
{
cout<<"\n\n\tEnter The Book No.";
cin>>bn;
while(fp1.read((char*)&bk,sizeof(book))&& flag==0)
{
if(strcmpi(bk.retbno(),bn)==0)//compare book no.
{
flag=1;
st.addtoken();
st.getstbno(bk.retbno());//pass book no.
int pos=-1*sizeof(st);
fp.seekg(pos,ios::cur);
fp.write((char*)&st,sizeof(student));
cout<<"\n\n\tBook Issued Successfully\n\n Please Note The Book Issue Date On Backside Of Your Book And Return Book Within 15 Days, Otherwise Fine Of 15 Rs Per Day";
}
}
if(flag==0)
{
cout<<"Book No. Does Not Exists";
}
}
else
{
cout<<"You Have Not Returned The Last Book";
}
}
}
if(found==0)
{
cout<<"Student Record Not Exists...";
}
getch();
fp.close();
fp1.close();
}
void bookdeposit()
{
char sn[6],bn[6];
int found=0,flag=0,day,fine;
clrscr();
cout<<"\n\nBOOK DEPOSIT...";
cout<<"\n\n\tEnter Admission no. Of Student";
cin>>sn;
fp.open("student.dat",ios::in|ios::out);
fp1.open("book.dat",ios::in|ios::out);
while(fp.read((char*)&st,sizeof(student))&& found==0)
{
if(strcmpi(st.retadmno(),sn)==0)//compare admsn no.
{
found=1;
if(st.rettoken()==1)//if book issued
{
while(fp1.read((char*)&bk,sizeof(book))&& flag==0)
{
if(strcmpi(bk.retbno(),st.retstbno())==0)
{
flag=1;
bk.showbook();
cout<<"\n\n Book Deposited In No. Of Days";
cin>>day;
if(day>15)
{
fine=(day-15)*1;
cout<<"\n\n Fine = "<<fine;
}
st.resettoken();
int pos=-1*sizeof(st);
fp.seekg(pos,ios::cur);
fp.write((char*)&st,sizeof(student));
cout<<"\n\n\tBook Deposited Successfully";
}
}
if(flag==0)
{
cout<<"Book No. Does Not Exists";
}
}
else
{
cout<<"No Book Issued";
}
}
}
if(found==0)
{
cout<<"Student Record Not Exists...";
}
getch();
fp.close();
fp1.close();
}
void start()
{ clrscr();
gotoxy(35,11);
cout<<"LIBRARY";
gotoxy(35,14);
cout<<"MANAGEMENT";
gotoxy(35,17);
cout<<"SYSTEM";
cout<<" \n by: Chahat";
getch();
}
void adminmenu()
{
clrscr();
int ch2;
cout<<"\n\n\n\tADMINISTRATOR MENU";
cout<<"\n\n\n\t1.CREATE STUDENT RECORD";
cout<<"\n\n\n\t2.DISPLAY ALL STUDENT RECORD";
cout<<"\n\n\n\t3.DISPLAY SPECIFIC STUDENT RECORD";
cout<<"\n\n\n\t4.MODIFY STUDENT RECORD";
cout<<"\n\n\n\t5.DELETE STUDENT RECORD";
cout<<"\n\n\n\t6.CREATE BOOK";
cout<<"\n\n\n\t7.CREATE ALL BOOKS";
cout<<"\n\n\n\t8.DISPLAY SPECIFIC BOOK";
cout<<"\n\n\n\t9.MODIFY BOOK RECORD";
cout<<"\n\n\n\t10.DELETE BOOK RECORD";
cout<<"\n\n\n\t11.BACK TO MAIN MENU";
cout<<"\n\n\n\tPLEASE ENTER YOUR CHOICE(1-11)";
cin>>ch2;
switch(ch2)
{
case 1: writestudent();
break;
case 2: displayalls();
break;
case 3: char num[6];
clrscr();
cout<<"\n\n\t Please enter admission no.";
cin>>num;
displaysps(num);
break;
case 4: modifystudent();
break;
case 5:deletestudent();
break;
case 6:writebook();
break;
case 7:displayallb();
break;
case 8:
{char num[6];
clrscr();
cout<<"\n\n\tPlease enter book no.";
cin>>num;
displayspb(num);
break;
}
case 9:modifybook();
break;
case 10:deletebook();
break;
case 11:
return;
default:
cout<<"Invalid choice";
}
adminmenu();
}
void main()
{
char ch;
clrscr();
start();
do{
clrscr();
cout<<"\n\n\n\t MAIN MENU";
cout<<"\n\n\n\t1 BOOK ISSUE";
cout<<"\n\n\n\t2 BOOK DEPOSIT";
cout<<"\n\n\n\t3 ADMINISTRATOR MENU";
cout<<"\n\n\n\t4 EXIT";
cout<<"\n\n\n\t PLEASE SELECT YOUR OPTION(1-4)";
ch=getche();
switch(ch)
{ case '1': bookissue();
break;
case '2': bookdeposit();
break;
case '3':
adminmenu();
break;
case '4':
exit(0);
break;
default:
cout<<"INVALID CHOICE";
}
}while(ch!=4 );
}