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 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407
|
from rpython.rlib import rutf8, jit
from pypy.interpreter.gateway import unwrap_spec, WrappedDefault
from pypy.interpreter.error import OperationError, oefmt
def create_filter(space, w_category, action, modname):
w_modname = space.newtext(modname) if modname is not None else space.w_None
return space.newtuple([
space.newtext(action), space.w_None, w_category,
w_modname, space.newint(0)])
class State:
def __init__(self, space):
self.init_filters(space)
self.w_once_registry = space.newdict()
self.w_default_action = space.newtext("default")
self.filters_mutated(space)
def filters_mutated(self, space):
self.w_filters_version = space.call_function(space.w_object)
def init_filters(self, space):
filters_w = []
# note: in CPython, all warnings are enabled by default in pydebug mode
filters_w.append(create_filter(
space, space.w_DeprecationWarning, "default", "__main__"))
filters_w.append(create_filter(
space, space.w_DeprecationWarning, "ignore", None))
filters_w.append(create_filter(
space, space.w_PendingDeprecationWarning, "ignore", None))
filters_w.append(create_filter(
space, space.w_ImportWarning, "ignore", None))
filters_w.append(create_filter(
space, space.w_ResourceWarning, "ignore", None))
self.w_filters = space.newlist(filters_w)
def get_warnings_attr(space, name):
try:
w_module = space.getitem(space.sys.get('modules'),
space.newtext('warnings'))
except OperationError as e:
if not e.match(space, space.w_KeyError):
raise
return None
try:
return space.getattr(w_module, space.newtext(name))
except OperationError as e:
if not e.match(space, space.w_AttributeError):
raise
return None
def get_category(space, w_message, w_category):
# Get category
if space.isinstance_w(w_message, space.w_Warning):
w_category = space.type(w_message)
elif space.is_none(w_category):
w_category = space.w_UserWarning
# Validate category
try:
if not space.abstract_issubclass_w(w_category, space.w_Warning):
raise oefmt(space.w_TypeError,
"category is not a subclass of Warning")
except OperationError as e:
if e.async(space):
raise
raise oefmt(space.w_TypeError,
"category must be a Warning subclass, not '%T'",
w_category)
return w_category
def is_internal_frame(space, frame):
if frame is None:
return False
code = frame.getcode()
if code is None or code.co_filename is None:
return False
# XXX XXX HAAAACK copied directly from CPython, which I'm particularly
# unhappy about, but I can't do anything more than say "bah"
return "importlib" in code.co_filename and "_bootstrap" in code.co_filename
@jit.unroll_safe # usually runs once, or a small number of times
def next_external_frame(space, frame):
ec = space.getexecutioncontext()
while True:
frame = ec.getnextframe_nohidden(frame)
if frame is None or not is_internal_frame(space, frame):
return frame
@jit.look_inside_iff(lambda space, stacklevel: jit.isconstant(stacklevel))
def _get_frame(space, stacklevel):
ec = space.getexecutioncontext()
# Direct copy of CPython's logic, which has grown its own notion of
# "internal frames". xxx not sure I understand this logic.
frame = ec.gettopframe_nohidden()
if stacklevel <= 0 or is_internal_frame(space, frame):
while stacklevel > 1 and frame:
frame = ec.getnextframe_nohidden(frame)
stacklevel -= 1
else:
while stacklevel > 1 and frame:
frame = next_external_frame(space, frame)
stacklevel -= 1
return frame
def setup_context(space, stacklevel):
# Setup globals and lineno
frame = _get_frame(space, stacklevel)
if frame:
w_globals = frame.get_w_globals()
w_filename = space.newtext(frame.pycode.co_filename)
lineno = frame.get_last_lineno()
else:
w_globals = space.sys.w_dict
w_filename = space.newtext("sys")
lineno = 1
# setup registry
try:
w_registry = space.getitem(w_globals, space.newtext("__warningregistry__"))
except OperationError as e:
if not e.match(space, space.w_KeyError):
raise
w_registry = space.newdict()
space.setitem(w_globals, space.newtext("__warningregistry__"), w_registry)
# setup module
try:
w_module = space.getitem(w_globals, space.newtext("__name__"))
except OperationError as e:
if not e.match(space, space.w_KeyError):
raise
w_module = space.newtext("<string>")
return (w_filename, lineno, w_module, w_registry)
def check_matched(space, w_obj, w_arg):
# A 'None' filter always matches
if space.is_w(w_obj, space.w_None):
return True
# An internal plain text default filter must match exactly
if space.is_w(space.type(w_obj), space.w_unicode):
return space.eq_w(w_obj, w_arg)
# Otherwise assume a regex filter and call its match() method
return space.is_true(space.call_method(w_obj, "match", w_arg))
def get_filter(space, w_category, w_text, lineno, w_module):
w_filters = get_warnings_attr(space, "filters")
if w_filters:
space.fromcache(State).w_filters = w_filters
else:
w_filters = space.fromcache(State).w_filters
# filters could change while we are iterating over it
for w_item in space.fixedview(w_filters):
w_action, w_msg, w_cat, w_mod, w_lineno = space.fixedview(
w_item, 5)
ln = space.int_w(w_lineno)
if (check_matched(space, w_msg, w_text) and
check_matched(space, w_mod, w_module) and
space.abstract_issubclass_w(w_category, w_cat) and
(ln == 0 or ln == lineno)):
return space.text_w(w_action), w_item
action = get_default_action(space)
if not action:
raise oefmt(space.w_ValueError, "warnings.defaultaction not found")
return action, None
def get_default_action(space):
w_action = get_warnings_attr(space, "defaultaction");
if w_action is None:
return space.text_w(space.fromcache(State).w_default_action)
space.fromcache(State).w_default_action = w_action
return space.text_w(w_action)
def get_once_registry(space):
w_registry = get_warnings_attr(space, "onceregistry");
if w_registry is None:
return space.fromcache(State).w_once_registry
space.fromcache(State).w_once_registry = w_registry
return w_registry
def update_registry(space, w_registry, w_text, w_category):
w_key = space.newtuple2(w_text, w_category)
return already_warned(space, w_registry, w_key, should_set=True)
def already_warned(space, w_registry, w_key, should_set=False):
w_version_obj = space.finditem_str(w_registry, "version")
state = space.fromcache(State)
if w_version_obj is not state.w_filters_version:
space.call_method(w_registry, "clear")
space.setitem_str(w_registry, "version", state.w_filters_version)
else:
w_already_warned = space.finditem(w_registry, w_key)
if w_already_warned is not None and space.is_true(w_already_warned):
return True
# This warning wasn't found in the registry, set it.
if should_set:
space.setitem(w_registry, w_key, space.w_True)
return False
def normalize_module(space, w_filename):
# XXX: could be more efficient (doesn't necessarily need
# fsencoding/redecoding)
filename = space.fsencode_w(w_filename)
if len(filename) == 0:
return space.newtext("<unknown>")
if filename.endswith(".py"):
n = len(filename) - 3
assert n >= 0
filename = filename[:n]
return space.newfilename(filename)
return w_filename
def show_warning(space, w_filename, lineno, w_text, w_category,
w_sourceline=None):
w_name = space.getattr(w_category, space.newtext("__name__"))
w_stderr = space.sys.get("stderr")
# Print "filename:lineno: category: text\n"
message = b"%s:%d: %s: %s\n" % (space.utf8_w(w_filename), lineno,
space.utf8_w(w_name),
space.utf8_w(w_text))
space.call_method(w_stderr, "write", space.newtext(message))
# Print " source_line\n"
if not w_sourceline:
try:
# sourceline = linecache.getline(filename, lineno).strip()
w_builtins = space.getbuiltinmodule('builtins')
w_linecachemodule = space.call_method(w_builtins, '__import__',
space.newtext("linecache"))
w_sourceline = space.call_method(w_linecachemodule, "getline",
w_filename, space.newint(lineno))
w_sourceline = space.call_method(w_sourceline, "strip")
except OperationError:
w_sourceline = None
if not w_sourceline:
return
line = space.utf8_w(w_sourceline)
if not line:
return
message = "\n"
for i in range(len(line)):
c = line[i]
if c not in ' \t\014':
message = " %s\n" % (line[i:],)
break
space.call_method(w_stderr, "write", space.newtext(message))
def do_warn(space, w_message, w_category, stacklevel, w_source=None):
context_w = setup_context(space, stacklevel)
do_warn_explicit(space, w_category, w_message, context_w, w_source=w_source)
def do_warn_explicit(space, w_category, w_message, context_w,
w_sourceline=None, w_source=None):
w_filename, lineno, w_module, w_registry = context_w
# normalize module
if space.is_w(w_module, space.w_None):
w_module = normalize_module(space, w_filename)
# normalize message
if space.isinstance_w(w_message, space.w_Warning):
w_text = space.str(w_message)
w_category = space.type(w_message)
elif (not space.isinstance_w(w_message, space.w_unicode) and
not space.isinstance_w(w_message, space.w_bytes)):
w_text = space.str(w_message)
w_message = space.call_function(w_category, w_message)
else:
w_text = w_message
w_message = space.call_function(w_category, w_message)
w_lineno = space.newint(lineno)
# create key
w_key = space.newtuple([w_text, w_category, w_lineno])
if not space.is_w(w_registry, space.w_None):
if already_warned(space, w_registry, w_key):
return
# else this warning hasn't been generated before
action, w_item = get_filter(space, w_category, w_text, lineno, w_module)
if action == "error":
raise OperationError(w_category, w_message)
if action == 'ignore':
return
# Store in the registry that we've been here, *except* when the action is
# "always".
warned = False
if action != 'always':
if not space.is_w(w_registry, space.w_None):
space.setitem(w_registry, w_key, space.w_True)
if action == 'once':
if space.is_w(w_registry, space.w_None):
w_registry = get_once_registry(space)
warned = update_registry(space, w_registry, w_text, w_category)
elif action == 'module':
if not space.is_w(w_registry, space.w_None):
warned = update_registry(space, w_registry, w_text, w_category)
elif action != 'default':
try:
err = space.text_w(space.str(w_item))
except OperationError:
err = "???"
raise oefmt(space.w_RuntimeError,
"Unrecognized action (%s) in warnings.filters:\n %s",
action, err)
if warned:
# Already warned for this module
return
w_show_fn = get_warnings_attr(space, "_showwarnmsg")
if w_show_fn is None:
show_warning(space, w_filename, lineno, w_text, w_category,
w_sourceline)
return
if not space.is_true(space.callable(w_show_fn)):
raise oefmt(space.w_TypeError,
"warnings._showwarnmsg() must be set to a callable")
w_message_cls = get_warnings_attr(space, "WarningMessage")
if w_message_cls is None:
raise oefmt(space.w_RuntimeError,
"unable to get warnings.WarningMessage")
w_source = w_source or space.w_None
w_msg = space.call_function(
w_message_cls, w_message, w_category,
w_filename, w_lineno, space.w_None, space.w_None, w_source)
space.call_function(w_show_fn, w_msg)
@unwrap_spec(stacklevel=int)
def warn(space, w_message, w_category=None, stacklevel=1, w_source=None):
"Issue a warning, or maybe ignore it or raise an exception."
w_category = get_category(space, w_message, w_category);
do_warn(space, w_message, w_category, stacklevel, w_source)
def get_source_line(space, w_globals, lineno):
if space.is_none(w_globals):
return None
# Check/get the requisite pieces needed for the loader.
try:
w_loader = space.getitem(w_globals, space.newtext("__loader__"))
w_module_name = space.getitem(w_globals, space.newtext("__name__"))
except OperationError as e:
if not e.match(space, space.w_KeyError):
raise
return None
# Make sure the loader implements the optional get_source() method.
try:
w_get_source = space.getattr(w_loader, space.newtext("get_source"))
except OperationError as e:
if not e.match(space, space.w_AttributeError):
raise
return None
# Call get_source() to get the source code.
w_source = space.call_function(w_get_source, w_module_name)
if space.is_w(w_source, space.w_None):
return None
# Split the source into lines.
w_source_list = space.call_method(space.w_text, "splitlines", w_source)
# Get the source line.
w_source_line = space.getitem(w_source_list, space.newint(lineno - 1))
return w_source_line
@unwrap_spec(lineno=int, w_module = WrappedDefault(None),
w_registry = WrappedDefault(None),
w_module_globals = WrappedDefault(None))
def warn_explicit(space, w_message, w_category, w_filename, lineno,
w_module=None, w_registry=None, w_module_globals=None,
w_source=None):
"Low-level inferface to warnings functionality."
w_source_line = get_source_line(space, w_module_globals, lineno)
do_warn_explicit(space, w_category, w_message,
(w_filename, lineno, w_module, w_registry),
w_source_line, w_source)
def filters_mutated(space):
space.fromcache(State).filters_mutated(space)
|