-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsimulation.py
88 lines (73 loc) · 2.31 KB
/
simulation.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
from websocket import create_connection
import time
import random
import json
class Channel(object):
def __init__(self, conn):
self.ws = create_connection(conn)
self.ref = 0
def _makeref(self):
self.ref = self.ref + 1
return self.ref
def join(self, chan):
d = json.dumps({
'event': 'phx_join',
'topic': chan,
'ref': self._makeref(),
'payload': {}
})
self.ws.send(d)
self.chan = chan
print self.ws.recv()
def send(self, event, payload):
d = json.dumps({
'topic': self.chan,
'event': event,
'payload': payload,
'ref': self._makeref()
})
self.ws.send(d)
# print self.ws.recv()
class Agent(object):
def __init__(self, name):
self.name = name
self.state = 'idle'
self.chan = Channel('ws://localhost:4000/ws')
self.chan.join('agents:')
def launch_computation(self, duration):
self.state = 'computing'
self.started = time.time()
self.duration = duration
self.update_state()
def update_state(self):
curtime = time.time()
if self.state == 'computing':
self.progress = float(.01 * int(100.0 * (curtime - self.started) / self.duration))
if self.progress >= 1.0:
self.state = 'finished'
self.finished = curtime
elif self.state == 'finished':
if curtime - self.finished > 10:
self.state = 'idle'
elif random.random() < .05:
# idle, launch a new computation
self.launch_computation(random.uniform(1, 100))
self.chan.send('agent_update', self.get_state())
def get_state(self):
s = { 'agent' : self.name }
if self.state == 'computing':
s['progress'] = self.progress
s['state'] = self.state
return s
agents = []
for i in range(5):
agents.append(Agent('Worker_{}'.format(i)))
ref = 1
while True:
for a in agents:
time.sleep(random.uniform(0.1, 1.5))
a.update_state()
s = a.get_state()
print '{}: {}{}'.format(s['agent'], s['state'], (' (%.1f%%)' % (100.0 * s['progress'])) if s['state'] == 'computing' else '')
print
print