-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathInformationProcessing.java
More file actions
executable file
·1102 lines (977 loc) · 32.2 KB
/
InformationProcessing.java
File metadata and controls
executable file
·1102 lines (977 loc) · 32.2 KB
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
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import java.sql.*;
import java.util.*;
/*
* This class communicates between user interface and databse to complete
* user required operation. The class is responsible to prompt the user
* for the input, issue a SQL statement to the databse and finally print the
* result to the console.
*
* Creator - Tsu-Hsin Yeh
* Modifer
* Date: Nov.11 2016
*/
public class InformationProcessing {
private Connection conn;
private Scanner input;
public InformationProcessing(Connection connection, Scanner input){
this.conn = connection;
this.input = input;
}
// Verified.
public void newStaff(){
boolean printSuccessMsg = true;
// prompt for the information needed
System.out.println("Creating new staff.");
System.out.println("Staff General Category");
System.out.println("1.Manager");
System.out.println("2.Front Desk");
System.out.println("3.Billing Staff");
System.out.println("4.Service Staff");
System.out.println("5.Catering Staff");
System.out.print(":");
int option = input.nextInt();
input.nextLine(); // discard new line character
System.out.print("Name: ");
String name = input.nextLine();
System.out.print("SSN: ");
String ssn = input.nextLine();
System.out.print("Age: ");
int age = input.nextInt();
input.nextLine(); // discard new line character
System.out.print("Gender: ");
String gender = input.nextLine().toLowerCase().charAt(0) + "";
System.out.print("Title: ");
String title = input.nextLine();
System.out.print("Department: ");
String department = input.nextLine();
System.out.print("Phone: ");
String phone = input.nextLine();
System.out.print("Address: ");
String address = input.nextLine();
System.out.print("Hotel name: ");
String hotel_name = input.next();
input.nextLine();
if(!(option >= 1 && option <= 5)){
System.out.println("Invalid staff catefory.");
return;
}
// retrieve the hotel id
int hotel_id = -1;
try{
PreparedStatement ps = null;
ps = conn.prepareStatement("SELECT * FROM hotel WHERE name = '" + hotel_name + "'");
ResultSet rs = ps.executeQuery();
if(rs.next()){
hotel_id = rs.getInt("id");
}
} catch(SQLException e){
e.printStackTrace();
}
// insert new staff record
if(hotel_id != -1){
// We do get the hotel id provided hotel name
try{
PreparedStatement ps = null;
ps = conn.prepareStatement("INSERT INTO staff(id, ssn, name, age, gender, title, department, phone, address, hotel_id) VALUES (staff_seq.nextval, ?, ?, ?, ?, ?, ?, ?, ?, ?)");
ps.setString(1, ssn);
ps.setString(2, name);
ps.setInt(3, age);
ps.setString(4, gender);
ps.setString(5, title);
ps.setString(6, department);
ps.setString(7, phone);
ps.setString(8, address);
ps.setInt(9, hotel_id);
ps.executeUpdate();
} catch(SQLException e){
e.printStackTrace();
printSuccessMsg = false;
}
} else {
System.out.println("Hotel with given name cannot be found.");
printSuccessMsg = false;
}
// retrieve newly created staff's ID
int staff_id = -1;
try{
PreparedStatement ps = null;
ps = conn.prepareStatement("SELECT * FROM staff WHERE name = '" + name + "'");
ResultSet rs = ps.executeQuery();
if(rs.next()){
staff_id = rs.getInt("id");
}
} catch(SQLException e){
e.printStackTrace();
}
if(staff_id == -1){
System.out.println("Cannot find newly inserted staff.");
}else{
// insert the id into corresponding subclass table
if(option == 1){
// manager
}else if(option == 2){
// front desk
try{
PreparedStatement ps = null;
ps = conn.prepareStatement("INSERT INTO frontdesk_staff(id) VALUES (?)");
ps.setInt(1, staff_id);
ps.executeUpdate();
} catch(SQLException e){
e.printStackTrace();
printSuccessMsg = false;
}
}else if(option == 3){
// billing staff
try{
PreparedStatement ps = null;
ps = conn.prepareStatement("INSERT INTO billing_staff(id) VALUES (?)");
ps.setInt(1, staff_id);
ps.executeUpdate();
} catch(SQLException e){
e.printStackTrace();
printSuccessMsg = false;
}
}else if(option == 4){
// service staff
try{
PreparedStatement ps = null;
ps = conn.prepareStatement("INSERT INTO service_staff(id) VALUES (?)");
ps.setInt(1, staff_id);
ps.executeUpdate();
} catch(SQLException e){
e.printStackTrace();
printSuccessMsg = false;
}
}else if(option == 5){
// catering staff
try{
PreparedStatement ps = null;
ps = conn.prepareStatement("INSERT INTO catering_staff(id) VALUES (?)");
ps.setInt(1, staff_id);
ps.executeUpdate();
} catch(SQLException e){
e.printStackTrace();
printSuccessMsg = false;
}
}
}
if(printSuccessMsg){
System.out.println();
System.out.println("Staff Create successful!");
System.out.println();
}
}
// Verified.
public void updateStaff(){
boolean printSuccessMsg = true;
// prompt for the information needed
System.out.println("Updating existing staff.");
System.out.print("Name for search: ");
String old_name = input.nextLine(); // if user just hit enter then, old_name is string with length of 0
System.out.print("new Name (if unchanged, type old name): ");
String new_name = input.nextLine();
System.out.print("new SSN: ");
String new_ssn = input.nextLine();
System.out.print("new Age: ");
String new_age = input.nextLine();
System.out.print("new Gender: ");
String new_gender = input.nextLine();
if(new_gender.length() != 0){
new_gender = new_gender.toLowerCase().charAt(0) + "";
}
System.out.print("new Title: ");
String new_title = input.nextLine();
System.out.print("new Department: ");
String new_department = input.nextLine();
System.out.print("new Phone: ");
String new_phone = input.nextLine();
System.out.print("new Address: ");
String new_address = input.nextLine();
System.out.print("new Hotel name: ");
String new_hotel_name = input.nextLine();
// if the hotel staff works in changed, then find hotel id according to hotel name
int hotel_id = -1;
if(new_hotel_name.length() != 0){
try{
PreparedStatement ps = null;
ps = conn.prepareStatement("SELECT * FROM hotel WHERE name = '" + new_hotel_name + "'");
ResultSet rs = ps.executeQuery();
if(rs.next()){
hotel_id = rs.getInt("id");
}
} catch(SQLException e){
e.printStackTrace();
}
}
// create the SQL statement dynamically according to user input
StringBuilder builder = new StringBuilder("UPDATE staff SET ");
if(new_hotel_name.length() != 0 && hotel_id == -1){
System.out.println("Hotel with given name cannot be found.");
} else {
if(new_name.length() != 0){
builder.append("name = '" + new_name + "' ");
}
if(new_ssn.length() != 0){
builder.append(", ssn = '" + new_ssn + "' ");
}
if(new_age.length() != 0){
builder.append(", age = " + new_age + " ");
}
if(new_gender.length() != 0){
builder.append(", gender = '" + new_gender + "' ");
}
if(new_title.length() != 0){
builder.append(", title = '" + new_title + "' ");
}
if(new_department.length() != 0){
builder.append(", department = '" + new_department + "' ");
}
if(new_phone.length() != 0){
builder.append(", phone = '" + new_phone + "' ");
}
if(new_address.length() != 0){
builder.append(", address = '" + new_address + "' ");
}
if(hotel_id!= -1){
builder.append(", hotel_id = " + hotel_id + " ");
}
}
builder.append("WHERE name = '" + old_name + "'");
// execute the SQL statement
try{
PreparedStatement ps = null;
ps = conn.prepareStatement(builder.toString());
ps.executeUpdate();
} catch(SQLException e){
e.printStackTrace();
printSuccessMsg = false;
}
if(printSuccessMsg){
System.out.println();
System.out.println("Staff Update successful!");
System.out.println();
}
}
// Verified.
public void deleteStaff(){
boolean printSuccessMsg = true;
//prompt for the information needed
System.out.println("Deleting existing staff.");
System.out.print("Name: ");
String name = input.nextLine();
// execute the SQL statement
try{
PreparedStatement ps = null;
ps = conn.prepareStatement("DELETE FROM staff WHERE name = ?");
ps.setString(1, name);
ResultSet rs = ps.executeQuery();
} catch(SQLException e){
e.printStackTrace();
printSuccessMsg = false;
}
if(printSuccessMsg){
System.out.println();
System.out.println("Staff Delete successful!");
System.out.println();
}
}
// Verified.
public void newRoom(){
boolean printSuccessMsg = true;
boolean anythingWrong = false;
try{
conn.setAutoCommit( false );
}catch (Exception e){
anythingWrong = true;
printSuccessMsg = false;
}
// prompt for the information needed
System.out.println("Creating new room.");
System.out.print("Room number: ");
int room_number = input.nextInt();
input.nextLine(); // discard new line character
System.out.print("Category: ");
String category = input.nextLine();
System.out.print("Occupancy: ");
int occupancy = input.nextInt();
input.nextLine(); // discard new line character
System.out.print("Nightly rate: ");
int nightly_rate = input.nextInt();
input.nextLine(); // discard new line character
System.out.print("Hotel name: ");
String hotel_name = input.nextLine();
// get hotel id according to hotel name
int hotel_id = -1;
if(hotel_name.length() != 0){
try{
PreparedStatement ps = null;
ps = conn.prepareStatement("SELECT * FROM hotel WHERE name = '" + hotel_name + "'");
ResultSet rs = ps.executeQuery();
if(rs.next()){
hotel_id = rs.getInt("id");
}
} catch(SQLException e){
e.printStackTrace();
anythingWrong = true;
printSuccessMsg = false;
}
}
// insert new room record
if(hotel_id != -1){
// We do get the hotel id provided hotel name
try{
PreparedStatement ps = null;
ps = conn.prepareStatement("INSERT INTO room_type(category, occupancy, nightly_rate) VALUES (?, ?, ?)");
ps.setString(1, category);
ps.setInt(2, occupancy);
ps.setInt(3, nightly_rate);
ps.executeUpdate();
} catch(SQLException e){
if(e.getErrorCode() != 1){
e.printStackTrace();
printSuccessMsg = false;
}
}
try{
PreparedStatement ps = null;
ps = conn.prepareStatement("INSERT INTO room(room_number, category, occupancy, availability, hotel_id) VALUES (?, ?, ?, 1, ?)");
ps.setInt(1, room_number);
ps.setString(2, category);
ps.setInt(3, occupancy);
ps.setInt(4, hotel_id);
ps.executeUpdate();
} catch(SQLException e){
System.out.println("(Room number, Hotel name) combination already exists. Primary key violation!");
anythingWrong = true;
printSuccessMsg = false;
}
} else {
System.out.println("Hotel with given name cannot be found.");
printSuccessMsg = false;
anythingWrong = true;
}
if(anythingWrong){
try{
conn.rollback();
System.out.println("Transaction is rolled back!");
System.out.println();
}catch(SQLException e){
}
}else{
try{
conn.commit();
System.out.println("Transaction is commited!");
System.out.println();
}catch(SQLException e){
}
}
try{
conn.setAutoCommit( true );
}catch (Exception e){
}
if(printSuccessMsg){
System.out.println();
System.out.println("Room Create successful!");
System.out.println();
}
}
// Verified.
public void updateRoom(){
boolean printSuccessMsg = true;
// prompt for the information needed
System.out.println("Updating existing room.");
System.out.print("Current room number: ");
int old_room_number = input.nextInt();
input.nextLine();
System.out.print("Current hotel name: ");
String old_hotel_name = input.nextLine();
System.out.print("new Nightly-rate: ");
int new_nightly_rate = input.nextInt();
input.nextLine();
// get hotel id according to hotel name
int hotel_id = -1;
if(old_hotel_name.length() != 0){
try{
PreparedStatement ps = null;
ps = conn.prepareStatement("SELECT * FROM hotel WHERE name = '" + old_hotel_name + "'");
ResultSet rs = ps.executeQuery();
if(rs.next()){
hotel_id = rs.getInt("id");
}
} catch(SQLException e){
e.printStackTrace();
printSuccessMsg = false;
}
}
// get category and occupancy
String category = null;
int occupancy = -1;
try{
PreparedStatement ps = null;
ps = conn.prepareStatement("SELECT category, occupancy FROM room WHERE hotel_id = ? AND room_number = ?");
ps.setInt(1, hotel_id);
ps.setInt(2, old_room_number);
ResultSet rs = ps.executeQuery();
if(rs.next()){
category = rs.getString("category");
occupancy = rs.getInt("occupancy");
}
} catch(SQLException e){
e.printStackTrace();
printSuccessMsg = false;
}
// update room table
try{
PreparedStatement ps = null;
ps = conn.prepareStatement("UPDATE room_type SET nightly_rate = ? WHERE category = ? AND occupancy = ?");
ps.setInt(1, new_nightly_rate);
ps.setString(2, category);
ps.setInt(3, occupancy);
ps.executeUpdate();
} catch(SQLException e){
e.printStackTrace();
printSuccessMsg = false;
}
if(printSuccessMsg){
System.out.println();
System.out.println("Room Create successful!");
System.out.println();
}
}
// Verified.
public void deleteRoom(){
boolean printSuccessMsg = true;
// prompt for the information needed
System.out.println("Deleting existing room.");
System.out.print("Room number: ");
int room_number = input.nextInt();
input.nextLine(); // discard new line character
System.out.print("Hotel name: ");
String hotel_name = input.nextLine();
// get hotel id according to hotel name
int hotel_id = -1;
if(hotel_name.length() != 0){
try{
PreparedStatement ps = null;
ps = conn.prepareStatement("SELECT * FROM hotel WHERE name = '" + hotel_name + "'");
ResultSet rs = ps.executeQuery();
if(rs.next()){
hotel_id = rs.getInt("id");
}
} catch(SQLException e){
e.printStackTrace();
printSuccessMsg = false;
}
}
// delete the room
if(hotel_id != -1){
// We do get the hotel id provided hotel name
try{
PreparedStatement ps = null;
ps = conn.prepareStatement("DELETE FROM room WHERE(room_number = ? AND hotel_id = ?)");
ps.setInt(1,room_number);
ps.setInt(2,hotel_id);
ps.executeUpdate();
} catch(SQLException e){
e.printStackTrace();
printSuccessMsg = false;
}
} else {
System.out.println("Hotel with given name cannot be found.");
printSuccessMsg = false;
}
if(printSuccessMsg){
System.out.println();
System.out.println("Room Delete successful!");
System.out.println();
}
}
// Verified.
public void newCustomer(){
boolean printSuccessMsg = true;
// prompt for the information needed
System.out.println("Creating new customer.");
System.out.print("Name: ");
String name = input.nextLine();
System.out.print("SSN: ");
String ssn = input.nextLine();
System.out.print("Gedner: ");
String gender = input.nextLine().toLowerCase().charAt(0) + "";
System.out.print("Phone: ");
String phone = input.nextLine();
System.out.print("Email: ");
String email = input.nextLine();
System.out.print("Address: ");
String address= input.nextLine();
// insert new customer
try{
PreparedStatement ps = null;
ps = conn.prepareStatement("INSERT INTO customer(id, name, ssn, gender, phone, email, address) VALUES (cutomer_seq.nextval, ?, ?, ?, ?, ?, ?)");
ps.setString(1, name);
ps.setString(2, ssn);
ps.setString(3, gender);
ps.setString(4, phone);
ps.setString(5, email);
ps.setString(6, address);
ps.executeUpdate();
} catch(SQLException e){
e.printStackTrace();
printSuccessMsg = false;
}
if(printSuccessMsg){
System.out.println();
System.out.println("Customer Create successful!");
System.out.println();
}
}
// Verified.
public void updateCustomer(){
boolean printSuccessMsg = true;
// prompt for the information needed
System.out.println("Updating existing customer.");
System.out.print("Name for search: ");
String old_name = input.nextLine();
System.out.print("new Name (if unchanged, type old name): ");
String new_name = input.nextLine();
System.out.print("new SSN: ");
String new_ssn = input.nextLine();
System.out.print("new Gender: ");
String new_gender = input.nextLine();
if(new_gender.length() != 0){
new_gender = new_gender.toLowerCase().charAt(0) + "";
}
System.out.print("new Phone: ");
String new_phone = input.nextLine();
System.out.print("new Email: ");
String new_email = input.nextLine();
System.out.print("new Address: ");
String new_address = input.nextLine();
// create the SQL statement dynamically according to user input
StringBuilder builder = new StringBuilder("UPDATE customer SET ");
if(new_name.length() != 0){
builder.append("name = '" + new_name + "' ");
}
if(new_ssn.length() != 0){
builder.append(", ssn = '" + new_ssn + "' ");
}
if(new_gender.length() != 0){
builder.append(", gender = '" + new_gender + "' ");
}
if(new_phone.length() != 0){
builder.append(", phone = '" + new_phone + "' ");
}
if(new_email.length() != 0){
builder.append(", email = '" + new_email + "' ");
}
if(new_address.length() != 0){
builder.append(", address = '" + new_address + "' ");
}
builder.append("WHERE name = '" + old_name + "'");
// execute the SQL statement
try{
PreparedStatement ps = null;
ps = conn.prepareStatement(builder.toString());
ps.executeUpdate();
} catch(SQLException e){
e.printStackTrace();
printSuccessMsg = false;
}
if(printSuccessMsg){
System.out.println();
System.out.println("Customer Update successful!");
System.out.println();
}
}
// Verified.
public void deleteCustomer(){
boolean printSuccessMsg = true;
System.out.println("Deleting existing customer.");
System.out.print("Name: ");
String name = input.nextLine();
// execute the SQL statement
try{
PreparedStatement ps = null;
ps = conn.prepareStatement("DELETE FROM customer WHERE name = ?");
ps.setString(1, name);
ResultSet rs = ps.executeQuery();
} catch(SQLException e){
e.printStackTrace();
printSuccessMsg = false;
}
if(printSuccessMsg){
System.out.println();
System.out.println("Customer Delete successful!");
System.out.println();
}
}
// Verified.
public void checkAvailability(){
System.out.println("Check available room for hotel.");
System.out.print("Hotel name: ");
String hotel_name = input.nextLine();
// retrieve the hotel id
int hotel_id = -1;
try{
PreparedStatement ps = null;
ps = conn.prepareStatement("SELECT * FROM hotel WHERE name = '" + hotel_name + "'");
ResultSet rs = ps.executeQuery();
if(rs.next()){
hotel_id = rs.getInt("id");
}
} catch(SQLException e){
e.printStackTrace();
}
// execute the SQL statement
try{
PreparedStatement ps = null;
ps = conn.prepareStatement("SELECT * FROM room WHERE availability = 1 AND hotel_id = ?");
ps.setInt(1, hotel_id);
ResultSet rs = ps.executeQuery();
System.out.println();
System.out.println("room_number|category|occupancy|availability|hotel_name");
while(rs.next()){
System.out.println(rs.getInt("room_number") + "|" + rs.getString("category") + "|" + rs.getInt("occupancy") + "|" + rs.getInt("availability") + "|" + hotel_name);
}
} catch(SQLException e){
e.printStackTrace();
}
System.out.println();
}
public void assignRoom(){
boolean printSuccessMsg = true;
boolean anythingWrong = false;
try{
conn.setAutoCommit( false );
}catch (Exception e){
printSuccessMsg = false;
}
// prompt for the information needed
System.out.println("Assign room to customer.");
System.out.print("Customer name: ");
String customer_name = input.nextLine();
System.out.print("Hotel name: ");
String hotel_name = input.nextLine();
System.out.print("Room number: ");
int room_number = input.nextInt();
input.nextLine(); // discard new line character
System.out.print("Current occupancy: ");
int current_occupancy = input.nextInt();
input.nextLine(); // discard new line character
System.out.print("Start date (format example: 12-OCT-2016): ");
String start_date = input.nextLine();
System.out.print("End date: ");
String end_date = input.nextLine();
System.out.print("Start time (formate example: 11:11:11): ");
String start_time = input.nextLine();
System.out.print("End time: ");
String end_time = input.nextLine();
System.out.print("Front desk staff name(if any): ");
String fd_name = input.nextLine();
System.out.print("Catering staff assigned name(if any): ");
String cs_name = input.nextLine();
System.out.print("Service staff assigned name(if any): ");
String ss_name = input.nextLine();
// retrieve the hotel id
int hotel_id = -1;
try{
PreparedStatement ps = null;
ps = conn.prepareStatement("SELECT * FROM hotel WHERE name = '" + hotel_name + "'");
ResultSet rs = ps.executeQuery();
if(rs.next()){
hotel_id = rs.getInt("id");
}
} catch(SQLException e){
e.printStackTrace();
printSuccessMsg = false;
}
// get the specified room availability
int current_availability = -1;
int max_occupancy = -1;
try{
PreparedStatement ps = null;
ps = conn.prepareStatement("SELECT * from room WHERE(room_number = ? AND hotel_id = ?)");
ps.setInt(1, room_number);
ps.setInt(2, hotel_id);
ResultSet rs = ps.executeQuery();
if(rs.next()){
current_availability = rs.getInt("availability");
max_occupancy = rs.getInt("occupancy");
}
} catch(SQLException e){
e.printStackTrace();
printSuccessMsg = false;
}
if(current_availability == -1){
// if room specified does not exisits, then roll back
System.out.println("The room specified does not exist!");
anythingWrong = true;
printSuccessMsg = false;
}
if(current_availability == 0){
// if current availability = 0 (unavailable), then roll back
System.out.println("The room specified is already occupied!");
anythingWrong = true;
printSuccessMsg = false;
}
if(current_occupancy > max_occupancy){
// if current occupancy > room max occupancy, then roll back
anythingWrong = true;
printSuccessMsg = false;
}
// set the corresponding room availability to be 0
try{
PreparedStatement ps = null;
ps = conn.prepareStatement("UPDATE room SET availability = 0 WHERE(room_number = ? AND hotel_id = ?)");
ps.setInt(1, room_number);
ps.setInt(2, hotel_id);
ps.executeUpdate();
} catch(SQLException e){
e.printStackTrace();
anythingWrong = true;
printSuccessMsg = false;
}
// get service staff id if needed
int ss_id = -1;
if(ss_name.length() != 0){
try{
PreparedStatement ps = null;
ps = conn.prepareStatement("SELECT id FROM staff WHERE name = ?");
ps.setString(1, ss_name);
ResultSet rs = ps.executeQuery();
if(rs.next()){
ss_id = rs.getInt("id");
}
} catch(SQLException e){
e.printStackTrace();
printSuccessMsg = false;
}
}
// get catering staff id if needed
int cs_id = -1;
if(cs_name.length() != 0){
try{
PreparedStatement ps = null;
ps = conn.prepareStatement("SELECT id FROM staff WHERE name = ?");
ps.setString(1, cs_name);
ResultSet rs = ps.executeQuery();
if(rs.next()){
cs_id = rs.getInt("id");
}
} catch(SQLException e){
e.printStackTrace();
printSuccessMsg = false;
}
}
// get customer id
int customer_id = -1;
try{
PreparedStatement ps = null;
ps = conn.prepareStatement("SELECT id FROM customer WHERE name = ?");
ps.setString(1, customer_name);
ResultSet rs = ps.executeQuery();
if(rs.next()){
customer_id = rs.getInt("id");
}
} catch(SQLException e){
e.printStackTrace();
printSuccessMsg = false;
}
// get front desk id
int fd_id = -1;
if(fd_name.length() != 0){
try{
PreparedStatement ps = null;
ps = conn.prepareStatement("SELECT id FROM staff WHERE name = ?");
ps.setString(1, fd_name);
ResultSet rs = ps.executeQuery();
if(rs.next()){
fd_id = rs.getInt("id");
}
} catch(SQLException e){
e.printStackTrace();
printSuccessMsg = false;
}
}
if(ss_name.length() != 0 && ss_id == -1){
System.out.println("Service staff with given name cannot be found!");
anythingWrong = true;
printSuccessMsg = false;
}
if(cs_name.length() != 0 && cs_id == -1){
System.out.println("Catering staff with given name cannot be found!");
anythingWrong = true;
printSuccessMsg = false;
}
if(fd_name.length() != 0 && fd_id == -1){
System.out.println("Front desk staff with given name cannot be found!");
anythingWrong = true;
printSuccessMsg = false;
}
// insert into checkin table
try{
PreparedStatement ps = null;
ps = conn.prepareStatement("INSERT INTO checkin(id, current_occupancy, start_date, end_date, start_time, end_time, cstaff_id, sstaff_id, fdstaff_id, customer_id) VALUES (checkin_seq.nextval, ?, ?, ?, ?, ?, ?, ?, ?, ?)");
ps.setInt(1, current_occupancy);
ps.setString(2, start_date);
ps.setString(3, end_date);
ps.setString(4, start_time);
ps.setString(5, end_time);
if(cs_id == -1){
ps.setString(6, null);
}else{
ps.setInt(6, cs_id);
}
if(ss_id == -1){
ps.setString(7, null);
}else{
ps.setInt(7, ss_id);
}
if(fd_id == -1){
ps.setString(8, null);
}else{
ps.setInt(8, fd_id);
}
ps.setInt(9, customer_id);
ps.executeUpdate();
} catch(SQLException e){
e.printStackTrace();
anythingWrong = true;
printSuccessMsg = false;
}
// retrieve the checkin id
int checkin_id = -1;
try{
PreparedStatement ps = null;
ps = conn.prepareStatement("SELECT id FROM checkin WHERE customer_id = ? AND start_date = ?");
ps.setInt(1, customer_id);
ps.setString(2, start_date);
ResultSet rs = ps.executeQuery();
if(rs.next()){
checkin_id = rs.getInt("id");
}
} catch(SQLException e){
e.printStackTrace();
printSuccessMsg = false;
}
// insert into reserve for table
try{
PreparedStatement ps = null;
ps = conn.prepareStatement("INSERT INTO reserve_for(hotel_id, room_number, checkin_id) VALUES (?, ?, ?)");
ps.setInt(1, hotel_id);
ps.setInt(2, room_number);
ps.setInt(3, checkin_id);
ps.executeUpdate();
} catch(SQLException e){
e.printStackTrace();
anythingWrong = true;
printSuccessMsg = false;
}
if(anythingWrong){
try{
conn.rollback();
System.out.println("Transaction is rolled back!");
System.out.println();
}catch(SQLException e){
}
}else{
try{
conn.commit();
System.out.println("Transaction is commited!");
System.out.println();
}catch(SQLException e){
}
}
try{
conn.setAutoCommit( true );
}catch (Exception e){