forked from pablogs9/ThermalLibrary
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathenqueuer.py
156 lines (127 loc) · 4.36 KB
/
enqueuer.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
#!/usr/bin/python
#
# Copyright (c) Andrea Micheloni 2011
#
# Part of the tutorial available at http://www.tankmiche.com/
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
# -*- coding: utf-8 -*-
import threading
class EventQueue:
def __init__(self):
self._queue = self.Queue()
self._results = self.Results()
self._runner = self.Runner(self._queue.dequeue)
self._runner.start()
def enqueue(self, func, args=[], kwargs={}, highPriority = False):
(setResultFunc, getResultFunc) = self._results.getResultContainer()
element = self.Runner.packCall(func, args, kwargs, setResultFunc)
if self._runner.isRunning():
self._queue.enqueue(element, highPriority)
else:
self._runner.flagError(
element,
message="Event has been added after the stop() event.")
return getResultFunc
def stop(self, highPriority = False):
(setResultFunc, getResultFunc) = self._results.getResultContainer()
element = self._runner.getStopCall(self._flushQueue, setResultFunc)
self._queue.enqueue(element, highPriority)
return getResultFunc
def _flushQueue(self):
while self._queue.hasMore():
element = self._queue.dequeue()
self._runner.flagError(element)
class Queue:
def __init__(self):
self._list = []
self._condition = threading.Condition()
def enqueue(self, element, highPriority):
with self._condition:
if highPriority:
self._list.insert(0, element)
else:
self._list.append(element)
self._condition.notify()
def hasMore(self):
with self._condition:
return len(self._list) > 0
def dequeue(self):
with self._condition:
while not self.hasMore():
self._condition.wait()
return self._list.pop(0)
class Results:
def getResultContainer(self):
container = self._Container()
return (container.setResult, container.getResult)
class _Container:
def __init__(self):
self._condition = threading.Condition()
self._hasResult = False
self._resultIsException = False
self._result = None
def setResult(self, result, resultIsException):
with self._condition:
self._hasResult = True
self._resultIsException = resultIsException
self._result = result
self._condition.notify()
def getResult(self):
with self._condition:
while not self._hasResult:
self._condition.wait()
if self._resultIsException:
raise self._result
else:
return self._result
class Runner(threading.Thread):
def __init__(self, getNextFunc):
threading.Thread.__init__(self)
self._running = True
self._getNextFunc = getNextFunc
self._stopLock = threading.Lock()
def run(self):
while self.isRunning():
next = self._getNextFunc()
self._execute(next)
def isRunning(self):
with self._stopLock:
return self._running
def flagError(self, element, message="Event has not been processed."):
(func, args, kwargs, setResultFunc) = element
setResultFunc(UnprocessedEvent(message), resultIsException = True)
def getStopCall(self, afterStopFunc, setResultFunc):
return (self._stop, [afterStopFunc], {}, setResultFunc)
@staticmethod
def packCall(func, args, kwargs, setResultFunc):
return (func, args, kwargs, setResultFunc)
def _execute(self, element):
(func, args, kwargs, setResultFunc) = element
try:
result = func(*args, **kwargs)
setResultFunc(result, resultIsException = False)
except Exception, exception:
setResultFunc(exception, resultIsException = True)
def _stop(self, afterStopFunc):
with self._stopLock:
self._running = False
afterStopFunc()
class UnprocessedEvent(Exception):
def __init__(self, reason):
self._reason = reason
def __str__(self):
return str(self._reason)
def __repr__(self):
return "UnprocessedEvent(" + repr(self._reason) + ")"