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
|
from pypy.interpreter.error import OperationError
from pypy.interpreter.baseobjspace import W_Root, ObjSpace
from pypy.interpreter.executioncontext import AsyncAction, AbstractActionFlag
from pypy.interpreter.executioncontext import PeriodicAsyncAction
import signal as cpy_signal
from pypy.rpython.lltypesystem import lltype, rffi
from pypy.translator.tool.cbuild import ExternalCompilationInfo
import py
from pypy.tool import autopath
from pypy.rlib import jit
def setup():
for key, value in cpy_signal.__dict__.items():
if key.startswith('SIG') and isinstance(value, int):
globals()[key] = value
yield key
NSIG = cpy_signal.NSIG
SIG_DFL = cpy_signal.SIG_DFL
SIG_IGN = cpy_signal.SIG_IGN
signal_names = list(setup())
eci = ExternalCompilationInfo(
includes = ['stdlib.h', 'src/signals.h'],
separate_module_sources = ['#include <src/signals.h>'],
include_dirs = [str(py.path.local(autopath.pypydir).join('translator', 'c'))],
export_symbols = ['pypysig_poll', 'pypysig_default',
'pypysig_ignore', 'pypysig_setflag',
'pypysig_getaddr_occurred'],
)
def external(name, args, result, **kwds):
return rffi.llexternal(name, args, result, compilation_info=eci, **kwds)
pypysig_ignore = external('pypysig_ignore', [rffi.INT], lltype.Void)
pypysig_default = external('pypysig_default', [rffi.INT], lltype.Void)
pypysig_setflag = external('pypysig_setflag', [rffi.INT], lltype.Void)
pypysig_poll = external('pypysig_poll', [], rffi.INT, threadsafe=False)
# don't bother releasing the GIL around a call to pypysig_poll: it's
# pointless and a performance issue
# don't use rffi.LONGP because the JIT doesn't support raw arrays so far
struct_name = 'pypysig_long_struct'
LONG_STRUCT = lltype.Struct(struct_name, ('c_value', lltype.Signed),
hints={'c_name' : struct_name, 'external' : 'C'})
del struct_name
pypysig_getaddr_occurred = external('pypysig_getaddr_occurred', [],
lltype.Ptr(LONG_STRUCT), _nowrapper=True,
pure_function=True)
c_alarm = external('alarm', [rffi.INT], rffi.INT)
c_pause = external('pause', [], rffi.INT)
class SignalActionFlag(AbstractActionFlag):
# This class uses the C-level pypysig_counter variable as the tick
# counter. The C-level signal handler will reset it to -1 whenever
# a signal is received.
def get_ticker(self):
p = pypysig_getaddr_occurred()
return p.c_value
def reset_ticker(self, value):
p = pypysig_getaddr_occurred()
p.c_value = value
def decrement_ticker(self, by):
p = pypysig_getaddr_occurred()
value = p.c_value
if self.has_bytecode_counter: # this 'if' is constant-folded
value -= by
p.c_value = value
return value
class CheckSignalAction(PeriodicAsyncAction):
"""An action that is automatically invoked when a signal is received."""
def __init__(self, space):
AsyncAction.__init__(self, space)
self.handlers_w = {}
if space.config.objspace.usemodules.thread:
# need a helper action in case signals arrive in a non-main thread
self.pending_signals = {}
self.reissue_signal_action = ReissueSignalAction(space)
else:
self.reissue_signal_action = None
def perform(self, executioncontext, frame):
while True:
n = pypysig_poll()
if n < 0:
break
if self.reissue_signal_action is None:
# no threads: we can report the signal immediately
self.report_signal(n)
else:
main_ec = self.space.threadlocals.getmainthreadvalue()
if executioncontext is main_ec:
# running in the main thread: we can report the
# signal immediately
self.report_signal(n)
else:
# running in another thread: we need to hack a bit
self.pending_signals[n] = None
self.reissue_signal_action.fire_after_thread_switch()
def report_signal(self, n):
try:
w_handler = self.handlers_w[n]
except KeyError:
return # no handler, ignore signal
# re-install signal handler, for OSes that clear it
pypysig_setflag(n)
# invoke the app-level handler
space = self.space
ec = space.getexecutioncontext()
w_frame = space.wrap(ec.gettopframe_nohidden())
space.call_function(w_handler, space.wrap(n), w_frame)
def report_pending_signals(self):
# XXX this logic isn't so complicated but I have no clue how
# to test it :-(
pending_signals = self.pending_signals.keys()
self.pending_signals.clear()
try:
while pending_signals:
self.report_signal(pending_signals.pop())
finally:
# in case of exception, put the undelivered signals back
# into the dict instead of silently swallowing them
if pending_signals:
for n in pending_signals:
self.pending_signals[n] = None
self.reissue_signal_action.fire()
class ReissueSignalAction(AsyncAction):
"""A special action to help deliver signals to the main thread. If
a non-main thread caught a signal, this action fires after every
thread switch until we land in the main thread.
"""
def perform(self, executioncontext, frame):
main_ec = self.space.threadlocals.getmainthreadvalue()
if executioncontext is main_ec:
# now running in the main thread: we can really report the signals
self.space.check_signal_action.report_pending_signals()
else:
# still running in some other thread: try again later
self.fire_after_thread_switch()
def getsignal(space, signum):
"""
getsignal(sig) -> action
Return the current action for the given signal. The return value can be:
SIG_IGN -- if the signal is being ignored
SIG_DFL -- if the default action for the signal is in effect
None -- if an unknown handler is in effect (XXX UNIMPLEMENTED)
anything else -- the callable Python object used as a handler
"""
check_signum(space, signum)
action = space.check_signal_action
if signum in action.handlers_w:
return action.handlers_w[signum]
return space.wrap(SIG_DFL)
getsignal.unwrap_spec = [ObjSpace, int]
@jit.dont_look_inside
def alarm(space, timeout):
return space.wrap(c_alarm(timeout))
alarm.unwrap_spec = [ObjSpace, int]
@jit.dont_look_inside
def pause(space):
c_pause()
return space.w_None
pause.unwrap_spec = [ObjSpace]
def check_signum(space, signum):
if signum < 1 or signum >= NSIG:
raise OperationError(space.w_ValueError,
space.wrap("signal number out of range"))
@jit.dont_look_inside
def signal(space, signum, w_handler):
"""
signal(sig, action) -> action
Set the action for the given signal. The action can be SIG_DFL,
SIG_IGN, or a callable Python object. The previous action is
returned. See getsignal() for possible return values.
*** IMPORTANT NOTICE ***
A signal handler function is called with two arguments:
the first is the signal number, the second is the interrupted stack frame.
"""
ec = space.getexecutioncontext()
main_ec = space.threadlocals.getmainthreadvalue()
old_handler = getsignal(space, signum)
if ec is not main_ec:
raise OperationError(space.w_ValueError,
space.wrap("signal() must be called from the "
"main thread"))
action = space.check_signal_action
if space.eq_w(w_handler, space.wrap(SIG_DFL)):
pypysig_default(signum)
action.handlers_w[signum] = w_handler
elif space.eq_w(w_handler, space.wrap(SIG_IGN)):
pypysig_ignore(signum)
action.handlers_w[signum] = w_handler
else:
if not space.is_true(space.callable(w_handler)):
raise OperationError(space.w_TypeError,
space.wrap("'handler' must be a callable "
"or SIG_DFL or SIG_IGN"))
pypysig_setflag(signum)
action.handlers_w[signum] = w_handler
return old_handler
signal.unwrap_spec = [ObjSpace, int, W_Root]
|