-
Notifications
You must be signed in to change notification settings - Fork 2
/
library.c
391 lines (303 loc) · 7.19 KB
/
library.c
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
#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
#include <string.h>
#define TRIES 3
void password();
void heading();
void mainMenu();
int addBook();
void viewBooks();
int searchBook();
int editBook();
void deleteBook();
void help();
void exitProg();
struct BOOK_INFO
{
int ID;
char Name[20];
char Author[20];
int Quantity;
int RackNo;
};
struct BOOK_INFO add;
FILE *fp;
FILE *file2;
int main()
{
password();
}
void heading()
{
printf("\n\n\t**************Library Management Software*************\n\n");
// fflush(stdin);
// getchar();
}
void password()
{
heading();
int count = 1;
char pass[] = "fahim";
char ch[10];
printf("\tEnter Password : \n");
gets(ch);
while(strcmp(ch, pass) != 0)
{
count++;
if (count > TRIES)
{
exit(1);
}
printf("\t try again\n");
gets(ch);
}
printf("\n\nLog in Successfully\n\n"
"press any to ..... continue\n");
getchar();
// main menu
mainMenu();
}
void mainMenu()
{
int choice = 0;
system("clear");
while(1)
{
printf("**************Main Menu ****************\n\n");
printf("1. Add book\n"
"2. View book list\n"
"3. Search book\n"
"4. Edit book\n"
"5. Delete book\n"
"6. Help\n"
"7. Exit\n\n");
printf("*********************************\n");
printf("enter your choice : ");
scanf("%d", &choice);
getchar();
if (choice == 1)
{
addBook();
}
else if (choice == 2)
{
viewBooks();
}
else if (choice == 3)
{
searchBook();
}
else if (choice == 4)
{
editBook();
}
else if (choice == 5)
{
deleteBook();
}
else if (choice == 6)
{
help();
}
else if (choice == 7)
{
break;
}
else
{
printf("wrong choice\n try again \n");
}
}
exitProg();
}
int addBook()
{
int d, count = 0;
system("clear");
printf("***************Book Info *************\n\n");
fp = fopen("books.txt", "ab+");
printf("Enter ID: ");
fflush(stdin);
scanf("%d", &d);
rewind(fp);
while (fread(&add, sizeof(add), 1, fp) == 1)
{
if (d == add.ID)
{
printf("this book is already in library");
return 0;
}
}
add.ID = d;
printf("Enter Name: ");
fflush(stdin);
scanf("%s", add.Name);
printf("Enter Author: ");
fflush(stdin);
scanf("%s", add.Author);
printf("Enter quantity: ");
fflush(stdin);
scanf("%d", &add.Quantity);
printf("Enter Rack-no: ");
fflush(stdin);
scanf("%d", &add.RackNo);
fseek(fp, 0, SEEK_END);
fwrite(&add, sizeof(add), 1, fp);
fclose(fp);
printf("Book ADDED successfully\n\n");
return 0;
}
void viewBooks()
{
int count = 0;
system("clear");
printf("\n\n ***************** View Books*****************\n\n");
printf("Id\tName\tTuthor\tQuantity\tRack No\n\n\n");
fp = fopen("books.txt", "rb");
while (fread(&add, sizeof(add), 1, fp) == 1)
{
printf("%d", add.ID);
printf("\t%s", add.Name);
printf("\t%s", add.Author);
printf("\t%d", add.Quantity);
printf("\t%d\n", add.RackNo);
count = count + add.Quantity;
}
fclose(fp);
printf("\n\nTotal books in the library : %d\n", count);
printf("\npress any key .......\n");
getchar();
}
int searchBook()
{
int count;
system("clear");
printf("***********Search books**********\n\n");
fp = fopen("books.txt", "rb");
printf("Enter ID: \n");
scanf("%d", &count);
getchar();
while (fread(&add, sizeof(add), 1, fp) == 1)
{
if (count == add.ID)
{
printf("\nBook is found.....\n");
printf("Id: %d\n", add.ID);
printf("Name: %s\n", add.Name);
printf("Author: %s\n", add.Author);
printf("Quantity: %d\n", add.Quantity);
printf("Rack no: %d\n\n", add.RackNo);
printf("\nPress any key... \n ");
getchar();
return 0;
}
}
printf("ID not found\n");
printf("\nPress any key... \n ");
getchar();
return 0;
}
int editBook()
{
int d;
int count = 0;
system("clear");
printf("******************* Edit book ************** \n\n");
fp = fopen("books.txt", "rb+");
printf("Enter ID : \n");
scanf("%d", &d);
getchar();
while (fread(&add, sizeof(add), 1, fp) == 1)
{
if (d == add.ID)
{
printf("Id is available\n\n");
printf("ID: %d\n", add.ID);
printf("Enter new name: ");
scanf("%s", add.Name);
printf("Enter new author: ");
scanf("%s", add.Author);
printf("Enter new quantity: ");
scanf("%d", &add.Quantity);
getchar();
printf("Enter new rack no : ");
scanf("%d", &add.RackNo);
getchar();
fseek(fp, ftell(fp) - sizeof(add), 0);
fwrite(&add, sizeof(add), 1, fp);
fclose(fp);
printf("\n\nPress any key ........ \n");
getchar();
return 0;
}
}
printf("id not match \n");
printf("\n\nPress any key ........ \n");
getchar();
return 0;
}
void deleteBook()
{
int d, count = 0;
system("clear");
printf("************* delete books ************** \n\n");
printf("Enter Id for delete : ");
scanf("%d", &d);
getchar();
fp = fopen("books.txt", "rb+");
rewind(fp);
while (fread(&add, sizeof(add), 1, fp) == 1)
{
if (d == add.ID)
{
printf("Book is available\n\n");
printf(" Book name : %s\n", add.Name);
printf("Rack no : %d\n", add.RackNo);
count = 1;
}
}
if (count == 0)
{
printf("Book not found \n");
}
else
{
file2 = fopen("text.txt", "wb+");
rewind(fp);
while (fread(&add, sizeof(add), 1, fp) == 1)
{
if (d != add.ID)
{
fseek(file2, ftell(file2) - sizeof(add), 0);
fwrite(&add, sizeof(add), 1, file2);
}
}
fclose(fp);
fclose(file2);
remove("books.txt");
rename("text.txt", "books.txt");
fp = fopen("books.txt", "rb");
fclose(fp);
}
printf("press any key /..... \n");
fflush(stdin);
getchar();
}
void help()
{
system("clear");
printf("\n\n");
printf("this is a simple library projects\n");
printf("the password is <fahim>\n");
printf("you can add books, edit books and delete books \n\n");
printf("thank you very much for visiting \n\n");
}
void exitProg()
{
system("clear");
printf("Thank you !!\n\n");
printf("wait.......\n");
sleep(2);
exit(0);
}