-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLibraryManagementSystem.c++
More file actions
613 lines (556 loc) · 14.9 KB
/
LibraryManagementSystem.c++
File metadata and controls
613 lines (556 loc) · 14.9 KB
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
#define _CRT_SECURE_NO_WARNINGS
#include<iostream>
#include<fstream>
#include<stdio.h>
#include<stdlib.h>
#include<iomanip>
#include<string.h>
using namespace std;
void write_book();
void write_student();
void display_spb(char []);
void display_sps(char []);
void modify_book();
void modify_student();
void delete_student();
void delete_book();
void display_alls();
void display_allb();
void book_issue();
void book_deposit();
void intro();
void admin_menu();
fstream fp,fp1;
char character[1];
class book
{
char bno[6];
char bname[30];
char aname[30];
public:
void create_book()
{
cout<<"\nNEW BOOK ENTRY...\n";
cout<<"\nEnter the book number.\n";
cin>>bno;
cout<<"\nEnter the name of the book..\n";
cin.getline(character,1);
cin.getline(bname,30);
cout<<"\nEnter the Author's name.\n";
cin.getline(aname,30);
cout<<"\nBOOK CREATED...\n";
}
void show_book()
{
cout<<"\nBook number. : "<<bno;
cout<<"\nBook Name. :";
puts(bname);
cout<<"\nAuthor Name. :";
puts(aname);
}
void modify_book()
{
cout<<"\nBook number. ;"<<bno;
cout<<"\nEnter Modified Book Name. : ";
cin.getline(character,1);
cin.getline(bname,30);
cout<<"\nEnter Modified Author Name. :";
cin.getline(aname,30);
}
char* retbno()
{
return bno;
}
void report()
{
cout<<bno<<setw(25)<<bname<<setw(25)<<aname<<endl;
}
};
class student
{
char admno[6];
char name[30];
char stbno[6];
int token;
public:
void create_student()
{
cout << "\033[2J\033[1;1H";
cout<<"\nNEW STUDENT ENTRY...\n";
cout<<"\nEnter the admission number. :";
cin>>admno;
cout<<"\nEnter the name of the student. :";
cin.getline(character,1);
cin.getline(name,30);
token=0;
cout<<"\nSTUDNT RECORD CREATED...";
}
void show_student()
{
cout<<"\nAdmission number. :"<<admno;
cout<<"\nStudent name. :";
puts(name);
cout<<"\nNumber of books issued. :"<<token;
if(token==1)
cout<<"\nBook number. :"<<stbno;
}
void modify_student()
{
cout<<"\nAdmission number. :"<<admno;
cout<<"Enter Modified student name. :";
cin.getline(character,1);
cin.getline(name,30);
}
char* retadmno()
{
return admno;
}
char* retstbno()
{
return admno;
}
int rettoken()
{
return token;
}
void addtoken()
{
token=1;
}
void resettoken()
{
token=0;
}
void getstbno(char t[])
{
strcpy(stbno,t);
}
void report()
{
cout<<"\n"<<admno<<setw(20)<<name<<setw(10)<<token<<endl;
}
};
book bk;
student st;
void write_book()
{
char ch;
fp.open("book.dat",ios::out|ios::app);
do
{
cout << "\033[2J\033[1;1H";
bk.create_book();
fp.write((char*)&bk,sizeof(book));
cout<<"\nDo you want to add more record..(y/n)?";
cin>>ch;
}while(ch=='y'||ch=='Y');
fp.close();
}
void write_student()
{
char ch;
fp.open("student.dat",ios::out|ios::app);
do
{
st.create_student();
fp.write((char*)&st,sizeof(student));
cout<<"\nDo you want to add more record..(y/n)?";
cin>>ch;
}while(ch=='y'||ch=='Y');
fp.close();
}
void display_spb(char n[])
{
cout<<"\nBOOK DETAILS\n";
int flag=0;
fp.open("book.dat",ios::in);
while(fp.read((char*)&bk,sizeof(book)))
{
if(strcmp(bk.retbno(),n)==0)
{
bk.show_book();
flag=1;
}
}
fp.close();
if(flag==0)
cout<<"\nBook does not exist";
printf("\nEnter any character to exit followed by enter.");
cin>>character;
}
void display_sps(char n[])
{
cout<<"\nSTUDENT DETAILS\n";
int flag=0;
fp.open("student.dat",ios::in);
while(fp.read((char*)&st,sizeof(student)))
{
if(strcmp(st.retadmno(),n)==0)
{
st.show_student();
flag=1;
}
}
fp.close();
if(flag==0)
cout<<"\nStudent does not exist.";
printf("\nEnter any character to exit followed by enter.");
cin>>character;
}
void modify_book()
{
char n[6];
int found=0;
cout << "\033[2J\033[1;1H";
cout<<"\n\tMODIFY BOOK REOCORD.... ";
cout<<"\n\tEnter The book number of The book";
cin>>n;
fp.open("book.dat",ios::in|ios::out);
while(fp.read((char*)&bk,sizeof(book)) && found==0)
{
if(strcmp(bk.retbno(),n)==0)
{
bk.show_book();
cout<<"\nEnter The New Details of book"<<endl;
bk.modify_book();
int temp=sizeof(bk);
int pos=-temp;
fp.seekp(pos,ios::cur);
fp.write((char*)&bk,sizeof(book));
cout<<"\n\n\t Record Updated";
found=1;
}
}
fp.close();
if(found==0)
cout<<"\n\n Record Not Found ";
printf("\nEnter any character to exit followed by enter.");
cin>>character;
}
void modify_student()
{
char n[6];
int found=0;
cout << "\033[2J\033[1;1H";
cout<<"\n\n\tMODIFY STUDENT RECORD... ";
cout<<"\n\n\tEnter The admission number of The student";
cin>>n;
fp.open("student.dat",ios::in|ios::out);
while(fp.read((char*)&st,sizeof(student)) && found==0)
{
if(strcmp(st.retadmno(),n)==0)
{
st.show_student();
cout<<"\nEnter The New Details of student"<<endl;
st.modify_student();
int temp=sizeof(st);
int pos=-temp;
fp.seekp(pos,ios::cur);
fp.write((char*)&st,sizeof(student));
cout<<"\n\n\t Record Updated";
found=1;
}
}
fp.close();
if(found==0)
cout<<"\n\n Record Not Found ";
printf("\nEnter any character to exit followed by enter.");
cin>>character;
}
void delete_student()
{
char n[6];
int flag=0;
cout << "\033[2J\033[1;1H";
cout<<"\n\n\n\tDELETE STUDENT...";
cout<<"\n\nEnter The admission number of the Student You Want To Delete : ";
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(strcmp(st.retadmno(),n)!=0)
fp2.write((char*)&st,sizeof(student));
else
flag=1;
}
fp2.close();
fp.close();
remove("student.dat");
rename("Temp.dat","student.dat");
if(flag==1)
cout<<"\n\n\tRecord Deleted ..";
else
cout<<"\n\nRecord not found";
printf("\nEnter any character to exit followed by enter.");
cin>>character;
}
void delete_book()
{
char n[6];
int flag=0;
cout << "\033[2J\033[1;1H";
cout<<"\n\n\n\tDELETE BOOK ...";
cout<<"\n\nEnter The Book number of the Book You Want To Delete : ";
cin>>n;
fp.open("book.dat",ios::in|ios::out);
fstream fp2;
fp2.open("Temp.dat",ios::out);
fp.seekg(0,ios::beg);
while(fp.read((char*)&bk,sizeof(book)))
{
if(strcmp(bk.retbno(),n)!=0)
{
fp2.write((char*)&bk,sizeof(book));
}
else
flag=1;
}
fp2.close();
fp.close();
remove("book.dat");
rename("Temp.dat","book.dat");
if(flag==1)
cout<<"\n\n\tRecord Deleted ..";
else
cout<<"\n\nRecord not found";
printf("\nEnter any character to exit followed by enter.");
cin>>character;
}
void display_alls()
{
cout << "\033[2J\033[1;1H";
fp.open("student.dat",ios::in);
if(!fp)
{
cout<<"ERROR!!! FILE COULD NOT BE OPEN ";
printf("\nEnter any character to exit followed by enter.");
cin>>character;
return;
}
cout<<"\n\t\tSTUDENT LIST\n\n";
cout<<"==================================================================\n";
cout<<"\tAdmission No."<<setw(20)<<"Name"<<setw(20)<<"Book Issued\n";
cout<<"==================================================================\n";
while(fp.read((char*)&st,sizeof(student)))
{
st.report();
}
fp.close();
printf("\nEnter any character to exit followed by enter.");
cin>>character;
}
void display_allb()
{
cout << "\033[2J\033[1;1H";
fp.open("book.dat",ios::in);
if(!fp)
{
cout<<"ERROR!!! FILE COULD NOT BE OPEN ";
printf("\nEnter any character to exit followed by enter.");
cin>>character;
return;
}
cout<<"\n\n\t\tBook LIST\n\n";
cout<<"=========================================================================\n";
cout<<"Book Number"<<setw(20)<<"Book Name"<<setw(20)<<"Author\n";
cout<<"=========================================================================\n";
while(fp.read((char*)&bk,sizeof(book)))
{
bk.report();
}
fp.close();
printf("\nEnter any character to exit followed by enter.");
cin>>character;
}
void book_issue()
{
char sn[6],bn[6];
int found=0,flag=0;
cout << "\033[2J\033[1;1H";
cout<<"\n\nBOOK ISSUE ...";
cout<<"\n\n\tEnter The student's admission number";
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(strcmp(st.retadmno(),sn)==0)
{
found=1;
if(st.rettoken()==0)
{
cout<<"\n\n\tEnter the book number ";
cin>>bn;
while(fp1.read((char*)&bk,sizeof(book))&& flag==0)
{
if(strcmp(bk.retbno(),bn)==0)
{
bk.show_book();
flag=1;
st.addtoken();
st.getstbno(bk.retbno());
int temp=sizeof(st);
int pos=-temp;
fp.seekp(pos,ios::cur);
fp.write((char*)&st,sizeof(student));
cout<<"\n\n\t Book issued successfully\n\nPlease Note: Write current date in backside of book and submit within 15 days fine Rs. 1 for each day after 15 days period";
}
}
if(flag==0)
cout<<"Book no does not exist";
}
else
cout<<"You have not returned the last book ";
}
}
if(found==0)
cout<<"Student record not exist...";
printf("\nEnter any character to exit followed by enter.");
cin>>character;
fp.close();
fp1.close();
}
void book_deposit()
{
char sn[6],bn[6];
int found=0,flag=0,day,fine;
cout << "\033[2J\033[1;1H";
cout<<"\n\nBOOK DEPOSIT ...";
cout<<"\n\n\tEnter The student's admission number";
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(strcmp(st.retadmno(),sn)==0)
{
found=1;
if(st.rettoken()==1)
{
while(fp1.read((char*)&bk,sizeof(book))&& flag==0)
{
if(strcmp(bk.retbno(),st.retstbno())==0)
{
bk.show_book();
flag=1;
cout<<"\n\nBook deposited in number of days";
cin>>day;
if(day>15)
{
fine=(day-15)*1;
cout<<"\n\nFine has to deposited Rs. "<<fine;
}
st.resettoken();
int temp=sizeof(st);
int pos=-temp;
fp.seekp(pos,ios::cur);
fp.write((char*)&st,sizeof(student));
cout<<"\n\n\t Book deposited successfully";
}
}
if(flag==0)
cout<<"Book no does not exist";
}
else
cout<<"No book is issued..please check!!";
}
}
if(found==0)
cout<<"Student record not exist...";
printf("\nEnter any character to exit followed by enter.");
cin>>character;
fp.close();
fp1.close();
}
void intro()
{
cout << "\033[2J\033[1;1H";
cout<<"LIBRARY";
cout<<"MANAGEMENT";
cout<<"SYSTEM";
cout<<"\n\nMADE BY : YOUR NAME";
cout<<"\n\nSCHOOL : SCHOOL NAME";
system("pause");
}
void admin_menu()
{
cout << "\033[2J\033[1;1H";
int ch2;
cout<<"\n\n\n\tADMINISTRATOR MENU";
cout<<"\n\n\t1.CREATE STUDENT RECORD";
cout<<"\n\n\t2.DISPLAY ALL STUDENTS RECORD";
cout<<"\n\n\t3.DISPLAY SPECIFIC STUDENT RECORD ";
cout<<"\n\n\t4.MODIFY STUDENT RECORD";
cout<<"\n\n\t5.DELETE STUDENT RECORD";
cout<<"\n\n\t6.CREATE BOOK ";
cout<<"\n\n\t7.DISPLAY ALL BOOKS ";
cout<<"\n\n\t8.DISPLAY SPECIFIC BOOK ";
cout<<"\n\n\t9.MODIFY BOOK ";
cout<<"\n\n\t10.DELETE BOOK ";
cout<<"\n\n\t11.BACK TO MAIN MENU";
cout<<"\n\n\tPlease Enter Your Choice (1-11) ";
cin>>ch2;
switch(ch2)
{
case 1: cout << "\033[2J\033[1;1H";
write_student();break;
case 2: display_alls();break;
case 3:
char num[6];
cout << "\033[2J\033[1;1H";
cout<<"\n\n\tPlease Enter The Admission No. ";
cin>>num;
display_sps(num);
break;
case 4: modify_student();break;
case 5: delete_student();break;
case 6: cout << "\033[2J\033[1;1H";
write_book();break;
case 7: display_allb();break;
case 8: {
char num[6];
cout << "\033[2J\033[1;1H";
cout<<"\n\n\tPlease Enter The book No. ";
cin>>num;
display_spb(num);
break;
}
case 9: modify_book();break;
case 10: delete_book();break;
case 11: return;
default:cout<<"\a";
}
admin_menu();
}
int main()
{
cout << "\033[2J\033[1;1H";
char ch;
intro();
do
{
cout << "\033[2J\033[1;1H";
cout<<"\n\n\n\tMAIN MENU";
cout<<"\n\n\t01. BOOK ISSUE";
cout<<"\n\n\t02. BOOK DEPOSIT";
cout<<"\n\n\t03. ADMINISTRATOR MENU";
cout<<"\n\n\t04. EXIT";
cout<<"\n\n\tPlease Select Your Option (1-4) ";
cin>>ch;
switch(ch)
{
case '1':cout << "\033[2J\033[1;1H";
book_issue();
break;
case '2':book_deposit();
break;
case '3':admin_menu();
break;
case '4':exit(0);
default :cout<<"\a";
}
}while(ch!='4');
}