-
Notifications
You must be signed in to change notification settings - Fork 3
/
Server2.ol
executable file
·409 lines (349 loc) · 14.5 KB
/
Server2.ol
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
include "Static/header.iol"
// Outside the servers' group
inputPort ClientPort {
Location: "socket://localhost:9002" // #dynamic
Protocol: http {
.format -> format;
.default = "ClientHTTPDefault"
}
Interfaces: ClientInterface
}
inputPort AdminPort {
Location: "socket://localhost:10002" // #dynamic
Protocol: http {
.format -> format;
.default = "AdminHTTPDefault"
}
Interfaces: AdminInterface
}
outputPort NetworkVisualizer {
Location: "socket://localhost:12000"
Protocol: sodep
Interfaces: VisualizerInterface
}
// Inside the servers' group
// Inputs
inputPort InServer {
Location: "socket://localhost:8002" // #dynamic
Protocol: sodep
Interfaces: TimerInterface, ElectionInterface, ServerInterface
}
// Outputs
outputPort OutServerA {
Location: "socket://localhost:8001" // #dynamic
Protocol: sodep
Interfaces: ElectionInterface, ServerInterface
}
outputPort OutServerB {
Location: "socket://localhost:8003" // #dynamic
Protocol: sodep
Interfaces: ElectionInterface, ServerInterface
}
outputPort OutServerC {
Location: "socket://localhost:8004" // #dynamic
Protocol: sodep
Interfaces: ElectionInterface, ServerInterface
}
outputPort OutServerD {
Location: "socket://localhost:8005" // #dynamic
Protocol: sodep
Interfaces: ElectionInterface, ServerInterface
}
execution { concurrent }
cset {
serverSID: AppendEntriesType.leaderID
}
/* Timers */
define setVisualizerTimer {
visualizerTimerReq = 1000;
visualizerTimerReq.port = "8002"; // #dynamic
SetVisualizerTimer@VisualizerTimer(visualizerTimerReq)
}
define setHeartbeatTimerA {
heartbeatTimerReq = 50*3;
heartbeatTimerReq.port = "8002"; // #dynamic
SetHeartbeatTimer@HeartbeatTimerA(heartbeatTimerReq)
}
define setHeartbeatTimerB {
heartbeatTimerReq = 50*3;
heartbeatTimerReq.port = "8002"; // #dynamic
SetHeartbeatTimer@HeartbeatTimerB(heartbeatTimerReq)
}
define setHeartbeatTimerC {
heartbeatTimerReq = 50*3;
heartbeatTimerReq.port = "8002"; // #dynamic
SetHeartbeatTimer@HeartbeatTimerC(heartbeatTimerReq)
}
define setHeartbeatTimerD {
heartbeatTimerReq = 50*3;
heartbeatTimerReq.port = "8002"; // #dynamic
SetHeartbeatTimer@HeartbeatTimerD(heartbeatTimerReq)
}
define setElectionTimer {
random@Math()(delay);
min = 150;
max = 300;
x = min + int(delay * (max - min + 1));
electionTimerReq = x*3;
electionTimerReq.port = "8002"; // #dynamic
SetElectionTimer@ElectionTimer(electionTimerReq)
}
/* AppendEntries */
define appendEntriesA {
if(global.status.leader) {
scope( setHeartbeatData ) {
install( IOException => {global.visualizer.servers.status[0] = false | println@Console("Server A DOWN")()} ); // #dynamic
global.visualizer.servers.status[0] = true; // #dynamic
with(appEntriesRequestA) {
.term = global.status.currentTerm;
.leaderID = global.status.myID;
.leaderCommit = global.status.commitIndex
};
// Se il nextIndex di questo server è superiore all'ultimo elemento del mio log, lo reimposto
synchronized( nextIndicesToken ) {
synchronized( lastIndexOfLogToken ) {
if(global.status.nextIndices[0] > global.status.lastIndexOfLog + 1)
global.status.nextIndices[0] = global.status.lastIndexOfLog + 1
};
// Il prevLogIndex è l'indice della voce immediatamente precedente alla nuova voce da aggiungere per questo server
appEntriesRequestA.prevLogIndex = global.status.nextIndices[0] - 1;
synchronized( operationOnLogToken ) {
// Invio l'elemento in nextIndices come nuova entry
if(global.status.nextIndices[0] <= global.status.lastIndexOfLog)
appEntriesRequestA.entries[0] << global.status.log[global.status.nextIndices[0]]
else
undef(appEntriesRequestA.entries);
// Il prevLogTerm è il termine dell'elemento del log alla prevLogIndex-esima posizione
appEntriesRequestA.prevLogTerm = global.status.log[appEntriesRequestA.prevLogIndex].term
}
};
AppendEntries@OutServerA(appEntriesRequestA)
} |
scope( setHeartbeatTimerToA ) {
setHeartbeatTimerA
}
}
}
define appendEntriesB {
if(global.status.leader) {
scope( setHeartbeatData ) {
install( IOException => {global.visualizer.servers.status[2] = false | println@Console("Server B DOWN")()} ); // #dynamic
global.visualizer.servers.status[2] = true; // #dynamic
with(appEntriesRequestB) {
.term = global.status.currentTerm;
.leaderID = global.status.myID;
.leaderCommit = global.status.commitIndex
};
// Se il nextIndex di questo server è superiore all'ultimo elemento del mio log, lo reimposto
synchronized( nextIndicesToken ) {
synchronized( lastIndexOfLogToken ) {
if(global.status.nextIndices[1] > global.status.lastIndexOfLog + 1)
global.status.nextIndices[1] = global.status.lastIndexOfLog + 1
};
// Il prevLogIndex è l'indice della voce immediatamente precedente alla nuova voce da aggiungere per questo server
appEntriesRequestB.prevLogIndex = global.status.nextIndices[1] - 1;
synchronized( operationOnLogToken ) {
// Invio l'elemento in nextIndices come nuova entry
if(global.status.nextIndices[1] <= global.status.lastIndexOfLog)
appEntriesRequestB.entries[0] << global.status.log[global.status.nextIndices[1]]
else
undef(appEntriesRequestB.entries);
// Il prevLogTerm è il termine dell'elemento del log alla prevLogIndex-esima posizione
appEntriesRequestB.prevLogTerm = global.status.log[appEntriesRequestB.prevLogIndex].term
}
};
AppendEntries@OutServerB(appEntriesRequestB)
} |
scope( setHeartbeatTimerToB ) {
setHeartbeatTimerB
}
}
}
define appendEntriesC {
if(global.status.leader) {
scope( setHeartbeatData ) {
install( IOException => {global.visualizer.servers.status[3] = false | println@Console("Server C DOWN")()} ); // #dynamic
global.visualizer.servers.status[3] = true; // #dynamic
with(appEntriesRequestC) {
.term = global.status.currentTerm;
.leaderID = global.status.myID;
.leaderCommit = global.status.commitIndex
};
// Se il nextIndex di questo server è superiore all'ultimo elemento del mio log, lo reimposto
synchronized( nextIndicesToken ) {
synchronized( lastIndexOfLogToken ) {
if(global.status.nextIndices[2] > global.status.lastIndexOfLog + 1)
global.status.nextIndices[2] = global.status.lastIndexOfLog + 1
};
// Il prevLogIndex è l'indice della voce immediatamente precedente alla nuova voce da aggiungere per questo server
appEntriesRequestC.prevLogIndex = global.status.nextIndices[2] - 1;
synchronized( operationOnLogToken ) {
// Invio l'elemento in nextIndices come nuova entry
if(global.status.nextIndices[2] <= global.status.lastIndexOfLog)
appEntriesRequestC.entries[0] << global.status.log[global.status.nextIndices[2]]
else
undef(appEntriesRequestC.entries);
// Il prevLogTerm è il termine dell'elemento del log alla prevLogIndex-esima posizione
appEntriesRequestC.prevLogTerm = global.status.log[appEntriesRequestC.prevLogIndex].term
}
};
AppendEntries@OutServerC(appEntriesRequestC)
} |
scope( setHeartbeatTimerToC ) {
setHeartbeatTimerC
}
}
}
define appendEntriesD {
if(global.status.leader) {
scope( setHeartbeatData ) {
install( IOException => {global.visualizer.servers.status[4] = false | println@Console("Server D DOWN")()} ); // #dynamic
global.visualizer.servers.status[4] = true; // #dynamic
with(appEntriesRequestD) {
.term = global.status.currentTerm;
.leaderID = global.status.myID;
.leaderCommit = global.status.commitIndex
};
// Se il nextIndex di questo server è superiore all'ultimo elemento del mio log, lo reimposto
synchronized( nextIndicesToken ) {
synchronized( lastIndexOfLogToken ) {
if(global.status.nextIndices[3] > global.status.lastIndexOfLog + 1)
global.status.nextIndices[3] = global.status.lastIndexOfLog + 1
};
// Il prevLogIndex è l'indice della voce immediatamente precedente alla nuova voce da aggiungere per questo server
appEntriesRequestD.prevLogIndex = global.status.nextIndices[3] - 1;
synchronized( operationOnLogToken ) {
// Invio l'elemento in nextIndices come nuova entry
if(global.status.nextIndices[3] <= global.status.lastIndexOfLog)
appEntriesRequestD.entries[0] << global.status.log[global.status.nextIndices[3]]
else
undef(appEntriesRequestD.entries);
// Il prevLogTerm è il termine dell'elemento del log alla prevLogIndex-esima posizione
appEntriesRequestD.prevLogTerm = global.status.log[appEntriesRequestD.prevLogIndex].term
}
};
AppendEntries@OutServerD(appEntriesRequestD)
} |
scope( setHeartbeatTimerToD ) {
setHeartbeatTimerD
}
}
}
define appendEntriesToAll {
scope( sendToA ) {
println@Console("Sending appendEntries to A")();
appendEntriesA
} |
scope( sendToB ) {
println@Console("Sending appendEntries to B")();
appendEntriesB
} |
scope( sendToC ) {
println@Console("Sending appendEntries to C")();
appendEntriesC
} |
scope( sendToD ) {
println@Console("Sending appendEntries to D")();
appendEntriesD
}
}
/* Election */
define election {
// Inizializza la richiesta di elezione
scope( initElectionRequest ) {
synchronized( serverRoleToken ) {
global.status.candidate = true | global.status.follower = false | global.status.leader = false
};
global.status.currentTerm++; // Incremento il mio termine
synchronized( votedForToken ) {
global.status.votedFor = global.status.myID // Voto esplicito per se stesso (come richiesto dalle specifiche)
};
with( elecReq ) {
.term = global.status.currentTerm;
.candidateID = global.status.myID;
synchronized( lastIndexOfLogToken ) {
.lastLogIndex = global.status.lastIndexOfLog;
.lastLogTerm = global.status.log[global.status.lastIndexOfLog].term
}
}
};
println@Console( "CANDIDATE: this is the server " + elecReq.candidateID + " with term " + elecReq.term )();
// Richiede un voto a tutti gli altri
scope( sendElectionRequest ) {
scope( A ) {
install( IOException => {global.visualizer.servers.status[0] = false | println@Console("Server A DOWN")()} ); // #dynamic
global.visualizer.servers.status[0] = true; // #dynamic
RequestVote@OutServerA(elecReq)(result[0])
} |
scope( B ) {
install( IOException => {global.visualizer.servers.status[2] = false | println@Console("Server B DOWN")()} ); // #dynamic
global.visualizer.servers.status[2] = true; // #dynamic
RequestVote@OutServerB(elecReq)(result[1])
} |
scope( C ) {
install( IOException => {global.visualizer.servers.status[3] = false | println@Console("Server C DOWN")()} ); // #dynamic
global.visualizer.servers.status[3] = true; // #dynamic
RequestVote@OutServerC(elecReq)(result[2])
} |
scope( D ) {
install( IOException => {global.visualizer.servers.status[4] = false | println@Console("Server D DOWN")()} ); // #dynamic
global.visualizer.servers.status[4] = true; // #dynamic
RequestVote@OutServerD(elecReq)(result[3])
}
};
//Analizza il risultato dell'elezione. Viene fatto dopo l'ElectionRequest per evitare busy waiting
scope( analyzeResults ) {
voteCounter = 1; // Il mio voto
eletto = false;
for(i = 0, i < 4, i++) {
synchronized( currentTermToken ) {
if(result[i].Term > global.status.currentTerm) { // Se il termine del server che mi vota è maggiore del mio, divento follower
println@Console( "FOLLOWER: found term greater than mine" )();
global.status.currentTerm = result[i].Term; // Aggiorno il mio termine
synchronized( serverRoleToken ) {
global.status.candidate = false ; global.status.follower = true ; global.status.leader = false
};
undef(global.status.votedFor); // NOTA: ogni volta che aggiorno il mio termine perchè qualcuno lo ha maggiore, faccio l'undef di votedFor perchè posso votare per candidati con questo termine, in quanto non ho ancora votato (infatti votedFor viene settato solo quando voto per me stesso o true per un altro)
synchronized( nextIndicesToken ) {
for(i = 0, i < #global.status.nextIndices, i++)
global.status.nextIndices[i] = global.status.lastIndexOfLog + 1
};
synchronized( matchIndicesToken ) {
for(i = 0, i < #global.status.matchIndices, i++)
global.status.matchIndices[i] = 0
}
} else if(result[i].VoteGranted == true) { // Se ha votato per me aumento il conto e faccio ripartire il timer
println@Console( "Vote true from " + i + " with term " + result[i].Term )();
voteCounter++
}
}
};
// Se sono ancora candidato, ovvero nessuno ha termine maggiore del mio e non sono diventato follower per causa di un appendEntries valida con termine >= al mio (synchronized), conto i voti
// NOTA: si può entrare qui solo quando scatta un electionTimer e non si è leader, quindi non vi sarà la possibilità di essere a questo punto del codice come leader.
if(global.status.candidate && voteCounter >= 3) { // E ho ricevuto la maggioranza dei voi
println@Console("\n\t>>> I'M THE LEADER <<<\t\n")();
synchronized( serverRoleToken ) {
global.status.candidate = false | global.status.follower = false | global.status.leader = true
};
synchronized( nextIndicesToken ) {
for(i = 0, i < #global.status.nextIndices, i++)
global.status.nextIndices[i] = global.status.lastIndexOfLog + 1
};
synchronized( matchIndicesToken ) {
for(i = 0, i < #global.status.matchIndices, i++)
global.status.matchIndices[i] = 0
};
setVisualizerTimer;
appendEntriesToAll // Mando un heartbeat a tutti
} else {
println@Console( "FOLLOWER: I got the majority" )();
synchronized( serverRoleToken ) {
global.status.candidate = false ; global.status.follower = true ; global.status.leader = false
}
}
}
}
init {
global.status.myID = 2 // #dynamic
}
include "Static/serverMain.ol"