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 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350
|
"""
Implementation of interpreter-level 'sys' routines.
"""
from rpython.rlib import jit
from rpython.rlib.runicode import MAXUNICODE
from pypy.interpreter import gateway
from pypy.interpreter.error import oefmt
from pypy.interpreter.gateway import unwrap_spec
# ____________________________________________________________
@unwrap_spec(depth=int)
def _getframe(space, depth=0):
"""Return a frame object from the call stack. If optional integer depth is
given, return the frame object that many calls below the top of the stack.
If that is deeper than the call stack, ValueError is raised. The default
for depth is zero, returning the frame at the top of the call stack.
This function should be used for internal and specialized
purposes only."""
if depth < 0:
raise oefmt(space.w_ValueError, "frame index must not be negative")
return getframe(space, depth)
@jit.look_inside_iff(lambda space, depth: jit.isconstant(depth))
def getframe(space, depth):
ec = space.getexecutioncontext()
f = ec.gettopframe_nohidden()
while True:
if f is None:
raise oefmt(space.w_ValueError, "call stack is not deep enough")
if depth == 0:
f.mark_as_escaped()
return f
depth -= 1
f = ec.getnextframe_nohidden(f)
def _stack_check_noinline():
from rpython.rlib.rstack import stack_check
stack_check()
_stack_check_noinline._dont_inline_ = True
@jit.dont_look_inside
@unwrap_spec(new_limit="c_int")
def setrecursionlimit(space, new_limit):
"""setrecursionlimit() sets the maximum number of nested calls that
can occur before a RecursionError is raised. On PyPy the limit
is approximative and checked at a lower level. The default 1000
reserves 768KB of stack space, which should suffice (on Linux,
depending on the compiler settings) for ~1400 calls. Setting the
value to N reserves N/1000 times 768KB of stack space.
"""
from rpython.rlib.rstack import _stack_set_length_fraction
from rpython.rlib.rstackovf import StackOverflow
if new_limit <= 0:
raise oefmt(space.w_ValueError, "recursion limit must be positive")
try:
_stack_set_length_fraction(new_limit * 0.001)
_stack_check_noinline()
except StackOverflow:
old_limit = space.sys.recursionlimit
_stack_set_length_fraction(old_limit * 0.001)
raise oefmt(space.w_RecursionError,
"maximum recursion depth exceeded")
space.sys.recursionlimit = new_limit
def getrecursionlimit(space):
"""Return the last value set by setrecursionlimit().
"""
return space.newint(space.sys.recursionlimit)
@unwrap_spec(interval=int)
def setcheckinterval(space, interval):
"""Tell the Python interpreter to check for asynchronous events every
n instructions. This also affects how often thread switches occur."""
space.actionflag.setcheckinterval(interval)
def getcheckinterval(space):
"""Return the current check interval; see setcheckinterval()."""
# xxx to make tests and possibly some obscure apps happy, if the
# checkinterval is set to the minimum possible value (which is 1) we
# return 0. The idea is that according to the CPython docs, <= 0
# means "check every virtual instruction, maximizing responsiveness
# as well as overhead".
result = space.actionflag.getcheckinterval()
if result <= 1:
result = 0
return space.newint(result)
@unwrap_spec(interval=float)
def setswitchinterval(space, interval):
"""For CPython compatibility, this maps to
sys.setcheckinterval(interval * 2000000)
"""
# The scaling factor is chosen so that with the default
# checkinterval value of 10000, it corresponds to 0.005, which is
# the default value of the switchinterval in CPython 3.5
if interval <= 0.0:
raise oefmt(space.w_ValueError,
"switch interval must be strictly positive")
space.actionflag.setcheckinterval(int(interval * 2000000.0))
def getswitchinterval(space):
"""For CPython compatibility, this maps to
sys.getcheckinterval() / 2000000
"""
return space.newfloat(space.actionflag.getcheckinterval() / 2000000.0)
def exc_info(space):
"""Return the (type, value, traceback) of the most recent exception
caught by an except clause in the current stack frame or in an older stack
frame."""
return exc_info_with_tb(space) # indirection for the tests
def exc_info_with_tb(space):
operror = space.getexecutioncontext().sys_exc_info()
if operror is None:
return space.newtuple([space.w_None, space.w_None, space.w_None])
else:
return space.newtuple([operror.w_type, operror.get_w_value(space),
operror.get_w_traceback(space)])
def exc_info_without_tb(space, operror):
return space.newtuple([operror.w_type, operror.get_w_value(space),
space.w_None])
def exc_info_direct(space, frame):
from pypy.tool import stdlib_opcode
# In order to make the JIT happy, we try to return (exc, val, None)
# instead of (exc, val, tb). We can do that only if we recognize
# the following pattern in the bytecode:
# CALL_FUNCTION/CALL_METHOD <-- invoking me
# LOAD_CONST 0, 1, -2 or -3
# BINARY_SUBSCR
# or:
# CALL_FUNCTION/CALL_METHOD
# LOAD_CONST any integer or None
# LOAD_CONST <=2
# BUILD_SLICE 2
# BINARY_SUBSCR
need_all_three_args = True
co = frame.getcode().co_code
p = frame.last_instr
if (ord(co[p]) == stdlib_opcode.CALL_FUNCTION or
ord(co[p]) == stdlib_opcode.CALL_METHOD):
if ord(co[p+3]) == stdlib_opcode.LOAD_CONST:
lo = ord(co[p+4])
hi = ord(co[p+5])
w_constant = frame.getconstant_w((hi * 256) | lo)
if ord(co[p+6]) == stdlib_opcode.BINARY_SUBSCR:
if space.isinstance_w(w_constant, space.w_int):
constant = space.int_w(w_constant)
if -3 <= constant <= 1 and constant != -1:
need_all_three_args = False
elif (ord(co[p+6]) == stdlib_opcode.LOAD_CONST and
ord(co[p+9]) == stdlib_opcode.BUILD_SLICE and
ord(co[p+12]) == stdlib_opcode.BINARY_SUBSCR):
if (space.is_w(w_constant, space.w_None) or
space.isinstance_w(w_constant, space.w_int)):
lo = ord(co[p+7])
hi = ord(co[p+8])
w_constant = frame.getconstant_w((hi * 256) | lo)
if space.isinstance_w(w_constant, space.w_int):
if space.int_w(w_constant) <= 2:
need_all_three_args = False
#
operror = space.getexecutioncontext().sys_exc_info()
if need_all_three_args or operror is None or frame.hide():
return exc_info_with_tb(space)
else:
return exc_info_without_tb(space, operror)
def exc_clear(space):
"""Clear global information on the current exception. Subsequent calls
to exc_info() will return (None,None,None) until another exception is
raised and caught in the current thread or the execution stack returns to a
frame where another exception is being handled."""
space.getexecutioncontext().clear_sys_exc_info()
def settrace(space, w_func):
"""Set the global debug tracing function. It will be called on each
function call. See the debugger chapter in the library manual."""
space.getexecutioncontext().settrace(w_func)
def gettrace(space):
"""Return the global debug tracing function set with sys.settrace.
See the debugger chapter in the library manual."""
return space.getexecutioncontext().gettrace()
def setprofile(space, w_func):
"""Set the profiling function. It will be called on each function call
and return. See the profiler chapter in the library manual."""
space.getexecutioncontext().setprofile(w_func)
def getprofile(space):
"""Return the profiling function set with sys.setprofile.
See the profiler chapter in the library manual."""
w_func = space.getexecutioncontext().getprofile()
if w_func is not None:
return w_func
else:
return space.w_None
def call_tracing(space, w_func, w_args):
"""Call func(*args), while tracing is enabled. The tracing state is
saved, and restored afterwards. This is intended to be called from
a debugger from a checkpoint, to recursively debug some other code."""
return space.getexecutioncontext().call_tracing(w_func, w_args)
app = gateway.applevel('''
"NOT_RPYTHON"
from _structseq import structseqtype, structseqfield
class windows_version_info(metaclass=structseqtype):
name = "sys.getwindowsversion"
major = structseqfield(0, "Major version number")
minor = structseqfield(1, "Minor version number")
build = structseqfield(2, "Build number")
platform = structseqfield(3, "Operating system platform")
service_pack = structseqfield(4, "Latest Service Pack installed on the system")
# Because the indices aren't consecutive, they aren't included when
# unpacking and other such operations.
service_pack_major = structseqfield(10, "Service Pack major version number")
service_pack_minor = structseqfield(11, "Service Pack minor version number")
suite_mask = structseqfield(12, "Bit mask identifying available product suites")
product_type = structseqfield(13, "System product type")
_platform_version = structseqfield(14, "Diagnostic version number")
''')
def getwindowsversion(space):
from rpython.rlib import rwin32
info = rwin32.GetVersionEx()
w_windows_version_info = app.wget(space, "windows_version_info")
raw_version = space.newtuple([
space.newint(info[0]),
space.newint(info[1]),
space.newint(info[2]),
space.newint(info[3]),
space.newtext(info[4]),
space.newint(info[5]),
space.newint(info[6]),
space.newint(info[7]),
space.newint(info[8]),
# leave _platform_version empty, platform.py will use the main
# version numbers above.
space.w_None,
])
return space.call_function(w_windows_version_info, raw_version)
@jit.dont_look_inside
def get_dllhandle(space):
if not space.config.objspace.usemodules.cpyext:
return space.newint(0)
return _get_dllhandle(space)
def _get_dllhandle(space):
# Retrieve cpyext api handle
from pypy.module.cpyext.api import State
handle = space.fromcache(State).get_pythonapi_handle()
# It used to be a CDLL
# from pypy.module._rawffi.interp_rawffi import W_CDLL
# from rpython.rlib.clibffi import RawCDLL
# cdll = RawCDLL(handle)
# return W_CDLL(space, "python api", cdll)
# Provide a cpython-compatible int
from rpython.rtyper.lltypesystem import lltype, rffi
return space.newint(rffi.cast(lltype.Signed, handle))
getsizeof_missing = """getsizeof(...)
getsizeof(object, default) -> int
Return the size of object in bytes.
sys.getsizeof(object, default) will always return default on PyPy, and
raise a TypeError if default is not provided.
First note that the CPython documentation says that this function may
raise a TypeError, so if you are seeing it, it means that the program
you are using is not correctly handling this case.
On PyPy, though, it always raises TypeError. Before looking for
alternatives, please take a moment to read the following explanation as
to why it is the case. What you are looking for may not be possible.
A memory profiler using this function is most likely to give results
inconsistent with reality on PyPy. It would be possible to have
sys.getsizeof() return a number (with enough work), but that may or
may not represent how much memory the object uses. It doesn't even
make really sense to ask how much *one* object uses, in isolation
with the rest of the system. For example, instances have maps,
which are often shared across many instances; in this case the maps
would probably be ignored by an implementation of sys.getsizeof(),
but their overhead is important in some cases if they are many
instances with unique maps. Conversely, equal strings may share
their internal string data even if they are different objects---or
empty containers may share parts of their internals as long as they
are empty. Even stranger, some lists create objects as you read
them; if you try to estimate the size in memory of range(10**6) as
the sum of all items' size, that operation will by itself create one
million integer objects that never existed in the first place.
"""
def getsizeof(space, w_object, w_default=None):
if w_default is None:
raise oefmt(space.w_TypeError, getsizeof_missing)
return w_default
getsizeof.__doc__ = getsizeof_missing
def intern(space, w_str):
"""``Intern'' the given string. This enters the string in the (global)
table of interned strings whose purpose is to speed up dictionary lookups.
Return the string itself or the previously interned string object with the
same value."""
if space.is_w(space.type(w_str), space.w_unicode):
return space.new_interned_w_str(w_str)
raise oefmt(space.w_TypeError, "intern() argument must be string.")
def get_coroutine_wrapper(space):
"Return the wrapper for coroutine objects set by sys.set_coroutine_wrapper."
ec = space.getexecutioncontext()
if ec.w_coroutine_wrapper_fn is None:
return space.w_None
return ec.w_coroutine_wrapper_fn
def set_coroutine_wrapper(space, w_wrapper):
"Set a wrapper for coroutine objects."
ec = space.getexecutioncontext()
if space.is_w(w_wrapper, space.w_None):
ec.w_coroutine_wrapper_fn = None
elif space.is_true(space.callable(w_wrapper)):
ec.w_coroutine_wrapper_fn = w_wrapper
else:
raise oefmt(space.w_TypeError, "callable expected, got %T", w_wrapper)
def is_finalizing(space):
return space.newbool(space.sys.finalizing)
|