-
Notifications
You must be signed in to change notification settings - Fork 1
/
Site1Client.java
504 lines (441 loc) · 16.6 KB
/
Site1Client.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
import java.rmi.registry.LocateRegistry;
import java.rmi.registry.Registry;
import java.util.*;
public class Site1Client {
private Site1Client() {}
static void write_decision(ThreePCInterface []siteX, int []sites, int length, int decision, String message) {
try {
for(int i=0; i<length; i++) {
System.out.println(message + " message to Site " + sites[i]);
siteX[i].setDecision(decision);
}
} catch (Exception e) {
System.err.println("Client exception: " + e.toString());
e.printStackTrace();
}
}
static FailedSitesInfo wait_for_acknowledgement(ThreePCInterface []siteX, int []sites, int total_sites, int decision, String message) {
boolean sflag[] = new boolean[total_sites];
FailedSitesInfo fsi = new FailedSitesInfo();
int failed_sites = total_sites, timeout = 0;
try {
while(timeout < (total_sites*1000)) {
for(int i=0; i<total_sites; i++) {
if(!sflag[i]) {
if(siteX[i].getAck() == decision) {
sflag[i] = true; failed_sites--;
System.out.println(message + " Acknowledgment from Site " + sites[i]);
siteX[i].setAck(0);
} } }
timeout++;
}
//System.out.println("Timed out");
fsi.count = failed_sites;
fsi.sites = sflag;
} catch (Exception e) {
System.err.println("Client exception: " + e.toString());
e.printStackTrace();
}
return fsi;
}
static int coordinator_timeout(ThreePCInterface siteX, int total_sites) {
int timeout = 0; int decision = 0;
try {
while(timeout < (total_sites*1000) && decision == 0) {
decision = siteX.getDecision();
timeout++;
}
siteX.setDecision(0);
} catch (Exception e) {
System.err.println("Client exception: " + e.toString());
e.printStackTrace();
}
return decision;
}
static void backup_leader_action(boolean abort, ThreePCInterface []siteX, int []sites, int total_sites, int sid) {
FailedSitesInfo fsi = new FailedSitesInfo();
if(abort) {
write_decision(siteX, sites, total_sites, -1, "Global-Abort");
// Wait for acknowledgments.
fsi = wait_for_acknowledgement(siteX, sites, total_sites, -1, "Abort");
System.out.println("Transaction Aborted at Site " + sid);
}
else { // Prepare-to-Commit
write_decision(siteX, sites, total_sites, 1, "Global-Commit");
// Wait for acknowledgement.
fsi = wait_for_acknowledgement(siteX, sites, total_sites, 1, "Global-Commit");
System.out.println("Transaction Committed at Site " + sid);
}
}
static void resetFlags(ThreePCInterface stub) {
try {
stub.setTransFlag(0);
stub.setReqFlag(false);
stub.setResponse(0);
stub.setDecision(0);
stub.setAck(0);
} catch (Exception e) {
System.err.println("Client exception: " + e.toString());
e.printStackTrace();
}
}
public static void main(String[] args) {
int i=0, failed_sites = 0, j=0, original_sites, alias;
String tsites = (args.length < 1) ? "0" : args[0]; // Total Sites
String cord = (args.length > 1) ? args[1] : "1"; // Coordinator
String sid = (args.length > 2) ? args[2] : "1"; // Site id
String host = (args.length > 3) ? args[3] : null; // Host
int site_id = Integer.parseInt(sid); // Site id
int total_sites = Integer.parseInt(tsites); // Total number of sites excluding me
int coordinator = Integer.parseInt(cord); // Coordinator node
// Setting up the aliases
original_sites = total_sites+1;
alias = site_id;
try {
System.out.println("Site" + sid);
Registry registry = LocateRegistry.getRegistry(host);
int []sites = new int[total_sites];
ThreePCInterface []siteX = new ThreePCInterface[total_sites];
ThreePCInterface stub = (ThreePCInterface) registry.lookup("Site" + sid + "Server");
for(i=1; i<=total_sites+1; i++) {
if(i != site_id) {
String regserver = "Site" + i + "Server";
ThreePCInterface site = (ThreePCInterface) registry.lookup(regserver);
siteX[j] = site;
sites[j] = i;
j++;
} }
int []responseVector = new int[total_sites+1];
boolean cflag = false;
int timeout = 0, tflag;
Random rd = new Random();
while(true) {
// Recieved transaction
tflag = stub.getTransFlag();
if(tflag == 1 && coordinator == site_id) {
// For timing
long startTime = System.nanoTime();
System.out.println("Transaction received at Site " + sid);
int selfFailure = 0;//rd.nextInt(4);
if(selfFailure == 0) { // Self Failure
System.out.println("Alert !!! Coordinator has failed");
stub.setTransFlag(0); // Resetting the flag
break;
}
// Asking each cohort for a decision.
for(i=0; i<total_sites; i++) {
siteX[i].setReqFlag(true); }
// Own decision.
int response = 1;//rd.nextInt(2);
if(response == 0) {
responseVector[0] = -1;
System.out.println("Vote-Abort Site " + sid);
} else {
responseVector[0] = 1;
System.out.println("Vote-Commit Site " + sid);
}
// Get decision of other sites
FailedSitesInfo fsi = new FailedSitesInfo();
timeout = 0; failed_sites = total_sites;
boolean sflag[] = new boolean[total_sites];
System.out.println("Wait for the decision from the cohorts");
while(timeout < (total_sites*1000)) {
for(i=0; i<total_sites; i++) {
if(!sflag[i]) {
if(siteX[i].getResponse() != 0) {
responseVector[i+1] = siteX[i].getResponse();
sflag[i] = true; failed_sites--;
System.out.println("Vote received from Site " + sites[i]);
siteX[i].setResponse(0);
} } }
timeout++;
}
if(failed_sites > 1) { // Failure occurred.
System.out.println("TIMEOUT ! More than one sites have failed. Cannot recover !");
}
else if(failed_sites > 0) {
System.out.println("TIMEOUT ! Single failure occurred !");
System.out.println("State of all cohorts not clear, so Global-Abort");
ThreePCInterface []stemp = new ThreePCInterface[total_sites-1];
int []rsite = new int[total_sites-1];
j = 0;
for(i=0; i<total_sites; i++) {
if(sflag[i]) {
stemp[j] = siteX[i];
rsite[j] = sites[i]; j++;
} }
sites = rsite;
siteX = stemp;
total_sites--;
write_decision(siteX, sites, total_sites, -1, "Global-Abort");
}
else { // No failure
// Global Response
boolean abort = false;
for(i=0; i<total_sites+1; i++) {
if(responseVector[i] == -1) {
abort = true;
break;
} }
selfFailure = 1;//rd.nextInt(4);
if(selfFailure == 0) { // Self Failure
System.out.println("Alert !!! Coordinator has failed");
stub.setTransFlag(0); // Reset the flag
break;
}
if(abort) {
write_decision(siteX, sites, total_sites, -1, "Global-Abort");
// Wait for acknowledgments.
fsi = wait_for_acknowledgement(siteX, sites, total_sites, -1, "Abort");
System.out.println("Transaction Aborted at Site " + sid);
}
else { // Prepare-to-Commit
write_decision(siteX, sites, total_sites, 1, "Prepare-to-Commit");
// Wait for acknowledgement.
fsi = wait_for_acknowledgement(siteX, sites, total_sites, 1, "Prepare-to-Commit");
failed_sites = fsi.count; sflag = fsi.sites;
if(failed_sites > 1) // Failure occurred.
System.out.println("TIMEOUT ! More than one sites have failed. Cannot recover !");
else if(failed_sites > 0) {
System.out.println("TIMEOUT ! Single failure occurred !");
System.out.println("All cohorts were ready to PreCommit, so Global-Commit");
ThreePCInterface []stemp = new ThreePCInterface[total_sites-1];
int []rsite = new int[total_sites-1];
j = 0;
for(i=0; i<total_sites; i++) {
if(sflag[i]) {
stemp[j] = siteX[i];
rsite[j] = sites[i]; j++;
} }
sites = rsite;
siteX = stemp;
total_sites--;
write_decision(siteX, sites, total_sites, 1, "Global-Commit");
}
else { // No failure -- Commit
selfFailure = 1;//rd.nextInt(4);
if(selfFailure == 0) { // Self Failure
System.out.println("Alert !!! Coordinator has failed");
resetFlags(stub);
break;
}
write_decision(siteX, sites, total_sites, 1, "Global-Commit");
// Wait for acknowledgement.
fsi = wait_for_acknowledgement(siteX, sites, total_sites, 1, "Commit");
failed_sites = fsi.count; sflag = fsi.sites;
if(failed_sites > 1) // Failure occurred.
System.out.println("TIMEOUT ! More than one sites have failed.");
else if(failed_sites > 0) {
System.out.println("TIMEOUT ! Single failure occurred !");
System.out.println("All cohorts were ready to Commit, so Global-Commit");
ThreePCInterface []stemp = new ThreePCInterface[total_sites-1];
int []rsite = new int[total_sites-1];
j = 0;
for(i=0; i<total_sites; i++) {
if(sflag[i]) {
stemp[j] = siteX[i];
rsite[j] = sites[i]; j++;
} }
sites = rsite;
siteX = stemp;
total_sites--;
write_decision(siteX, sites, total_sites, 1, "Global-Commit");
}
System.out.println("Transaction Committed at Site " + sid);
}
} }
// Reset the flag, so as to accept further requests.
stub.setTransFlag(0);
long endTime = System.nanoTime();
System.out.println("Time: " + (endTime- startTime));
}
else if (tflag == 1) { // Knows that it is a cohort
// Time
long startTime = System.nanoTime();
System.out.println("Transaction received at Site " + sid);
int selfFailure;
timeout = 0; cflag = false;
while(timeout < (total_sites*1000) && !cflag) {
cflag = stub.getReqFlag();
timeout++;
}
stub.setReqFlag(false); // RESET reqflag
if(!cflag) { // Coordinator timed out
System.out.println("Coordinator failed during Initial stage !");
System.out.println("Transaction Aborted at Site "+ sid);
}
else { // No failure
selfFailure = 1;//rd.nextInt(4);
if(selfFailure == 0) { // Self Failure
System.out.println("Alert !!! Site " + site_id + " has failed");
resetFlags(stub);
break;
}
int response = 1;//rd.nextInt(2);
if(response == 0) {
response = -1;
System.out.println("Vote-Abort by Site " + sid);
}
else {
System.out.println("Vote-Commit by Site " + sid);
}
stub.setResponse(response);
int decision = coordinator_timeout(stub, total_sites);
if(decision == 0) { // Coordinator failure
System.out.println("Coordinator failed during Wait stage !");
System.out.println("Time to select new leader");
ThreePCInterface []stemp = new ThreePCInterface[total_sites-1];
int []rsite = new int[total_sites-1];
j = 0;
for(i=0; i<total_sites; i++) {
if(sites[i] != coordinator) {
stemp[j] = siteX[i];
rsite[j] = sites[i]; j++;
} }
sites = rsite;
siteX = stemp;
total_sites--;
// Send the alias to all other participants.
for(i=0; i<total_sites; i++) {
siteX[i].setLeaderVote((site_id-1), alias);
//System.out.println("Written: " + siteX[i].getLeaderVote(site_id-1) + " : alias: " + alias);
}
boolean []sflag = new boolean[original_sites];
int max = alias, tmpvar = 0; coordinator = site_id;
while(timeout < (total_sites*1000)) {
for(i=0; i<original_sites; i++) {
if(!sflag[i]) {
tmpvar = stub.getLeaderVote(i);
//System.out.println("tmpvar: " + tmpvar);
if(tmpvar != 0) {
//System.out.println("tmpvar: " + tmpvar);
sflag[i] = true;
if(tmpvar > max) {
max = tmpvar;
coordinator = i+1;
}
stub.setLeaderVote(i, 0);
} } }
timeout++;
}
//leader_id = ((leader_id + 1) % (total_sites+1));
//leader_id = leader_id == 0 ? (total_sites + 1) : leader_id; // New coordinator
boolean leader = coordinator == site_id ? true : false; // Is a leader ?
if(leader) {
System.out.println("I am the new leader");
// Wait for leader acknowledgments.
FailedSitesInfo fsi = wait_for_acknowledgement(siteX, sites, total_sites, 2, "Leader");
backup_leader_action(true, siteX, sites, total_sites, site_id);
} else {
stub.setAck(2); // Acknowledgement for new leader
decision = coordinator_timeout(stub, total_sites);
if(decision < 0) {
System.out.println("Global-Abort message received at Site " + sid);
stub.setAck(-1);
System.out.println("Transaction aborted at Site " + sid);
} }
}
else { // No failure
if(decision < 0) {
System.out.println("Global-Abort message received at Site " + sid);
selfFailure = 1;//rd.nextInt(4);
if(selfFailure == 0) { // Self Failure
System.out.println("Alert !!! Site1 has failed");
resetFlags(stub);
break;
}
stub.setAck(-1);
System.out.println("Transaction aborted at Site " + sid);
}
else {
System.out.println("Prepare-to-Commit message received at Site " + sid);
selfFailure = 1;//rd.nextInt(4);
if(selfFailure == 0) { // Self Failure
System.out.println("Alert !!! Site " + site_id + " has failed");
resetFlags(stub);
break;
}
stub.setAck(1);
System.out.println("Ready-to-Commit message sent by Site " + sid);
decision = coordinator_timeout(stub, total_sites);
if(decision == 0) { // Coordinator failure
System.out.println("Coordinator failed during Pre-Commit stage");
System.out.println("Time to select new leader");
ThreePCInterface []stemp = new ThreePCInterface[total_sites-1];
int []rsite = new int[total_sites-1];
j = 0;
for(i=0; i<total_sites; i++) {
if(sites[i] != coordinator) {
stemp[j] = siteX[i];
rsite[j] = sites[i];
j++;
} }
sites = rsite;
siteX = stemp;
total_sites--;
// Send the alias to all other participants.
for(i=0; i<total_sites; i++) {
siteX[i].setLeaderVote((site_id-1), alias);
//System.out.println("Written: " + siteX[i].getLeaderVote(site_id-1) + " : alias: " + alias);
}
boolean []sflag = new boolean[original_sites];
int max = alias, tmpvar = 0; coordinator = site_id;
while(timeout < (total_sites*1000)) {
for(i=0; i<original_sites; i++) {
if(!sflag[i]) {
tmpvar = stub.getLeaderVote(i);
//System.out.println("tmpvar: " + tmpvar);
if(tmpvar != 0) {
sflag[i] = true;
if(tmpvar > max) {
max = tmpvar;
coordinator = i+1;
}
stub.setLeaderVote(i, 0);
} } }
timeout++;
}
boolean leader = coordinator == site_id ? true : false; // Is a leader ?
if(leader) {
System.out.println("I am the new leader");
// Wait for leader acknowledgments.
FailedSitesInfo fsi = wait_for_acknowledgement(siteX, sites, total_sites, 2, "Leader");
backup_leader_action(false, siteX, sites, total_sites, site_id);
} else {
stub.setAck(2); // Acknowledgement for new leader
decision = coordinator_timeout(stub, total_sites);
if(decision > 0) {
System.out.println("Global-Commit message received at Site " + sid);
stub.setAck(1);
System.out.println("Transaction committed at Site " + sid);
} }
}
else {
selfFailure = 1;//rd.nextInt(4); site_id == 2 ? 0 : 1;
if(selfFailure == 0) { // Self Failure
System.out.println("Alert !!! Site " + site_id + " has failed");
resetFlags(stub);
break;
}
System.out.println("Global-Commit message received at Site " + sid);
stub.setAck(1);
System.out.println("Transaction committed at Site " + sid);
}
} }
}
// Reset the flag, so as to accept further requests.
resetFlags(stub);
long endTime = System.nanoTime();
System.out.println("Time is: " + (endTime - startTime));
}
}
} catch (Exception e) {
System.err.println("Client exception: " + e.toString());
e.printStackTrace();
}
}
}
class FailedSitesInfo {
int count;
boolean []sites;
}