-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfirst.cpp
454 lines (380 loc) · 9.6 KB
/
first.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
#include<iostream>
#include<windows.h>
#include<cstring>
#include<conio.h>
#include"class.h"
#include<fstream>
using namespace std ;
class librarian
{
public:
void welcome();
void view_booklist();
void search_book();
void add_book();
void issue_book();
void change_password();
void student();
void admin();
void search_serial();
void search_bookname();
void search_subject();
void search_author();
};
void librarian::welcome()
{
int choice;
int i;
system("COLOR 4F");
for(i=0;i<5;i++)
{
printf("\n\n\n\n ..............................welcome..............................................\n");
Sleep(500);
system("cls");
Sleep(500);
}
system("cls");
system("COLOR 60");
cout<<"\n\n\n ******************************************* MAIN MENU ***************************************************\n";
cout<<"\n\n ENTER 1 FOR STUDENT LOGIN \n\n";
cout<<" ENTER 2 FOR ADMIN STAFF LOGIN \n\n " ;
cout<<"ENTER 3 TO Exit \n " ;
cin>>choice ;
if(choice==1)
{
student();
}
else if(choice==2)
{
admin();
}
else if(choice==3)
{
exit(0);
}
};
void librarian::student()
{
int choice ;
system("cls");
system("COLOR 70");
cout<<"******************************************* STUDENT SECTION ***************************************************\n\n";
cout<<" PRESS 1 TO VIEW THE BOOKLIST \n\n ";
cout<<" PRESS 2 TO SEARCH THE BOOK \n\n ";
cout<<" PRESS 3 TO GO TO THE MAIN MENU \n\n ";
cout<<" PRESS 4 TO EXIT FROM THE SOFTWARE \n\n ";
cin>>choice;
if(choice==1)
{
view_booklist();
}
else if(choice==2)
{
search_book();
}
else if(choice==3)
{
welcome();
}
else
{
exit(0);
}
}
void librarian::admin()
{
int choice,i,c=220;
string origin,pass;
char ch ;
system("cls");
system("COLOR 70");
cout<<"\n\n\n****************************************************** ADMIN SECTION *******************************************\n\n" ;
cout<<"ENTER THE PASSWORD ::::\n\n";
i=0;
while(1)
{
ch=getch();
if(ch=='\r')
{
pass[i]='\0';
break ;
}
pass[i]= ch ;
printf("*");
i++;
}
//cout<<pass<<endl ;
i=0;
ifstream inf ;
inf.open("password.dat");
if(!inf)
{
cout<<"password file not open\n";
}
else
{
while(getline(inf,origin));
}
inf.close();
//cout<<origin ;
if(origin==pass)
{
system("cls");
system("COLOR F0");
cout<<" \n\n\n PRESS 1 to VIEW THE BOOKLIST \n\n";
cout<<" PRESS 2 TO SEARCH A BOOK \n\n";
cout<<" PRESS 3 TO ADD THE BOOK \n\n";
cout<<" PRESS 4 TO ISSUE A BOOK \n\n";
cout<<" PRESS 5 TO CHANGE THE PASSWORD \n\n";
cout<<" PRESS 6 TO GO TO THE MAIN MENU \n\n ";
cout<<"PRESS 7 TO EXIT FROM THE SOFTWARE \n\n";
cin>>choice ;
if(choice==1)
{
view_booklist();
}
else if(choice==2)
{
search_book();
}
else if(choice==3)
{
add_book();
}
/*else if(choice==4)
{
issue_book();
}
else if(choice==5)
{
change_password();
}*/
else if(choice==6)
{
welcome();
}
else{
exit(0);
}
}
else
{
cout<<"password "<<pass ;
cout<<"my password "<<origin;
getch();
system("cls");
system("COLOR 17");
i=0;
for(i=0;i<5;i++)
{
cout<<" ENTERED PASSWORD IS INCOREECT ";
Sleep(500);
system("cls");
Sleep(500);
}
}
}
void librarian :: view_booklist()
{
system("cls");
system("COLOR 7F");
cout<<"\n S.NO. BOOK-NAME AUTHOR-NAME SUBJECT available copies"<<endl<<endl ;
for(int i=0;i<150;i++)
{
cout<<"-";
}
fstream inf ;
inf.open("booklist.dat" ,ios::in|ios::binary);
if(!inf)
{
cout<<endl<<" error occured in opening the booklist file ";
exit(0);
}
while(!inf.eof())
{
inf.read((char*)&book,sizeof(book));
//cout<<"loop";
cout<<"\n\n"<< book.serial_num<<" "<<book.bookname<<" "<<book.author<<" "<<book.subject<<" "<<book.available<<endl;
}
inf.close();
}
void librarian::add_book()
{
int i ;
system("cls");
system("COLOR 30");
fstream file ;
file.open("booklist.dat",ios::app);
while(1)
{
cout<<" enter 1 to continue modify and 0 to exit "<<endl;
cin>>i;
if(i==0)
{
file.close();
break ;
}
cout<<"\n\n enter the serial number :"<<endl ;
cin>>book.serial_num;
cout<<"\n\n enter the book name : "<<endl ;
cin>>book.bookname ;
cout<<"\n\n enter the author name :"<<endl ;
cin>>book.author ;
cout<<"\n\n enter the subject of the book :"<<endl ;
cin>>book.subject;
cout<<"\n\n enter the available books in library :"<<endl ;
cin>>book.available;
file.write((char*)&book,sizeof(book));
}
}
void librarian :: search_book()
{
int i ;
system("cls");
system("COLOR 9F");
cout<<"\n\n\n";
cout<<" PRESS 1 TO SEARCH A BOOK BY SERIAL NUMBER \n"<<endl ;
cout<<" PRESS 2 TO SEARCH A BOOK BY BOOKNAME \n"<<endl ;
cout<<" PRESS 3 TO SEARCH A BOOK BY SUBJECT \n"<<endl ;
cout<<" PRESS 4 TO SEARCH A BOOK BY AUTHOR NAME \n"<<endl ;
cout<<" PRESS 5 TO EXIT \n"<<endl;
cin>>i ;
switch(i)
{
case 1:
search_serial();
break ;
case 2 :
search_bookname();
break ;
case 3 :
search_subject();
break ;
case 4 :
search_author();
break ;
case 5 :
exit(0);
break ;
}
}
void librarian :: search_serial()
{
int found ;
system("cls");
ifstream inf ;
int serial ;
cout<<" enter the serial number you want to serach : "<<endl ;
cin>>serial ;
inf.open("booklist.dat");
while(!inf.eof())
{
inf.read((char*)&book,sizeof(book));
if(book.serial_num==serial)
{
cout<<"\n\n\n";
cout<<"SERIAL NUMBER : "<<ends<<book.serial_num<<endl ;
cout<<"BOOKNAME IS : "<<ends<<book.bookname<<endl ;
cout<<"PREFERRED STREAM : "<<ends<<book.subject<<endl;
cout<<"AUTHOR NAME : "<<ends<<book.author<<endl ;
found=1;
break ;
}
else
{
found=0;
continue;
}
}
if(found==0)
{
cout<<" book not present \n";
}
}
void librarian::search_bookname()
{
int found ;
system("cls");
ifstream inf ;
string name ;
cout<<" enter the book name you want to serach : "<<endl ;
cin>>name ;
inf.open("booklist.dat");
while(!inf.eof())
{
inf.read((char*)&book,sizeof(book));
if(book.bookname==name)
{
cout<<"\n\n\n";
cout<<"SERIAL NUMBER : "<<ends<<book.serial_num<<endl ;
cout<<"BOOKNAME IS : "<<ends<<book.bookname<<endl ;
cout<<"PREFERRED STREAM : "<<ends<<book.subject<<endl;
cout<<"AUTHOR NAME : "<<ends<<book.author<<endl ;
found=1;
break ;
}
else
{
found=0;
continue;
}
}
if(found==0)
{
cout<<" book not present \n";
}
}
void librarian :: search_subject()
{
int found ;
system("cls");
ifstream inf ;
string stream ;
cout<<" enter the stream you want to serach : "<<endl ;
cin>>stream ;
inf.open("booklist.dat");
while(!inf.eof())
{
inf.read((char*)&book,sizeof(book));
if(book.subject==stream)
{
cout<<"\n\n\n";
cout<<"SERIAL NUMBER : "<<ends<<book.serial_num<<endl ;
cout<<"BOOKNAME IS : "<<ends<<book.bookname<<endl ;
cout<<"PREFERRED STREAM : "<<ends<<book.subject<<endl;
cout<<"AUTHOR NAME : "<<ends<<book.author<<endl ;
}
else
{
continue;
}
}
}
void librarian :: search_author()
{
int found ;
system("cls");
ifstream inf ;
string name ;
cout<<" enter the book author name you want to serach : "<<endl ;
cin>>name ;
inf.open("booklist.dat");
while(!inf.eof())
{
inf.read((char*)&book,sizeof(book));
if(book.author==name)
{
cout<<"\n\n\n";
cout<<"SERIAL NUMBER : "<<ends<<book.serial_num<<endl ;
cout<<"BOOKNAME IS : "<<ends<<book.bookname<<endl ;
cout<<"PREFERRED STREAM : "<<ends<<book.subject<<endl;
cout<<"AUTHOR NAME : "<<ends<<book.author<<endl ;
}
}
}
int main()
{
librarian lib;
lib.welcome();
return 0;
}