-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDSMSDriver.java
540 lines (456 loc) · 14 KB
/
DSMSDriver.java
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
package a3;
import java.util.HashMap;
import java.util.Scanner;
public class DSMSDriver {
static boolean begin = true;
private static final java.lang.Object lock = new java.lang.Object();
// Print manager operations
public static void printOptionsM() {
System.out.println("Select an operation:");
System.out.println("\t1 Add an item"
+ "\n\t2 Remove an item"
+ "\n\t3 List items"
+ "\n\t-1 Done");
}
// Print customer operations
public static void printOptionsU() {
System.out.println("Select an operation:");
System.out.println("\t4 Purchase an item"
+ "\n\t5 Find an item"
+ "\n\t6 Return an item"
+ "\n\t7 Exchange an item"
+ "\n\t8 Test concurrent exchange"
+ "\n\t-1 Done");
}
// Enter customer or manager ID
public synchronized static String enterID(Scanner in) {
if(!begin) {
try {
synchronized(lock) {
lock.wait();
}
} catch (InterruptedException e) {
e.printStackTrace();
}
}
boolean verified = false;
String ID = "";
do {
System.out.print("Enter the ID of the customer or manager performing the operation: ");
ID = in.nextLine();
if(ID.matches("(ON|BC|QC)M[0-9]{4}")) {
verified = true;
printOptionsM();
}
else if(ID.matches("(ON|BC|QC)U[0-9]{4}")) {
verified = true;
printOptionsU();
}
else {
System.out.println("Invalid ID. Please try again.");
}
}while(!verified);
return ID;
}
// Choose an action
public static int enterChoice(Scanner in) {
if(!begin) {
try {
synchronized(lock) {
lock.wait();
}
} catch (InterruptedException e) {
e.printStackTrace();
}
}
synchronized(lock) {
int choice = in.nextInt();
return choice;
}
}
// Verify the format of an ID
public static String verifyItemID(Scanner in) {
String itemID = "";
do {
System.out.print("ID: ");
itemID = in.nextLine();
if(!itemID.matches("(ON|BC|QC)[0-9]{4}")) {
System.out.println("Invalid ID");
}
}while(!itemID.matches("(ON|BC|QC)[0-9]{4}"));
return itemID;
}
public static void main(String[] args) {
// Keep track of managers and clients created
HashMap<String, DSMSManagerClient> managers = new HashMap<String, DSMSManagerClient>();
HashMap<String, DSMSCustomerClient> customers = new HashMap<String, DSMSCustomerClient>();
boolean running = true;
Scanner in = new Scanner(System.in);
System.out.println("----- Welcome to the system! -----");
do {
String ID = enterID(in); // Enter customer or manager ID
int choice = enterChoice(in); // Select operation
in.nextLine();
begin = false;
switch(choice) {
case 1: { // Add item
// Gather user input
System.out.println("Enter the ID, name, quantity, and price of the item.");
String itemID = verifyItemID(in);
System.out.print("Name: ");
String itemName = in.nextLine();
System.out.print("Quantity: ");
short quantity = in.nextShort();
System.out.print("Price: ");
double price = in.nextDouble();
if(managers.containsKey(ID)) { // Check if manager exists
// Run requested operation in a thread
Runnable r = () -> {
try {
System.out.println((managers.get(ID).add(itemID, itemName, quantity, price))?"Item successfully added":"Item could not be added");
// Make sure that the console does not print out of order
synchronized(lock) {
lock.notify();
begin = true;
}
}catch(Exception e) {
System.out.println(e.getStackTrace());
}
};
// Start thread
Thread operation = new Thread(r);
operation.start();
} else { // If the manager doesn't already exist, create one
DSMSManagerClient newMC = new DSMSManagerClient(args, ID);
managers.put(ID, newMC);
// Run requested operation in a thread
Runnable r = () -> {
try {
System.out.println((newMC.add(itemID, itemName, quantity, price))?"Item successfully added":"Item could not be added");
// Make sure that the console does not print out of order
synchronized(lock) {
lock.notify();
begin = true;
}
}catch(Exception e) {
System.out.println(e.getStackTrace());
}
};
// Start thread
Thread operation = new Thread(r);
operation.start();
}
in.nextLine();
break;}
case 2:{ // Remove item
System.out.println("Enter the ID and quantity of the item: ");
String itemID = verifyItemID(in);
System.out.print("Quantity: ");
short quantity = in.nextShort();
if(managers.containsKey(ID)) {
// Run requested operation in a thread
Runnable r = () -> {
try {
if(managers.get(ID).remove(itemID, quantity)) System.out.println("Item successfully removed");
else System.out.println("Item could not be removed");
synchronized(lock) {
lock.notify();
begin = true;
}
}catch(Exception e) {
System.out.println(e.getStackTrace());
}
};
Thread operation = new Thread(r);
operation.start();
} else {
DSMSManagerClient newMC = new DSMSManagerClient(args, ID);
managers.put(ID, newMC);
// Run requested operation in a thread
Runnable r = () -> {
try {
if(newMC.remove(itemID, quantity)) System.out.println("Item successfully removed");
else System.out.println("Item could not be removed");
synchronized(lock) {
lock.notify();
begin = true;
}
}catch(Exception e) {
System.out.println(e.getStackTrace());
}
};
Thread operation = new Thread(r);
operation.start();
}
in.nextLine();
break;}
case 3:{ // List items
if(managers.containsKey(ID)) {
// Run requested operation in a thread
Runnable r = () -> {
try {
managers.get(ID).list();
synchronized(lock) {
lock.notify();
begin = true;
}
}catch(Exception e) {
System.out.println(e.getStackTrace());
}
};
Thread operation = new Thread(r);
operation.start();
} else {
DSMSManagerClient newMC = new DSMSManagerClient(args, ID);
managers.put(ID, newMC);
// Run requested operation in a thread
Runnable r = () -> {
try {
newMC.list();
synchronized(lock) {
lock.notify();
begin = true;
}
}catch(Exception e) {
System.out.println(e.getStackTrace());
}
};
Thread operation = new Thread(r);
operation.start();
}
break;}
case 4:{ // Purchase item
System.out.println("Enter the ID of the item: ");
String itemID = verifyItemID(in);
System.out.print("\nEnter the date of the purchase (dd-mm-yyyy) or 'today'): ");
String date = in.nextLine();
a3.Date d;
if(date.equalsIgnoreCase("today")) { d = a3.Date.getCurrentDate(); }
else {
String[] parse = date.split("-");
Short day = Short.parseShort(parse[0]);
Short month = Short.parseShort(parse[1]);
Short year = Short.parseShort(parse[2]);
d = new a3.Date(day, month, year);
}
DSMSCustomerClient temp;
// Check if customer already exists; if not, create one
if(customers.containsKey(ID)) {
temp = customers.get(ID);
} else {
temp = new DSMSCustomerClient(args, ID);
customers.put(ID, temp);
System.out.println("Customer created");
}
// Run requested operation in a thread
Runnable r = () -> {
try {
int status = temp.purchase(itemID, d); // Attempt to purchase item
if(status == -1) { // If -1 is returned, the item is not in stock.
// Ask the user if they would like to be added to the waiting list
System.out.println("This item is not in stock. Would you like to be added to a waiting list?\nOnce the item becomes available, it will be automatically purchased.");
String answer = in.nextLine();
if(answer.equalsIgnoreCase("yes")) {
temp.purchase(itemID+" wait", d); // The server will now wait until the item is in stock to allow the purchase
}
}
else if(status == 2) System.out.println("User " + temp.customerID + " does not have enough money for this item."); // If 2 is returned, the purchaser doesn't have enough money
else System.out.println("User " + temp.customerID + " has $" + temp.budget); // Otherwise print remaining budget
synchronized(lock) {
lock.notify();
begin = true;
}
}catch(Exception e) {
System.out.println(e.getStackTrace());
}
};
Thread operation = new Thread(r);
operation.start();
break;}
case 5:{ // Find item
System.out.print("Enter the name of the item: ");
String itemName = in.nextLine();
if(customers.containsKey(ID)) {
// Run requested operation in a thread
Runnable r = () -> {
try {
if(!(customers.get(ID).find(itemName))) {
System.out.println("No item was found.");
}
synchronized(lock) {
lock.notify();
begin = true;
}
}catch(Exception e) {
System.out.println(e.getStackTrace());
}
};
Thread operation = new Thread(r);
operation.start();
} else {
DSMSCustomerClient newCC = new DSMSCustomerClient(args, ID);
customers.put(ID, newCC);
// Run requested operation in a thread
Runnable r = () -> {
try {
if(!(customers.get(ID).find(itemName))) {
System.out.println("No item was found.");
}
synchronized(lock) {
lock.notify();
begin = true;
}
}catch(Exception e) {
System.out.println(e.getStackTrace());
}
};
Thread operation = new Thread(r);
operation.start();
}
break;}
case 6:{ // Return item
System.out.println("Enter the ID of the item: ");
String itemID = verifyItemID(in);
System.out.print("\nEnter the date of the return (dd-mm-yyyy) or 'today'): ");
String date = in.nextLine();
a3.Date d;
if(date.equalsIgnoreCase("today")) { d = a3.Date.getCurrentDate(); }
else {
String[] parse = date.split("-");
Short day = Short.parseShort(parse[0]);
Short month = Short.parseShort(parse[1]);
Short year = Short.parseShort(parse[2]);
d = new a3.Date(day, month, year);
}
if(customers.containsKey(ID)) {
// Run requested operation in a thread
Runnable r = () -> {
try {
if(customers.get(ID).returnItem(itemID, d)) {
System.out.println("Item successfully returned");
}
else {
System.out.println("Item could not be returned");
}
synchronized(lock) {
lock.notify();
begin = true;
}
}catch(Exception e) {
System.out.println(e.getStackTrace());
}
};
Thread operation = new Thread(r);
operation.start();
} else {
DSMSCustomerClient newCC = new DSMSCustomerClient(args, ID);
customers.put(ID, newCC);
// Run requested operation in a thread
Runnable r = () -> {
try {
newCC.returnItem(itemID, d);
synchronized(lock) {
lock.notify();
begin = true;
}
}catch(Exception e) {
System.out.println(e.getStackTrace());
}
};
Thread operation = new Thread(r);
operation.start();
}
break;}
case 7:{ // Exchange item
System.out.println("Enter the ID of the old item: ");
String oldItemID = verifyItemID(in);
System.out.println("Enter the ID of the new item: ");
String newItemID = verifyItemID(in);
if(customers.containsKey(ID)) {
// Run requested operation in a thread
Runnable r = () -> {
try {
if(customers.get(ID).exchangeItem(ID, newItemID, oldItemID)) {
System.out.println("Item successfully exchanged");
}
else {
System.out.println("Item could not be exchanged");
}
synchronized(lock) {
lock.notify();
begin = true;
}
}catch(Exception e) {
e.printStackTrace();
}
};
Thread operation = new Thread(r);
operation.start();
} else {
System.out.println("Item could not be exchanged");
synchronized(lock) {
lock.notify();
begin = true;
}
}
break;}
case 8:{ // Exchange item
System.out.println("Enter the ID of the old item: ");
String oldItemID = verifyItemID(in);
System.out.println("Enter the ID of the new item: ");
String newItemID = verifyItemID(in);
System.out.print("Enter the ID of the second user: ");
String secondCustomer = in.nextLine();
System.out.println("\n" + secondCustomer + " will simultaneously try to make this exchange\n");
if(customers.containsKey(ID) && customers.containsKey(secondCustomer)) {
// Run requested operation in a thread
Runnable r = () -> {
try {
if(customers.get(ID).exchangeItem(ID, newItemID, oldItemID)) {
System.out.println(ID + " has successfully exchanged " + oldItemID + " for " + newItemID);
}
else {
System.out.println(ID + " could not exchange " + oldItemID + " for " + newItemID);
}
synchronized(lock) {
lock.notify();
begin = true;
}
}catch(Exception e) {
e.printStackTrace();
}
};
Thread operation = new Thread(r);
Runnable r2 = () -> {
try {
if(customers.get(secondCustomer).exchangeItem(secondCustomer, newItemID, oldItemID)) {
System.out.println(secondCustomer + " has successfully exchanged " + oldItemID + " for " + newItemID);
}
else {
System.out.println(secondCustomer + " could not exchange " + oldItemID + " for " + newItemID);
}
synchronized(lock) {
lock.notify();
begin = true;
}
}catch(Exception e) {
e.printStackTrace();
}
};
Thread operation2 = new Thread(r2);
operation.start();
operation2.start();
} else{
System.out.println("Cannot perform exchange. Both customers must have purchased an item");
synchronized(lock) {
lock.notify();
begin = true;
}
}
break;
}
default: System.out.println("Thanks for using the system!"); running=false; ;
}
}while(running);
}
}