-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcoroutines.py
84 lines (66 loc) · 1.66 KB
/
coroutines.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
# Copyright (c) 2011-2014 Mathias Laurin, 3-clause BSD License
"""Coroutine library."""
from __future__ import print_function
import sys
from functools import wraps
def coroutine(func):
@wraps(func)
def start(*args, **kwargs):
cr = func(*args, **kwargs)
next(cr)
return cr
return start
@coroutine
def broadcast(targets):
while True:
line = (yield)
for target in targets:
target.send(line)
@coroutine
def parse_section(section, intarget, offtarget):
target = offtarget
while True:
line = (yield)
if line.startswith(section):
offtarget.send(line) # section header always off target
target = intarget
continue
elif line.startswith("[") or line.startswith(section):
target = offtarget
target.send(line)
@coroutine
def periodic_split(range, period, intarget, offtarget):
counter = 0
while True:
counter %= period
obj = (yield)
(intarget if counter in range else offtarget).send(obj)
counter += 1
@coroutine
def convert(type_, target):
while True:
obj = (yield)
target.send(type_(obj))
@coroutine
def append(lst):
while True:
obj = (yield)
lst.append(obj)
@coroutine
def extend(dct):
while True:
key, value = (yield)
dct.setdefault(key, []).append(value)
@coroutine
def dct_set(dct):
while True:
key, value = (yield)
dct[key] = value
@coroutine
def printer(file=sys.stdout):
try:
while True:
obj = (yield)
print(obj, file=file, end="")
finally:
file.close()