-
Notifications
You must be signed in to change notification settings - Fork 0
/
Hospital.java
794 lines (512 loc) · 15 KB
/
Hospital.java
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
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
package pe2;
import java.util.*;
/* PLEASE DO NOT MODIFY A SINGLE STATEMENT IN THE TEXT BELOW.
READ THE FOLLOWING CAREFULLY AND FILL IN THE GAPS
I hereby declare that all the work that was required to
solve the following problem including designing the algorithms
and writing the code below, is solely my own and that I received
no help in creating this solution and I have not discussed my solution
with anybody. I affirm that I have read and understood
the Senate Policy on Academic honesty at
https://secretariat-policies.info.yorku.ca/policies/academic-honesty-senate-policy-on/
and I am well aware of the seriousness of the matter and the penalties that I will face as a
result of committing plagiarism in this assignment.
BY FILLING THE GAPS,YOU ARE SIGNING THE ABOVE STATEMENTS.
Full Name: Kulpreet
*/
import java.util.function.BooleanSupplier;
/**
* Hospital class main function
*/
public class Hospital {
public final static int Num_Director = 1;
public final static int Num_Administrator = 3;
public final static int Num_PhysicianaAdmin = 25;
public final static int Num_Physicians = 70;
public final static int Num_Volunteers = 150;
public final static int Num_Patients = 500;
public final static int Num_VolunteerAssign = 5;
public final static int Num_PatientAssign = 8;
// private ArrayList<Employee> employees;
private ArrayList<Patient> patients = new ArrayList<Patient>();
private ArrayList<Volunteer> volunteers = new ArrayList<Volunteer>();
private ArrayList<Physician> physicians = new ArrayList<Physician>();
private Director director;
public Hospital(Director director) {
this.director = director;
}
public Director getHospDirector() {
return this.director;
}
public boolean admitPatient(Patient patient) throws NoSpaceException {
if (patients.size() == Hospital.Num_Patients) {
throw new NoSpaceException();
}
boolean check = false;
// check duplication
for (Patient p : patients) {
if (p.compareTo(patient) == 0) {
check = true;
}
}
if (!check) {
patients.add(patient);
} else {
return false;
}
for (Physician ph : physicians) {
if (ph.getPatients().size() < Hospital.Num_Physicians) {
ph.getPatients().add(patient);
patient.setPhysician(ph);
return true;
}
}
return false;
}
public boolean dischargePatient(Patient patient) {
for (Patient patient1 : patients) {
if (patient1.compareTo(patient) == 0) {
patients.remove(patient1);
return true;
}
}
return false;
}
public boolean hireVolunteer(Volunteer v) {
if (volunteers.size() < Hospital.Num_Volunteers) {
boolean check = false;
// duplicate check
for (Volunteer vv : volunteers) {
if (v.getName().equals(vv.getName())) {
check = true;
}
}
if (!check) {
volunteers.add(v);
for (Physician ph : physicians) {
if (ph.getVolunteers().size() < Hospital.Num_VolunteerAssign) {
ph.getVolunteers().add(v);
}
}
}
else {
return false;
}
}
return false;
}
public void resignVolunteer(Volunteer v) throws NoVolunteersException {
for (Volunteer v1 : volunteers) {
if (v1.getName().equals(v.getName())) {
volunteers.remove(v1);
return;
}
}
throw new NoVolunteersException();
}
public List<Patient> extractAllPatientDetails() {
List<Patient> list = new ArrayList<Patient>();
for (Patient p : patients) {
list.add(p);
}
Collections.sort(list, (a, b) -> a.compareTo(b));
return list;
}
public List<Physician> extractAllPhysicianDetails() {
List<Physician> list = new ArrayList<Physician>();
for (Physician p : physicians) {
list.add(p);
}
Collections.sort(list, (a, b) -> a.compareTo(b));
return list;
}
public List<Volunteer> extractAllVolunteerDetails() {
List<Volunteer> list = new ArrayList<Volunteer>();
for (Volunteer ph : volunteers) {
list.add(ph);
}
return list;
}
public void resignPhysician(Physician physician) throws NoSpecialtyException {
boolean isSpecial = false;
for (Physician ppp : physicians) {
if (physician.getSpecialty().equals(ppp.getSpecialty()) && !physician.getName().equals(ppp.getName())) {
isSpecial = true;
}
}
if (!isSpecial) {
throw new NoSpecialtyException("PhysicianAdministrator not assigned to patient");
}
List<Patient> patients = physician.getPatients();
for (int i = 0; i < physicians.size(); i++) {
if (physician.compareTo(physicians.get(i)) == 0) {
physicians.remove(i);
}
}
}
public boolean addAdministrator(PhysicianAdministrator admin) {
return director.assignAdministrator(admin);
}
public ArrayList<Patient> getPatients() {
return patients;
}
public void setPatients(ArrayList<Patient> patients) {
this.patients = patients;
}
public boolean hirePhysician(Physician physician1) {
if (physicians.size() == Hospital.Num_Physicians) {
return false;
}
for (Physician ph : physicians) {
if (ph.compareTo(physician1) == 0) {
return false;
}
}
for (PhysicianAdministrator pAdministrator : director.getPhysicianAdministrators()) {
if (physician1.getSpecialty().equals(pAdministrator.getAdminSpecialtyType())) {
if (pAdministrator.assignPhysician(physician1)) {
boolean check = false;
// check duplication
for (Physician ph : physicians) {
if (ph.compareTo(physician1) == 0) {
check = true;
}
}
if (!check) {
physicians.add(physician1);
} else {
return false;
}
}
return true;
}
}
return false;
}
}
/**
* Person class with common attributes name last name age address gender
* */
class Person {
protected String firstName;
protected String lastName;
protected String gender;
protected String address;
protected int age;
public Person() {
this.firstName=null;
this.lastName=null;
this.age=0;
this.gender=null;
this.address=null;
}
public Person(String firstName, String lastName, int age, String gender, String address) {
this.firstName = firstName;
this.lastName = lastName;
this.age = age;
this.gender = gender;
this.address = address;
}
public Person(Person other) {
this.firstName=other.firstName;
this.lastName=other.lastName;
this.age=other.age;
this.gender=other.gender;
this.address=other.address;
}
public String getFirstName() {
return firstName;
}
public void setFirstName(String firstName) {
this.firstName = firstName;
}
public String getLastName() {
return lastName;
}
public void setLastName(String lastName) {
this.lastName = lastName;
}
public String getGender() {
return gender;
}
public void setGender(String gender) {
this.gender = gender;
}
public String getAddress() {
return address;
}
public void setAddress(String address) {
this.address = address;
}
public int getAge() {
return age;
}
public void setAge(int age) {
this.age = age;
}
public String getName() {
return this.firstName + ", " + this.lastName;
}
}
/**
* Employee class extends person has emoloyee ID extra
* */
class Employee extends Person {
private static int employeeID = 99;
public Employee(String firstName, String lastName, int age, String gender, String address) {
super(firstName, lastName, age, gender, address);
this.employeeID++;
}
public int getEmployeeID() {
return employeeID;
}
public void setEmployeeID(int employeeId) {
this.employeeID = employeeId;
}
}
/**
* Patient class extends person only has patient ID different
* */
class Patient extends Person implements Comparable<Patient> {
private Physician physician;
private static int patientID=999;
public Patient(String firstName, String lastName, int age, String gender, String address) {
super(firstName, lastName, age, gender, address);
this.patientID++;
}
public Physician getPhysician() {
return physician;
}
public void setPhysician(Physician physician) {
this.physician = physician;
}
@Override
public int compareTo(Patient o) {
return this.getName().compareTo(o.getName());
}
public long getPatientID() {
return patientID;
}
public void setPatientID(int patientID) {
this.patientID = patientID;
}
public void setAssignedPhysician(Physician physician1) {
this.setPhysician(physician1);
}
public Physician getAssignedPhysician() {
return getPhysician();
}
public boolean clearPatientRecord() {
return true;
}
// override String
public String toString() {
return "Patient ["+this.getPatientID()+", ["+this.getName()+", "+this.getAge()+", "+this.getGender()+", "+this.getAddress()+"]]";
}
}
/**
* SalariedEmployee class extends Employee has only salary extra
* */
class SalariedEmployee extends Employee {
protected int salary;
public SalariedEmployee(String firstName, String lastName, int age, String gender, String address) {
super(firstName, lastName, age, gender, address);
this.salary = salary;
}
public long getSalary() {
return salary;
}
public void setSalary(int salary) {
this.salary = salary;
}
}
/**
* Volunteer class Extends Employee it doesnot have salary and get assigned to physician
* */
class Volunteer extends Employee {
private int salary=0;
private Physician physician;
public Volunteer(String firstName, String lastName, int age, String gender, String address) {
super(firstName, lastName, age, gender, address);
}
public int getSalary(int salary) {
return this.salary;
}
public Physician getPhysician() {
return physician;
}
public void setPhysician(Physician physician) {
this.physician = physician;
}
}
/**
* Physician class extends Saplaried Employee and has speciality
* */
class Physician extends SalariedEmployee implements Comparable<Physician> {
private ArrayList<Patient> patient = new ArrayList<Patient>();
private ArrayList<Volunteer> volunteer = new ArrayList<Volunteer>();
private String specialty;
public Physician(String firstName, String lastName, int age, String gender, String address) {
super(firstName, lastName, age, gender, address);
}
public ArrayList<Patient> getPatients() {
return patient;
}
public void setPatients(ArrayList<Patient> patients) {
this.patient = patients;
}
public String getSpecialty() {
return specialty;
}
public void setSpecialty(String specialty) {
this.specialty = specialty;
}
public ArrayList<Volunteer> getVolunteers() {
return volunteer;
}
public void setVolunteers(ArrayList<Volunteer> volunteers) {
this.volunteer = volunteers;
}
@Override
public int compareTo(Physician o) {
return this.getName().compareTo(o.getName());
}
public List<Patient> extractPatientDetail() {
List<Patient> list = new ArrayList<Patient>();
for (Patient patient : this.getPatients()) {
if(list.size()==8) {
list.clear();
list.add(patient);
}
else {
list.add(patient);
}
}
return list;
}
public List<Volunteer> extractValunterDetail() {
List<Volunteer> list = new ArrayList<Volunteer>();
for (Volunteer volunteer : this.getVolunteers()) {
list.add(volunteer);
}
return list;
}
public boolean assignVolunteer(Employee employee) {
if (volunteer.size() < Hospital.Num_VolunteerAssign) {
this.volunteer.add((Volunteer) (employee));
return true;
}
return false;
}
public boolean hasMaxVolunteers() {
return volunteer.size() == Hospital.Num_Volunteers;
}
public boolean hasMaximumpatient() {
return patient.size() == Hospital.Num_Patients;
}
public String toString() {
return "Physician [[["+this.getEmployeeID()+",["+this.getName()+", "+this.getAge()+", "+this.getGender()+", "+this.getAddress()+"]], " +this.getSalary()+".0]]";
}
}
/**
* Administrator class extends Salaried Employee
* */
class Administrator extends SalariedEmployee {
public Administrator(String firstName, String lastName, int age, String gender, String address) {
super(firstName, lastName, age, gender, address);
}
}
/**
* Director class extends Administrator
* */
class Director extends Administrator {
private ArrayList<PhysicianAdministrator> physicianAdministrators = new ArrayList<PhysicianAdministrator>();
public Director(String firstName, String lastName, int age, String gender, String address) {
super(firstName, lastName, age, gender, address);
}
public boolean assignAdministrator(PhysicianAdministrator physicianAdministrator) {
if (physicianAdministrators.size() == Hospital.Num_Administrator) {
return false;
}
for (PhysicianAdministrator pAdministrator : physicianAdministrators) {
if (physicianAdministrator.getAdminSpecialtyType().equals(pAdministrator.getAdminSpecialtyType())) {
return false;
}
}
physicianAdministrators.add(physicianAdministrator);
return true;
}
public ArrayList<PhysicianAdministrator> getPhysicianAdministrators() {
return physicianAdministrators;
}
public void setPhysicianAdministrators(ArrayList<PhysicianAdministrator> physicianAdministrators) {
this.physicianAdministrators = physicianAdministrators;
}
public List<String> extractPhysicianAdmins() {
List<String> list = new ArrayList<String>();
for (PhysicianAdministrator pAdministrator : physicianAdministrators) {
list.add(pAdministrator.getName());
}
return list;
}
}
/**
* PhysicianAdministrator class extends Administrator
*/
class PhysicianAdministrator extends Administrator {
private String adminSpecialtyType;
private List<Physician> physicians = new ArrayList<Physician>();
public PhysicianAdministrator(String firstName, String lastName, int age, String gender, String address) {
super(firstName, lastName, age, gender, address);
}
public List<Physician> getPhysicians() {
return physicians;
}
public void setPhysicians(List<Physician> physicians) {
this.physicians = physicians;
}
public String getAdminSpecialtyType() {
return adminSpecialtyType;
}
public void setAdminSpecialtyType(String adminSpecialtyType) {
this.adminSpecialtyType = adminSpecialtyType;
}
public boolean assignPhysician(Physician ph) {
if (physicians.size() == Hospital.Num_PhysicianaAdmin) {
return false;
}
physicians.add(ph);
return true;
}
public List<Physician> extractPhysician() {
List<Physician> list = new ArrayList<Physician>();
for (Physician ph : physicians) {
if (ph.getSpecialty().equals(this.getAdminSpecialtyType())) {
list.add(ph);
}
}
Collections.sort(list, (a, b) -> a.compareTo(b));
return list;
}
@Override
public String toString() {
return "PysicianAdministrator [[[" + this.getEmployeeID()+",["+this.getName()+", "+this.getAge()+", "+this.getGender()+", "+ this.getAddress()+"]], "+this.getSalary() + ".0], "+this.getAdminSpecialtyType()+"]";
}
}
/**
* Exception class
*/
class NoSpecialtyException extends Exception {
String message;
NoSpecialtyException(String str) {
message = str;
}
@Override
public String toString() {
return ("NoSpecialty Exception Occurred : " + message);
}
}
class NoSpaceException extends Exception {
}
class NoVolunteersException extends Exception {
}