-
Notifications
You must be signed in to change notification settings - Fork 0
/
implementation_file.c
618 lines (556 loc) · 12.3 KB
/
implementation_file.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
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
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "models.h"
#include "function_declarations.h"
void appendPatient(patient data){
FILE* fp = fopen("patients.bin","ab");
if(fp == NULL){
puts("Error in file creation");
}else{
fwrite(&data,sizeof(patient),1,fp);
fclose(fp);
}
}
int getLastPatientId(){
FILE* fp = fopen("patients.bin","rb");
if(fp == NULL){
return 0;
}else{
int lastId = 0;
patient temp;
while(fread(&temp, sizeof(patient),1,fp) !=0){
lastId=temp.id;
}
fclose(fp);
return lastId;
}
}
patient getPatientbyName(char* name){
FILE* fp = fopen("patients.bin","rb");
if(fp == NULL){
puts("File doesn't exist");
}else{
patient temp;
while(fread(&temp, sizeof(patient),1,fp) !=0){
if(strcmp(temp.name, name) == 0){
fclose(fp);
return temp;
}
}
fclose(fp);
}
}
patient getPatientbyId(int id){
FILE* fp = fopen("patients.bin","rb");
if(fp == NULL){
puts("File doesn't exist");
}else{
patient temp;
while(fread(&temp, sizeof(patient),1,fp) !=0){
if(temp.id == id){
fclose(fp);
return temp;
}
}
fclose(fp);
}
}
void showAllPatients(){
FILE* fp = fopen("patients.bin","rb");
if(fp == NULL){
puts("File doesn't exist");
}else{
patient temp;
printf("\n");
while(fread(&temp, sizeof(patient), 1, fp) != 0){
doctor docofPatient = getDoctorbyId(temp.doctor);
printf("ID: %d - Name: %s - Age: %d - Gender: %s - Diagnosis: %s - Doctor: %s - Room: %d\n",temp.id, temp.name,temp.age,temp.gender,temp.diagnosis,docofPatient.name,temp.room);
}
fclose(fp);
}
}
void showPatientsbyRoom(int roomno){
FILE* fp = fopen("patients.bin","rb");
if(fp == NULL){
puts("File doesn't exist");
}else{
patient temp;
int counter=0;
printf("Patients in room %d:\n",roomno);
while(fread(&temp, sizeof(patient), 1, fp) != 0){
if(temp.room == roomno){
counter++;
doctor doc = getDoctorbyId(temp.doctor);
printf("ID: %d - Name: %s - Age: %d - Gender: %s - Diagnosis: %s - Doctor: %s - Room: %d\n",temp.id,temp.name,temp.age,temp.gender,temp.diagnosis,doc.name,temp.room);
}
}
if(counter == 0){
printf("There is currently no patient in room %d\n",roomno);
}
fclose(fp);
}
}
void showPatientsbyDoctor(int doctorid){
FILE* fp = fopen("patients.bin","rb");
if(fp == NULL){
puts("File doesn't exist");
}else{
FILE* fpdoctors = fopen("doctors.bin","rb");
if(fpdoctors == NULL){
puts("File doesn't exist");
}
else{
doctor tempdoctor;
int doctorcounter = 0;
while(fread(&tempdoctor,sizeof(doctor), 1, fpdoctors) != 0){
if(tempdoctor.id == doctorid){
doctorcounter++;
break;
}
}
if(doctorcounter == 0){
printf("There is no doctor with ID:%d",doctorid);
}else{
patient temp;
int counter=0;
printf("Patients under control of doctor %s:\n",tempdoctor.name);
while(fread(&temp, sizeof(patient), 1, fp) != 0){
if(temp.doctor == doctorid){
counter++;
printf("ID: %d - Name: %s - Age: %d - Gender: %s - Diagnosis: %s - Room: %d\n",temp.id,temp.name,temp.age,temp.gender,temp.diagnosis,temp.room);
}
}
if(counter == 0){
printf("There is currently no patient under control of doctor %s\n",tempdoctor.name);
}
}
fclose(fpdoctors);
}
fclose(fp);
}
}
void modifyPatient(patient data){
FILE* fp = fopen("patients.bin","rb+");
int counter = 0;
if(fp == NULL){
puts("File doesn't exist");
}else{
patient temp;
while(fread(&temp, sizeof(patient),1,fp) !=0){
counter++;
if(temp.id == data.id){
fseek(fp,((counter-1)*sizeof(patient)),0);
fwrite(&data,sizeof(patient),1,fp);
break;
}
}
fclose(fp);
}
}
void deletePatient(int id){
FILE* fp = fopen("patients.bin","rb");
FILE* ftemp = fopen("temppatients.bin","wb");
if(fp == NULL){
puts("File doesn't exist");
}else{
patient temp;
while(fread(&temp, sizeof(patient),1,fp) !=0){
if(temp.id != id){
fwrite(&temp,sizeof(patient),1,ftemp);
}
}
fclose(fp);
fclose(ftemp);
remove("patients.bin");
rename("temppatients.bin","patients.bin");
}
}
void appendDoctor(doctor data){
FILE* fp = fopen("doctors.bin","ab");
if(fp == NULL){
puts("Error in file creation");
}else{
fwrite(&data,sizeof(doctor),1,fp);
fclose(fp);
}
}
int getLastDoctorId(){
FILE* fp = fopen("doctors.bin","rb");
if(fp == NULL){
return 0;
}else{
int lastId = 0;
doctor temp;
while(fread(&temp, sizeof(doctor),1,fp) !=0){
lastId=temp.id;
}
fclose(fp);
return lastId;
}
}
doctor getDoctorbyName(char* name){
FILE* fp = fopen("doctors.bin","rb");
if(fp == NULL){
puts("File doesn't exist");
}else{
doctor temp;
while(fread(&temp, sizeof(doctor),1,fp) !=0){
if(strcmp(temp.name, name) == 0){
fclose(fp);
return temp;
}
}
fclose(fp);
}
}
doctor getDoctorbyId(int id){
FILE* fp = fopen("doctors.bin","rb");
if(fp == NULL){
puts("File doesn't exist");
}else{
doctor temp;
while(fread(&temp, sizeof(doctor),1,fp) !=0){
if(temp.id == id){
fclose(fp);
return temp;
}
}
fclose(fp);
}
}
void showAllDoctors(){
FILE* fp = fopen("doctors.bin","rb");
if(fp == NULL){
puts("File doesn't exist");
}else{
doctor temp;
printf("\n");
while(fread(&temp, sizeof(doctor), 1, fp) != 0){
department departDoctor = getDepartmentbyId(temp.department);
printf("ID: %d - Name: %s - Gender: %s - Age: %d - Department: %s\n",temp.id, temp.name,temp.gender,temp.age,departDoctor.title);
}
fclose(fp);
}
}
void showDoctorsbyDepartment(int departmentid){
FILE* fp = fopen("doctors.bin","rb");
if(fp == NULL){
puts("File doesn't exist");
}else{
FILE* fpdepartments = fopen("departments.bin","rb");
if(fpdepartments == NULL){
puts("File doesn't exist");
}
else{
department tempdepartment;
int departmentcounter = 0;
while(fread(&tempdepartment,sizeof(department), 1, fpdepartments) != 0){
if(tempdepartment.id == departmentid){
departmentcounter++;
break;
}
}
if(departmentcounter == 0){
printf("There is no department with ID:%d",departmentid);
}else{
doctor temp;
int counter=0;
printf("Doctors working in %s department:\n",tempdepartment.title);
while(fread(&temp, sizeof(doctor), 1, fp) != 0){
if(temp.department == departmentid){
counter++;
printf("ID: %d - Name: %s - Gender: %s - Age: %d\n",temp.id,temp.name,temp.gender,temp.age);
}
}
if(counter == 0){
printf("There is currently no doctor working in %s department\n",tempdepartment.title);
}
}
fclose(fpdepartments);
}
fclose(fp);
}
}
void modifyDoctor(doctor data){
FILE* fp = fopen("doctors.bin","rb+");
int counter = 0;
if(fp == NULL){
puts("File doesn't exist");
}else{
doctor temp;
while(fread(&temp, sizeof(doctor),1,fp) !=0){
counter++;
if(temp.id == data.id){
fseek(fp,((counter-1)*sizeof(doctor)),0);
fwrite(&data,sizeof(doctor),1,fp);
break;
}
}
fclose(fp);
}
}
void deleteDoctor(int id){
FILE* fp = fopen("doctors.bin","rb");
FILE* ftemp = fopen("tempdoctors.bin","wb");
if(fp == NULL){
puts("File doesn't exist");
}else{
doctor temp;
while(fread(&temp, sizeof(doctor),1,fp) !=0){
if(temp.id != id){
fwrite(&temp,sizeof(doctor),1,ftemp);
}
}
fclose(fp);
fclose(ftemp);
remove("doctors.bin");
rename("tempdoctors.bin","doctors.bin");
}
}
void appendRoom(room data){
FILE* fp = fopen("rooms.bin","ab");
if(fp == NULL){
puts("Error in file creation");
}else{
fwrite(&data,sizeof(room),1,fp);
fclose(fp);
}
}
int isRoomUnique(int no){
FILE* fp = fopen("rooms.bin","rb");
if(fp == NULL){
return 1;
}else{
room temp;
while(fread(&temp, sizeof(room),1,fp) !=0){
if(temp.no == no){
fclose(fp);
return 0;
}
}
fclose(fp);
return 1;
}
}
room getRoombyNo(int no){
FILE* fp = fopen("rooms.bin","rb");
if(fp == NULL){
puts("File doesn't exist");
}else{
room temp;
while(fread(&temp, sizeof(room),1,fp) !=0){
if(temp.no == no){
fclose(fp);
return temp;
}
}
fclose(fp);
}
}
void showAllRooms(){
FILE* fp = fopen("rooms.bin","rb");
if(fp == NULL){
puts("File doesn't exist");
}else{
room temp;
printf("\n");
while(fread(&temp, sizeof(room), 1, fp) != 0){
char isAvailable[4];
if(isRoomAvailable(temp.no) == 1){
strcpy(isAvailable,"Yes");
}else{
strcpy(isAvailable,"No");
}
printf("Room %d - Capacity %d - Is room available: %s\n",temp.no, temp.capacity,isAvailable);
}
fclose(fp);
}
}
void showAvailableRooms(){
FILE* fp = fopen("rooms.bin","rb");
if(fp == NULL){
puts("File doesn't exist");
}else{
room temp;
printf("\n");
while(fread(&temp, sizeof(room), 1, fp) != 0){
if(isRoomAvailable(temp.no)){
printf("Room %d\n",temp.no);
}
}
fclose(fp);
}
}
int isRoomAvailable(int no){
FILE* fp = fopen("rooms.bin","rb");
if(fp == NULL){
puts("File doesn't exist");
return 0;
}else{
room temp;
while(fread(&temp, sizeof(room), 1, fp) != 0){
if(temp.no == no){
FILE* fppatients = fopen("patients.bin","rb");
if(fppatients == NULL){
return 1;
}else{
patient temppatient;
int roomCapCounter=0;
while(fread(&temppatient, sizeof(patient), 1, fppatients) != 0){
if(temppatient.room == no){
roomCapCounter++;
}
}
fclose(fppatients);
fclose(fp);
if(roomCapCounter >= temp.capacity){
return 0;
}else{
return 1;
}
}
}
}
fclose(fp);
return 0;
}
}
void modifyRoom(room data){
FILE* fp = fopen("rooms.bin","rb+");
int counter = 0;
if(fp == NULL){
puts("File doesn't exist");
}else{
room temp;
while(fread(&temp, sizeof(room),1,fp) !=0){
counter++;
if(temp.no == data.no){
fseek(fp,((counter-1)*sizeof(room)),0);
fwrite(&data,sizeof(room),1,fp);
break;
}
}
fclose(fp);
}
}
void deleteRoom(int no){
FILE* fp = fopen("rooms.bin","rb");
FILE* ftemp = fopen("temprooms.bin","wb");
if(fp == NULL){
puts("File doesn't exist");
}else{
room temp;
while(fread(&temp, sizeof(room),1,fp) !=0){
if(temp.no != no){
fwrite(&temp,sizeof(room),1,ftemp);
}
}
fclose(fp);
fclose(ftemp);
remove("rooms.bin");
rename("temprooms.bin","rooms.bin");
}
}
void appendDepartment(department data){
FILE* fp = fopen("departments.bin","ab");
if(fp == NULL){
puts("Error in file creation");
}else{
fwrite(&data,sizeof(department),1,fp);
fclose(fp);
}
}
int getLastDepartmentId(){
FILE* fp = fopen("departments.bin","rb");
if(fp == NULL){
return 0;
}else{
int lastId = 0;
department temp;
while(fread(&temp, sizeof(department),1,fp) !=0){
lastId=temp.id;
}
fclose(fp);
return lastId;
}
}
department getDepartmentbyTitle(char* title){
FILE* fp = fopen("departments.bin","rb");
if(fp == NULL){
puts("File doesn't exist");
}else{
department temp;
while(fread(&temp, sizeof(department),1,fp) !=0){
if(strcmp(temp.title, title) == 0){
fclose(fp);
return temp;
}
}
fclose(fp);
}
}
department getDepartmentbyId(int id){
FILE* fp = fopen("departments.bin","rb");
if(fp == NULL){
puts("File doesn't exist");
}else{
department temp;
while(fread(&temp, sizeof(department),1,fp) !=0){
if(temp.id == id){
fclose(fp);
return temp;
}
}
fclose(fp);
}
}
void showAllDepartments(){
FILE* fp = fopen("departments.bin","rb");
if(fp == NULL){
puts("File doesn't exist");
}else{
department temp;
printf("\n");
while(fread(&temp, sizeof(department),1,fp) !=0){
printf("ID:%d - %s department\n",temp.id,temp.title);
}
fclose(fp);
}
}
void modifyDepartment(department data){
FILE* fp = fopen("departments.bin","rb+");
int counter = 0;
if(fp == NULL){
puts("File doesn't exist");
}else{
department temp;
while(fread(&temp, sizeof(department),1,fp) !=0){
counter++;
if(temp.id == data.id){
fseek(fp,((counter-1)*sizeof(department)),0);
fwrite(&data,sizeof(department),1,fp);
break;
}
}
fclose(fp);
}
}
void deleteDepartment(int id){
FILE* fp = fopen("departments.bin","rb");
FILE* ftemp = fopen("tempdepartments.bin","wb");
if(fp == NULL){
puts("File doesn't exist");
}else{
department temp;
while(fread(&temp, sizeof(department),1,fp) !=0){
if(temp.id != id){
fwrite(&temp,sizeof(department),1,ftemp);
}
}
fclose(fp);
fclose(ftemp);
remove("departments.bin");
rename("tempdepartments.bin","departments.bin");
}
}