-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreactor.py
165 lines (134 loc) · 5.34 KB
/
reactor.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
#!/usr/bin/env python
#
# See LICENSE file for copying information
#
"""
Space Monkey
http://www.spacemonkey.com/
The reactor we used for our Twisted processes. By default it prefers IO
instead of running until all deferreds have been processed. This might not
be the best for everyone.
"""
__copyright__ = "Copyright 2012 Space Monkey, Inc."
import os
import math
import thread
from collections import defaultdict
from heapq import heappush, heappop, heapify
from twisted.internet.epollreactor import EPollReactor
from twisted.internet.main import installReactor
from twisted.python import log
from monoclock import nano_count
# Instead of open sourcing our config system for this, just use environment
# variables. MAYBE SOMEDAY
CONF_ioreactor = "SPACE_DISABLE_IO_REACTOR" not in os.environ
CONF_profile = "SPACE_PROFILE_REACTOR" in os.environ
class Reactor(EPollReactor):
def __init__(self, *args, **kwargs):
EPollReactor.__init__(self, *args, **kwargs)
self._thread_ident = None
self.queue_contributions = defaultdict(lambda: [0, 0, 0, None, None])
def profileData(self):
if not CONF_profile:
return
data = []
for key, value in self.queue_contributions.iteritems():
lineno, funcname, filename = key
count, time_sum, time_squared_sum, time_min, time_max = value
avg = time_sum / count
stddev = math.sqrt((time_squared_sum / count) - (avg ** 2))
data.append(("%s:%s" % (filename, lineno), funcname,
count, time_sum, avg, stddev, time_min, time_max))
data.sort(key=(lambda x: x[-2]), reverse=True)
return data
def runUntilCurrent(self):
"""Run all pending timed calls.
"""
ioreactor = CONF_ioreactor
should_profile = CONF_profile
if not ioreactor:
EPollReactor.runUntilCurrent(self)
return
if self.threadCallQueue:
# Keep track of how many calls we actually make, as we're
# making them, in case another call is added to the queue
# while we're in this loop.
count = 0
total = len(self.threadCallQueue)
for (f, a, kw) in self.threadCallQueue:
try:
f(*a, **kw)
except: # pylint: disable=W0702
log.err()
count += 1
if count == total:
break
del self.threadCallQueue[:count]
if self.threadCallQueue:
self.wakeUp()
# insert new delayed calls now
self._insertNewDelayedCalls()
now = self.seconds()
while self._pendingTimedCalls and (
self._pendingTimedCalls[0].time <= now):
call = heappop(self._pendingTimedCalls)
if call.cancelled:
self._cancellations -= 1
break
if call.delayed_time > 0:
call.activate_delay()
heappush(self._pendingTimedCalls, call)
break
if should_profile:
try:
call_name = (call.func.func_code.co_firstlineno,
call.func.__name__,
call.func.func_code.co_filename)
except AttributeError, e:
call_name = (0, str(e),
"<missing_attribute: %s>" % type(call.func))
contribution = self.queue_contributions[call_name]
contribution[0] += 1
start_time = nano_count()
try:
call.called = 1
call.func(*call.args, **call.kw)
except: # pylint: disable=W0702
log.deferr()
if hasattr(call, "creator"):
e = "\n"
e += " C: previous exception occurred in " + \
"a DelayedCall created here:\n"
e += " C:"
e += "".join(call.creator).rstrip().replace("\n", "\n C:")
e += "\n"
log.msg(e)
if should_profile:
elapsed = (nano_count() - start_time) * 1e-9
contribution[1] += elapsed
contribution[2] += elapsed ** 2
if contribution[3] is None:
contribution[3] = elapsed
contribution[4] = elapsed
else:
contribution[3] += min(elapsed, contribution[3])
contribution[4] += max(elapsed, contribution[4])
break
if (self._cancellations > 50 and
self._cancellations > len(self._pendingTimedCalls) >> 1):
self._cancellations = 0
self._pendingTimedCalls = [x for x in self._pendingTimedCalls
if not x.cancelled]
heapify(self._pendingTimedCalls)
if self._justStopped:
self._justStopped = False
self.fireSystemEvent("shutdown")
def get_ident(self):
return self._thread_ident
def run(self, *args, **kwargs):
self._thread_ident = thread.get_ident()
return EPollReactor.run(self, *args, **kwargs)
def install():
p = Reactor()
installReactor(p)
__all__ = ["Reactor", "install"]