-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBorrower.java
More file actions
255 lines (246 loc) · 9.17 KB
/
Copy pathBorrower.java
File metadata and controls
255 lines (246 loc) · 9.17 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
package javalibrary;
import java.io.*;
import java.util.*;
public class Borrower implements User, Serializable
{
private static final long serialVersionUID = 1L;
private int id;
private String name;
private String email;
private String password;
private int borroweringcounter;
private double totalrevenue;
static Scanner input = new Scanner(System.in);
static HashMap<Integer, Borrower> boorrowermap = new HashMap<>();
public Borrower(int id, String name, String email, String password, int borroweringcounter, float totalrevenue)
{
this.id = id;
this.name = name;
this.email = email;
this.password = password;
this.borroweringcounter = borroweringcounter;
this.totalrevenue = totalrevenue;
}
@Override
public int getId() {
return id;
}
@Override
public String getName() {
return name;
}
@Override
public String getEmail() {
return email;
}
@Override
public String getPassword() {
return password;
}
@Override
public void setId(int id) {
this.id = id;
}
@Override
public void setName(String name) {
this.name = name;
}
@Override
public void setEmail(String email) {
this.email = email;
}
@Override
public void setPassword(String password) {
this.password = password;
}
public double getTotalrevenue()
{
return totalrevenue;
}
public void setTotalrevenue(double totalrevenue)
{
this.totalrevenue = totalrevenue;
}
public int getBorroweringcounter() {
return borroweringcounter;
}
public void setBorroweringcounter(int borroweringcounter) {
this.borroweringcounter = borroweringcounter;
}
public static void savefile()
{
try (ObjectOutputStream writing = new ObjectOutputStream(new FileOutputStream("borrower.bin")))
{
writing.writeObject(boorrowermap);
writing.close();
System.out.println("Borrower data saved to file successfully.");
}
catch (IOException e)
{
System.out.println("Error while saving Borrower: " + e.getMessage());
}
}
public static void readfile()
{
try (ObjectInputStream loading = new ObjectInputStream(new FileInputStream("borrower.bin")))
{
boorrowermap = (HashMap<Integer, Borrower>) loading.readObject();
System.out.println("Borrower loaded from file successfully.");
loading.close();
}
catch (IOException | ClassNotFoundException e)
{
System.err.println("Error while loading Borrower: " + e.getMessage());
}
}
public static boolean addborrower(int id, String name, String email, String password, int borroweringcounter, float totalrevenue)
{
readfile();
if (boorrowermap.containsKey(id))
{
return false ;
}
Borrower borowwer = new Borrower(id, name, email, password, 0, 0);
boorrowermap.put(id, borowwer);
savefile();
return true ;
}
public static void editborrower(int borrowerid, String name, String email, String password, int borroweringcounter, float totalrevenue)
{
if (!boorrowermap.containsKey(borrowerid))
{
// System.out.println("No data found for ID " + borrowerid + ".");
return;
}
Borrower borrower = boorrowermap.get(borrowerid);
// System.out.println("Editing Borower: " + borrower.getName());
if (!name.isEmpty()) {
borrower.setName(name);
}
if (!email.isEmpty()) {
borrower.setEmail(email);
}
if (!password.isEmpty()) {
borrower.setPassword(password);
}
boorrowermap.put(borrowerid, borrower);
savefile();
// System.out.println("Borower data updated successfully.");
}
public static void deleteborrower(int borrowerid)
{
if (boorrowermap.containsKey(borrowerid))
{
boorrowermap.remove(borrowerid);
savefile();
//System.out.println("Borrower with ID " + borrowerid + " has been deleted.");
} else {
// System.out.println("No Borrower found with ID " + borrowerid + ".");
}
}
public static void searchBorrower (String searchTerm)
{
readfile();
boolean found = false;
for (User borrower : boorrowermap.values())
{
if (String.valueOf(borrower.getId()).equals(searchTerm) ||
borrower.getName().equalsIgnoreCase(searchTerm) ||
borrower.getEmail().equalsIgnoreCase(searchTerm))
{
// System.out.println("Borrower found: ");
// System.out.println("ID: " + borrower.getId());
// System.out.println("Name: " + borrower.getName());
// System.out.println("Email: " + borrower.getEmail());
found = true;
continue;
}
}
if (!found) {
// System.out.println("No Borrower found with the given search term.");
}
}
@Override
public boolean login(int id, String password) {
readfile();
for (Borrower borrower : boorrowermap.values()) {
if (borrower.getId() == id && borrower.getPassword().equals(password)) {
System.out.println("Login successful for " + borrower.getName());
return true;
}
}
System.out.println("Login failed: Invalid ID or password.");
return false;
}
public static void displayBorrowers()
{
readfile();
if (boorrowermap.isEmpty()) {
System.out.println("No borrowers available to display.");
return;
}
System.out.println("Borrower List:");
for (Borrower borrower : boorrowermap.values()) {
System.out.println("ID: " + borrower.getId());
System.out.println("Name: " + borrower.getName());
System.out.println("Email: " + borrower.getEmail());
System.out.println("Borrowing Counter: " +borrower.getBorroweringcounter());
System.out.println("Total Revenue: $" + borrower.getTotalrevenue());
}
}
public static void maxborrowcount() {
readfile();
if (boorrowermap.isEmpty()) {
System.out.println("No borrowers available to evaluate.");
return;
}
Borrower maxBorrower = null;
for (Borrower borrower : boorrowermap.values()) {
if (maxBorrower == null || borrower.getBorroweringcounter()> maxBorrower.getBorroweringcounter()) {
maxBorrower = borrower;
}
}
if (maxBorrower != null) {
System.out.println("Borrower with the highest borrowing count:");
System.out.println("ID: " + maxBorrower.getId());
System.out.println("Name: " + maxBorrower.getName());
System.out.println("Email: " + maxBorrower.getEmail());
System.out.println("Borrowing Counter: " + maxBorrower.getBorroweringcounter());
System.out.println("Total Revenue: $" + maxBorrower.getTotalrevenue());
}
}
public static void maxtotalrevenue()
{
readfile();
if (boorrowermap.isEmpty())
{
System.out.println("No borrowers available to evaluate.");
return;
}
Borrower maxRevenueBorrower = null;
for (Borrower borrower : boorrowermap.values())
{
if (maxRevenueBorrower == null || borrower.getTotalrevenue() > maxRevenueBorrower.getTotalrevenue())
{
maxRevenueBorrower = borrower;
}
}
if (maxRevenueBorrower != null)
{
System.out.println("Borrower with the highest total revenue:");
System.out.println("ID: " + maxRevenueBorrower.getId());
System.out.println("Name: " + maxRevenueBorrower.getName());
System.out.println("Email: " + maxRevenueBorrower.getEmail());
System.out.println("Borrowcount: " + maxRevenueBorrower.getBorroweringcounter());
System.out.println("Total Revenue: $" + maxRevenueBorrower.getTotalrevenue());
}
}
public static boolean ratebook(int BookId)
{
return Borrowing.rateBook(BookId);
}
public static String ViewBorrowingHistory(int BorrowerId)
{
return Borrowing.borrowingHistory(BorrowerId);
}
}