-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpipe.py
287 lines (221 loc) · 7.87 KB
/
pipe.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
"""
Simple async framework and command-line runner application built on top of the
framework. One can specify simple task dependencies. This does not make use of
asyncio.
"""
from collections import defaultdict
from functools import partial
import selectors
import subprocess
import time
CURRENT_EVENT_LOOP = None
def sleep(n):
"""
Sleep for n iterations. Meaning we ask the event loop to wake us up
after n iterations, i.e. at iteration current + n + 1
"""
yield n
def monitor(task):
"""Monitor a task and exit once that task is done."""
while True:
if task.result is None:
yield from sleep(0)
else:
print(f'task {task.id} is done!')
return task.result
def runner(argv, timeout=0):
"""
Run the input command-line executable (specified in a Popen-style list) and
return its exit code. Optionally specify a timeout. If timeout is 0 or
None, simply wait until the process is done.
"""
def stringify(xs):
return map(str, xs)
argv = list(stringify(argv))
proc = subprocess.Popen(argv,
stdout=subprocess.PIPE,
stderr=subprocess.PIPE, shell=False)
t0 = time.time()
while True:
exit_code = proc.poll()
if exit_code is None:
# Process is still running
if timeout > 0 and time.time() - t0 >= timeout:
proc.kill()
stdout = proc.stdout.read()
stderr = proc.stderr.read()
raise subprocess.TimeoutExpired(cmd=' '.join(argv),
timeout=timeout,
output=stdout,
stderr=stderr)
else:
return proc.returncode
# time.sleep(1) <-- BAD idea
yield from sleep(20)
def defcallback(task):
"""Schedule all the task children"""
if task.exception:
print(f'[task {task.id}] raised {task.exception}')
return
print(f'[task {task.id}] completed with result={task.result}')
loop = get_event_loop()
for child in task.children:
print(f'[task {task.id}] scheduling child coroutine')
loop.create_task(child)
class Task:
"""Wrap a coroutine in a Task object that actis like a Future."""
instances_created = 0
def __init__(self, coroutine, callback=defcallback):
self.coroutine = coroutine
self.id = Task.instances_created
Task.instances_created += 1
self._result = None
self._exception = None
self.isrunning = False
self.cancelled = False
self.callbacks = [callback, ]
self.children = []
@property
def result(self):
return self._result
@result.setter
def result(self, value):
self._result = value
self.isrunning = False
self.cancelled = False
@property
def exception(self):
return self._exception
@exception.setter
def exception(self, value):
self._exception = value
self.isrunning = False
self.cancelled = True
def add_done_callback(self, callback):
self.callbacks.append(callback)
def remove_done_callback(self, callback):
try:
self.callbacks.remove(callback)
except:
pass
class Loop:
"""This is the scheduler of all our Tasks."""
def __init__(self):
self.tasks = []
self.ready_at = defaultdict(list)
self.current_iteration = 0
self.stop = False
def schedule(self, task, iteration=0):
"""Schedule task at a given iteration number."""
if iteration is None or iteration < self.current_iteration:
iteration = self.current_iteration
self.ready_at[iteration].append(task)
if task not in self.tasks:
self.tasks.append(task)
print(f'[loop] task {task.id} scheduled at t={iteration}')
def create_task(self, coroutine):
"""
Wrap a coroutine in a Task object and schedule it at the first possible
loop iteration.
"""
task = Task(coroutine)
if self.current_iteration == 0:
run_at_iteration = 0
else:
run_at_iteration = self.current_iteration + 1
self.schedule(task, iteration=run_at_iteration)
return task
def remove(self, task):
"""
Remove task from the list of all active Tasks. This is done to control
how long self.run() shold stick around for.
"""
if task in self.tasks:
self.tasks.remove(task)
def run_forever(self):
"""
Run all active Tasks, concurrently forever.
"""
sel = selectors.DefaultSelector()
self.stop = False
while not self.stop:
# Here is where one would process socket/file descritor events.
events = sel.select()
for key, mask in events:
callback = key.data
callback(key.fileobj, mask)
if self.tasks:
for task in self.ready_at[self.current_iteration]:
try:
run_after = next(task.coroutine)
except StopIteration as e:
task.result = e.value
for callback in task.callbacks:
callback(task)
self.remove(task)
except subprocess.TimeoutExpired as e:
task.exception = e
for callback in task.callbacks:
callback(task)
self.remove(task)
else:
run_next = self.current_iteration + run_after + 1
self.schedule(task, run_next)
self.current_iteration += 1
time.sleep(.01)
def run_until_complete(self, coroutine):
task = self.create_task(coroutine)
task.add_done_callback(self._stop_callback)
self.run_forever()
task.remove_done_callback(self._stop_callback)
return task.result
def _stop_callback(self, task):
"""Just stop our loop."""
self.stop = True
def wait(coroutines, loop=None):
"""Stick around until all coroutines are done."""
counter = len(coroutines)
tasks = []
def _stop_loop_with_counter_callback(task, loop):
nonlocal counter
counter -= 1
if counter == 0:
loop.stop = True
if loop is None:
loop = get_event_loop()
clbk = partial(_stop_loop_with_counter_callback, loop=loop)
for coro in coroutines:
task = loop.create_task(coro)
task.add_done_callback(clbk)
tasks.append(task)
yield from sleep(0)
while counter:
yield from sleep(0)
for task in tasks:
task.remove_done_callback(clbk)
return tasks
def get_event_loop():
"""Return the Loop instance (it is a singleton-wannabe)."""
global CURRENT_EVENT_LOOP
if CURRENT_EVENT_LOOP is None:
CURRENT_EVENT_LOOP = Loop()
return CURRENT_EVENT_LOOP
if __name__ == '__main__':
loop = get_event_loop()
print('[*] Testing loop.run_until_complete()')
loop.run_until_complete(wait([runner(('sleep', '5')),
runner(('sleep', '5'))]))
print()
print('[*] Testing loop.run_forever()')
loop.create_task(runner('sleep 10'.split(), timeout=5))
loop.create_task(runner('sleep 10'.split()))
loop.create_task(runner('sleep 10'.split()))
task = loop.create_task(runner('sleep 10'.split()))
loop.create_task(monitor(task))
task = loop.create_task(runner('sleep 10'.split()))
task.children.append(runner('sleep 5'.split()))
try:
loop.run_forever()
except KeyboardInterrupt:
loop.stop = True
print("[*] That's all, folks!")