-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlibrarymanager.java
More file actions
1075 lines (1073 loc) · 48.3 KB
/
librarymanager.java
File metadata and controls
1075 lines (1073 loc) · 48.3 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.util.*;
import java.time.*;
import java.io.*;
interface libman{
void get_data();
void put_data();
}
class books implements libman, Serializable{
public static Scanner sc = new Scanner(System.in);
int book_id;
String isbn;
String book_name;
String author_name;
String publisher_name;
int no_of_copies;
private static final long serialVersionUID = 1L;
books(){
book_id = 0;
isbn = new String();
book_name = new String();
author_name = new String();
publisher_name = new String();
no_of_copies = 0;
}
public void get_data(){
System.out.println("Enter book id: ");
book_id = sc.nextInt();
sc.skip("(\r\n|[\n\r\u2028\u2029\u0085])?");
System.out.println("Enter ISBN: ");
isbn = sc.nextLine();
System.out.println("Enter Book name: ");
book_name = sc.nextLine();
System.out.println("Enter author's name: ");
author_name = sc.nextLine();
System.out.println("Enter publisher's name: ");
publisher_name = sc.nextLine();
System.out.println("Enter the number of copies: ");
no_of_copies =sc.nextInt();
}
public void put_data(){
System.out.println("Book id: " + book_id);
System.out.println("ISBN: " + isbn);
System.out.println("Book name: " + book_name);
System.out.println("Author's name: " + author_name);
System.out.println("Publisher's name: " + publisher_name);
System.out.println("Number of copies: " + no_of_copies);
}
int ret_bookid(){
return book_id;
}
String ret_bookname(){
return book_name;
}
void issued(){
no_of_copies--;
}
void returned(){
no_of_copies++;
}
}
class members implements libman, Serializable{
public static Scanner sc = new Scanner(System.in);
int member_id;
String member_name;
String address;
String email;
String phoneno;
int books_issued;
int warning;
int books_returned;
private static final long serialVersionUID = 1L;
members(){
member_id = 0;
member_name = new String();
address = new String();
email = new String();
phoneno = new String();
books_issued = 0;
books_returned = 0;
warning = 0;
}
public void get_data(){
System.out.println("Enter member id: ");
member_id = sc.nextInt();
sc.skip("(\r\n|[\n\r\u2028\u2029\u0085])?");
System.out.println("Enter member name: ");
member_name = sc.nextLine();
System.out.println("Enter address: ");
address = sc.nextLine();
System.out.println("Enter email: ");
email = sc.nextLine();
System.out.println("Enter Phone No: ");
phoneno = sc.nextLine();
books_issued = 0;
books_returned = 0;
warning = 0;
}
public void put_data(){
System.out.println("Member id: " + member_id);
System.out.println("Member Name: " + member_name);
System.out.println("Address: " + address);
System.out.println("Email: " + email);
System.out.println("Phone No: " + phoneno);
System.out.println("Book Issued: " + books_issued);
System.out.println("Books Returned: " + books_returned);
System.out.println("Warning: " + warning);
}
int ret_memid(){
return member_id;
}
String ret_memname(){
return member_name;
}
int ret_issue(){
return books_issued;
}
int ret_returned(){
return books_returned;
}
void issued(){
books_issued++;
}
void returned(){
books_returned++;
}
void warn(){
warning++;
}
}
class issue_records extends books implements libman, Serializable{
int member_id;
String mem_name;
UUID reference_id;
LocalDate issue_date;
private static final long serialVersionUID = 1L;
issue_records(){
member_id = 0;
mem_name = new String();
reference_id = UUID.randomUUID();
issue_date = LocalDate.now();
book_name = new String();
book_id = 0;
}
public void get_data(UUID ref_id, int bk_id, String bk_name, int m_id,String m_name){
reference_id = UUID.randomUUID();
book_id = bk_id;
book_name = bk_name;
issue_date = LocalDate.now();
member_id = m_id;
mem_name = m_name;
}
public void put_data(){
System.out.println("Ref ID: "+reference_id+", Book ID: "+book_id+", Book Name: "+ book_name+", Issue Date: "+issue_date+", Issued To: "+ mem_name);
}
}
class return_records extends issue_records implements Serializable,libman{
LocalDate return_date;
private static final long serialVersionUID = 1L;
return_records(){
member_id = 0;
mem_name = new String();
reference_id = UUID.randomUUID();
return_date = LocalDate.now();
book_name = new String();
book_id = 0;
}
public void get_data(String ref_id, int bk_id, String bk_name, int m_id,String m_name){
reference_id = UUID.randomUUID();
book_id = bk_id;
book_name = bk_name;
return_date = LocalDate.now();
member_id = m_id;
mem_name = m_name;
}
public void put_data(){
System.out.println("Ref ID: "+reference_id+", Book ID: "+book_id+", Book Name: "+ book_name+", Return Date: "+return_date+", Returned By: "+ mem_name);
}
}
class record_check implements Serializable{
int mem_id;
int book_id;
String status;
record_check(){
mem_id = 0;
book_id = 0;
status = new String();
}
void insert_record(int m, int b, String s){
mem_id = m;
book_id = b;
status = s;
}
int check_record(){
if(status.equals("issued")){
return 1;
}
else{
return 0;
}
}
int ret_memid(){
return mem_id;
}
int book_id(){
return book_id;
}
void update(){
status = "issued";
}
void update(int i){
status = "returned";
}
}
public class librarymanager{
public static void main(String args[]){
Scanner sc = new Scanner(System.in);
int choice,dummy=1;
ArrayList<books> booklist = new ArrayList<>();
ArrayList<members> memberlist = new ArrayList<>();
ArrayList<issue_records> issue_records_list = new ArrayList<>();
ArrayList<return_records> return_records_list = new ArrayList<>();
ArrayList<record_check> record_check_list = new ArrayList<>();
while(true){
System.out.print("\033[H\033[2J");//For clearing the terminal
System.out.flush();//For clearing the terminal
System.out.println("|-------------------------------------------------------------------------|");
System.out.println("| Library Managemnet System |");
System.out.println("|-------------------------------------------------------------------------|");
System.out.println("| 1)Add Member |");
System.out.println("| 2)Add Book |");
System.out.println("| 3)View All Members |");
System.out.println("| 4)View All Books |");
System.out.println("| 5)Search Book |");
System.out.println("| 6)Search Member |");
System.out.println("| 7)Delete Book |");
System.out.println("| 8)Delete Member |");
System.out.println("| 9)Edit Book |");
System.out.println("| 10)Edit Member |");
System.out.println("| 11)Issue Book |");
System.out.println("| 12)Return Book |");
System.out.println("| 13)Issue Records |");
System.out.println("| 14)Return Records |");
System.out.println("| 15)Exit |");
System.out.println("|-------------------------------------------------------------------------|");
System.out.print(" Enter your choice: ");
choice = sc.nextInt();
if(choice==1){
try{
FileInputStream fi = new FileInputStream("members.txt");
ObjectInputStream oi = new ObjectInputStream(fi);
memberlist = (ArrayList) oi.readObject();
fi.close();
}
catch(Exception e)
{
System.out.println(e);
}
System.out.print("\033[H\033[2J");//For clearing the terminal
System.out.flush();//For clearing the terminal
System.out.println("|-------------------------------------------------------------------------|");
System.out.println("| Library Managemnet System |");
System.out.println("|-------------------------------------------------------------------------|");
System.out.println("Add Member");
members mem = new members();
mem.get_data();
memberlist.add(mem);
try {
File fff = new File("members.txt");
fff.createNewFile();
FileOutputStream fout = new FileOutputStream(fff);
ObjectOutputStream obout= new ObjectOutputStream(fout);
obout.writeObject(memberlist);
obout.close();
fout.close();
} catch (IOException e) {
e.printStackTrace();
}
System.out.println("Successfully Added");
System.out.println("Enter any integer to continue....");
dummy = sc.nextInt();
}
else if(choice==2){
try{
FileInputStream fi = new FileInputStream("books.txt");
ObjectInputStream oi = new ObjectInputStream(fi);
booklist = (ArrayList) oi.readObject();
fi.close();
}
catch(Exception e)
{
System.out.println(e);
}
System.out.print("\033[H\033[2J");//For clearing the terminal
System.out.flush();//For clearing the terminal
System.out.println("|-------------------------------------------------------------------------|");
System.out.println("| Library Managemnet System |");
System.out.println("|-------------------------------------------------------------------------|");
System.out.println("Add Book");
books book = new books();
book.get_data();
booklist.add(book);
try {
File fff = new File("books.txt");
fff.createNewFile();
FileOutputStream fout = new FileOutputStream(fff);
ObjectOutputStream obout= new ObjectOutputStream(fout);
obout.writeObject(booklist);
obout.close();
fout.close();
} catch (IOException e) {
System.out.println(e);
}
System.out.println("Successfully Added");
System.out.println("Enter any integer to continue....");
dummy = sc.nextInt();
}
else if(choice==3){
System.out.print("\033[H\033[2J");//For clearing the terminal
System.out.flush();//For clearing the terminal
System.out.println("|-------------------------------------------------------------------------|");
System.out.println("| Library Managemnet System |");
System.out.println("|-------------------------------------------------------------------------|");
System.out.println("View All Members");
System.out.println();
try{
FileInputStream fi = new FileInputStream("members.txt");
ObjectInputStream oi = new ObjectInputStream(fi);
memberlist = (ArrayList) oi.readObject();
for(members m : memberlist){
m.put_data();
System.out.println();
}
fi.close();
}
catch(Exception e)
{
System.out.println(e);
}
System.out.println("Enter any integer to continue....");
dummy = sc.nextInt();
}
else if(choice==4){
System.out.print("\033[H\033[2J");//For clearing the terminal
System.out.flush();//For clearing the terminal
System.out.println("|-------------------------------------------------------------------------|");
System.out.println("| Library Managemnet System |");
System.out.println("|-------------------------------------------------------------------------|");
System.out.println("View All Books");
System.out.println();
try{
FileInputStream fi = new FileInputStream("books.txt");
ObjectInputStream oi = new ObjectInputStream(fi);
booklist = (ArrayList) oi.readObject();
for(books b : booklist){
b.put_data();
System.out.println();
}
fi.close();
}
catch(Exception e)
{
System.out.println(e);
}
System.out.println("Enter any integer to continue....");
dummy = sc.nextInt();
}
else if(choice==5){
int key,found = 0;
System.out.print("\033[H\033[2J");//For clearing the terminal
System.out.flush();//For clearing the terminal
System.out.println("|-------------------------------------------------------------------------|");
System.out.println("| Library Managemnet System |");
System.out.println("|-------------------------------------------------------------------------|");
System.out.println("Search Book");
System.out.println();
System.out.println("Enter book ID: ");
key = sc.nextInt();
System.out.println("Search Result: ");
System.out.println();
try{
FileInputStream fi = new FileInputStream("books.txt");
ObjectInputStream oi = new ObjectInputStream(fi);
booklist = (ArrayList) oi.readObject();
for(books b : booklist){
if(b.ret_bookid()==key){
b.put_data();
found = 1;
}
}
if(found==0){
System.out.println("Book not found.");
}
fi.close();
}
catch(Exception e)
{
System.out.println(e);
}
System.out.println("Enter any integer to continue....");
dummy = sc.nextInt();
}
else if(choice==6){
int key,found = 0;
System.out.print("\033[H\033[2J");//For clearing the terminal
System.out.flush();//For clearing the terminal
System.out.println("|-------------------------------------------------------------------------|");
System.out.println("| Library Managemnet System |");
System.out.println("|-------------------------------------------------------------------------|");
System.out.println("Search Member");
System.out.println();
System.out.println("Enter Member ID: ");
key = sc.nextInt();
System.out.println("Search Result: ");
System.out.println();
try{
FileInputStream fi = new FileInputStream("members.txt");
ObjectInputStream oi = new ObjectInputStream(fi);
memberlist = (ArrayList) oi.readObject();
for(members m : memberlist){
if(m.ret_memid()==key){
m.put_data();
found = 1;
System.out.println();
}
}
if(found==0){
System.out.println("Member not found.");
}
fi.close();
}
catch(Exception e)
{
System.out.println(e);
}
System.out.println("Enter any integer to continue....");
dummy = sc.nextInt();
}
else if(choice==7){
int key,found = 0;
System.out.print("\033[H\033[2J");//For clearing the terminal
System.out.flush();//For clearing the terminal
System.out.println("|-------------------------------------------------------------------------|");
System.out.println("| Library Managemnet System |");
System.out.println("|-------------------------------------------------------------------------|");
System.out.println("Delete Book");
System.out.println();
System.out.println("Enter book ID: ");
key = sc.nextInt();
System.out.println("Following book will be removed: ");
System.out.println();
try{
FileInputStream fi = new FileInputStream("books.txt");
ObjectInputStream oi = new ObjectInputStream(fi);
booklist = (ArrayList) oi.readObject();
for(books b : booklist){
if(b.ret_bookid()==key){
b.put_data();
booklist.remove(b);
found = 1;
}
}
if(found==0){
System.out.println("Book not found.");
}
fi.close();
}
catch(Exception e)
{
System.out.println(e);
}
try{
FileOutputStream fout = new FileOutputStream("books.txt");
ObjectOutputStream obout= new ObjectOutputStream(fout);
obout.writeObject(booklist);
obout.close();
fout.close();
}catch (IOException e) {
System.out.println(e);
}
System.out.println("Successfully Deleted");
System.out.println("Enter any integer to continue....");
dummy = sc.nextInt();
}
else if(choice==8){
int key,found = 0;
System.out.print("\033[H\033[2J");//For clearing the terminal
System.out.flush();//For clearing the terminal
System.out.println("|-------------------------------------------------------------------------|");
System.out.println("| Library Managemnet System |");
System.out.println("|-------------------------------------------------------------------------|");
System.out.println("Delete Member");
System.out.println();
System.out.println("Enter memeber ID: ");
key = sc.nextInt();
System.out.println("Following memeber will be removed: ");
System.out.println();
try{
FileInputStream fi = new FileInputStream("members.txt");
ObjectInputStream oi = new ObjectInputStream(fi);
memberlist = (ArrayList) oi.readObject();
for(members m : memberlist){
if(m.ret_memid()==key){
m.put_data();
memberlist.remove(m);
found = 1;
}
}
if(found==0){
System.out.println("Member not found.");
}
fi.close();
}
catch(Exception e)
{
System.out.println(e);
}
try{
FileOutputStream fout = new FileOutputStream("members.txt");
ObjectOutputStream obout= new ObjectOutputStream(fout);
obout.writeObject(memberlist);
obout.close();
fout.close();
}catch (IOException e) {
System.out.println(e);
}
System.out.println("Successfully Deleted");
System.out.println("Enter any integer to continue....");
dummy = sc.nextInt();
}
else if(choice==9){
int key,found = 0;
int i = 0, loc=0;
books book = new books();
System.out.print("\033[H\033[2J");//For clearing the terminal
System.out.flush();//For clearing the terminal
System.out.println("|-------------------------------------------------------------------------|");
System.out.println("| Library Managemnet System |");
System.out.println("|-------------------------------------------------------------------------|");
System.out.println("Edit Book");
System.out.println();
System.out.println("Enter book ID: ");
key = sc.nextInt();
System.out.println("Following book will be edited: ");
System.out.println();
try{
FileInputStream fi = new FileInputStream("books.txt");
ObjectInputStream oi = new ObjectInputStream(fi);
booklist = (ArrayList) oi.readObject();
for(books b : booklist){
if(b.ret_bookid()==key){
b.put_data();
booklist.remove(b);
found = 1;
loc = i;
System.out.println("Enter Updated Details: ");
book.get_data();
booklist.add(loc,book);
}
i++;
}
if(found==0){
//System.out.println("Book not found.");
}
fi.close();
}
catch(Exception e)
{
System.out.println(e);
}
try{
FileOutputStream fout = new FileOutputStream("books.txt");
ObjectOutputStream obout= new ObjectOutputStream(fout);
obout.writeObject(booklist);
obout.close();
fout.close();
}catch (IOException e) {
//System.out.println(e);
}
System.out.println("Successfully Updated");
System.out.println("Enter any integer to continue....");
dummy = sc.nextInt();
}
else if(choice==10){
int key,found = 0;
int i = 0, loc=0;
members mem = new members();
System.out.print("\033[H\033[2J");//For clearing the terminal
System.out.flush();//For clearing the terminal
System.out.println("|-------------------------------------------------------------------------|");
System.out.println("| Library Managemnet System |");
System.out.println("|-------------------------------------------------------------------------|");
System.out.println("Edit Member");
System.out.println();
System.out.println("Enter member ID: ");
key = sc.nextInt();
System.out.println("Following member details will be edited: ");
System.out.println();
try{
FileInputStream fi = new FileInputStream("members.txt");
ObjectInputStream oi = new ObjectInputStream(fi);
memberlist = (ArrayList) oi.readObject();
for(members m : memberlist){
if(m.ret_memid()==key){
m.put_data();
memberlist.remove(m);
found = 1;
loc = i;
System.out.println("Enter Updated Details: ");
mem.get_data();
memberlist.add(loc,mem);
}
i++;
}
if(found==0){
System.out.println("Member not found.");
}
fi.close();
}
catch(Exception e)
{
System.out.println(e);
}
try{
FileOutputStream fout = new FileOutputStream("members.txt");
ObjectOutputStream obout= new ObjectOutputStream(fout);
obout.writeObject(memberlist);
obout.close();
fout.close();
}catch (IOException e) {
System.out.println(e);
}
System.out.println("Successfully Updated");
System.out.println("Enter any integer to continue....");
dummy = sc.nextInt();
}
if(choice==11){
issue_records is_rec = new issue_records();
record_check rec_check = new record_check();
int keyb,keym,foundb = 0,foundm=0;
int ib = 0,im=0, locb=0,locm=0;
int confirm;
int m_id=0,b_id=0;
String m_name = new String();
String b_name = new String();
System.out.print("\033[H\033[2J");//For clearing the terminal
System.out.flush();//For clearing the terminal
System.out.println("|-------------------------------------------------------------------------|");
System.out.println("| Library Managemnet System |");
System.out.println("|-------------------------------------------------------------------------|");
System.out.println("Issue Book");
System.out.println();
System.out.println("Enter book ID: ");
keyb = sc.nextInt();
System.out.println("Enter Member ID: ");
keym = sc.nextInt();
try{
FileInputStream fi = new FileInputStream("record_check.txt");
ObjectInputStream oi = new ObjectInputStream(fi);
record_check_list = (ArrayList) oi.readObject();
fi.close();
}
catch(Exception e)
{
//System.out.println(e);
}
int decide = 0;
for(record_check r: record_check_list){
if(r.book_id==keyb && r.mem_id==keym){
if(r.check_record()==1){
decide = 1;
}
}
}
if(decide==0){
System.out.println("Following book will be issued: ");
System.out.println();
try{
FileInputStream fi = new FileInputStream("books.txt");
ObjectInputStream oi = new ObjectInputStream(fi);
booklist = (ArrayList) oi.readObject();
for(books b : booklist){
if(b.ret_bookid()==keyb){
b.put_data();
b_id = b.ret_bookid();
b_name = b.ret_bookname();
foundb=1;
System.out.println();
}
}
if(foundb==0){
System.out.println("Book not found.");
}
fi.close();
}
catch(Exception e)
{
//System.out.println(e);
}
try{
FileInputStream fi = new FileInputStream("members.txt");
ObjectInputStream oi = new ObjectInputStream(fi);
memberlist = (ArrayList) oi.readObject();
for(members m : memberlist){
if(m.ret_memid()==keym){
m.put_data();
m_id = m.ret_memid();
m_name = m.ret_memname();
foundm = 1;
System.out.println();
}
}
if(foundm==0){
System.out.println("Member not found.");
}
fi.close();
}
catch(Exception e)
{
//System.out.println(e);
}
System.out.println("Enter any integer to confirm: ");
confirm = sc.nextInt();
if(foundb==1 &&foundm==1){
try{
FileInputStream fi = new FileInputStream("books.txt");
ObjectInputStream oi = new ObjectInputStream(fi);
booklist = (ArrayList) oi.readObject();
for(books b : booklist){
if(b.ret_bookid()==keyb){
booklist.remove(b);
b.issued();
locb = ib;
booklist.add(locb,b);
}
ib++;
}
fi.close();
}
catch(Exception e)
{
//System.out.println(e);
}
try{
FileOutputStream fout = new FileOutputStream("books.txt");
ObjectOutputStream obout= new ObjectOutputStream(fout);
obout.writeObject(booklist);
obout.close();
fout.close();
}catch (IOException e) {
//System.out.println(e);
}
try{
FileInputStream fi = new FileInputStream("members.txt");
ObjectInputStream oi = new ObjectInputStream(fi);
memberlist = (ArrayList) oi.readObject();
for(members m : memberlist){
if(m.ret_memid()==keym){
memberlist.remove(m);
m.issued();
locm=im;
memberlist.add(locm,m);
}
im++;
}
fi.close();
}
catch(Exception e)
{
//System.out.println();
}
try{
FileOutputStream fout = new FileOutputStream("members.txt");
ObjectOutputStream obout= new ObjectOutputStream(fout);
obout.writeObject(memberlist);
obout.close();
fout.close();
}catch (IOException e) {
//System.out.println(e);
}
System.out.println("Successfully Issued");
try{
FileInputStream fi = new FileInputStream("issuerecords.txt");
ObjectInputStream oi = new ObjectInputStream(fi);
issue_records_list = (ArrayList) oi.readObject();
fi.close();
}
catch(Exception e)
{
//System.out.println(e);
}
is_rec.get_data(UUID.randomUUID(),b_id,b_name,m_id,m_name);
issue_records_list.add(is_rec);
rec_check.insert_record(m_id, b_id, "issued");
record_check_list.add(rec_check);
try {
FileOutputStream fout = new FileOutputStream("issuerecords.txt");
ObjectOutputStream obout= new ObjectOutputStream(fout);
obout.writeObject(issue_records_list);
obout.close();
fout.close();
} catch (IOException e) {
//e.printStackTrace();
}
try {
FileOutputStream fout = new FileOutputStream("record_check.txt");
ObjectOutputStream obout= new ObjectOutputStream(fout);
obout.writeObject(record_check_list);
obout.close();
fout.close();
} catch (IOException e) {
//e.printStackTrace();
}
is_rec.put_data();
}
System.out.println("Enter any integer to continue....");
dummy = sc.nextInt();
}
else if(decide==1){
System.out.println("Operation Failed!The book is already issued to this person.");
System.out.println("Enter any integer to continue....");
dummy = sc.nextInt();
}
}
else if(choice==12){
return_records ret_rec = new return_records();
int keyb,keym,foundb = 0,foundm=0;
int ib = 0,im=0, locb=0,locm=0;
int confirm;
int m_id=0,b_id=0;
String m_name = new String();
String b_name = new String();
System.out.print("\033[H\033[2J");//For clearing the terminal
System.out.flush();//For clearing the terminal
System.out.println("|-------------------------------------------------------------------------|");
System.out.println("| Library Managemnet System |");
System.out.println("|-------------------------------------------------------------------------|");
System.out.println("Return Book");
System.out.println();
System.out.println("Enter book ID: ");
keyb = sc.nextInt();
System.out.println("Enter Member ID: ");
keym = sc.nextInt();
try{
FileInputStream fi = new FileInputStream("record_check.txt");
ObjectInputStream oi = new ObjectInputStream(fi);
record_check_list = (ArrayList) oi.readObject();
fi.close();
}
catch(Exception e)
{
//System.out.println(e);
}
int decide = 0;
for(record_check r: record_check_list){
if(r.book_id==keyb && r.mem_id==keym){
if(r.check_record()==1){
decide = 1;
}
}
}
if(decide==1){
System.out.println("Following book will be returned: ");
System.out.println();
try{
FileInputStream fi = new FileInputStream("books.txt");
ObjectInputStream oi = new ObjectInputStream(fi);
booklist = (ArrayList) oi.readObject();
for(books b : booklist){
if(b.ret_bookid()==keyb){
b.put_data();
b_id = b.ret_bookid();
b_name = b.ret_bookname();
foundb=1;
System.out.println();
}
}
if(foundb==0){
System.out.println("Book not found.");
}
fi.close();
}
catch(Exception e)
{
//System.out.println(e);
}
try{
FileInputStream fi = new FileInputStream("members.txt");
ObjectInputStream oi = new ObjectInputStream(fi);
memberlist = (ArrayList) oi.readObject();
for(members m : memberlist){
if(m.ret_memid()==keym){
m.put_data();
m_id = m.ret_memid();
m_name = m.ret_memname();
foundm = 1;
System.out.println();
}
}
if(foundm==0){
System.out.println("Member not found.");
}
fi.close();
}
catch(Exception e)
{
//System.out.println(e);
}
System.out.println("Enter any integer to confirm: ");
confirm = sc.nextInt();
for(record_check r: record_check_list){
if(r.book_id==keyb && r.mem_id==keym){
if(r.check_record()==1){
r.update(1);
}
}
}
if(foundb==1 &&foundm==1){
try{
FileInputStream fi = new FileInputStream("books.txt");
ObjectInputStream oi = new ObjectInputStream(fi);
booklist = (ArrayList) oi.readObject();
for(books b : booklist){
if(b.ret_bookid()==keyb){
booklist.remove(b);
b.returned();
locb = ib;
booklist.add(locb,b);
}
ib++;
}
fi.close();
}
catch(Exception e)
{
//System.out.println(e);
}
try{
FileOutputStream fout = new FileOutputStream("books.txt");
ObjectOutputStream obout= new ObjectOutputStream(fout);
obout.writeObject(booklist);
obout.close();
fout.close();
}catch (IOException e) {
//System.out.println(e);
}
try{
FileInputStream fi = new FileInputStream("members.txt");
ObjectInputStream oi = new ObjectInputStream(fi);
memberlist = (ArrayList) oi.readObject();
for(members m : memberlist){
if(m.ret_memid()==keym){
memberlist.remove(m);
m.returned();
locm=im;
memberlist.add(locm,m);
}
im++;
}
fi.close();
}
catch(Exception e)
{
//System.out.println();
}
try{
FileOutputStream fout = new FileOutputStream("members.txt");
ObjectOutputStream obout= new ObjectOutputStream(fout);
obout.writeObject(memberlist);
obout.close();
fout.close();
}catch (IOException e) {
//System.out.println(e);
}
System.out.println("Successfully Returned");
try{
File iff = new File("returnrecords.txt");
iff.createNewFile();
FileInputStream fi = new FileInputStream(iff);
ObjectInputStream oi = new ObjectInputStream(fi);
return_records_list = (ArrayList) oi.readObject();
fi.close();
}
catch(Exception e)
{
//System.out.println(e);
}
ret_rec.get_data(UUID.randomUUID(),b_id,b_name,m_id,m_name);
return_records_list.add(ret_rec);
try {
FileOutputStream fout = new FileOutputStream("returnrecords.txt");
ObjectOutputStream obout= new ObjectOutputStream(fout);
obout.writeObject(return_records_list);
obout.close();
fout.close();
} catch (IOException e) {
// e.printStackTrace();
}
try {
FileOutputStream fout = new FileOutputStream("record_check.txt");
ObjectOutputStream obout= new ObjectOutputStream(fout);