-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathPhoneBook.c
442 lines (400 loc) · 12.3 KB
/
PhoneBook.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
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
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
struct contact
{
char fname[15];
char lname[15];
char mobile_no[15];
char tag[15];
};
typedef struct contact contact;
// A utility function to add contact into the directory
void add_contact()
{
system("cls");
FILE *fptr;
contact cn;
fptr = fopen("PhoneBook","a");
printf("\n<Fill details>\n");
printf("Enter First Name : ");
scanf("%s", &cn.fname);
printf("Enter last Name : ");
scanf("%s", &cn.lname);
printf("\nEnter Mobile Number : ");
scanf("%s", &cn.mobile_no);
printf("\nEnter Tag(Enter 'Other' for nothing) : ");
scanf("%s", &cn.tag);
fwrite(&cn, sizeof(contact), 1, fptr);
fclose(fptr);
printf("Enter any key to continue.");
getch();
system("cls");
}
// A utility function to print the no.of contacts in the directory
int directory_info(){
FILE *fptr;
fptr = fopen("PhoneBook", "r");
fseek(fptr, 0, SEEK_END);
return ftell(fptr)/sizeof(contact);
}
// A utility function to know how many contacts are saved within a specified tag in the directory
int tag_info(char tag[])
{
int num = 0;
FILE *fptr;
contact cn;
fptr = fopen("PhoneBook", "r");
while(fread(&cn, sizeof(contact), 1, fptr))
{
if(strcmp(strlwr(cn.tag), strlwr(tag)) == 0)
num++;
}
return num;
}
//A utility function to display the contacts
void display()
{
system("cls");
FILE *fptr;
contact cn;
int mode, count = 1, i, n;
fptr = fopen("PhoneBook", "r");
printf("1 : View by Time Created (Ascending)\n");
printf("2 : View by Time Created (Descending)\n");
printf("Choose Display Mode : ");
scanf("%d", &mode);
n = directory_info();
printf("---------------------------------------------------------------------\n");
printf("|Total Number of contacts : %2d |\n", n);
printf("---------------------------------------------------------------------");
printf("\n|%-3s| %-15s%-15s%-20s%-12s|\n", "Sno", "First Name", "Last Name", "Contact Number", "Tag");
printf("---------------------------------------------------------------------");
if(mode == 1)
{
while(fread(&cn, sizeof(contact), 1, fptr))
{
printf("\n|%-3d| %-15s%-15s%-20s%-12s|", count++, cn.fname, cn.lname, cn.mobile_no, cn.tag);
}
}
else if (mode == 2)
{
fseek(fptr,-(sizeof(cn)), SEEK_END);
for(i = 1; i <= n; ++i)
{
fread(&cn, sizeof(contact), 1, fptr);
printf("\n|%-3d| %-15s%-15s%-20s%-12s|", count++, cn.fname, cn.lname, cn.mobile_no, cn.tag);
fseek(fptr, -2*sizeof(contact), SEEK_CUR);
}
}
else
printf("\n|Invalid Selection !!! |");
printf("\n---------------------------------------------------------------------\n");
fclose(fptr);
printf("\n\nEnter any key to continue : ");
getch();
system("cls");
}
//This is a utility function which displays all the contacts which are saved within a specified tag
void display_by_tag()
{
system("cls");
char tag[20];
FILE *fptr;
contact cn;
int count=1, n;
fptr = fopen("PhoneBook", "r");
fflush(stdin);
printf("Enter Tag : ");
scanf("%s", tag);
n = tag_info(tag);
printf("---------------------------------------------------------------------\n");
printf("|Total Number of contacts : %2d |\n", n);
printf("---------------------------------------------------------------------");
printf("\n|%-3s| %-15s%-15s%-20s%-12s|\n", "Sno", "First Name", "Last Name", "Contact Number", "Tag");
printf("---------------------------------------------------------------------");
while(fread(&cn, sizeof(contact), 1, fptr))
{
if(strcmp(strlwr(cn.tag), strlwr(tag)) == 0)
printf("\n|%-3d| %-15s%-15s%-20s%-12s|", count++, cn.fname, cn.lname, cn.mobile_no, cn.tag);
}
printf("\n---------------------------------------------------------------------\n");
fclose(fptr);
fflush(stdin);
printf("\n\nEnter any key to continue : ");
getch();
system("cls");
}
// A utility function to modify a cotact
void modify_contact()
{
system("cls");
FILE *fptr, *fptr1;
contact cn;
char fname[15];
char lname[15];
char modify;
int found = 0;
fptr = fopen("PhoneBook", "r");
fptr1 = fopen("helper", "w");
printf("Enter the name of Contact to modify:\n");
printf("Enter First name: ");
scanf("%s",&fname);
printf("Enter Last name: ");
scanf("%s",&lname);
fflush(stdin);
while(fread(&cn,sizeof(contact),1,fptr))
{
if(strcmp(strlwr(cn.fname),strlwr(fname))==0&&strcmp(strlwr(cn.lname),strlwr(lname))==0)
{
found = 1;
printf("\nModify First Name?<y/n> : ");
scanf("%c", &modify);
fflush(stdin);
if(modify == 'y' || modify == 'Y')
{
printf("Enter New First name : ");
scanf("%s", &cn.fname);
fflush(stdin);
}
printf("\nModify Last Name?<y/n> : ");
scanf("%c", &modify);
fflush(stdin);
if(modify == 'y' || modify == 'Y')
{
printf("Enter New Last name : ");
scanf("%s", &cn.lname);
fflush(stdin);
}
printf("\nModify Mobile Number? <y/n> : ");
scanf("%c", &modify);
fflush(stdin);
if(modify == 'y' || modify == 'Y')
{
printf("Enter New Mobile Number : ");
scanf("%s", &cn.mobile_no);
fflush(stdin);
}
printf("\nModify Tag? <y/n> : ");
scanf("%c", &modify);
fflush(stdin);
if(modify == 'y' || modify == 'Y')
{
printf("Enter New Tag : ");
scanf("%s", &cn.tag);
fflush(stdin);
}
}
fwrite(&cn, sizeof(contact), 1, fptr1);
}
fclose(fptr);
fclose(fptr1);
if(found == 1)
{
fptr1 = fopen("helper", "r");
fptr = fopen("PhoneBook", "w");
while(fread(&cn, sizeof(contact), 1, fptr1))
fwrite(&cn, sizeof(contact), 1, fptr);
printf("\nContact Modified Successfully\n");
}
else
printf("Contact not found");
fclose(fptr);
fclose(fptr1);
printf("\n\nEnter any key to continue : ");
getch();
system("cls");
}
//A utility function to search for the info of a specified contact
void search_contact(){
system("cls");
FILE *fp;
contact cn;
int c,flag=0;
fp=fopen("PhoneBook","r");
if(fp==NULL){
printf("\nError in opening\n");
exit(1);
}
printf("\n------------------------------------\n");
printf("***SEARCH MENU***\n");
printf("----------------------------------------\n");
printf("1. Search by name\n2. Search by Phone number\n");
printf("Enter your choice : ");
scanf("%d",&c);
fflush(stdin);
if(c==1){
char fname[30],lname[30];
printf("Enter the name to be searched for:\n");
printf("Enter first name : ");
scanf("%s",&fname);
printf("Enter last name : ");
scanf("%s",&lname);
fflush(stdin);
while(fread(&cn,sizeof(cn),1,fp)==1){
if(strcmp(strlwr(cn.fname),strlwr(fname))==0&&strcmp(strlwr(cn.lname),strlwr(lname))==0){
flag=1;
printf("\nDetail information about %s\n",fname);
printf("---------------------------------------------------------------------\n");
printf("\n|%-15s%-15s%-20s%-12s|\n", "First Name", "Last Name", "Contact Number", "Tag");
printf("---------------------------------------------------------------------");
printf("\n|%-15s%-15s%-20s%-12s|\n", cn.fname, cn.lname, cn.mobile_no, cn.tag);
break;
}
}
if(flag==0){
printf("\nSearch not found\n");
fclose(fp);}
}
else if(c==2){
char phone[10];
printf("Enter phone number to search: ");
scanf("%s",&phone);
while(fread(&cn,sizeof(cn),1,fp)==1){
if(strcmp(phone,cn.mobile_no)==0){
flag=1;
printf("\n\nDetail information about %s",phone);
printf("---------------------------------------------------------------------\n");
printf("\n|%-15s%-15s%-20s%-12s|\n", "First Name", "Last Name", "Contact Number", "Tag");
printf("---------------------------------------------------------------------");
printf("\n|%-15s%-15s%-20s%-12s|\n", cn.fname, cn.lname, cn.mobile_no, cn.tag);
break;
}
}
if(flag==0) {
printf("\nSearch not found\n");
fclose(fp);
}
}
else{
printf("Wrong Choice!!");
fclose(fp);
}
printf("Enter any key to continue:");
getch();
system("cls");
}
//A utility function to delete a contact from the directory
void delete_contact(){
contact cn;
FILE *fptr,*fptr1;
int flag;
system("cls");
fptr=fopen("PhoneBook","r");
if(fptr==NULL){
printf("CONTACT'S DATA NOT ADDED YET");
}
else{
fptr1=fopen("helper","w+");
if(fptr1==NULL)printf("Error in opening the file");
else{
int choice;
printf("\n----------------------------------------");
printf("\n***DELETION MENU***\n");
printf("----------------------------------------\n");
printf("1.Deletion through mobile number\n2.Deletion through name\n");
printf("Enter your choice: ");
scanf("%d",&choice);
if(choice==1){
char mobile_no[25];
printf("Enter CONTACT's mobile_no:");
scanf("%s",&mobile_no);
fflush(stdin);
while(fread(&cn,sizeof(cn),1,fptr)==1){
if(strcmp(mobile_no,cn.mobile_no)!=0){
fwrite(&cn,sizeof(cn),1,fptr1);
}
if(strcmp(mobile_no,cn.mobile_no)==0){
flag=1;
}
}
}
else if(choice==2){
char fname[25],lname[25];
printf("Enter CONTACT's fname: ");
scanf("%s",&fname);
printf("Enter CONTACT's lname: ");
scanf("%s",&lname);
fflush(stdin);
while(fread(&cn,sizeof(cn),1,fptr)==1){
if(strcmp(strlwr(cn.fname),strlwr(fname))!=0||strcmp(strlwr(cn.lname),strlwr(lname))!=0){
fwrite(&cn,sizeof(cn),1,fptr1);
}
if(strcmp(strlwr(cn.fname),strlwr(fname))==0&&strcmp(strlwr(cn.lname),strlwr(lname))==0){
flag=1;
}
}
}else{
printf("\nWrong choice!\nEnter any key to continue");
getch();
system("cls");
}
fclose(fptr);
fclose(fptr1);
if(flag!=1){
printf("NO CONTACT'S RECORD TO DELETE!\n");
}
else{
fptr1 = fopen("helper", "r");
fptr = fopen("PhoneBook", "w");
while(fread(&cn, sizeof(contact), 1, fptr1))
fwrite(&cn, sizeof(contact), 1, fptr);
printf("\nContact Deleted Successfully\n");
}
fclose(fptr1);
fclose(fptr);
}
}
printf("Enter any key:");
getch();
system("cls");
}
//Driver code
int main()
{
int operation = 1;
while(operation)
{
printf("\n1 : Create Contact\n");
printf("2 : Display Directory\n");
printf("3 : Display by tags\n");
printf("4 : Modify Contact\n");
printf("5 : Search Contact\n");
printf("6 : Delete Contact\n");
printf("7 : Exit Program\n");
printf("\nChoose Operation : ");
scanf("%d", &operation);
switch(operation)
{
case 1 :
add_contact();
break;
case 2 :
display();
break;
case 3 :
display_by_tag();
break;
case 4 :
modify_contact();
break;
case 5:
search_contact();
break;
case 6:
delete_contact();
break;
case 7:
exit(1);
break;
default:
system("cls");
printf("\nInvalid Operation !!");
printf("\nEnter 1 to 7 only");
printf("\n Enter any key to continue");
getch();
system("cls");
}
}
return 0;
}