-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlibraryapp.cpp
492 lines (487 loc) · 10.8 KB
/
libraryapp.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
//Code for LIBRARY MANAGEMENT SYSYTEM (LMS) IN C++
#include<fstream.h>
#include<iostream.h>
#include<conio.h>
#include<stdio.h>
#include<process.h>
#include<string.h>
#include<iomanip.h>
class book
{
char bno[6];
char bname[50];
char aname[20];
public:
void create_book()
{
cout<<"\n NEW BOOK ENTRY..\n";
cout<<"\nEnter the book no. ";
cin>>bno;
cout<<"\n\nEnter the Name of the book ";
gets(bname);
cout<<"\n\nEnter the Author's name ";
gets(aname);
cout<<"\n\nBook Created.. ";
}
void show_book()
{
cout<<"\nBook no.:- "<<bno;
cout<<"\nBook Name : ";
puts(bname);
cout<<"\nAuthor's name :- ";
puts(aname);
}
void modify_book()
{
cout<<"\nBook no. :"<<bno;
cout<<"\nModify book name : ";
gets(bname);
cout<<"\nModify Author's name of the book : ";
gets(aname);
}
char*retbno()
{ return bno; }
void report()
{ cout<<bno<<setw(30)<<bname<<setw(30)<<aname<<endl; }
} ;
class student
{
char admno[6];
char name[20];
char stbno[6];
int token;
public:
void create_student()
{
clrscr();
cout<<"\nNEW STUDENT ENTRY.. \n";
cout<<"\nEnter the admission no. :- ";
cin>>admno;
cout<<"\n\nEnter the name of the student ";
gets(name);
token=0;
stbno[0]='\0';
cout<<"\nStudent record Created.. ";
}
void show_student()
{
cout<<"\nAdmission no. :- "<<admno;
cout<<"\nStudent name; ";
puts(name);
cout<<"\nNo. of books issued: "<<token;
if(token==1)
cout<<"\nBook No. "<<stbno;
}
void modify_student()
{
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; }
};
fstream fp, fp1;
book bk;
student st;
void write_book() //Function to write in file
{
char ch;
ofstream fp("book.dat",ios::app||ios::in);
do
{
clrscr();
bk.create_book();
fp.write((char*)&bk,sizeof(book));
cout<<"\n\nDo you want to add more record..(y/n)";
cin>>ch;
}
while (ch=='y'||ch=='Y');
fp.close();
}
void write_student()
{
char ch;
ofstream fp("student.dat",ios::app||ios::in) ;
do
{
st.create_student();
fp.write((char*)&st,sizeof(student));
cout<<"\n\nDo you want to add more record..(y/n) ";
cin>>ch;
} while(ch=='y'||ch=='y');
fp.close(); }
void display_spb(char n[]) //Function to read specific record
{
cout<<"\nBOOK DETAILS\n";
int flag=0;
fp.open("book.dat",ios::in);
while(fp.read((char*)&bk,sizeof(book)))
{
if(stricmp(bk.retbno(),n)==0)
{ bk.show_book();
flag=1;
}
}
fp.close();
if(flag==0)
cout<<"\n\nBook does not exist ";
getch();
}
void modify_book() //Function to modify record of book
{
char n[6];
int found =0;
clrscr();
cout<<"\n\n\tMODIFY BOOK RECORD..";
cout<<"\n\n\tEnter The Book no. of the book:- ";
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.show_book();
cout<<"\nenter the New Details of book"<<endl;
bk.modify_book();
int pos=-1*sizeof(bk);
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\nRecord not found ";
getch();
}
void modify_student() //Function to modify record of student
{
char n[6];
int found=0;
clrscr();
cout<<"\n\n\tMODIFY STUDENT RECORED... ";
cout<<"\n\n\tEnter The admission no. of the student :";
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.show_student();
cout<<"\nenter the new Details of student "<<endl;
st.modify_student();
int pos=-1*sizeof(st);
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 Foound ";
getch();
}
void delete_student() //Function to delete student record
{
char n[6];
int flag=0;
clrscr();
cout<<"\n\n\n\n\t DELETE STUDENT... ";
cout<<"\n\nEnter The Admission no. 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(stricmp(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 Record deleted.. ";
else
cout<<"\n\n Record not found ";
getch();
}
void delete_book() //Function to delete book record
{
char n[6];
clrscr();
cout<<"\n\n\n\t DELETE BOOK... ";
cout<<"\n\nEnter the Book no. 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 (strcmpi(bk.retbno(),n)!=0)
{ fp2.write((char*)&bk,sizeof(book)); }
}
fp2.close();
fp.close();
remove("book.dat");
rename("temp.dat","book.dat");
cout<<"\n\n\t Record Deleted.. ";
getch();
}
void display_alls()//Function to display student list
{
clrscr();
fp.open("student.dat",ios::in) ;
if(!fp)
{ cout<<"ERROR!! FILE COULD NOT BE OPEN ";
getch();
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 display_allb() //Function to display book list
{ clrscr();
fp.open("book.dat",ios::in);
if(!fp)
{
cout<<"ERROR!! FILE COULD NOT BE OPEN ";
getch();
return; }
cout<<"\n\n\t\tBOOK LIST\n\n";
cout<<"===================================================================\n";
cout<<"Book Number "<<setw(20)<<"Book Name"<<setw(25)<<"Authors\n";
cout<<"===================================================================\n";
while(fp.read((char*)&bk,sizeof(book)))
{ bk.report() ; }
fp.close();
getch();
}
void book_issue() //Function to issue book
{
char sn[6],bn[6];
int found=0,flag=0;
clrscr();
cout<<"\n\nBOOK ISSUE... ";
cout<<"\n\nEnter The student's 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)
{ found=1;
if(st.rettoken()==0)
{ cout<<"\n\n\tenter the book no. :- ";
cin>>bn;
while(fp1.read((char*)&bk,sizeof(book))&& flag==0)
{ if(strcmpi(bk.retbno(),bn)==0)
{ bk.show_book();
flag=1;
st.addtoken();
st.getstbno(bk.retbno());
int pos=-1*sizeof(st);
fp.seekg(pos,ios::cur);
fp.write((char*)&st,sizeof(student));
cout<<"\n\n\t Book issued successfully "; }
}
if(flag==0)
cout<<"Book does not exist ";
}
else
cout<<"You have not returned the last book "; }
}
if(found==0)
cout<<"Student record not exist.. ";
getch();
fp.close();
fp1.close();
}
void book_deposit() //Function to deposit book
{
char sn[6],bn[6];
int found=0,flag=0,day,fine;
clrscr();
cout<<"\n\n BOOK DEPOSIT ... ";
cout<<"\n\n\tEnter the student's 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)
{ found=1;
if(st.rettoken()==1)
{ while(fp1.read((char*)&bk,sizeof(book))&& flag==0)
{ if(strcmpi(bk.retbno(),st.retstbno())==0)
{ bk.show_book();
flag=1;
cout<<"\n\nBook deposited in no. of days";
cin>>day;
if(day>15)
{ fine=(day-15)*1 ;
cout<<"\n\nFine has to deposited Rs. "<<fine; }
st.resettoken();
int pos=-1*sizeof(st);
fp.seekg(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.. ";
getch();
fp.close();
fp1.close();
}
void deleteall() //Function to delete data
{ clrscr();
int a;
cout<<"Press 1 to delete all the data "<<"\n";
cout<<"Press 2 to go back "<<"\n";
cin>>a;
if(a==1)
{ clrscr();
cout<<"PLEASE BE SURE THAT YOU HAVE TAKEN THE BACKUP OF UR DATA ";
cout<<"BECAUSE THE FILES IF DELETED WILL NOT BE ABLE TO RESTORED"<<"\n";
cout<<"Press any key to continue"<<"\n";
getch();
ofstream delstu("student.dat",ios::trunc);
delstu.close();
ofstream delboo("book.dat",ios::trunc);
delboo.close();
clrscr();
cout<<"All the data deleted"<<"\n";
cout<<"Press any kry to go back"<<"\n";
getch();
return; }
else
return; }
void backdat() //Function to backup data
{ clrscr();
cout<<"The backupupes file will be store in"<<"\n";
cout<<"Press any key to continue"<<"\n";
getch();
system("save") ;
//SAVE IS A BATCH FILE WHOSE CODING IS GIVEN AT THE END OF PROGRAM
clrscr();
cout<<"YOUR DATA HAS BEEN SAVED TO DOCUMENTS SUCCESSFULLY!! "<<"\n";
cout<<"Press any key to go back"<<"\n";
getch();
return; }
void admin_menu() //Administration menu
{ clrscr();
int ch2;
cout<<"\n\n\n\t\t ADMINISTRATION MENU";
cout<<"\n\t1.CREATE STUDENT RECORD";
cout<<"\n\t2.DISPLAY ALL STUDENT RECORD";
cout<<"\n\t3.DISPLAY SPECIFIC STUDENT RECORD";
cout<<"\n\t4.MODIFY STUDENT RECORD";
cout<<"\n\t5.DELETE STUDENT RECORD";
cout<<"\n\t6.CREATE BOOK ";
cout<<"\n\t7.DISPLAY ALL BOOKS ";
cout<<"\n\t8.DISPLAY SPECIFIC BOOK ";
cout<<"\n\t9.MODIFY BOOK ";
cout<<"\n\t10.DELETE BOOK ";
cout<<"\n\t11.DELETE ALL THE DATA ";
cout<<"\n\t12.BACKUP YOUR DATA ";
cout<<"\n\t13.BACK TO MAIN MENU ";
cout<<"\n"<<"Please choose an option from (1-12);- ";
cin>>ch2;
switch(ch2)
{
case 1: clrscr();
write_student();
break;
case 2: display_alls() ;
break;
case 3: char num[6];
clrscr();
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: clrscr();
write_book() ;
break;
case 7: display_allb();
break;
case 8: { char num[6];
clrscr();
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: deleteall();
break;
case 12: backdat();
break;
case 13: return;
default : cout<<"\a";
}
admin_menu();
}
void intro() //Introductory function
{ clrscr();
cout<<"\t\t\t\t\t\t\t\t\t\t\t\t GENESIS GLOBAL SCHOOL,NOIDA,INDIA"<<"\n\n";
cout<<"\t\t\t\t\t\t\t\t\t\t\t\t LIBRARY MANAGMENT "<<"\n\n";
cout<<" WELCOME"<<"\n\n\n\n\n";
cout<<" MADE BY;- PRANIT GUPTA ";
cout<<"\n\n"<<"Press any key to continue... ";
getch(); }
void main()
{ char ch;
intro();
do{ clrscr();
cout<<"\n\n\n\tMAIN MENU";
cout<<"\n\n\t01. BOOK ISSUE";
cout<<"\n\n\t02. BOOK DEPOSIT";
cout<<"\n\n\t03. ADMINISTRATION MENU";
cout<<"\n\n\t04. EXIT ";
cout<<"\n\n\tPlease Select your option(1-4) ";
cin>>ch;
switch(ch)
{
case '1':clrscr();
book_issue();
break;
case '2':book_deposit();
break;
case '3':admin_menu();
break;
case '4': exit(0);
break;
default : cout<<"\a";
}
} while(ch!='4');
}
//Code Finished and error free code written using file handling and classes