-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLibraryModel.java
More file actions
executable file
·660 lines (483 loc) · 16.1 KB
/
Copy pathLibraryModel.java
File metadata and controls
executable file
·660 lines (483 loc) · 16.1 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
/**
*
* Abstract methods in slides?
*
*/
import java.sql.*;
import javax.swing.*;
import org.junit.Before;
public class LibraryModel {
// For use in creating dialogs and making them modal
private JFrame dialogParent;
Connection con;
public LibraryModel(JFrame parent, String userid, String password) {
String url = "jdbc:postgresql:" + "//db.ecs.vuw.ac.nz/"+ userid+ "_jdbc";
dialogParent = parent;
try { Class.forName("org.postgresql.Driver"); } catch (ClassNotFoundException e) { e.printStackTrace(); }
try {
//con = DriverManager.getConnection(url, userid, password);
con = DriverManager.getConnection(url, userid, password);
con.setAutoCommit(false);
} catch (SQLException e) { e.printStackTrace(); }
}
public String bookLookup(int isbn) {
try {
con.setAutoCommit(false);
} catch (SQLException e1) { e1.printStackTrace(); }
try {
String string = "SELECT title, Edition_No, NumLeft, name, surname FROM author a, book b, book_author ba WHERE b.isbn = ? AND b.isbn = ba.isbn AND ba.authorid = a.authorid";
PreparedStatement psql = con.prepareStatement(string);
psql.setInt(1, isbn);
ResultSet rs = psql.executeQuery();
String name;
String surname;
String title;
String Edition_No;
String NumLeft;
String ret = "";
while(rs.next()){
title = rs.getString("title");
name = rs.getString("name");
surname = rs.getString("surname");
Edition_No = rs.getString("Edition_No");
NumLeft = rs.getString("NumLeft");
ret += "Book with id: "+isbn+", "+ title +"Author:"+ name + surname + "; Edition: "+Edition_No+"; Number avail :"+NumLeft+"\n";
}
finishGood();
return ret;
} catch (SQLException e) {
e.printStackTrace();
}
finishBad();
return "Error trying to display book with id"+isbn + ", failed.";
}
public String showCatalogue() {
try {
con.setAutoCommit(false);
} catch (SQLException e1) { e1.printStackTrace(); }
try {
String string = "SELECT title, name, surname FROM author a, book b, book_author ba WHERE b.isbn = ba.isbn AND ba.authorid = a.authorid";
Statement sql = con.createStatement();
ResultSet rs = sql.executeQuery(string);
String title;
String name;
String surname;
String ret = "";
while(rs.next()){
title = rs.getString("title");
name = rs.getString("name");
surname = rs.getString("surname");
ret += "Title: "+ title +"Author:"+ name + surname +"\n";
}
finishGood();
return ret;
} catch (SQLException e) {
e.printStackTrace();
}
finishBad();
return "Error trying to display catalouge, failed.";
}
public String showLoanedBooks() {
try {
con.setAutoCommit(false);
} catch (SQLException e1) { e1.printStackTrace(); }
try{
String string = "SELECT title, F_Name, L_Name, DueDate FROM book b, customer c, Cust_Book cb WHERE b.isbn = cb.isbn AND cb.CustomerId = c.CustomerId";
Statement sql = con.createStatement();
ResultSet rs = sql.executeQuery(string);
String title;
String F_Name;
String L_Name;
String DueDate;
String ret = "";
while(rs.next()){
title = rs.getString("title");
F_Name = rs.getString("F_Name");
L_Name = rs.getString("L_Name");
DueDate = rs.getString("DueDate");
ret += title+" on loan to: "+F_Name+L_Name+"; to be returned: "+DueDate+"\n" ;
}
finishGood();
return ret;
} catch (SQLException e) {
e.printStackTrace();
}
finishBad();
return "Error trying to display loaned books, failed.";
}
public String showAuthor(int authorID) {
try {
con.setAutoCommit(false);
} catch (SQLException e1) { e1.printStackTrace();}
try {
String string = "SELECT name, surname, COUNT(ISBN) as c FROM author a, book_author ba WHERE a.AuthorId = ? AND a.AuthorId = ba.AuthorId GROUP BY a.name, a.surname";
PreparedStatement psql = con.prepareStatement(string);
psql.setInt(1, authorID);
ResultSet rs = psql.executeQuery();
String name;
String surname;
String ret = "";
String count;
while(rs.next()){
name = rs.getString("name");
surname = rs.getString("surname");
count = rs.getString("c");
ret += "Author with id: "+authorID+"; "+ name + surname +"Written "+count+" books"+"\n";
}
finishGood();
return ret;
} catch (SQLException e) {
e.printStackTrace();
}
finishBad();
return "Error trying to display author with id"+authorID + ", failed.";
}
public String showAllAuthors() {
try {
con.setAutoCommit(false);
} catch (SQLException e1) {e1.printStackTrace();}
try {
String string = "SELECT name, surname, COUNT(ISBN) as c FROM author a, book_author ba WHERE a.AuthorId = ba.AuthorId GROUP BY a.name, a.surname";
Statement sql = con.createStatement();
ResultSet rs = sql.executeQuery(string);
String name;
String surname;
String ret = "";
String count;
while(rs.next()){
name = rs.getString("name");
surname = rs.getString("surname");
count = rs.getString("c");
ret += "Author: "+ name + surname +"Written "+count+" books"+"\n";
}
finishGood();
return ret;
} catch (SQLException e) {
e.printStackTrace();
}
finishBad();
return "Error trying to display Customers, failed.";
}
public String showCustomer(int customerID) {
try {
con.setAutoCommit(false);
} catch (SQLException e1) { e1.printStackTrace();}
try {
String string = "Select F_Name, L_Name, City FROM Customer c WHERE c.CustomerID = ?";
PreparedStatement psql = con.prepareStatement(string);
psql.setInt(1, customerID);
ResultSet rs = psql.executeQuery();
String F_Name;
String L_Name;
String city;
String ret = "";
while(rs.next()){
F_Name = rs.getString("F_Name");
L_Name = rs.getString("L_Name");
city = rs.getString("City");
ret += "Customer with id: "+customerID+" , "+F_Name+" "+L_Name+" - "+city+"\n";
}
finishGood();
return ret;
} catch (SQLException e) {
e.printStackTrace();
}
finishBad();
return "Error trying to display customer with id"+customerID + ", failed.";
}
public String showAllCustomers() {
try {
con.setAutoCommit(false);
} catch (SQLException e1) { e1.printStackTrace();}
try {
String string = "Select F_Name, L_Name, City FROM Customer";
Statement sql = con.createStatement();
ResultSet rs = sql.executeQuery(string);
String F_Name;
String L_Name;
String City;
String ret = "";
while(rs.next()){
F_Name = rs.getString("F_Name");
L_Name = rs.getString("L_Name");
City = rs.getString("City");
ret += "Customer: "+F_Name+" "+L_Name+" - "+City+"\n";
}
finishGood();
return ret;
} catch (SQLException e) {
e.printStackTrace();
}
finishBad();
return "Error trying to display Customers, failed.";
}
public String borrowBook(int isbn, int customerID,int day, int month, int year) {
try {
con.setAutoCommit(false);
} catch (SQLException e1) { e1.printStackTrace(); }
try {
String serial = "SET TRANSACTION ISOLATION LEVEL SERIALIZABLE";
Statement sql = con.createStatement();
sql.execute(serial);
String string = "SELECT * FROM customer c WHERE c.customerID = ?";
PreparedStatement psql = con.prepareStatement(string);
psql.setInt(1, customerID);
ResultSet rs = psql.executeQuery();
String exists = null;
while(rs.next()){
exists = rs.getString("F_Name");
}
if(exists == null){
finishBad();
return "Customer does not exist!";
}
else return customerFoundBorrow(isbn,customerID,day,month,year);
} catch (SQLException e) { e.printStackTrace(); }
finishBad();
return "Error trying to process borrow transacton : thrown in borrowBook()";
}
public String customerFoundBorrow(int isbn, int customerID,int day, int month, int year){
try {
// String lock = "LOCK TABLE customer IN ROW EXCLUSIVE MODE";
// Statement sql = con.createStatement();
// sql.execute(lock);
String string = "SELECT * FROM book b WHERE b.isbn = ?";
PreparedStatement psql = con.prepareStatement(string);
psql.setInt(1, isbn);
ResultSet rs = psql.executeQuery();
int exists = 0;
int NumLeft = 0;
while(rs.next()){
exists = rs.getInt("isbn");
NumLeft = rs.getInt("NumLeft");
}
if(exists == 0){
finishBad();
return "Book does not exist!";
}
else if(NumLeft == 0){
finishBad();
return "There are no copies of this book available";
}
else return bookFoundBorrow(isbn,customerID,day,month,year);
} catch (SQLException e) {e.printStackTrace();}
finishBad();
return "Error trying to process borrow transacton : thrown in customerFoundBorrow()";
}
public String bookFoundBorrow(int isbn, int customerID,int day, int month, int year){
try {
// String lock = "LOCK TABLE book IN ROW EXCLUSIVE MODE";
// Statement sql = con.createStatement();
// sql.execute(lock);
Date returnDate = new Date(year,month,day);
String insert = "INSERT INTO Cust_Book VALUES(?,?,?)";
PreparedStatement psql = con.prepareStatement(insert);
psql.setInt(3, customerID);
psql.setDate(2, returnDate);
psql.setInt(1, isbn);
int returnvalue = psql.executeUpdate();
if(returnvalue == 0){
finishBad();
return "could not update Cust_Book table";
}
JOptionPane pane = new JOptionPane("Confirm operation?");
Object[] options = new String[] { "Confirm", "Cancel" };
pane.setOptions(options);
JDialog dialog = pane.createDialog(dialogParent, "Dilaog");
dialog.show();
Object obj = pane.getValue();
int result = -1;
for (int k = 0; k < options.length; k++){
if (options[k].equals(obj)) result = k; // 0 = confirm, 1 = cancel
}
if(result == 0 ){
String update = "UPDATE Book SET NumLeft = NumLeft - 1 WHERE isbn = ? ";
PreparedStatement psql2 = con.prepareStatement(update);
psql2.setInt(1,isbn);
int returnvalue2 = psql2.executeUpdate();
if(returnvalue2 == 0){
finishBad();
return "Could not update books table";
}
else{
finishGood();
return "Borrow transaction complete, Book is due on "+ returnDate;
}
}
else{
finishBad();
return "operation not confirmed, transaction cancelled";
}
}catch (SQLException e) {e.printStackTrace();}
finishBad();
return "Error trying to process borrow transacton : thrown in bookFoundBorrow()";
}
public String returnBook(int isbn, int customerid) {
try {
con.setAutoCommit(false);
} catch (SQLException e1) { e1.printStackTrace();
}
try {
String serial = "SET TRANSACTION ISOLATION LEVEL SERIALIZABLE";
Statement sql = con.createStatement();
sql.execute(serial);
String string = "SELECT * FROM customer c WHERE c.customerID = ?";
PreparedStatement psql = con.prepareStatement(string);
psql.setInt(1, customerid);
ResultSet rs = psql.executeQuery();
String exists = null;
while(rs.next()){
exists = rs.getString("F_Name");
}
if(exists == null){
finishBad();
return "Customer does not exist!";
}
else return customerFoundReturn(isbn,customerid);
} catch (SQLException e) { e.printStackTrace(); }
finishBad();
return "Error trying to process borrow transacton : thrown in returnBook()";
}
public String customerFoundReturn(int isbn,int customerID){
try {
// String lock = "LOCK TABLE customer IN ROW EXCLUSIVE MODE";
// Statement sql = con.createStatement();
// sql.execute(lock);
String string = "SELECT * FROM book b WHERE b.isbn = ?";
PreparedStatement psql = con.prepareStatement(string);
psql.setInt(1, isbn);
ResultSet rs = psql.executeQuery();
int exists = 0;
int NumLeft = 0;
while(rs.next()){
exists = rs.getInt("isbn");
NumLeft = rs.getInt("NumLeft");
}
if(exists == 0){
finishBad();
return "Book does not exist!";
}
else return bookFoundReturn(isbn,customerID);
} catch (SQLException e) {e.printStackTrace();}
finishBad();
return "Error trying to process borrow transacton : thrown in customerFoundReturn()";
}
public String bookFoundReturn(int isbn,int customerID){
try {
// String lock = "LOCK TABLE book IN ROW EXCLUSIVE MODE";
// Statement sql = con.createStatement();
// sql.execute(lock);
String delete = "DELETE FROM cust_book WHERE isbn = ?";
PreparedStatement psql = con.prepareStatement(delete);
psql.setInt(1,isbn);
int returnvalue = psql.executeUpdate();
if(returnvalue == 0){
finishBad();
return "Could not return book, transaction was not completed";
}
String update = "UPDATE Book SET NumLeft = NumLeft + 1 WHERE isbn = ? ";
PreparedStatement psql2 = con.prepareStatement(update);
psql2.setInt(1,isbn);
int returnvalue2 = psql2.executeUpdate();
if(returnvalue2 == 0){
finishBad();
return "Could not update books table";
}
else{
finishGood();
return "Borrow transaction complete, Book has been returned";
}
} catch (SQLException e) {e.printStackTrace();}
finishBad();
return "Error trying to process borrow transacton : thrown in bookFoundReturn()";
}
public void closeDBConnection() {
try {
finishGood();
con.close();
} catch (SQLException e) {e.printStackTrace();}
}
public String deleteCus(int customerID) {
try {
con.setAutoCommit(false);
} catch (SQLException e1) { e1.printStackTrace();}
try {
String delete = "DELETE FROM customer WHERE customerID = ?";
PreparedStatement psql = con.prepareStatement(delete);
psql.setInt(1, customerID);
int returnValue = psql.executeUpdate();
if(returnValue == 0){
finishBad();
return "Delete customer transaction failed, customer not found";
}
else{
finishGood();
return "Transaction complete, customer removed";
}
} catch (SQLException e) {
e.printStackTrace();
}
finishBad();
return "Error completing Delete customer transaction";
}
public String deleteAuthor(int authorID) {
try {
con.setAutoCommit(false);
} catch (SQLException e1) { e1.printStackTrace();}
try {
String delete = "DELETE FROM author WHERE authorID = ?";
PreparedStatement psql = con.prepareStatement(delete);
psql.setInt(1, authorID);
int returnValue = psql.executeUpdate();
if(returnValue == 0){
finishBad();
return "Delete Author transaction failed, author not found";
}
else{
finishGood();
return "Transaction complete, Author removed";
}
} catch (SQLException e) {
e.printStackTrace();
}
finishBad();
return "Error completing Delete author transaction";
}
public String deleteBook(int isbn) {
try {
con.setAutoCommit(false);
} catch (SQLException e1) { e1.printStackTrace();}
try {
String delete = "DELETE FROM book WHERE isbn = ?";
PreparedStatement psql = con.prepareStatement(delete);
psql.setInt(1, isbn);
int returnValue = psql.executeUpdate();
if(returnValue == 0){
finishBad();
return "Delete Book transaction failed, author not found";
}
else{
finishGood();
return "Transaction complete, Book removed";
}
} catch (SQLException e) {
e.printStackTrace();
}
finishBad();
return "Error completing Delete Book transaction";
}
public void finishGood(){
try {
if(!con.getAutoCommit()){
con.commit();
}
con.setAutoCommit(true);
} catch (SQLException e) { e.printStackTrace();}
}
public void finishBad(){
try {
con.rollback();
con.setAutoCommit(true);
} catch (SQLException e) { e.printStackTrace();}
}
}