-
-
Notifications
You must be signed in to change notification settings - Fork 310
Expand file tree
/
Copy pathLibrary.java
More file actions
1216 lines (945 loc) · 42.9 KB
/
Library.java
File metadata and controls
1216 lines (945 loc) · 42.9 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
package LMS;
// Including Header Files.
import java.io.*;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.SQLIntegrityConstraintViolationException;
import java.sql.Statement;
import java.sql.Types;
import java.util.*;
import java.util.logging.Level;
import java.util.logging.Logger;
public class Library {
private String name; // name of library
public static Librarian librarian; // object of Librarian (only one)
public static ArrayList <Person> persons; // all clerks and borrowers
private ArrayList <Book> booksInLibrary; // all books in library are here!
private ArrayList <Loan> loans; // history of all books which have been issued
public int book_return_deadline; //return deadline after which fine will be generated each day
public double per_day_fine;
public int hold_request_expiry; //number of days after which a hold request will expire
//Created object of the hold request operations
private HoldRequestOperations holdRequestsOperations =new HoldRequestOperations();
/*----Following Singleton Design Pattern (Lazy Instantiation)------------*/
private static Library obj;
public static Library getInstance()
{
if(obj==null)
{
obj = new Library();
}
return obj;
}
/*---------------------------------------------------------------------*/
private Library() // default cons.
{
name = null;
librarian = null;
persons = new ArrayList();
booksInLibrary = new ArrayList();
loans = new ArrayList();
}
/*------------Setter FUNCs.------------*/
public void setReturnDeadline(int deadline)
{
book_return_deadline = deadline;
}
public void setFine(double perDayFine)
{
per_day_fine = perDayFine;
}
public void setRequestExpiry(int hrExpiry)
{
hold_request_expiry = hrExpiry;
}
/*--------------------------------------*/
// Setter Func.
public void setName(String n)
{
name = n;
}
/*-----------Getter FUNCs.------------*/
public int getHoldRequestExpiry()
{
return hold_request_expiry;
}
public ArrayList<Person> getPersons()
{
return persons;
}
public Librarian getLibrarian()
{
return librarian;
}
public String getLibraryName()
{
return name;
}
public ArrayList<Book> getBooks()
{
return booksInLibrary;
}
/*---------------------------------------*/
/*-----Adding other People in Library----*/
public void addClerk(Clerk c)
{
persons.add(c);
}
public void addBorrower(Borrower b)
{
persons.add(b);
}
public void addLoan(Loan l)
{
loans.add(l);
}
/*----------------------------------------------*/
/*-----------Finding People in Library--------------*/
public Borrower findBorrower()
{
System.out.println("\nEnter Borrower's ID: ");
int id = 0;
Scanner scanner = new Scanner(System.in);
try{
id = scanner.nextInt();
}
catch (java.util.InputMismatchException e)
{
System.out.println("\nInvalid Input");
}
for (int i = 0; i < persons.size(); i++)
{
if (persons.get(i).getID() == id && persons.get(i).getClass().getSimpleName().equals("Borrower"))
return (Borrower)(persons.get(i));
}
System.out.println("\nSorry this ID didn't match any Borrower's ID.");
return null;
}
public Clerk findClerk()
{
System.out.println("\nEnter Clerk's ID: ");
int id = 0;
Scanner scanner = new Scanner(System.in);
try{
id = scanner.nextInt();
}
catch (java.util.InputMismatchException e)
{
System.out.println("\nInvalid Input");
}
for (int i = 0; i < persons.size(); i++)
{
if (persons.get(i).getID() == id && persons.get(i).getClass().getSimpleName().equals("Clerk"))
return (Clerk)(persons.get(i));
}
System.out.println("\nSorry this ID didn't match any Clerk's ID.");
return null;
}
/*------- FUNCS. on Books In Library--------------*/
public void addBookinLibrary(Book b)
{
booksInLibrary.add(b);
}
//When this function is called, only the pointer of the book placed in booksInLibrary is removed. But the real object of book
//is still there in memory because pointers of that book placed in IssuedBooks and ReturnedBooks are still pointing to that book. And we
//are maintaining those pointers so that we can maintain history.
//But if we donot want to maintain history then we can delete those pointers placed in IssuedBooks and ReturnedBooks as well which are
//pointing to that book. In this way the book will be really removed from memory.
public void removeBookfromLibrary(Book b)
{
boolean delete = true;
//Checking if this book is currently borrowed by some borrower
for (int i = 0; i < persons.size() && delete; i++)
{
if (persons.get(i).getClass().getSimpleName().equals("Borrower"))
{
ArrayList<Loan> borBooks = ((Borrower)(persons.get(i))).getBorrowedBooks();
for (int j = 0; j < borBooks.size() && delete; j++)
{
if (borBooks.get(j).getBook() == b)
{
delete = false;
System.out.println("This particular book is currently borrowed by some borrower.");
}
}
}
}
if (delete)
{
System.out.println("\nCurrently this book is not borrowed by anyone.");
ArrayList<HoldRequest> hRequests = b.getHoldRequests();
if(!hRequests.isEmpty())
{
System.out.println("\nThis book might be on hold requests by some borrowers. Deleting this book will delete the relevant hold requests too.");
System.out.println("Do you still want to delete the book? (y/n)");
Scanner sc = new Scanner(System.in);
while (true)
{
String choice = sc.next();
if(choice.equals("y") || choice.equals("n"))
{
if(choice.equals("n"))
{
System.out.println("\nDelete Unsuccessful.");
return;
}
else
{
//Empty the books hold request array
//Delete the hold request from the borrowers too
for (int i = 0; i < hRequests.size() && delete; i++)
{
HoldRequest hr = hRequests.get(i);
hr.getBorrower().removeHoldRequest(hr);
holdRequestsOperations.removeHoldRequest();
}
}
}
else
System.out.println("Invalid Input. Enter (y/n): ");
}
}
else
System.out.println("This book has no hold requests.");
booksInLibrary.remove(b);
System.out.println("The book is successfully removed.");
}
else
System.out.println("\nDelete Unsuccessful.");
}
// Searching Books on basis of title, Subject or Author
public ArrayList<Book> searchForBooks() throws IOException
{
String choice;
String title = "", subject = "", author = "";
Scanner sc = new Scanner(System.in);
BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));
while (true)
{
System.out.println("\nEnter either '1' or '2' or '3' for search by Title, Subject or Author of Book respectively: ");
choice = sc.next();
if (choice.equals("1") || choice.equals("2") || choice.equals("3"))
break;
else
System.out.println("\nWrong Input!");
}
if (choice.equals("1"))
{
System.out.println("\nEnter the Title of the Book: ");
title = reader.readLine();
}
else if (choice.equals("2"))
{
System.out.println("\nEnter the Subject of the Book: ");
subject = reader.readLine();
}
else
{
System.out.println("\nEnter the Author of the Book: ");
author = reader.readLine();
}
ArrayList<Book> matchedBooks = new ArrayList();
//Retrieving all the books which matched the user's search query
for(int i = 0; i < booksInLibrary.size(); i++)
{
Book b = booksInLibrary.get(i);
if (choice.equals("1"))
{
if (b.getTitle().equals(title))
matchedBooks.add(b);
}
else if (choice.equals("2"))
{
if (b.getSubject().equals(subject))
matchedBooks.add(b);
}
else
{
if (b.getAuthor().equals(author))
matchedBooks.add(b);
}
}
//Printing all the matched Books
if (!matchedBooks.isEmpty())
{
System.out.println("\nThese books are found: \n");
System.out.println("------------------------------------------------------------------------------");
System.out.println("No.\t\tTitle\t\t\tAuthor\t\t\tSubject");
System.out.println("------------------------------------------------------------------------------");
for (int i = 0; i < matchedBooks.size(); i++)
{
System.out.print(i + "-" + "\t\t");
matchedBooks.get(i).printInfo();
System.out.print("\n");
}
return matchedBooks;
}
else
{
System.out.println("\nSorry. No Books were found related to your query.");
return null;
}
}
// View Info of all Books in Library
public void viewAllBooks()
{
if (!booksInLibrary.isEmpty())
{
System.out.println("\nBooks are: ");
System.out.println("------------------------------------------------------------------------------");
System.out.println("No.\t\tTitle\t\t\tAuthor\t\t\tSubject");
System.out.println("------------------------------------------------------------------------------");
for (int i = 0; i < booksInLibrary.size(); i++)
{
System.out.print(i + "-" + "\t\t");
booksInLibrary.get(i).printInfo();
System.out.print("\n");
}
}
else
System.out.println("\nCurrently, Library has no books.");
}
//Computes total fine for all loans of a borrower
public double computeFine2(Borrower borrower)
{
System.out.println("---------------------------------------------------------------------------------------------------------------------------------------------------------------------");
System.out.println("No.\t\tBook's Title\t\tBorrower's Name\t\t\tIssued Date\t\t\tReturned Date\t\t\t\tFine(Rs)");
System.out.println("-------------------------------------------------------------------------------------------------------------------------------------------------------------------");
double totalFine = 0;
double per_loan_fine = 0;
for (int i = 0; i < loans.size(); i++)
{
Loan l = loans.get(i);
if ((l.getBorrower() == borrower))
{
per_loan_fine = l.computeFine1();
System.out.print(i + "-" + "\t\t" + loans.get(i).getBook().getTitle() + "\t\t\t" + loans.get(i).getBorrower().getName() + "\t\t" + loans.get(i).getIssuedDate() + "\t\t\t" + loans.get(i).getReturnDate() + "\t\t\t\t" + per_loan_fine + "\n");
totalFine += per_loan_fine;
}
}
return totalFine;
}
public void createPerson(char x)
{
Scanner sc = new Scanner(System.in);
BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));
System.out.println("\nEnter Name: ");
String n = "";
try {
n = reader.readLine();
} catch (IOException ex) {
Logger.getLogger(Library.class.getName()).log(Level.SEVERE, null, ex);
}
System.out.println("Enter Address: ");
String address = "";
try {
address = reader.readLine();
} catch (IOException ex) {
Logger.getLogger(Library.class.getName()).log(Level.SEVERE, null, ex);
}
int phone = 0;
try{
System.out.println("Enter Phone Number: ");
phone = sc.nextInt();
}
catch (java.util.InputMismatchException e)
{
System.out.println("\nInvalid Input.");
}
//If clerk is to be created
if (x == 'c')
{
double salary = 0;
try{
System.out.println("Enter Salary: ");
salary = sc.nextDouble();
}
catch (java.util.InputMismatchException e)
{
System.out.println("\nInvalid Input.");
}
Clerk c = new Clerk(-1,n,address,phone,salary,-1);
addClerk(c);
System.out.println("\nClerk with name " + n + " created successfully.");
System.out.println("\nYour ID is : " + c.getID());
System.out.println("Your Password is : " + c.getPassword());
}
//If librarian is to be created
else if (x == 'l')
{
double salary = 0;
try{
System.out.println("Enter Salary: ");
salary = sc.nextDouble();
}
catch (java.util.InputMismatchException e)
{
System.out.println("\nInvalid Input.");
}
Librarian l = new Librarian(-1,n,address,phone,salary,-1);
if(Librarian.addLibrarian(l))
{
System.out.println("\nLibrarian with name " + n + " created successfully.");
System.out.println("\nYour ID is : " + l.getID());
System.out.println("Your Password is : " + l.getPassword());
}
}
//If borrower is to be created
else
{
Borrower b = new Borrower(-1,n,address,phone);
addBorrower(b);
System.out.println("\nBorrower with name " + n + " created successfully.");
System.out.println("\nYour ID is : " + b.getID());
System.out.println("Your Password is : " + b.getPassword());
}
}
public void createBook(String title, String subject, String author)
{
Book b = new Book(-1,title,subject,author,false);
addBookinLibrary(b);
System.out.println("\nBook with Title " + b.getTitle() + " is successfully created.");
}
// Called when want an access to Portal
public Person login()
{
Scanner input = new Scanner(System.in);
int id = 0;
String password = "";
System.out.println("\nEnter ID: ");
try{
id = input.nextInt();
}
catch (java.util.InputMismatchException e)
{
System.out.println("\nInvalid Input");
}
System.out.println("Enter Password: ");
password = input.next();
for (int i = 0; i < persons.size(); i++)
{
if (persons.get(i).getID() == id && persons.get(i).getPassword().equals(password))
{
System.out.println("\nLogin Successful");
return persons.get(i);
}
}
if(librarian!=null)
{
if (librarian.getID() == id && librarian.getPassword().equals(password))
{
System.out.println("\nLogin Successful");
return librarian;
}
}
System.out.println("\nSorry! Wrong ID or Password");
return null;
}
// History when a Book was Issued and was Returned!
public void viewHistory()
{
if (!loans.isEmpty())
{
System.out.println("\nIssued Books are: ");
System.out.println("------------------------------------------------------------------------------------------------------------------------------------------------------");
System.out.println("No.\tBook's Title\tBorrower's Name\t Issuer's Name\t\tIssued Date\t\t\tReceiver's Name\t\tReturned Date\t\tFine Paid");
System.out.println("------------------------------------------------------------------------------------------------------------------------------------------------------");
for (int i = 0; i < loans.size(); i++)
{
if(loans.get(i).getIssuer()!=null)
System.out.print(i + "-" + "\t" + loans.get(i).getBook().getTitle() + "\t\t\t" + loans.get(i).getBorrower().getName() + "\t\t" + loans.get(i).getIssuer().getName() + "\t " + loans.get(i).getIssuedDate());
if (loans.get(i).getReceiver() != null)
{
System.out.print("\t" + loans.get(i).getReceiver().getName() + "\t\t" + loans.get(i).getReturnDate() +"\t " + loans.get(i).getFineStatus() + "\n");
}
else
System.out.print("\t\t" + "--" + "\t\t\t" + "--" + "\t\t" + "--" + "\n");
}
}
else
System.out.println("\nNo issued books.");
}
//---------------------------------------------------------------------------------------//
/*--------------------------------IN- COLLABORATION WITH DATA BASE------------------------------------------*/
// Making Connection With Database
public Connection makeConnection()
{
try
{
String host = "jdbc:mysql://localhost:3306/lms";
String uName = "root";
String uPass= "root";
Connection con = DriverManager.getConnection( host, uName, uPass );
System.out.println(con+"database connected succesfully");
return con;
}
catch ( SQLException err )
{
System.out.println( err.getMessage( ) +"error connecting");
return null;
}
}
// Loading all info in code via Database.
public void populateLibrary(Connection con) throws SQLException, IOException
{
Library lib = this;
Statement stmt = con.createStatement( );
/* --- Populating Book ----*/
String SQL = "SELECT * FROM BOOK";
ResultSet rs = stmt.executeQuery( SQL );
if(!rs.next())
{
System.out.println("\nNo Books Found in Library");
}
else
{
int maxID = 0;
do
{
if(rs.getString("TITLE") !=null && rs.getString("AUTHOR")!=null && rs.getString("SUBJECT")!=null && rs.getInt("ID")!=0)
{
String title=rs.getString("TITLE");
String author=rs.getString("AUTHOR");
String subject=rs.getString("SUBJECT");
int id= rs.getInt("ID");
boolean issue=rs.getBoolean("IS_ISSUED");
Book b = new Book(id,title,subject,author,issue);
addBookinLibrary(b);
if (maxID < id)
maxID = id;
}
}while(rs.next());
// setting Book Count
Book.setIDCount(maxID);
}
/* ----Populating Clerks----*/
SQL="SELECT ID,PNAME,ADDRESS,PASSWORD,PHONE_NO,SALARY,DESK_NO FROM PERSON INNER JOIN CLERK ON ID=C_ID INNER JOIN STAFF ON S_ID=C_ID";
rs=stmt.executeQuery(SQL);
if(!rs.next())
{
System.out.println("No clerks Found in Library");
}
else
{
do
{
int id=rs.getInt("ID");
String cname=rs.getString("PNAME");
String adrs=rs.getString("ADDRESS");
int phn=rs.getInt("PHONE_NO");
double sal=rs.getDouble("SALARY");
int desk=rs.getInt("DESK_NO");
Clerk c = new Clerk(id,cname,adrs,phn,sal,desk);
addClerk(c);
}
while(rs.next());
}
/*-----Populating Librarian---*/
SQL="SELECT ID,PNAME,ADDRESS,PASSWORD,PHONE_NO,SALARY,OFFICE_NO FROM PERSON INNER JOIN LIBRARIAN ON ID=L_ID INNER JOIN STAFF ON S_ID=L_ID";
rs=stmt.executeQuery(SQL);
if(!rs.next())
{
System.out.println("No Librarian Found in Library");
}
else
{
do
{
int id=rs.getInt("ID");
String lname=rs.getString("PNAME");
String adrs=rs.getString("ADDRESS");
int phn=rs.getInt("PHONE_NO");
double sal=rs.getDouble("SALARY");
int off=rs.getInt("OFFICE_NO");
Librarian l= new Librarian(id,lname,adrs,phn,sal,off);
Librarian.addLibrarian(l);
}while(rs.next());
}
/*---Populating Borrowers (partially)!!!!!!--------*/
SQL="SELECT ID,PNAME,ADDRESS,PASSWORD,PHONE_NO FROM PERSON INNER JOIN BORROWER ON ID=B_ID";
rs=stmt.executeQuery(SQL);
if(!rs.next())
{
System.out.println("No Borrower Found in Library");
}
else
{
do
{
int id=rs.getInt("ID");
String name=rs.getString("PNAME");
String adrs=rs.getString("ADDRESS");
int phn=rs.getInt("PHONE_NO");
Borrower b= new Borrower(id,name,adrs,phn);
addBorrower(b);
}while(rs.next());
}
/*----Populating Loan----*/
SQL="SELECT * FROM LOAN";
rs=stmt.executeQuery(SQL);
if(!rs.next())
{
System.out.println("No Books Issued Yet!");
}
else
{
do
{
int borid=rs.getInt("BORROWER");
int bokid=rs.getInt("BOOK");
int iid=rs.getInt("ISSUER");
Integer rid=(Integer)rs.getObject("RECEIVER");
int rd=0;
Date rdate;
Date idate=new Date (rs.getTimestamp("ISS_DATE").getTime());
if(rid!=null) // if there is a receiver
{
rdate=new Date (rs.getTimestamp("RET_DATE").getTime());
rd=(int)rid;
}
else
{
rdate=null;
}
boolean fineStatus = rs.getBoolean("FINE_PAID");
boolean set=true;
Borrower bb = null;
for(int i=0;i<getPersons().size() && set;i++)
{
if(getPersons().get(i).getID()==borid)
{
set=false;
bb=(Borrower)(getPersons().get(i));
}
}
set =true;
Staff s[]=new Staff[2];
if(iid==getLibrarian().getID())
{
s[0]=getLibrarian();
}
else
{
for(int k=0;k<getPersons().size() && set;k++)
{
if(getPersons().get(k).getID()==iid && getPersons().get(k).getClass().getSimpleName().equals("Clerk"))
{
set=false;
s[0]=(Clerk)(getPersons().get(k));
}
}
}
set=true;
// If not returned yet...
if(rid==null)
{
s[1]=null; // no reciever
rdate=null;
}
else
{
if(rd==getLibrarian().getID())
s[1]=getLibrarian();
else
{ //System.out.println("ff");
for(int k=0;k<getPersons().size() && set;k++)
{
if(getPersons().get(k).getID()==rd && getPersons().get(k).getClass().getSimpleName().equals("Clerk"))
{
set=false;
s[1]=(Clerk)(getPersons().get(k));
}
}
}
}
set=true;
ArrayList<Book> books = getBooks();
for(int k=0;k<books.size() && set;k++)
{
if(books.get(k).getID()==bokid)
{
set=false;
Loan l = new Loan(bb,books.get(k),s[0],s[1],idate,rdate,fineStatus);
loans.add(l);
}
}
}while(rs.next());
}
/*----Populationg Hold Books----*/
SQL="SELECT * FROM ON_HOLD_BOOK";
rs=stmt.executeQuery(SQL);
if(!rs.next())
{
System.out.println("No Books on Hold Yet!");
}
else
{
do
{
int borid=rs.getInt("BORROWER");
int bokid=rs.getInt("BOOK");
Date off=new Date (rs.getDate("REQ_DATE").getTime());
boolean set=true;
Borrower bb =null;
ArrayList<Person> persons = lib.getPersons();
for(int i=0;i<persons.size() && set;i++)
{
if(persons.get(i).getID()==borid)
{
set=false;
bb=(Borrower)(persons.get(i));
}
}
set=true;
ArrayList<Book> books = lib.getBooks();
for(int i=0;i<books.size() && set;i++)
{
if(books.get(i).getID()==bokid)
{
set=false;
HoldRequest hbook= new HoldRequest(bb,books.get(i),off);
holdRequestsOperations.addHoldRequest(hbook);
bb.addHoldRequest(hbook);
}
}
}while(rs.next());
}
/* --- Populating Borrower's Remaining Info----*/
// Borrowed Books
SQL="SELECT ID,BOOK FROM PERSON INNER JOIN BORROWER ON ID=B_ID INNER JOIN BORROWED_BOOK ON B_ID=BORROWER ";
rs=stmt.executeQuery(SQL);
if(!rs.next())
{
System.out.println("No Borrower has borrowed yet from Library");
}
else
{
do
{
int id=rs.getInt("ID"); // borrower
int bid=rs.getInt("BOOK"); // book
Borrower bb=null;
boolean set=true;
boolean okay=true;
for(int i=0;i<lib.getPersons().size() && set;i++)
{
if(lib.getPersons().get(i).getClass().getSimpleName().equals("Borrower"))
{
if(lib.getPersons().get(i).getID()==id)
{
set =false;
bb=(Borrower)(lib.getPersons().get(i));
}
}
}
set=true;
ArrayList<Loan> books = loans;
for(int i=0;i<books.size() && set;i++)
{
if(books.get(i).getBook().getID()==bid &&books.get(i).getReceiver()==null )
{
set=false;
Loan bBook= new Loan(bb,books.get(i).getBook(),books.get(i).getIssuer(),null,books.get(i).getIssuedDate(),null,books.get(i).getFineStatus());
bb.addBorrowedBook(bBook);
}
}
}while(rs.next());
}
ArrayList<Person> persons = lib.getPersons();
/* Setting Person ID Count */
int max=0;
for(int i=0;i<persons.size();i++)
{
if (max < persons.get(i).getID())
max=persons.get(i).getID();
}
Person.setIDCount(max);
}
// Filling Changes back to Database
public void fillItBack(Connection con) throws SQLException,SQLIntegrityConstraintViolationException
{
/*-----------Loan Table Cleared------------*/
String template = "DELETE FROM LIBRARY.LOAN";
PreparedStatement stmts = con.prepareStatement(template);
stmts.executeUpdate();
/*-----------Borrowed Books Table Cleared------------*/
template = "DELETE FROM LIBRARY.BORROWED_BOOK";
stmts = con.prepareStatement(template);
stmts.executeUpdate();
/*-----------OnHoldBooks Table Cleared------------*/
template = "DELETE FROM LIBRARY.ON_HOLD_BOOK";
stmts = con.prepareStatement(template);
stmts.executeUpdate();
/*-----------Books Table Cleared------------*/
template = "DELETE FROM LIBRARY.BOOK";
stmts = con.prepareStatement(template);
stmts.executeUpdate();
/*-----------Clerk Table Cleared------------*/
template = "DELETE FROM LIBRARY.CLERK";
stmts = con.prepareStatement(template);
stmts.executeUpdate();
/*-----------Librarian Table Cleared------------*/