-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathconsumer_mixin.py
199 lines (165 loc) · 5.84 KB
/
consumer_mixin.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
# ===============================================================================
# Copyright 2013 Jake Ross
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# ===============================================================================
# ============= enthought library imports =======================
from __future__ import absolute_import
from __future__ import print_function
# ============= standard library imports ========================
# ============= local library imports ==========================
import time
from queue import Queue, Empty
from threading import Thread
class ConsumerMixin:
_consumer_queue = None
_should_consume = False
_consume_func = None
_main = False
_buftime = 0
_consumer = None
_timeout = 0
_delay = 0
# def __init__(self, func=None, buftime=None, auto_start=True, main=False, timeout=None, delay=1, *args, **kw):
# super(ConsumerMixin, self).__init__(*args, **kw)
#
# self.setup_consumer(func, buftime, auto_start, main, timeout, delay)
def setup_consumer(
self,
func=None,
buftime=None,
auto_start=True,
main=False,
timeout=None,
delay=500,
):
self._delay = delay # ms
self._consume_func = func
self._main = main
self._buftime = buftime # ms
self._consumer_queue = Queue()
self._consumer = Thread(
target=self._consume,
args=(timeout,),
name="consumer.{}".format(self.__class__.__name__),
)
self._timeout = timeout
self._should_consume = True
if auto_start:
self._consumer.setDaemon(1)
self._consumer.start()
def queue_size(self):
qs = 0
if self._consumer_queue:
qs = self._consumer_queue.qsize()
return qs
def is_empty(self):
if self._consumer_queue:
return self._consumer_queue.empty()
def start(self):
self._should_consume = True
if not self._consumer:
self._consumer = Thread(
target=self._consume,
args=(self._timeout,),
name="consumer.{}".format(self.__class__.__name__),
)
if not self._consumer.isAlive():
self._consumer.setDaemon(1)
self._consumer.start()
def stop(self):
if self._consumer:
self._should_consume = False
self._consumer = None
start_consuming = start
stop_consuming = stop
def add_consumable(self, v, timeout=None):
if not self._consumer_queue:
self.setup_consumer(timeout=timeout)
self._consumer_queue.put(v)
def _consume(self, timeout):
bt = self._buftime
if bt:
bt *= 1e-3
def get_func():
q = self._consumer_queue
v = None
while 1:
try:
v = q.get(timeout=bt)
except Empty:
break
return v
else:
def get_func():
try:
if self._consumer_queue is None:
print(self)
return self._consumer_queue.get(timeout=1)
except Empty:
return
cfunc = self._consume_func
st = time.time()
d = self._delay * 1e-3
while self._should_consume:
if d:
time.sleep(d)
if timeout:
if time.time() - st > timeout:
self._should_consume = False
self._consumer_queue = None
print("consumer time out")
break
try:
v = get_func()
if v is not None:
if cfunc:
if self._main:
from pychron.core.ui.gui import invoke_in_main_thread
invoke_in_main_thread(cfunc, v)
else:
cfunc(v)
elif isinstance(v, tuple):
if len(v) == 3:
func, args, kw = v
else:
func, args = v
kw = {}
if not isinstance(args, tuple):
args = (args,)
if self._main:
from pychron.core.ui.gui import invoke_in_main_thread
invoke_in_main_thread(func, *args, **kw)
else:
func(*args)
except Exception as e:
import traceback
traceback.print_exc()
class consumable(object):
_func = None
_consumer = None
_main = False
def __init__(self, func=None, main=False):
self._func = func
self._main = main
def __enter__(self):
self._consumer = c = ConsumerMixin()
c.setup_consumer(func=self._func, main=self._main, auto_start=False)
return c
def __exit__(self, *args, **kw):
self._consumer.stop()
self._consumer._consumer_queue = None
self._consumer._consume_func = None
self._consumer = None
self._func = None
# ============= EOF =============================================