-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHospitalManagementSystem.java
395 lines (330 loc) · 10.7 KB
/
HospitalManagementSystem.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
// Package and import statements
package com.hospitalmanagement;
import java.util.*;
import java.io.*;
import java.time.LocalDate;
import java.time.format.DateTimeParseException;
// Model Layer
class Doctor {
private int id;
private String name;
private String specialization;
private String contactNumber;
private int yearsOfExperience;
private boolean isAvailable;
public Doctor(int id, String name, String specialization, String contactNumber, int yearsOfExperience, boolean isAvailable) {
this.id = id;
this.name = name;
this.specialization = specialization;
this.contactNumber = contactNumber;
this.yearsOfExperience = yearsOfExperience;
this.isAvailable = isAvailable;
}
public int getId() {
return id;
}
public String getName() {
return name;
}
public String getSpecialization() {
return specialization;
}
public String getContactNumber() {
return contactNumber;
}
public int getYearsOfExperience() {
return yearsOfExperience;
}
public boolean isAvailable() {
return isAvailable;
}
public void setAvailable(boolean available) {
isAvailable = available;
}
public void setContactNumber(String contactNumber) {
this.contactNumber = contactNumber;
}
@Override
public String toString() {
return "Doctor ID: " + id + ", Name: " + name + ", Specialization: " + specialization + ", Contact Number: " + contactNumber + ", Years of Experience: " + yearsOfExperience + ", Available: " + isAvailable;
}
}
class Patient {
private int id;
private String name;
private int age;
private String medicalHistory;
private String emergencyContact;
public Patient(int id, String name, int age, String medicalHistory, String emergencyContact) {
this.id = id;
this.name = name;
this.age = age;
this.medicalHistory = medicalHistory;
this.emergencyContact = emergencyContact;
}
public int getId() {
return id;
}
public String getName() {
return name;
}
public int getAge() {
return age;
}
public String getMedicalHistory() {
return medicalHistory;
}
public String getEmergencyContact() {
return emergencyContact;
}
public void setMedicalHistory(String medicalHistory) {
this.medicalHistory = medicalHistory;
}
public void setEmergencyContact(String emergencyContact) {
this.emergencyContact = emergencyContact;
}
@Override
public String toString() {
return "Patient ID: " + id + ", Name: " + name + ", Age: " + age + ", Medical History: " + medicalHistory + ", Emergency Contact: " + emergencyContact;
}
}
class Appointment {
private int id;
private int doctorId;
private int patientId;
private String date;
private String status;
private String consultationNotes;
public Appointment(int id, int doctorId, int patientId, String date, String status, String consultationNotes) {
this.id = id;
this.doctorId = doctorId;
this.patientId = patientId;
this.date = date;
this.status = status;
this.consultationNotes = consultationNotes;
}
public int getId() {
return id;
}
public int getDoctorId() {
return doctorId;
}
public int getPatientId() {
return patientId;
}
public String getDate() {
return date;
}
public String getStatus() {
return status;
}
public String getConsultationNotes() {
return consultationNotes;
}
public void setStatus(String status) {
this.status = status;
}
public void setConsultationNotes(String consultationNotes) {
this.consultationNotes = consultationNotes;
}
@Override
public String toString() {
return "Appointment ID: " + id + ", Doctor ID: " + doctorId + ", Patient ID: " + patientId + ", Date: " + date + ", Status: " + status + ", Notes: " + consultationNotes;
}
}
class Department {
private int id;
private String name;
private String departmentHead;
private String contactNumber;
private int numberOfStaff;
public Department(int id, String name, String departmentHead, String contactNumber, int numberOfStaff) {
this.id = id;
this.name = name;
this.departmentHead = departmentHead;
this.contactNumber = contactNumber;
this.numberOfStaff = numberOfStaff;
}
public String getDepartmentHead() {
return departmentHead;
}
public String getContactNumber() {
return contactNumber;
}
public int getNumberOfStaff() {
return numberOfStaff;
}
@Override
public String toString() {
return "Department ID: " + id + ", Name: " + name + ", Head: " + departmentHead + ", Contact: " + contactNumber + ", Staff Count: " + numberOfStaff;
}
}
// Service Layer
class HospitalService {
private List<Doctor> doctors = new ArrayList<>();
private List<Patient> patients = new ArrayList<>();
private List<Appointment> appointments = new ArrayList<>();
private List<Department> departments = new ArrayList<>();
public void addDoctor(Doctor doctor) {
doctors.add(doctor);
}
public void addPatient(Patient patient) {
patients.add(patient);
}
public void addAppointment(Appointment appointment) {
appointments.add(appointment);
}
public void addDepartment(Department department) {
departments.add(department);
}
public void updateDoctorAvailability(int doctorId, boolean isAvailable) {
for (Doctor doctor : doctors) {
if (doctor.getId() == doctorId) {
doctor.setAvailable(isAvailable);
return;
}
}
System.out.println("Doctor not found!");
}
public void updatePatientMedicalHistory(int patientId, String medicalHistory) {
for (Patient patient : patients) {
if (patient.getId() == patientId) {
patient.setMedicalHistory(medicalHistory);
return;
}
}
System.out.println("Patient not found!");
}
public List<Doctor> getDoctors() {
return doctors;
}
public List<Patient> getPatients() {
return patients;
}
public List<Appointment> getAppointments() {
return appointments;
}
public List<Department> getDepartments() {
return departments;
}
}
// Utility Layer
class InputValidator {
public static boolean isValidName(String name) {
return name != null && name.matches("[A-Za-z ]+");
}
public static boolean isValidAge(int age) {
return age > 0;
}
public static boolean isValidPhoneNumber(String phoneNumber) {
return phoneNumber.matches("\d{10}");
}
public static boolean isValidDate(String date) {
try {
LocalDate.parse(date); // Parse the date to validate it
return true;
} catch (DateTimeParseException e) {
return false;
}
}
public static boolean isValidAppointmentStatus(String status) {
return status.equalsIgnoreCase("Scheduled") || status.equalsIgnoreCase("Completed") || status.equalsIgnoreCase("Cancelled");
}
}
class FileManager {
public static void saveDoctors(String fileName, List<Doctor> doctors) throws IOException {
try (BufferedWriter writer = new BufferedWriter(new FileWriter(fileName))) {
for (Doctor doctor : doctors) {
writer.write(doctor.toString() + "\n");
}
}
}
public static List<Doctor> loadDoctors(String fileName) throws IOException {
List<Doctor> doctors = new ArrayList<>();
try (BufferedReader reader = new BufferedReader(new FileReader(fileName))) {
String line;
while ((line = reader.readLine()) != null) {
// Parsing logic to create Doctor object
}
}
return doctors;
}
}
// Exception Layer
class HospitalException extends Exception {
public HospitalException(String message) {
super(message);
}
}
class DoctorNotFoundException extends HospitalException {
public DoctorNotFoundException(String message) {
super(message);
}
}
class PatientNotFoundException extends HospitalException {
public PatientNotFoundException(String message) {
super(message);
}
}
// Helper Classes
class MenuHelper {
public static void displayMainMenu() {
System.out.println("--- Hospital Management System ---");
System.out.println("1. Add Doctor");
System.out.println("2. Add Patient");
System.out.println("3. Add Appointment");
System.out.println("4. Add Department");
System.out.println("5. Update Doctor Availability");
System.out.println("6. Update Patient Medical History");
System.out.println("7. View All Data");
System.out.println("8. Exit");
System.out.print("Enter your choice: ");
}
}
// Main Application
public class HospitalManagementSystem {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
HospitalService service = new HospitalService();
while (true) {
MenuHelper.displayMainMenu();
int choice = scanner.nextInt();
scanner.nextLine(); // Consume newline
try {
switch (choice) {
case 1:
// Add Doctor
break;
case 2:
// Add Patient
break;
case 3:
// Add Appointment
break;
case 4:
// Add Department
break;
case 5:
// Update Doctor Availability
break;
case 6:
// Update Patient Medical History
break;
case 7:
// View Data
break;
case 8:
System.out.println("Exiting... Goodbye!");
scanner.close();
return;
default:
System.out.println("Invalid choice! Please try again.");
}
} catch (DoctorNotFoundException | PatientNotFoundException e) {
System.out.println("Error: " + e.getMessage());
} catch (IOException e) {
System.out.println("File error: " + e.getMessage());
}
}
}
}