-
Notifications
You must be signed in to change notification settings - Fork 1
/
SchedulerDriver.java
executable file
·429 lines (382 loc) · 14.3 KB
/
SchedulerDriver.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
/**
*
* @author Josh Schwarz (a1645899), Jonathan Blieschke (a1646288)
*/
import java.util.*;
import java.io.*;
public class SchedulerDriver {
private static int firstSeats = 10;
private static int buisSeats = 20;
private static int econSeats = 70;
private final static PriorityQueue<Process> overFull = new PriorityQueue<>();
private static int overFullSize = -1;
//The Process class will sort each request in the given order
private static class Process implements Comparable<Process> {
// Constructor
public Process(int time, String act, String type, int seats, String id) {
this._time = time;
this._action = act;
this._type = type;
this._seats = seats;
this._id = id;
}
// Methods
@Override
public int compareTo(Process proc) {
// this <(-1) =(0) >(+1) (lower value -> higher priority)
if ((!this._action.equals(proc.action())) && (!this._id.equals(proc.agentID()))) {
return this._action.equals("C") ? -1 : 1;
}
if (Integer.compare(this._time, proc.time()) != 0) {
return this._time - proc.time();
}
if (!this._type.equals(proc.type())) {
return this.typeCompAlt(this._type, proc.type());
//return this.typeComp(this._type, proc.type());
}
if (Integer.compare(this._seats, proc.seats()) != 0) {
return proc.seats() - this._seats;
}
return this._id.compareTo(proc.agentID());
}
@Override
public String toString() {
return this._id + " " + this._action + " " + this._type + " " + this._seats + " " + this._time;
}
public int time() {
return this._time;
}
public String action() {
return this._action;
}
public String type() {
return this._type;
}
public int seats() {
return this._seats;
}
public String agentID() {
return this._id;
}
// Variables
private final int _time;
private final String _action;
private final String _type;
private final int _seats;
private final String _id;
// Helpers
/* Returns:
* <0 when a > b
* =0 when a = b
* >0 when a < b */
private int typeCompAlt(String a, String b) {
String cmp = a + b;
switch (cmp) {
case "FB":
return -1;
case "FE":
return -1;
case "BF":
return 1;
case "EF":
return 1;
case "BE":
return -1;
case "EB":
return 1;
}
return 0;
}
private int typeComp(String a, String b) {
if (a.equals(b)) {
return 0;
}
if (a.equals("F")) {
return -1;
}
if (b.equals("F")) {
return 1;
}
if (a.equals("B")) {
return -1;
}
if (b.equals("B")) {
return 1;
}
// Should Never Happen
return 0;
}
}
//Prints out the information in each batch in order, as per spec
private static void printBatch(ArrayList<Process> batch) {
String temp = "";
int tempCount = batch.size();
int count = batch.size();
int semaphore = 1;
//Count seats +/- from total avaliable. Any that fall outside bounds will be added to the overflow queue.
for (Process p : batch) {
if (p.action().equals("R")) {
switch (p.type()) {
case "F":
if (firstSeats - p.seats() >= 0) {
firstSeats = firstSeats - p.seats();
} else {
overFull.add(p);
}
break;
case "B":
if (buisSeats - p.seats() >= 0) {
buisSeats = buisSeats - p.seats();
} else {
overFull.add(p);
}
break;
case "E":
if (econSeats - p.seats() >= 0) {
econSeats = econSeats - p.seats();
} else {
overFull.add(p);
}
break;
}
} else {
switch (p.type()) {
case "F":
firstSeats = firstSeats + p.seats();
break;
case "B":
buisSeats = buisSeats + p.seats();
break;
case "E":
econSeats = econSeats + p.seats();
break;
}
}
}
//Remove the un-processable requests from the origional batch
for (Process p : overFull) {
batch.remove(p);
tempCount--;
}
//ADMIT A BATCH
for (Process p : batch) {
temp = temp + p.agentID();
if (tempCount > 1) {
temp = temp + ", ";
}
tempCount--;
}
if (!batch.isEmpty()) {
System.out.println("Admit a batch (" + temp + ")");
}
//AGENT * WAITS & SEMAPHORE
for (Process p : batch) {
semaphore--;
System.out.println(p.agentID() + " executes wait operation, semaphore = " + semaphore);
}
//AGENT ACTIVITY
for (Process p : batch) {
//CANCELATION
if (p.action().equals("C")) {
overFullSize = 0;
System.out.println(p.agentID() + " enters the system");
String resSeat = (p.agentID() + " cancels " + p.seats());
if (p.seats() > 1) {
resSeat = resSeat + " seats in";
} else {
resSeat = resSeat + " seat in";
}
switch (p.type()) {
case "F":
resSeat = resSeat + " First-class";
break;
case "B":
resSeat = resSeat + " Business-class";
break;
case "E":
resSeat = resSeat + " Economy-class";
break;
}
System.out.println(resSeat);
semaphore++;
System.out.println(p.agentID() + " executes signal operation, semaphore = " + semaphore);
System.out.println(p.agentID() + " exits the system");
} else {
//RESERVATION
System.out.println(p.agentID() + " enters the system");
String resSeat = (p.agentID() + " reserves " + p.seats());
if (p.seats() > 1) {
resSeat = resSeat + " seats in";
} else {
resSeat = resSeat + " seat in";
}
switch (p.type()) {
case "F":
resSeat = resSeat + " First-class";
break;
case "B":
resSeat = resSeat + " Business-class";
break;
case "E":
resSeat = resSeat + " Economy-class";
break;
}
System.out.println(resSeat);
semaphore++;
System.out.println(p.agentID() + " executes signal operation, semaphore = " + semaphore);
System.out.println(p.agentID() + " exits the system");
}
}
}
public static void main(String args[]) {
PriorityQueue<Process> cancel = new PriorityQueue<>();
PriorityQueue<Process> res = new PriorityQueue<>();
HashMap<String, Integer> map = new HashMap<>();
ArrayList<Process> batch = new ArrayList<>();
FileInputStream fstream = null;
File file = new File(args[0]);
String strLine;
//Parse File
try {
fstream = new FileInputStream(file);
} catch (IOException e) {
}
BufferedReader br = new BufferedReader(new InputStreamReader(fstream));
//Create objects and push on appropriate queue
try {
while ((strLine = br.readLine()) != null) {
//AGENT NEEDS SPACE BEFORE DIGIT
String[] splitString = strLine.split(" ");
String tempNum = splitString[0];
int space = tempNum.length();
tempNum = tempNum.substring(0, space - 1) + " " + tempNum.substring(space - 1, tempNum.length());
String agentNum = tempNum;
String act = splitString[1];
String type = splitString[2];
int seats = Integer.parseInt(splitString[3]);
int time = Integer.parseInt(splitString[4]);
if (act.equals("R")) {
res.add(new Process(time, act, type, seats, agentNum));
} else {
cancel.add(new Process(time, act, type, seats, agentNum));
}
}
br.close();
} catch (IOException e) {
}
//Process requests until we run out, or cant process any more
while (res.size() >= 0 && cancel.size() >= 0) {
//If every queue is empty, we processed everything correctly.
if (res.isEmpty() && cancel.isEmpty() && overFull.isEmpty()) {
break;
}
int prev_time = -1;
String agent = null;
if (cancel.peek() != null) {
agent = cancel.peek().agentID();
}
if (map.get(agent) != null) {
prev_time = map.get(agent);
if (res.peek().time() == prev_time) {
//Reservation
//Check for batch
while (true) {
Process top = res.poll();
if (top != null) {
batch.add(top);
if (res.peek() != null) {
if (top.seats() != res.peek().seats()) {
break;
} else if (!top.type().equals(res.peek().type())) {
break;
} else if (!top.action().equals(res.peek().action())) {
break;
}
} else {
break;
}
} else {
break;
}
}
//process the batch
batch.stream().forEach((p) -> {
map.put(p.agentID(), p.time());
});
printBatch(batch);
batch.clear();
} else {
//Cancellation
//Check for batch
while (true) {
Process top = cancel.poll();
if (top != null) {
batch.add(top);
if (cancel.peek() != null) {
if (top.seats() != cancel.peek().seats()) {
break;
} else if (!top.type().equals(cancel.peek().type())) {
break;
} else if (!top.action().equals(cancel.peek().action())) {
break;
}
} else {
break;
}
} else {
break;
}
}
//process the batch
printBatch(batch);
batch.clear();
}
} else {
//Reservation
while (true) {
Process top = res.poll();
if (top != null) {
batch.add(top);
if (res.peek() != null) {
if (top.seats() != res.peek().seats()) {
break;
} else if (!top.type().equals(res.peek().type())) {
break;
} else if (!top.action().equals(res.peek().action())) {
break;
}
} else {
break;
}
} else {
break;
}
}
//process the batch
batch.stream().forEach((p) -> {
map.put(p.agentID(), p.time());
});
printBatch(batch);
batch.clear();
}
//Put un-processable requests back into the main process queue
if (!overFull.isEmpty()) {
if (overFullSize == 0) {
overFull.stream().forEach((p) -> {
res.add(p);
});
overFull.clear();
overFullSize++;
}
}
//Still couldnt be processed after multiple attempts
if (overFullSize == 1) {
for (Process p : overFull) {
System.out.println("Cannot admit a batch");
System.out.println(p.agentID() + " cannot reserve any seats in this system");
}
overFull.clear();
}
}
}
}