-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWarehouse.java
More file actions
382 lines (346 loc) · 11.9 KB
/
Copy pathWarehouse.java
File metadata and controls
382 lines (346 loc) · 11.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
import java.util.*;
import java.io.*;
public class Warehouse implements Serializable {
private static final long serialVersionUID = 1L;
//private Catalog catalog;
private ProductList productList;
private ClientList clientList;
private SupplierList supplierList;
private InvoiceList invoiceList;
private static Warehouse warehouse;
private Warehouse() {
//catalog = Catalog.instance();
clientList = ClientList.instance();
productList = ProductList.instance();
supplierList = SupplierList.instance();
invoiceList = InvoiceList.instance();
}
public static Warehouse instance() {
if (warehouse == null) {
//ClientIdServer.instance(); // instantiate all singletons
return (warehouse = new Warehouse());
} else {
return warehouse;
}
}
public Client addClient(String name, String address, String phone) {
Client client = new Client(name, address, phone);
if (clientList.insertClient(client)) {
return (client);
}
return null;
}
public Product addProduct(String name, int quantity, double price) {
Product product = new Product(name, quantity, price);
if (productList.insertProduct(product)) {
return (product);
}
return null;
}
public Supplier addSupplier(String name, String address) {
Supplier supplier = new Supplier(name, address);
if (supplierList.insertSupplier(supplier)) {
return (supplier);
}
return null;
}
public Iterator<Client> getClients() {
return clientList.getClients();
}
public Iterator<Product> getProducts() {
return productList.getProducts();
}
public Iterator<Supplier> getSuppliers() {
return supplierList.getSuppliers();
}
public boolean clientExists(String targetId) {
Iterator<Client> allClients = getClients();
while (allClients.hasNext()) {
Client client = (Client)(allClients.next());
String id = client.getId();
System.out.println(id);
if (client.equals(targetId)) {
//System.out.println("ID " + targetId + " found.");
return true;
}
}
return false;
}
public boolean productExists(String targetName) {
Iterator<Product> allProducts = getProducts();
while (allProducts.hasNext()) {
Product product = (Product)(allProducts.next());
//String name = product.getName();
//System.out.println(name);
if (product.equals(targetName)) {
//System.out.println("Name " + targetName + " found.");
return true;
}
}
return false;
}
public Product getProductByName(String targetName) {
Iterator<Product> allProducts = getProducts();
while (allProducts.hasNext()) {
Product product = (Product)(allProducts.next());
if (product.equals(targetName)) {
//System.out.println("Name " + targetName + " found.");
return product;
}
}
return null;
}
public Supplier getSupplierByName(String targetName) {
Iterator<Supplier> allSuppliers = getSuppliers();
while (allSuppliers.hasNext()) {
Supplier supplier = (Supplier) (allSuppliers.next());
if (supplier.equals(targetName)) {
//System.out.println("Supplier " + targetName + " found.");
return supplier;
}
}
return null;
}
public Client getClientById(String targetId) {
Iterator<Client> allClients = getClients();
while (allClients.hasNext()) {
Client client = (Client)(allClients.next());
//String name = client.getName();
//System.out.println(name);
if (client.equals(targetId)) {
//System.out.println("Client ID " + targetId + " found.");
return client;
}
}
return null;
}
public static Warehouse retrieve() {
try {
FileInputStream file = new FileInputStream("WarehouseData");
ObjectInputStream input = new ObjectInputStream(file);
input.readObject();
ClientIdServer.retrieve(input);
input.close();
return warehouse;
} catch(IOException ioe) {
ioe.printStackTrace();
return null;
} catch(ClassNotFoundException cnfe) {
cnfe.printStackTrace();
return null;
}
}
public boolean editClientAddress(String targetId, String newAddress) {
Iterator<Client> allClients = getClients();
// search for client by id
// (iterate until client.id == id)
while (allClients.hasNext()) {
Client client = (Client)(allClients.next());
String id = client.getId();
System.out.println(id);
if (client.equals(targetId)) {
//System.out.println("ID " + targetId + " found.");
client.setAddress(newAddress);
return true;
}
}
return false;
}
public boolean editClientPhone(String targetId, String newPhone) {
Iterator<Client> allClients = getClients();
// search for client by id
// (iterate until client.id == id)
while (allClients.hasNext()) {
Client client = (Client)(allClients.next());
String id = client.getId();
System.out.println(id);
if (client.equals(targetId)) {
//System.out.println("ID " + targetId + " found.");
client.setPhone(newPhone);
return true;
}
}
return false;
}
public boolean editProductPrice(String targetName, double newPrice) {
Iterator<Product> allProducts = getProducts();
while (allProducts.hasNext()) {
Product product = (Product)(allProducts.next());
String name = product.getName();
System.out.println(name);
if (product.equals(targetName)) {
//System.out.println("Name " + targetName + " found.");
product.setPrice(newPrice);
return true;
}
}
return false;
}
public boolean editSupplierAddress(String targetName, String newAddress) {
Iterator<Supplier> allSuppliers = getSuppliers();
// search for supplier by name
// (iterate until supplier.name == name)
while (allSuppliers.hasNext()) {
Supplier supplier = (Supplier) (allSuppliers.next());
String name = supplier.getName();
System.out.println(name);
if (supplier.equals(targetName)) {
//System.out.println("Name " + targetName + " found.");
supplier.setAddress(newAddress);
return true;
}
}
return false;
}
public boolean insertProductToSupplier(String targetName, Product product, double price) {
Iterator<Supplier> allSuppliers = getSuppliers();
// search for supplier by name
// (iterate until supplier.name == name)
while (allSuppliers.hasNext()) {
Supplier supplier = (Supplier) (allSuppliers.next());
String name = supplier.getName();
System.out.println(name);
if (supplier.equals(targetName)) {
//System.out.println("Name " + targetName + " found.");
supplier.insertProduct(product, price);
return true;
}
}
return false;
}
public boolean showSuppliersOfProduct(String targetName) {
Iterator<Product> allProducts = getProducts();
// search for product by name
// (iterate until product.name == name)
while (allProducts.hasNext()) {
Product product = (Product) (allProducts.next());
// String name = product.getName();
// System.out.println(name);
if (product.equals(targetName)) {
//System.out.println("Name " + targetName + " found.");
product.getCatalog();
return true;
}
}
return false;
}
public boolean showProductsOfSupplier(String targetName) {
Iterator<Supplier> allSuppliers = getSuppliers();
// search for supplier by name
// (iterate until supplier.name == name)
while (allSuppliers.hasNext()) {
Supplier supplier = (Supplier) (allSuppliers.next());
// String name = supplier.getName();
// System.out.println(name);
if (supplier.equals(targetName)) {
//System.out.println("Name " + targetName + " found.");
supplier.getCatalog();
return true;
}
}
return false;
}
public static boolean save() {
try {
FileOutputStream file = new FileOutputStream("WarehouseData");
ObjectOutputStream output = new ObjectOutputStream(file);
output.writeObject(warehouse);
output.writeObject(ClientIdServer.instance());
output.close();
return true;
} catch(IOException ioe) {
ioe.printStackTrace();
return false;
}
}
public boolean addToCart(String clientId, String productName, int quantity) {
//System.out.println("Dummy function");
// Client and Product both exist, verified before this function is called
// First, get the Product so that it can be passed into the CartItem constructor
Product product = getProductByName(productName);
// Create a CartItem from Product and quantity, and then add this CartItem to Client.cart
Client client = getClientById(clientId);
CartItem item = new CartItem(client, product, quantity);
client.addToCart(item);
return true;
}
public void displayCart(String clientId) {
Client client = getClientById(clientId);
Iterator<CartItem> cart = client.getCartItems();
// Display ALL items
while (cart.hasNext()) {
CartItem cartItem = (CartItem) (cart.next());
String itemString = cartItem.toString();
System.out.println(itemString);
}
}
public boolean inCart(String clientId, String targetName) { // Checks if item in client's cart
Client client = getClientById(clientId);
return client.inCart(targetName);
}
public void editCart(String clientId, String productName, int newQuant) {
Client client = getClientById(clientId);
client.editCart(productName, newQuant);
}
public boolean processOrder(String clientId) {
Client client = getClientById(clientId);
Invoice invoice = client.processOrder();
invoiceList.insertInvoice(invoice);
return true; // if successful
}
public Iterator<Transaction> getTransactions(String clientID, Calendar date) {
Client client = clientList.search(clientID);
if (client == null) {
return (null);
}
return client.getTransactions(date);
}
public void acceptPayment(String clientID, Double payment) {
double balance = 0;
Client client = getClientById(clientID);
balance = client.getBalance();
System.out.println("Client ID: " + clientID + " Balance: " + balance);
balance = balance - payment;
client.setBalance(balance);
System.out.println("Client ID: " + clientID + " Balance: " + balance);
}
public void receiveShipment(String supp, String prod, String quan) {
if (warehouse.getSupplierByName(supp) != null) {
Supplier supplier = warehouse.getSupplierByName(supp);
// check if product exists from Supplier
if (supplier.getPair(prod) != null) {
// Update warehouse quantity
getProductByName(prod).addQuantity(Integer.parseInt(quan));
} else {
System.out.println("Product not found");
}
} else {
System.out.println("Supplier not found");
}
}
private void writeObject(java.io.ObjectOutputStream output) {
try {
output.defaultWriteObject();
output.writeObject(warehouse);
} catch(IOException ioe) {
System.out.println(ioe);
}
}
private void readObject(java.io.ObjectInputStream input) {
try {
input.defaultReadObject();
if (warehouse == null) {
warehouse = (Warehouse) input.readObject();
} else {
input.readObject();
}
} catch(IOException ioe) {
ioe.printStackTrace();
} catch(Exception e) {
e.printStackTrace();
}
}
public String toString() {
return clientList.toString() + productList.toString() + supplierList.toString();
}
}