-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsimulator.py
335 lines (277 loc) · 13.3 KB
/
simulator.py
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
import random
from abc import ABC, abstractmethod
from copy import deepcopy
from random import shuffle
from simulio.executor import simple_exec
PREDEFINED_TRANSITIONS = ['init', 'receive', 'visualize']
class BaseSimulator(ABC):
def __init__(self, graph, main_transitions, byzantine_transitions, link_failure_prob):
self.graph = graph
self.states = {
node.id: {
'id': node.id,
'alive': True,
} for node in self.graph.nodes
}
self.neighbours = {
node.id: self._make_local_neighbours(node.id) for node in graph.nodes
}
self.send_queue = []
self.total_messages = 0
self.details = []
self.link_failure_prob = float(link_failure_prob) # The probability that each message can be lost
self.transitions = self._initialize_transitions(main_transitions, byzantine_transitions)
self.init_states()
def _add_to_details(self, active_nodes=None, with_messages=True):
self.details.append({
'send_messages': deepcopy(self.send_queue) if with_messages else [],
'total_messages': self.total_messages,
'states': {
node_id: {
'borderColor': '#ad8b0e' if active_nodes is None or node_id in active_nodes else '#cccccc',
**self._exec(self.transitions[node_id]['visualize'].effect, {
'state': state,
})} for node_id, state in self.states.items()
}
})
def _make_local_neighbours(self, node_id):
neighbours = set()
for edge in self.graph.edges:
if edge.from_id == node_id:
neighbours.add(edge.to_id)
elif edge.to_id == node_id:
neighbours.add(edge.from_id)
neighbours = list(neighbours)
n = len(neighbours)
shuffled_ids = list(range(n))
shuffle(shuffled_ids)
all_shuffled_neighbours = {}
reversed_all_shuffled_neighbours = {}
for i in range(n):
all_shuffled_neighbours[shuffled_ids[i]] = neighbours[i]
reversed_all_shuffled_neighbours[neighbours[i]] = shuffled_ids[i]
send_shuffled_neighbours = {}
reversed_receive_shuffled_neighbours = {}
for edge in self.graph.edges:
if edge.from_id == node_id:
send_shuffled_neighbours[reversed_all_shuffled_neighbours[edge.to_id]] = edge.to_id
elif edge.to_id == node_id:
reversed_receive_shuffled_neighbours[edge.from_id] = reversed_all_shuffled_neighbours[edge.from_id]
return {
'all': all_shuffled_neighbours,
'reversed': reversed_all_shuffled_neighbours,
'send': send_shuffled_neighbours,
'reversed_receive': reversed_receive_shuffled_neighbours,
}
def _initialize_transitions(self, main_transitions, byzantine_transitions):
node_transitions = {}
for node in self.graph.nodes:
if 'byzantine' in node.properties:
node_transitions[node.id] = byzantine_transitions[node.properties['byzantine'] - 1]
else:
node_transitions[node.id] = main_transitions
return node_transitions
def _get_initial_state(self, node_id):
return {
'network_size': len(self.graph.nodes),
'output_neighbour_ids': list(self.neighbours[node_id]['send'].keys()),
'input_neighbour_ids': list(self.neighbours[node_id]['reversed_receive'].values()),
}
def _exec(self, code, args):
return simple_exec(code, names=args)
def _translate_node_id_to_local_id(self, node_id, message_node_id):
return self.neighbours[node_id]['reversed_receive'][message_node_id]
def _is_alive(self):
for state in self.states.values():
if state['alive']:
return True
return False
def init_states(self):
for node_id, current_state in self.states.items():
transitions = self.transitions[node_id]
if 'init' in transitions:
next_state = self._exec(transitions['init'].effect, {
'state': current_state,
**self._get_initial_state(node_id),
})
state = deepcopy(current_state)
state.update(next_state)
self.states[node_id] = state
self._push_messages(node_id, 'init')
def _receive(self, from_node_id, to_node_id, message):
current_state = self.states[to_node_id]
from_local_id = self._translate_node_id_to_local_id(to_node_id, from_node_id)
transitions = self.transitions[to_node_id]
next_state = self._exec(transitions['receive'].effect, {
'state': current_state,
'from_node': deepcopy(from_local_id),
'message': message,
})
self.states[to_node_id].update(next_state)
self._push_messages(to_node_id, 'receive')
def _push_messages(self, node_id, transition_name):
changed = False
transition = self.transitions[node_id][transition_name]
messages = self._exec(transition.output, {
'state': self.states[node_id],
})
for to_local_id, message in messages:
if random.random() < self.link_failure_prob:
continue
changed = True
to_node_id = self.neighbours[node_id]['send'][to_local_id]
self.send_queue.append((node_id, to_node_id, message))
self.total_messages += 1
return changed
def _is_transition_feasible(self, node_id, transition_name):
state = self.states[node_id]
transition = self.transitions[node_id][transition_name]
is_satisfied = self._exec(transition.pre_condition, {
'state': state,
})
return is_satisfied
def _run_transition(self, node_id, transition_name):
if not self._is_transition_feasible(node_id, transition_name):
return False
state = self.states[node_id]
transition = self.transitions[node_id][transition_name]
changed = False
next_state = self._exec(transition.effect, {
'state': state,
})
if next_state:
changed = True
self.states[node_id].update(next_state)
if self._push_messages(node_id, transition_name):
changed = True
return changed
@abstractmethod
def run(self):
pass
class RandomUIDSimulator(BaseSimulator, ABC):
def __init__(self, graph, main_transitions, byzantine_transitions, link_failure_prob):
uids = set()
while len(uids) < len(graph.nodes):
uids.add(random.randint(1, len(graph.nodes) ** 2))
uids = list(uids)
shuffle(uids)
self.uids = {}
for i, node in enumerate(graph.nodes):
self.uids[node.id] = uids[i]
BaseSimulator.__init__(self, graph, main_transitions, byzantine_transitions, link_failure_prob)
def _get_initial_state(self, node_id):
return {
'uid': self.uids[node_id],
**super()._get_initial_state(node_id),
}
class SyncSimulator(BaseSimulator):
def __init__(self, graph, main_transitions, byzantine_transitions, limit_steps, link_failure_prob):
self.limit_steps = limit_steps
BaseSimulator.__init__(self, graph, main_transitions, byzantine_transitions, link_failure_prob)
def _receive_messages(self, active_nodes):
messages = deepcopy(self.send_queue)
self.send_queue.clear()
for from_node_id, to_node_id, message in messages:
self._receive(from_node_id, to_node_id, message)
active_nodes.add(to_node_id)
def run(self):
self._add_to_details(with_messages=False)
self._add_to_details(with_messages=True)
round_number = 0
while self._is_alive():
if self.limit_steps is not None and round_number >= self.limit_steps:
break
active_nodes = set()
self._receive_messages(active_nodes)
for node_id in self.states:
has_active_transaction = True
while has_active_transaction:
has_active_transaction = False
if not self.states[node_id]['alive']:
continue
for transition_name in self.transitions[node_id]:
if transition_name in PREDEFINED_TRANSITIONS:
continue
if self._run_transition(node_id, transition_name):
has_active_transaction = True
active_nodes.add(node_id)
self._add_to_details(active_nodes, with_messages=False)
self._add_to_details(active_nodes, with_messages=True)
round_number += 1
print("Total Messages: ", self.total_messages)
class SyncSimulatorWithRandomUID(SyncSimulator, RandomUIDSimulator):
def __init__(self, graph, main_transitions, byzantine_transitions, limit_steps, link_failure_prob):
RandomUIDSimulator.__init__(self, graph, main_transitions, byzantine_transitions, link_failure_prob)
SyncSimulator.__init__(self, graph, main_transitions, byzantine_transitions, limit_steps, link_failure_prob)
class AsyncSimulator(BaseSimulator):
def __init__(self, graph, main_transitions, byzantine_transitions, limit_steps, link_failure_prob):
self.limit_steps = limit_steps
BaseSimulator.__init__(self, graph, main_transitions, byzantine_transitions, link_failure_prob)
def _receive_index(self, index, active_nodes):
new_messages = []
new_messages.extend(self.send_queue[:index])
new_messages.extend(self.send_queue[index + 1:])
self._receive(*self.send_queue[index])
active_nodes.add(self.send_queue[index][1])
self.send_queue = new_messages
def _receive_messages(self, active_nodes):
if len(self.send_queue) > 0:
self._receive_index(random.randint(0, len(self.send_queue) - 1), active_nodes)
return True
return False
def run(self):
self._add_to_details()
steps = 0
while self._is_alive():
if self.limit_steps is not None and steps >= self.limit_steps:
break
next_actions = list()
active_nodes = set()
for i in range(len(self.send_queue)):
next_actions.append(('receive_message',))
for node_id in self.states:
for transition_name in self.transitions[node_id]:
if transition_name in PREDEFINED_TRANSITIONS:
continue
if self._is_transition_feasible(node_id, transition_name):
next_actions.append(('run_transaction', node_id, transition_name))
next_action = random.choice(next_actions)
if next_action[0] == 'receive_message':
if self._receive_messages(active_nodes):
self._add_to_details(active_nodes)
steps += 1
elif next_action[0] == 'run_transaction':
if self._run_transition(next_action[1], next_action[2]):
active_nodes.add(next_action[1])
self._add_to_details(active_nodes)
steps += 1
print("Total Messages: ", self.total_messages)
class AsyncSimulatorWithRandomUID(AsyncSimulator, RandomUIDSimulator):
def __init__(self, graph, main_transitions, byzantine_transitions, limit_steps, link_failure_prob):
RandomUIDSimulator.__init__(self, graph, main_transitions, byzantine_transitions, link_failure_prob)
AsyncSimulator.__init__(self, graph, main_transitions, byzantine_transitions, limit_steps, link_failure_prob)
class FIFOAsyncSimulator(AsyncSimulator):
def __init__(self, graph, main_transitions, byzantine_transitions, limit_steps, link_failure_prob):
AsyncSimulator.__init__(self, graph, main_transitions, byzantine_transitions, limit_steps, link_failure_prob)
def _receive_messages(self, active_nodes):
if len(self.send_queue) > 0:
random_node = random.choice(self.graph.nodes).id
random_index = None
for i, (from_node_id, to_node_id, message) in enumerate(self.send_queue):
if to_node_id == random_node:
random_index = i
break
if random_index is None:
return False
self._receive_index(random_index, active_nodes)
return True
return False
class OrderedAsyncSimulator(FIFOAsyncSimulator):
def __init__(self, graph, main_transitions, byzantine_transitions, limit_steps, link_failure_prob):
FIFOAsyncSimulator.__init__(self, graph, main_transitions, byzantine_transitions, limit_steps,
link_failure_prob)
class OrderedAsyncSimulatorWithRandomUID(RandomUIDSimulator, FIFOAsyncSimulator):
def __init__(self, graph, main_transitions, byzantine_transitions, limit_steps, link_failure_prob):
RandomUIDSimulator.__init__(self, graph, main_transitions, byzantine_transitions, link_failure_prob)
FIFOAsyncSimulator.__init__(self, graph, main_transitions, byzantine_transitions, limit_steps,
link_failure_prob)