-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathLIBRARY.CPP
481 lines (446 loc) · 9.06 KB
/
LIBRARY.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
/* HEADER FILES */
#include<fstream.h>
#include<conio.h>
#include<stdio.h>
#include<string.h>
/* CLASS USED */
class Book
{
protected:
char bookname[50];
char author[50];
char category[20];
public:
char refno[10];
void CreateBook();
void ShowBook();
};
void Book::CreateBook()
{
cout<<"\n Enter Book Reference Number..";
gets(refno);
cout<<"\n Enter Book Name..";
gets(bookname);
cout<<"\n Enter Author's name..";
gets(author);
cout<<"\n Enter Category..";
gets(category);
}
void Book::ShowBook()
{
cout<<"\n Book Number - "<<refno;
cout<<"\n Book Name - "<<bookname;
cout<<"\n Author - "<<author;
cout<<"\n Category - "<<category;
}
/* CLASS USED */
class Person:public Book
{
protected:
char name[20];
public:
void Create();
void Show();
char cardno[10];
int noofbook;
};
void Person::Create()
{
cout<<"\n Enter Card No...";
gets(cardno);
cout<<"\n Enter Name of Person...";
gets(name);
cout<<"\n Enter No of Book Issued..";
cin>>noofbook;
}
void Person::Show()
{
cout<<"\n Card No - "<<cardno;
cout<<"\n Person Name - "<<name;
cout<<"\n No of Book Issued - "<<noofbook;
}
/* FUNCTION TO CREATE A BOOK RECORD */
void AddRecord()
{
ofstream f1;
Book B;
f1.open("Book",ios::out|ios::binary);
B.CreateBook();
f1.write((char*)&B,sizeof(Book));
f1.close();
cout<<"\n Book Record Created !!!!!";
}
/* FUNCTION TO CREATE A RECORD */
void AddPerson()
{
ofstream f1;
Person P;
f1.open("Person",ios::out|ios::binary);
P.Create();
f1.write((char *)&P,sizeof(Person));
f1.close();
cout<<"\n Person Record Created !!!!!";
}
/* FUNCTION TO DISPLAY ALL BOOK DETAILS */
void DisplayBook()
{
Book B;
char ch;
ifstream f1;
f1.open("Book",ios::in|ios::binary);
f1.seekg(0);
while(f1.read((char *)&B,sizeof(B)))
B.ShowBook();
f1.close();
}
/* FUNCTION TO DISPLAY PEOPLE DETAILS */
void DisplayPerson()
{
Person P;
char ch;
ifstream f1;
f1.open("Person",ios::in|ios::binary);
f1.seekg(0);
while(f1.read((char *)&P,sizeof(P)))
P.Show();
f1.close();
}
/* FUNCTION TO MODIFY BOOK DETAILS */
void ModifyBook()
{
Book B;
int r1=0;
ifstream f1;
ofstream f2;
f1.open("Book",ios::in|ios::binary);
f2.open("new",ios::out|ios::binary);
char r[20];
cout<<"\n Enter the book number to be modified..";
gets(r);
f1.read((char *)&B,sizeof(B));
if(strcmpi(r,B.refno)==0)
{ r1=1;
B.CreateBook();
}
f2.write((char *)&B,sizeof(B));
f1.close();
f2.close();
remove("Book");
rename("new","Book");
if(r1==1)
{
cout<<"\n Record Is Modified.....";
}
else
{
cout<<"\n Record Not Found..";
}
}
/* FUNCTION TO MODIFY PUBLIC DETAILS */
void ModifyPerson()
{
Person P;
int r1=0;
ifstream f1;
ofstream f2;
f1.open("Person",ios::in|ios::binary);
f2.open("new",ios::out|ios::binary);
char r[20];
cout<<"\n Enter the card number of person to be modified..";
gets(r);
f1.read((char *)&P,sizeof(P));
if(strcmpi(r,P.cardno)==0)
{ r1=1;
P.Create();
}
f2.write((char *)&P,sizeof(P));
f1.close();
f2.close();
remove("Person");
rename("new","Person");
if(r1==1)
{
cout<<"\n Record Is Modified.....";
}
else
{
cout<<"\n Record Not Found..";
}
}
/* FUNCTION TO DELETE BOOK DETAILS */
void DeleteBook()
{
int f=0;
Book B;
ifstream f1;
ofstream f2;
f1.open("Book",ios::in|ios::binary);
f2.open("new",ios::out|ios::binary);
char r[20];
cout<<"\n Enter the Book Reference Number to be Deleted..";
gets(r);
while(f1)
{
f1.read((char *)&B,sizeof(B));
if(strcmpi(r,B.refno)!=0)
f2.write((char *)&B,sizeof(B));
else
f=1;
}
f1.close();
f2.close();
remove("Book");
rename("new","Book");
if(f==1)
{
cout<<"\n Record is Deleted.....";
}
else
cout<<"\n record not found..";
}
/* FUNCTION TO DELETE PEOPLE DETAILS */
void DeletePerson()
{
int f=0;
Person P;
ifstream f1;
ofstream f2;
f1.open("Person",ios::in|ios::binary);
f2.open("new",ios::out|ios::binary);
char r[20];
cout<<"\n Enter the Card Number of Person to be Deleted..";
gets(r);
while(f1)
{
f1.read((char *)&P,sizeof(P));
if(strcmpi(r,P.cardno)!=0)
f2.write((char *)&P,sizeof(P));
else
f=1;
}
f1.close();
f2.close();
remove("Person");
rename("new","Person");
if(f==1)
{
cout<<"\n Record is Deleted.....";
}
else
cout<<"\n record not found..";
}
/* FUNCTION TO ISSUE THE BOOK */
void Issue()
{
Person P;
Book B;
char cn[10], bn[10];
int found=0,flag=0;
ifstream f1,f2;
ofstream f3;
cout<<"\n !!!!! Book Issue !!!!! ";
cout<<"\n Enter Person's Card no...";
cin>>cn;
cout<<"\n Enter Book Reference no..";
cin>>bn;
f1.open("Person",ios::in|ios::binary);
f2.open("Book",ios::in|ios::binary);
f3.open("temp",ios::out|ios::binary);
while(f1.read((char*)&P,sizeof(Person)) && found==0)
{
if(strcmpi(P.cardno,cn)==0)
{
found=1;
if(P.noofbook==0)
{
while(f2.read((char*)&B,sizeof(Book))&&flag==0)
{
if(strcmpi(B.refno,bn)==0)
{
P.noofbook++;
flag=1;
cout<<"\n Book issued Succesfully !!!";
cout<<"\n Write Current Date in backside of book and submit within 20 days.";
cout<<"\n Otherwise fine of Rs.1/day is charged !!!";
}
}
}
}
f3.write((char *)&P,sizeof(Person));
}
f1.close();
f2.close();
f3.close();
remove("Person");
rename("temp","Person");
if(flag==0)
cout<<"\n Book Reference number does not exist !!!";
if(found==0)
cout<<"\n Person Record Not Exist..";
}
/* FUNCTION TO RETURN THE BOOK */
void Deposit()
{
Person P;
Book B;
char cn[10],bn[10];
int found=0,flag=0,day,fine;
ifstream f1,f2;
ofstream f3;
cout<<"\n !!! BOOK DEPOSIT !!! ";
cout<<"\n Enter Person's Card No...";
cin>>cn;
cout<<"\n Enter Book Reference No...";
cin>>bn;
f1.open("Person",ios::in|ios::binary);
f2.open("Book",ios::in|ios::binary);
f3.open("temp",ios::out|ios::binary);
while(f1.read((char*)&P,sizeof(Person)))
{
if(strcmpi(P.cardno,cn)==0)
{
found=1;
if(P.noofbook!=0)
{
while(f2.read((char*)&B,sizeof(Book))&&flag==0)
{
if(strcmpi(B.refno,bn)==0)
{
P.noofbook--;
flag=1;
cout<<"\n Book Deposited in no of Days";
cin>>day;
if(day>20)
{
fine=(day-20)*1;
cout<<"\n Fine has to deposited Rs."<<fine;
}
}
}
}
}
f3.write((char *)&P,sizeof(Person));
}
f1.close();
f2.close();
f3.close();
remove("Person");
rename("temp","Person");
if(flag==0)
cout<<"\n Book Reference no does not exist!!!";
else
cout<<"\n Book is deposited...!!!";
if(found==0)
cout<<"\n Person Record Not Exist..";
}
/* MENU */
void Menu()
{
int choice;
char ch;
do
{
clrscr();
cout<<"\n !!!!!!!!!!! PUBLIC LIBRARY MANAGEMENT SYSTEM !!!!!!!!!!! \n";
cout<<"\n********** Select the operation you would like to perform ********** ";
cout<<"\n";
cout<<"\n 1.Add a Book Record ";
cout<<"\n 2.Add Person Details";
cout<<"\n 3.Display all Records";
cout<<"\n 4.Modify a Book Record ";
cout<<"\n 5.Modify a Person Record ";
cout<<"\n 6.Delete a Book Record ";
cout<<"\n 7.Delete a Person Record ";
cout<<"\n 8.Issue a Book ";
cout<<"\n 9.Return a Book";
cout<<"\n 0.Exit ";
cout<<"\n Enter your choice(1-0)... ";
cin>>choice;
switch(choice)
{
case 1:
AddRecord();
break;
case 2:
AddPerson();
break;
case 3:
DisplayBook();
cout<<"\n";
DisplayPerson();
break;
case 4:
ModifyBook();
break;
case 5:
ModifyPerson();
break;
case 6:
DeleteBook();
break;
case 7:
DeletePerson();
break;
case 8:
Issue();
break;
case 9:
Deposit();
break;
case 0:
cout<<"\n!!!!!!!!!!!!!!! THANK YOU !!!!!!!!!!!!!!!";
cout<<"\n ------- HAVE A NICE DAY ------- ";
cout<<"\n PUBLIC LIBRARY ";
break;
default:
cout<<"\n Wrong Choice..";
break;
}
cout<<"\n Do you wish to work again?(y/n)";
cin>>ch;
}
while(ch=='y'||ch=='Y');
}
/* MAIN FUNCTION */
void main()
{
clrscr();
ofstream f("Book");
int ch;
char c;
do
{
clrscr();
cout<<"\n !!!!!!!!!!!!!!!!!!!! WELCOME TO PUBLIC LIBRARY !!!!!!!!!!!!!!!!!!!! \n ";
cout<<"---------------------------------------------------------------------";
cout<<"\n .......Select the operation you would like to perform....... \n ";
cout<<"\n 1.Open Book";
cout<<"\n 2.Open Menu";
cout<<"\n 3.Exit ";
cout<<"\n Enter your choice(1-3).. ";
cin>>ch;
switch(ch)
{
case 1:
cout<<"\n !!!!! Book Record is opened !!!!!";
DisplayBook();
break;
case 2:
cout<<"\n-------------------- Menu is opened -------------------- \n";
Menu();
break;
case 3:
cout<<"\n --- Thanks for Visiting --- ";
cout<<"\n..... Have a nice day.....";
break;
default:
cout<<"\n wrong choice!!";
break;
}
cout<<"\n Do you wish to work again?(y/n)";
cin>>c;
}
while(c=='y'||c=='Y');
getch();
}
/* END */