blob: cbc64e3b94414feb3c5fbe48e7c7d78c48e6bf13 [file] [log] [blame]
Christian Heimes33fe8092008-04-13 13:53:33 +00001#include "Python.h"
2#include "frameobject.h"
3
4#define MODULE_NAME "_warnings"
Christian Heimes33fe8092008-04-13 13:53:33 +00005
6PyDoc_STRVAR(warnings__doc__,
7MODULE_NAME " provides basic warning filtering support.\n"
8"It is a helper module to speed up interpreter start-up.");
9
10/* Both 'filters' and 'onceregistry' can be set in warnings.py;
11 get_warnings_attr() will reset these variables accordingly. */
12static PyObject *_filters; /* List */
13static PyObject *_once_registry; /* Dict */
Brett Cannon0759dd62009-04-01 18:13:07 +000014static PyObject *_default_action; /* String */
Christian Heimes33fe8092008-04-13 13:53:33 +000015
16
17static int
18check_matched(PyObject *obj, PyObject *arg)
19{
20 PyObject *result;
Martin v. Löwisbd928fe2011-10-14 10:20:37 +020021 _Py_IDENTIFIER(match);
Christian Heimes33fe8092008-04-13 13:53:33 +000022 int rc;
23
24 if (obj == Py_None)
25 return 1;
Martin v. Löwisafe55bb2011-10-09 10:38:36 +020026 result = _PyObject_CallMethodId(obj, &PyId_match, "O", arg);
Christian Heimes33fe8092008-04-13 13:53:33 +000027 if (result == NULL)
28 return -1;
29
30 rc = PyObject_IsTrue(result);
31 Py_DECREF(result);
32 return rc;
33}
34
35/*
36 Returns a new reference.
37 A NULL return value can mean false or an error.
38*/
39static PyObject *
40get_warnings_attr(const char *attr)
41{
42 static PyObject *warnings_str = NULL;
43 PyObject *all_modules;
44 PyObject *warnings_module;
45 int result;
46
47 if (warnings_str == NULL) {
48 warnings_str = PyUnicode_InternFromString("warnings");
49 if (warnings_str == NULL)
50 return NULL;
51 }
52
53 all_modules = PyImport_GetModuleDict();
54 result = PyDict_Contains(all_modules, warnings_str);
55 if (result == -1 || result == 0)
56 return NULL;
57
58 warnings_module = PyDict_GetItem(all_modules, warnings_str);
59 if (!PyObject_HasAttrString(warnings_module, attr))
60 return NULL;
61 return PyObject_GetAttrString(warnings_module, attr);
62}
63
64
Neal Norwitz32dde222008-04-15 06:43:13 +000065static PyObject *
Christian Heimes33fe8092008-04-13 13:53:33 +000066get_once_registry(void)
67{
68 PyObject *registry;
69
70 registry = get_warnings_attr("onceregistry");
71 if (registry == NULL) {
72 if (PyErr_Occurred())
73 return NULL;
74 return _once_registry;
75 }
76 Py_DECREF(_once_registry);
77 _once_registry = registry;
78 return registry;
79}
80
81
Brett Cannon0759dd62009-04-01 18:13:07 +000082static PyObject *
83get_default_action(void)
84{
85 PyObject *default_action;
86
87 default_action = get_warnings_attr("defaultaction");
88 if (default_action == NULL) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000089 if (PyErr_Occurred()) {
90 return NULL;
91 }
92 return _default_action;
Brett Cannon0759dd62009-04-01 18:13:07 +000093 }
94
95 Py_DECREF(_default_action);
96 _default_action = default_action;
97 return default_action;
98}
99
100
Christian Heimes33fe8092008-04-13 13:53:33 +0000101/* The item is a borrowed reference. */
Victor Stinnera4c704b2013-10-29 23:43:41 +0100102static PyObject*
Christian Heimes33fe8092008-04-13 13:53:33 +0000103get_filter(PyObject *category, PyObject *text, Py_ssize_t lineno,
104 PyObject *module, PyObject **item)
105{
Brett Cannon0759dd62009-04-01 18:13:07 +0000106 PyObject *action;
Christian Heimes33fe8092008-04-13 13:53:33 +0000107 Py_ssize_t i;
108 PyObject *warnings_filters;
109
110 warnings_filters = get_warnings_attr("filters");
111 if (warnings_filters == NULL) {
112 if (PyErr_Occurred())
113 return NULL;
114 }
115 else {
116 Py_DECREF(_filters);
117 _filters = warnings_filters;
118 }
119
Victor Stinner7d79b8b2010-05-19 20:40:50 +0000120 if (_filters == NULL || !PyList_Check(_filters)) {
Christian Heimes33fe8092008-04-13 13:53:33 +0000121 PyErr_SetString(PyExc_ValueError,
122 MODULE_NAME ".filters must be a list");
123 return NULL;
124 }
125
126 /* _filters could change while we are iterating over it. */
127 for (i = 0; i < PyList_GET_SIZE(_filters); i++) {
128 PyObject *tmp_item, *action, *msg, *cat, *mod, *ln_obj;
129 Py_ssize_t ln;
130 int is_subclass, good_msg, good_mod;
131
132 tmp_item = *item = PyList_GET_ITEM(_filters, i);
133 if (PyTuple_Size(tmp_item) != 5) {
134 PyErr_Format(PyExc_ValueError,
135 MODULE_NAME ".filters item %zd isn't a 5-tuple", i);
136 return NULL;
137 }
138
139 /* Python code: action, msg, cat, mod, ln = item */
140 action = PyTuple_GET_ITEM(tmp_item, 0);
141 msg = PyTuple_GET_ITEM(tmp_item, 1);
142 cat = PyTuple_GET_ITEM(tmp_item, 2);
143 mod = PyTuple_GET_ITEM(tmp_item, 3);
144 ln_obj = PyTuple_GET_ITEM(tmp_item, 4);
145
146 good_msg = check_matched(msg, text);
147 good_mod = check_matched(mod, module);
148 is_subclass = PyObject_IsSubclass(category, cat);
149 ln = PyLong_AsSsize_t(ln_obj);
150 if (good_msg == -1 || good_mod == -1 || is_subclass == -1 ||
151 (ln == -1 && PyErr_Occurred()))
152 return NULL;
153
154 if (good_msg && is_subclass && good_mod && (ln == 0 || lineno == ln))
Victor Stinnera4c704b2013-10-29 23:43:41 +0100155 return action;
Christian Heimes33fe8092008-04-13 13:53:33 +0000156 }
157
Brett Cannon0759dd62009-04-01 18:13:07 +0000158 action = get_default_action();
Victor Stinnera4c704b2013-10-29 23:43:41 +0100159 if (action != NULL)
160 return action;
Christian Heimes33fe8092008-04-13 13:53:33 +0000161
162 PyErr_SetString(PyExc_ValueError,
Brett Cannon0759dd62009-04-01 18:13:07 +0000163 MODULE_NAME ".defaultaction not found");
Christian Heimes33fe8092008-04-13 13:53:33 +0000164 return NULL;
165}
166
Brett Cannon0759dd62009-04-01 18:13:07 +0000167
Christian Heimes33fe8092008-04-13 13:53:33 +0000168static int
169already_warned(PyObject *registry, PyObject *key, int should_set)
170{
171 PyObject *already_warned;
172
173 if (key == NULL)
174 return -1;
175
176 already_warned = PyDict_GetItem(registry, key);
177 if (already_warned != NULL) {
178 int rc = PyObject_IsTrue(already_warned);
179 if (rc != 0)
180 return rc;
181 }
182
183 /* This warning wasn't found in the registry, set it. */
184 if (should_set)
185 return PyDict_SetItem(registry, key, Py_True);
186 return 0;
187}
188
189/* New reference. */
190static PyObject *
191normalize_module(PyObject *filename)
192{
193 PyObject *module;
Victor Stinnera4c704b2013-10-29 23:43:41 +0100194 int kind;
195 void *data;
Christian Heimes33fe8092008-04-13 13:53:33 +0000196 Py_ssize_t len;
197
Victor Stinner9e30aa52011-11-21 02:49:52 +0100198 len = PyUnicode_GetLength(filename);
Christian Heimes33fe8092008-04-13 13:53:33 +0000199 if (len < 0)
200 return NULL;
Victor Stinnera4c704b2013-10-29 23:43:41 +0100201
202 if (len == 0)
203 return PyUnicode_FromString("<unknown>");
204
205 kind = PyUnicode_KIND(filename);
206 data = PyUnicode_DATA(filename);
207
208 /* if filename.endswith(".py"): */
Christian Heimes33fe8092008-04-13 13:53:33 +0000209 if (len >= 3 &&
Victor Stinnera4c704b2013-10-29 23:43:41 +0100210 PyUnicode_READ(kind, data, len-3) == '.' &&
211 PyUnicode_READ(kind, data, len-2) == 'p' &&
212 PyUnicode_READ(kind, data, len-1) == 'y')
213 {
Victor Stinner9e30aa52011-11-21 02:49:52 +0100214 module = PyUnicode_Substring(filename, 0, len-3);
Christian Heimes33fe8092008-04-13 13:53:33 +0000215 }
216 else {
217 module = filename;
218 Py_INCREF(module);
219 }
220 return module;
221}
222
223static int
224update_registry(PyObject *registry, PyObject *text, PyObject *category,
225 int add_zero)
226{
227 PyObject *altkey, *zero = NULL;
228 int rc;
229
230 if (add_zero) {
231 zero = PyLong_FromLong(0);
232 if (zero == NULL)
233 return -1;
234 altkey = PyTuple_Pack(3, text, category, zero);
235 }
236 else
237 altkey = PyTuple_Pack(2, text, category);
238
239 rc = already_warned(registry, altkey, 1);
240 Py_XDECREF(zero);
241 Py_XDECREF(altkey);
242 return rc;
243}
244
245static void
246show_warning(PyObject *filename, int lineno, PyObject *text, PyObject
247 *category, PyObject *sourceline)
248{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000249 PyObject *f_stderr;
250 PyObject *name;
Christian Heimes33fe8092008-04-13 13:53:33 +0000251 char lineno_str[128];
Martin v. Löwisbd928fe2011-10-14 10:20:37 +0200252 _Py_IDENTIFIER(__name__);
Christian Heimes33fe8092008-04-13 13:53:33 +0000253
254 PyOS_snprintf(lineno_str, sizeof(lineno_str), ":%d: ", lineno);
255
Martin v. Löwis1ee1b6f2011-10-10 18:11:30 +0200256 name = _PyObject_GetAttrId(category, &PyId___name__);
Christian Heimes33fe8092008-04-13 13:53:33 +0000257 if (name == NULL) /* XXX Can an object lack a '__name__' attribute? */
Benjamin Peterson7ab4b8d2010-06-28 00:01:59 +0000258 return;
Christian Heimes33fe8092008-04-13 13:53:33 +0000259
260 f_stderr = PySys_GetObject("stderr");
261 if (f_stderr == NULL) {
262 fprintf(stderr, "lost sys.stderr\n");
263 Py_DECREF(name);
264 return;
265 }
266
267 /* Print "filename:lineno: category: text\n" */
268 PyFile_WriteObject(filename, f_stderr, Py_PRINT_RAW);
269 PyFile_WriteString(lineno_str, f_stderr);
270 PyFile_WriteObject(name, f_stderr, Py_PRINT_RAW);
271 PyFile_WriteString(": ", f_stderr);
272 PyFile_WriteObject(text, f_stderr, Py_PRINT_RAW);
273 PyFile_WriteString("\n", f_stderr);
274 Py_XDECREF(name);
275
276 /* Print " source_line\n" */
Christian Heimes33fe8092008-04-13 13:53:33 +0000277 if (sourceline) {
Victor Stinnera4c704b2013-10-29 23:43:41 +0100278 int kind;
279 void *data;
280 Py_ssize_t i, len;
281 Py_UCS4 ch;
282 PyObject *truncated;
Christian Heimes33fe8092008-04-13 13:53:33 +0000283
Victor Stinnera4c704b2013-10-29 23:43:41 +0100284 if (PyUnicode_READY(sourceline) < 1)
285 goto error;
286
287 kind = PyUnicode_KIND(sourceline);
288 data = PyUnicode_DATA(sourceline);
289 len = PyUnicode_GET_LENGTH(sourceline);
290 for (i=0; i<len; i++) {
291 ch = PyUnicode_READ(kind, data, i);
292 if (ch != ' ' && ch != '\t' && ch != '\014')
293 break;
294 }
295
296 truncated = PyUnicode_Substring(sourceline, i, len);
297 if (truncated == NULL)
298 goto error;
299
300 PyFile_WriteObject(sourceline, f_stderr, Py_PRINT_RAW);
301 Py_DECREF(truncated);
Christian Heimes33fe8092008-04-13 13:53:33 +0000302 PyFile_WriteString("\n", f_stderr);
303 }
Victor Stinner78e2c982013-07-16 01:54:37 +0200304 else {
305 _Py_DisplaySourceLine(f_stderr, filename, lineno, 2);
306 }
Victor Stinnera4c704b2013-10-29 23:43:41 +0100307
308error:
Christian Heimes33fe8092008-04-13 13:53:33 +0000309 PyErr_Clear();
310}
311
312static PyObject *
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000313warn_explicit(PyObject *category, PyObject *message,
Christian Heimes33fe8092008-04-13 13:53:33 +0000314 PyObject *filename, int lineno,
315 PyObject *module, PyObject *registry, PyObject *sourceline)
316{
317 PyObject *key = NULL, *text = NULL, *result = NULL, *lineno_obj = NULL;
318 PyObject *item = Py_None;
Victor Stinnera4c704b2013-10-29 23:43:41 +0100319 PyObject *action;
Christian Heimes33fe8092008-04-13 13:53:33 +0000320 int rc;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000321
Brett Cannondb734912008-06-27 00:52:15 +0000322 if (registry && !PyDict_Check(registry) && (registry != Py_None)) {
323 PyErr_SetString(PyExc_TypeError, "'registry' must be a dict");
324 return NULL;
325 }
Christian Heimes33fe8092008-04-13 13:53:33 +0000326
327 /* Normalize module. */
328 if (module == NULL) {
329 module = normalize_module(filename);
330 if (module == NULL)
331 return NULL;
332 }
333 else
334 Py_INCREF(module);
335
336 /* Normalize message. */
337 Py_INCREF(message); /* DECREF'ed in cleanup. */
338 rc = PyObject_IsInstance(message, PyExc_Warning);
339 if (rc == -1) {
340 goto cleanup;
341 }
342 if (rc == 1) {
343 text = PyObject_Str(message);
Hirokazu Yamamoto1c0c0032009-07-17 06:55:42 +0000344 if (text == NULL)
345 goto cleanup;
Christian Heimes33fe8092008-04-13 13:53:33 +0000346 category = (PyObject*)message->ob_type;
347 }
348 else {
349 text = message;
350 message = PyObject_CallFunction(category, "O", message);
Brett Cannondb734912008-06-27 00:52:15 +0000351 if (message == NULL)
352 goto cleanup;
Christian Heimes33fe8092008-04-13 13:53:33 +0000353 }
354
355 lineno_obj = PyLong_FromLong(lineno);
356 if (lineno_obj == NULL)
357 goto cleanup;
358
359 /* Create key. */
360 key = PyTuple_Pack(3, text, category, lineno_obj);
361 if (key == NULL)
362 goto cleanup;
363
Brett Cannondb734912008-06-27 00:52:15 +0000364 if ((registry != NULL) && (registry != Py_None)) {
Christian Heimes33fe8092008-04-13 13:53:33 +0000365 rc = already_warned(registry, key, 0);
366 if (rc == -1)
367 goto cleanup;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000368 else if (rc == 1)
Christian Heimes33fe8092008-04-13 13:53:33 +0000369 goto return_none;
370 /* Else this warning hasn't been generated before. */
371 }
372
373 action = get_filter(category, text, lineno, module, &item);
374 if (action == NULL)
375 goto cleanup;
376
Victor Stinnera4c704b2013-10-29 23:43:41 +0100377 if (PyUnicode_CompareWithASCIIString(action, "error") == 0) {
Christian Heimes33fe8092008-04-13 13:53:33 +0000378 PyErr_SetObject(category, message);
379 goto cleanup;
380 }
381
382 /* Store in the registry that we've been here, *except* when the action
383 is "always". */
384 rc = 0;
Victor Stinnera4c704b2013-10-29 23:43:41 +0100385 if (PyUnicode_CompareWithASCIIString(action, "always") != 0) {
Brett Cannondb734912008-06-27 00:52:15 +0000386 if (registry != NULL && registry != Py_None &&
387 PyDict_SetItem(registry, key, Py_True) < 0)
Christian Heimes33fe8092008-04-13 13:53:33 +0000388 goto cleanup;
Victor Stinnera4c704b2013-10-29 23:43:41 +0100389 else if (PyUnicode_CompareWithASCIIString(action, "ignore") == 0)
Christian Heimes33fe8092008-04-13 13:53:33 +0000390 goto return_none;
Victor Stinnera4c704b2013-10-29 23:43:41 +0100391 else if (PyUnicode_CompareWithASCIIString(action, "once") == 0) {
Brett Cannondb734912008-06-27 00:52:15 +0000392 if (registry == NULL || registry == Py_None) {
Christian Heimes33fe8092008-04-13 13:53:33 +0000393 registry = get_once_registry();
394 if (registry == NULL)
395 goto cleanup;
396 }
397 /* _once_registry[(text, category)] = 1 */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000398 rc = update_registry(registry, text, category, 0);
Christian Heimes33fe8092008-04-13 13:53:33 +0000399 }
Victor Stinnera4c704b2013-10-29 23:43:41 +0100400 else if (PyUnicode_CompareWithASCIIString(action, "module") == 0) {
Christian Heimes33fe8092008-04-13 13:53:33 +0000401 /* registry[(text, category, 0)] = 1 */
Brett Cannondb734912008-06-27 00:52:15 +0000402 if (registry != NULL && registry != Py_None)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000403 rc = update_registry(registry, text, category, 0);
Christian Heimes33fe8092008-04-13 13:53:33 +0000404 }
Victor Stinnera4c704b2013-10-29 23:43:41 +0100405 else if (PyUnicode_CompareWithASCIIString(action, "default") != 0) {
Christian Heimes33fe8092008-04-13 13:53:33 +0000406 PyErr_Format(PyExc_RuntimeError,
Victor Stinnera4c704b2013-10-29 23:43:41 +0100407 "Unrecognized action (%R) in warnings.filters:\n %R",
408 action, item);
Christian Heimes33fe8092008-04-13 13:53:33 +0000409 goto cleanup;
410 }
411 }
412
Christian Heimes1a8501c2008-10-02 19:56:01 +0000413 if (rc == 1) /* Already warned for this module. */
Christian Heimes33fe8092008-04-13 13:53:33 +0000414 goto return_none;
415 if (rc == 0) {
416 PyObject *show_fxn = get_warnings_attr("showwarning");
417 if (show_fxn == NULL) {
418 if (PyErr_Occurred())
419 goto cleanup;
420 show_warning(filename, lineno, text, category, sourceline);
421 }
422 else {
Brett Cannonec92e182008-09-02 02:46:59 +0000423 PyObject *res;
Christian Heimes8dc226f2008-05-06 23:45:46 +0000424
Brett Cannon52a7d982011-07-17 19:17:55 -0700425 if (!PyCallable_Check(show_fxn)) {
Brett Cannonec92e182008-09-02 02:46:59 +0000426 PyErr_SetString(PyExc_TypeError,
427 "warnings.showwarning() must be set to a "
Brett Cannon52a7d982011-07-17 19:17:55 -0700428 "callable");
Christian Heimes8dc226f2008-05-06 23:45:46 +0000429 Py_DECREF(show_fxn);
Brett Cannonec92e182008-09-02 02:46:59 +0000430 goto cleanup;
Christian Heimes8dc226f2008-05-06 23:45:46 +0000431 }
Brett Cannonec92e182008-09-02 02:46:59 +0000432
433 res = PyObject_CallFunctionObjArgs(show_fxn, message, category,
434 filename, lineno_obj,
435 NULL);
436 Py_DECREF(show_fxn);
437 Py_XDECREF(res);
438 if (res == NULL)
439 goto cleanup;
Christian Heimes33fe8092008-04-13 13:53:33 +0000440 }
441 }
442 else /* if (rc == -1) */
443 goto cleanup;
444
445 return_none:
446 result = Py_None;
447 Py_INCREF(result);
448
449 cleanup:
450 Py_XDECREF(key);
451 Py_XDECREF(text);
452 Py_XDECREF(lineno_obj);
453 Py_DECREF(module);
Brett Cannondb734912008-06-27 00:52:15 +0000454 Py_XDECREF(message);
Christian Heimes33fe8092008-04-13 13:53:33 +0000455 return result; /* Py_None or NULL. */
456}
457
458/* filename, module, and registry are new refs, globals is borrowed */
459/* Returns 0 on error (no new refs), 1 on success */
460static int
461setup_context(Py_ssize_t stack_level, PyObject **filename, int *lineno,
462 PyObject **module, PyObject **registry)
463{
464 PyObject *globals;
465
466 /* Setup globals and lineno. */
467 PyFrameObject *f = PyThreadState_GET()->frame;
Christian Heimes5d8da202008-05-06 13:58:24 +0000468 while (--stack_level > 0 && f != NULL)
Christian Heimes33fe8092008-04-13 13:53:33 +0000469 f = f->f_back;
Christian Heimes33fe8092008-04-13 13:53:33 +0000470
471 if (f == NULL) {
472 globals = PyThreadState_Get()->interp->sysdict;
473 *lineno = 1;
474 }
475 else {
476 globals = f->f_globals;
Alexandre Vassalotti7b82b402009-07-21 04:30:03 +0000477 *lineno = PyFrame_GetLineNumber(f);
Christian Heimes33fe8092008-04-13 13:53:33 +0000478 }
479
480 *module = NULL;
481
482 /* Setup registry. */
483 assert(globals != NULL);
484 assert(PyDict_Check(globals));
485 *registry = PyDict_GetItemString(globals, "__warningregistry__");
486 if (*registry == NULL) {
487 int rc;
488
489 *registry = PyDict_New();
490 if (*registry == NULL)
491 return 0;
492
493 rc = PyDict_SetItemString(globals, "__warningregistry__", *registry);
494 if (rc < 0)
495 goto handle_error;
496 }
497 else
498 Py_INCREF(*registry);
499
500 /* Setup module. */
501 *module = PyDict_GetItemString(globals, "__name__");
502 if (*module == NULL) {
503 *module = PyUnicode_FromString("<string>");
504 if (*module == NULL)
505 goto handle_error;
506 }
507 else
508 Py_INCREF(*module);
509
510 /* Setup filename. */
511 *filename = PyDict_GetItemString(globals, "__file__");
Victor Stinner8b0508e2011-07-04 02:43:09 +0200512 if (*filename != NULL && PyUnicode_Check(*filename)) {
Victor Stinnerb62a7b22011-10-06 02:34:51 +0200513 Py_ssize_t len;
514 int kind;
515 void *data;
516
517 if (PyUnicode_READY(*filename))
518 goto handle_error;
519
Victor Stinner9e30aa52011-11-21 02:49:52 +0100520 len = PyUnicode_GetLength(*filename);
Victor Stinnerb62a7b22011-10-06 02:34:51 +0200521 kind = PyUnicode_KIND(*filename);
522 data = PyUnicode_DATA(*filename);
Christian Heimes33fe8092008-04-13 13:53:33 +0000523
Benjamin Peterson21e0da22012-01-11 21:00:42 -0500524#define ascii_lower(c) ((c <= 127) ? Py_TOLOWER(c) : 0)
Christian Heimes33fe8092008-04-13 13:53:33 +0000525 /* if filename.lower().endswith((".pyc", ".pyo")): */
526 if (len >= 4 &&
Martin v. Löwisd63a3b82011-09-28 07:41:54 +0200527 PyUnicode_READ(kind, data, len-4) == '.' &&
Benjamin Peterson21e0da22012-01-11 21:00:42 -0500528 ascii_lower(PyUnicode_READ(kind, data, len-3)) == 'p' &&
529 ascii_lower(PyUnicode_READ(kind, data, len-2)) == 'y' &&
530 (ascii_lower(PyUnicode_READ(kind, data, len-1)) == 'c' ||
531 ascii_lower(PyUnicode_READ(kind, data, len-1)) == 'o'))
Christian Heimes81ee3ef2008-05-04 22:42:01 +0000532 {
Martin v. Löwisd63a3b82011-09-28 07:41:54 +0200533 *filename = PyUnicode_Substring(*filename, 0,
534 PyUnicode_GET_LENGTH(*filename)-1);
Victor Stinner2e5f1172010-08-08 22:12:45 +0000535 if (*filename == NULL)
536 goto handle_error;
537 }
538 else
Christian Heimes33fe8092008-04-13 13:53:33 +0000539 Py_INCREF(*filename);
540 }
541 else {
Benjamin Petersonbb4a7472011-07-04 22:27:16 -0500542 *filename = NULL;
Victor Stinnera4c704b2013-10-29 23:43:41 +0100543 if (PyUnicode_CompareWithASCIIString(*module, "__main__") == 0) {
Christian Heimes33fe8092008-04-13 13:53:33 +0000544 PyObject *argv = PySys_GetObject("argv");
Victor Stinnerce5f4fb2013-10-28 18:47:22 +0100545 /* PyList_Check() is needed because sys.argv is set to None during
546 Python finalization */
547 if (argv != NULL && PyList_Check(argv) && PyList_Size(argv) > 0) {
Christian Heimes81ee3ef2008-05-04 22:42:01 +0000548 int is_true;
Christian Heimes33fe8092008-04-13 13:53:33 +0000549 *filename = PyList_GetItem(argv, 0);
550 Py_INCREF(*filename);
Christian Heimes81ee3ef2008-05-04 22:42:01 +0000551 /* If sys.argv[0] is false, then use '__main__'. */
552 is_true = PyObject_IsTrue(*filename);
553 if (is_true < 0) {
554 Py_DECREF(*filename);
555 goto handle_error;
556 }
557 else if (!is_true) {
558 Py_DECREF(*filename);
Benjamin Peterson9f4bf1d2008-05-04 23:22:13 +0000559 *filename = PyUnicode_FromString("__main__");
Christian Heimes81ee3ef2008-05-04 22:42:01 +0000560 if (*filename == NULL)
561 goto handle_error;
562 }
Christian Heimes33fe8092008-04-13 13:53:33 +0000563 }
564 else {
565 /* embedded interpreters don't have sys.argv, see bug #839151 */
566 *filename = PyUnicode_FromString("__main__");
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000567 if (*filename == NULL)
568 goto handle_error;
Christian Heimes33fe8092008-04-13 13:53:33 +0000569 }
570 }
571 if (*filename == NULL) {
572 *filename = *module;
573 Py_INCREF(*filename);
574 }
575 }
576
577 return 1;
578
579 handle_error:
580 /* filename not XDECREF'ed here as there is no way to jump here with a
581 dangling reference. */
582 Py_XDECREF(*registry);
583 Py_XDECREF(*module);
584 return 0;
585}
586
587static PyObject *
588get_category(PyObject *message, PyObject *category)
589{
590 int rc;
591
592 /* Get category. */
593 rc = PyObject_IsInstance(message, PyExc_Warning);
594 if (rc == -1)
595 return NULL;
596
597 if (rc == 1)
598 category = (PyObject*)message->ob_type;
599 else if (category == NULL)
600 category = PyExc_UserWarning;
601
602 /* Validate category. */
603 rc = PyObject_IsSubclass(category, PyExc_Warning);
604 if (rc == -1)
605 return NULL;
606 if (rc == 0) {
607 PyErr_SetString(PyExc_ValueError,
608 "category is not a subclass of Warning");
609 return NULL;
610 }
611
612 return category;
613}
614
615static PyObject *
616do_warn(PyObject *message, PyObject *category, Py_ssize_t stack_level)
617{
618 PyObject *filename, *module, *registry, *res;
619 int lineno;
620
621 if (!setup_context(stack_level, &filename, &lineno, &module, &registry))
622 return NULL;
623
624 res = warn_explicit(category, message, filename, lineno, module, registry,
625 NULL);
626 Py_DECREF(filename);
627 Py_DECREF(registry);
628 Py_DECREF(module);
629 return res;
630}
631
632static PyObject *
633warnings_warn(PyObject *self, PyObject *args, PyObject *kwds)
634{
635 static char *kw_list[] = { "message", "category", "stacklevel", 0 };
636 PyObject *message, *category = NULL;
637 Py_ssize_t stack_level = 1;
638
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000639 if (!PyArg_ParseTupleAndKeywords(args, kwds, "O|On:warn", kw_list,
Christian Heimes33fe8092008-04-13 13:53:33 +0000640 &message, &category, &stack_level))
641 return NULL;
642
643 category = get_category(message, category);
644 if (category == NULL)
645 return NULL;
646 return do_warn(message, category, stack_level);
647}
648
649static PyObject *
650warnings_warn_explicit(PyObject *self, PyObject *args, PyObject *kwds)
651{
652 static char *kwd_list[] = {"message", "category", "filename", "lineno",
653 "module", "registry", "module_globals", 0};
654 PyObject *message;
655 PyObject *category;
656 PyObject *filename;
657 int lineno;
658 PyObject *module = NULL;
659 PyObject *registry = NULL;
660 PyObject *module_globals = NULL;
661
Victor Stinnera4c704b2013-10-29 23:43:41 +0100662 if (!PyArg_ParseTupleAndKeywords(args, kwds, "OOUi|OOO:warn_explicit",
Christian Heimes33fe8092008-04-13 13:53:33 +0000663 kwd_list, &message, &category, &filename, &lineno, &module,
664 &registry, &module_globals))
665 return NULL;
666
667 if (module_globals) {
Martin v. Löwis1c67dd92011-10-14 15:16:45 +0200668 _Py_IDENTIFIER(get_source);
669 _Py_IDENTIFIER(splitlines);
670 PyObject *tmp;
Christian Heimes33fe8092008-04-13 13:53:33 +0000671 PyObject *loader;
672 PyObject *module_name;
673 PyObject *source;
674 PyObject *source_list;
675 PyObject *source_line;
676 PyObject *returned;
677
Martin v. Löwis1c67dd92011-10-14 15:16:45 +0200678 if ((tmp = _PyUnicode_FromId(&PyId_get_source)) == NULL)
679 return NULL;
Martin v. Löwis1c67dd92011-10-14 15:16:45 +0200680 if ((tmp = _PyUnicode_FromId(&PyId_splitlines)) == NULL)
681 return NULL;
Christian Heimes33fe8092008-04-13 13:53:33 +0000682
683 /* Check/get the requisite pieces needed for the loader. */
684 loader = PyDict_GetItemString(module_globals, "__loader__");
685 module_name = PyDict_GetItemString(module_globals, "__name__");
686
687 if (loader == NULL || module_name == NULL)
688 goto standard_call;
689
690 /* Make sure the loader implements the optional get_source() method. */
Martin v. Löwis1c67dd92011-10-14 15:16:45 +0200691 if (!_PyObject_HasAttrId(loader, &PyId_get_source))
Christian Heimes33fe8092008-04-13 13:53:33 +0000692 goto standard_call;
693 /* Call get_source() to get the source code. */
Martin v. Löwis1c67dd92011-10-14 15:16:45 +0200694 source = PyObject_CallMethodObjArgs(loader, PyId_get_source.object,
695 module_name, NULL);
Christian Heimes33fe8092008-04-13 13:53:33 +0000696 if (!source)
697 return NULL;
698 else if (source == Py_None) {
699 Py_DECREF(Py_None);
700 goto standard_call;
701 }
702
703 /* Split the source into lines. */
Victor Stinner9e30aa52011-11-21 02:49:52 +0100704 source_list = PyObject_CallMethodObjArgs(source,
Martin v. Löwis1c67dd92011-10-14 15:16:45 +0200705 PyId_splitlines.object,
706 NULL);
Christian Heimes33fe8092008-04-13 13:53:33 +0000707 Py_DECREF(source);
708 if (!source_list)
709 return NULL;
710
711 /* Get the source line. */
712 source_line = PyList_GetItem(source_list, lineno-1);
713 if (!source_line) {
714 Py_DECREF(source_list);
715 return NULL;
716 }
717
718 /* Handle the warning. */
719 returned = warn_explicit(category, message, filename, lineno, module,
Victor Stinner14e461d2013-08-26 22:28:21 +0200720 registry, source_line);
Christian Heimes33fe8092008-04-13 13:53:33 +0000721 Py_DECREF(source_list);
722 return returned;
723 }
724
725 standard_call:
726 return warn_explicit(category, message, filename, lineno, module,
Victor Stinner14e461d2013-08-26 22:28:21 +0200727 registry, NULL);
Christian Heimes33fe8092008-04-13 13:53:33 +0000728}
729
730
731/* Function to issue a warning message; may raise an exception. */
Victor Stinner4a2b7a12010-08-13 14:03:48 +0000732
733static int
734warn_unicode(PyObject *category, PyObject *message,
735 Py_ssize_t stack_level)
Christian Heimes33fe8092008-04-13 13:53:33 +0000736{
737 PyObject *res;
Christian Heimes33fe8092008-04-13 13:53:33 +0000738
739 if (category == NULL)
740 category = PyExc_RuntimeWarning;
741
742 res = do_warn(message, category, stack_level);
Christian Heimes33fe8092008-04-13 13:53:33 +0000743 if (res == NULL)
744 return -1;
745 Py_DECREF(res);
746
747 return 0;
748}
749
Victor Stinner4a2b7a12010-08-13 14:03:48 +0000750int
751PyErr_WarnFormat(PyObject *category, Py_ssize_t stack_level,
752 const char *format, ...)
753{
754 int ret;
755 PyObject *message;
756 va_list vargs;
757
758#ifdef HAVE_STDARG_PROTOTYPES
759 va_start(vargs, format);
760#else
761 va_start(vargs);
762#endif
763 message = PyUnicode_FromFormatV(format, vargs);
764 if (message != NULL) {
765 ret = warn_unicode(category, message, stack_level);
766 Py_DECREF(message);
767 }
768 else
769 ret = -1;
770 va_end(vargs);
771 return ret;
772}
773
774int
775PyErr_WarnEx(PyObject *category, const char *text, Py_ssize_t stack_level)
776{
777 int ret;
778 PyObject *message = PyUnicode_FromString(text);
779 if (message == NULL)
780 return -1;
781 ret = warn_unicode(category, message, stack_level);
782 Py_DECREF(message);
783 return ret;
784}
785
Ezio Melotti42da6632011-03-15 05:18:48 +0200786/* PyErr_Warn is only for backwards compatibility and will be removed.
Christian Heimes33fe8092008-04-13 13:53:33 +0000787 Use PyErr_WarnEx instead. */
788
789#undef PyErr_Warn
790
791PyAPI_FUNC(int)
792PyErr_Warn(PyObject *category, char *text)
793{
794 return PyErr_WarnEx(category, text, 1);
795}
796
797/* Warning with explicit origin */
798int
Victor Stinner14e461d2013-08-26 22:28:21 +0200799PyErr_WarnExplicitObject(PyObject *category, PyObject *message,
800 PyObject *filename, int lineno,
801 PyObject *module, PyObject *registry)
802{
803 PyObject *res;
804 if (category == NULL)
805 category = PyExc_RuntimeWarning;
806 res = warn_explicit(category, message, filename, lineno,
807 module, registry, NULL);
808 if (res == NULL)
809 return -1;
810 Py_DECREF(res);
811 return 0;
812}
813
814int
Christian Heimes33fe8092008-04-13 13:53:33 +0000815PyErr_WarnExplicit(PyObject *category, const char *text,
816 const char *filename_str, int lineno,
817 const char *module_str, PyObject *registry)
818{
Christian Heimes33fe8092008-04-13 13:53:33 +0000819 PyObject *message = PyUnicode_FromString(text);
Victor Stinnercb428f02010-12-27 20:10:36 +0000820 PyObject *filename = PyUnicode_DecodeFSDefault(filename_str);
Christian Heimes33fe8092008-04-13 13:53:33 +0000821 PyObject *module = NULL;
822 int ret = -1;
823
824 if (message == NULL || filename == NULL)
825 goto exit;
826 if (module_str != NULL) {
827 module = PyUnicode_FromString(module_str);
Antoine Pitrou070cb3c2013-05-08 13:23:25 +0200828 if (module == NULL)
829 goto exit;
Christian Heimes33fe8092008-04-13 13:53:33 +0000830 }
831
Victor Stinner14e461d2013-08-26 22:28:21 +0200832 ret = PyErr_WarnExplicitObject(category, message, filename, lineno,
833 module, registry);
Christian Heimes33fe8092008-04-13 13:53:33 +0000834
835 exit:
836 Py_XDECREF(message);
837 Py_XDECREF(module);
838 Py_XDECREF(filename);
839 return ret;
840}
841
Antoine Pitrou070cb3c2013-05-08 13:23:25 +0200842int
843PyErr_WarnExplicitFormat(PyObject *category,
844 const char *filename_str, int lineno,
845 const char *module_str, PyObject *registry,
846 const char *format, ...)
847{
848 PyObject *message;
849 PyObject *module = NULL;
850 PyObject *filename = PyUnicode_DecodeFSDefault(filename_str);
851 int ret = -1;
852 va_list vargs;
853
854 if (filename == NULL)
855 goto exit;
856 if (module_str != NULL) {
857 module = PyUnicode_FromString(module_str);
858 if (module == NULL)
859 goto exit;
860 }
861
862#ifdef HAVE_STDARG_PROTOTYPES
863 va_start(vargs, format);
864#else
865 va_start(vargs);
866#endif
867 message = PyUnicode_FromFormatV(format, vargs);
868 if (message != NULL) {
869 PyObject *res;
870 res = warn_explicit(category, message, filename, lineno,
871 module, registry, NULL);
872 Py_DECREF(message);
873 if (res != NULL) {
874 Py_DECREF(res);
875 ret = 0;
876 }
877 }
878 va_end(vargs);
879exit:
880 Py_XDECREF(module);
881 Py_XDECREF(filename);
882 return ret;
883}
884
Christian Heimes33fe8092008-04-13 13:53:33 +0000885
886PyDoc_STRVAR(warn_doc,
887"Issue a warning, or maybe ignore it or raise an exception.");
888
889PyDoc_STRVAR(warn_explicit_doc,
890"Low-level inferface to warnings functionality.");
891
892static PyMethodDef warnings_functions[] = {
893 {"warn", (PyCFunction)warnings_warn, METH_VARARGS | METH_KEYWORDS,
894 warn_doc},
895 {"warn_explicit", (PyCFunction)warnings_warn_explicit,
896 METH_VARARGS | METH_KEYWORDS, warn_explicit_doc},
Christian Heimes1a8501c2008-10-02 19:56:01 +0000897 /* XXX(brett.cannon): add showwarning? */
898 /* XXX(brett.cannon): Reasonable to add formatwarning? */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000899 {NULL, NULL} /* sentinel */
Christian Heimes33fe8092008-04-13 13:53:33 +0000900};
901
902
903static PyObject *
904create_filter(PyObject *category, const char *action)
905{
906 static PyObject *ignore_str = NULL;
907 static PyObject *error_str = NULL;
908 static PyObject *default_str = NULL;
Georg Brandl08be72d2010-10-24 15:11:22 +0000909 static PyObject *always_str = NULL;
Christian Heimes33fe8092008-04-13 13:53:33 +0000910 PyObject *action_obj = NULL;
911 PyObject *lineno, *result;
912
913 if (!strcmp(action, "ignore")) {
914 if (ignore_str == NULL) {
915 ignore_str = PyUnicode_InternFromString("ignore");
916 if (ignore_str == NULL)
917 return NULL;
918 }
919 action_obj = ignore_str;
920 }
921 else if (!strcmp(action, "error")) {
922 if (error_str == NULL) {
923 error_str = PyUnicode_InternFromString("error");
924 if (error_str == NULL)
925 return NULL;
926 }
927 action_obj = error_str;
928 }
929 else if (!strcmp(action, "default")) {
930 if (default_str == NULL) {
931 default_str = PyUnicode_InternFromString("default");
932 if (default_str == NULL)
933 return NULL;
934 }
935 action_obj = default_str;
936 }
Georg Brandl08be72d2010-10-24 15:11:22 +0000937 else if (!strcmp(action, "always")) {
938 if (always_str == NULL) {
939 always_str = PyUnicode_InternFromString("always");
940 if (always_str == NULL)
941 return NULL;
942 }
943 action_obj = always_str;
944 }
Christian Heimes33fe8092008-04-13 13:53:33 +0000945 else {
946 Py_FatalError("unknown action");
947 }
948
949 /* This assumes the line number is zero for now. */
950 lineno = PyLong_FromLong(0);
951 if (lineno == NULL)
952 return NULL;
953 result = PyTuple_Pack(5, action_obj, Py_None, category, Py_None, lineno);
954 Py_DECREF(lineno);
955 return result;
956}
957
958static PyObject *
959init_filters(void)
960{
Georg Brandl08be72d2010-10-24 15:11:22 +0000961 PyObject *filters = PyList_New(5);
Benjamin Peterson7ab4b8d2010-06-28 00:01:59 +0000962 unsigned int pos = 0; /* Post-incremented in each use. */
963 unsigned int x;
Georg Brandl08be72d2010-10-24 15:11:22 +0000964 const char *bytes_action, *resource_action;
Benjamin Peterson7ab4b8d2010-06-28 00:01:59 +0000965
Christian Heimes33fe8092008-04-13 13:53:33 +0000966 if (filters == NULL)
967 return NULL;
968
Benjamin Peterson7ab4b8d2010-06-28 00:01:59 +0000969 PyList_SET_ITEM(filters, pos++,
970 create_filter(PyExc_DeprecationWarning, "ignore"));
971 PyList_SET_ITEM(filters, pos++,
Christian Heimes33fe8092008-04-13 13:53:33 +0000972 create_filter(PyExc_PendingDeprecationWarning, "ignore"));
Benjamin Peterson7ab4b8d2010-06-28 00:01:59 +0000973 PyList_SET_ITEM(filters, pos++,
974 create_filter(PyExc_ImportWarning, "ignore"));
Christian Heimes33fe8092008-04-13 13:53:33 +0000975 if (Py_BytesWarningFlag > 1)
976 bytes_action = "error";
977 else if (Py_BytesWarningFlag)
978 bytes_action = "default";
979 else
980 bytes_action = "ignore";
Benjamin Peterson7ab4b8d2010-06-28 00:01:59 +0000981 PyList_SET_ITEM(filters, pos++, create_filter(PyExc_BytesWarning,
Christian Heimes33fe8092008-04-13 13:53:33 +0000982 bytes_action));
Georg Brandl08be72d2010-10-24 15:11:22 +0000983 /* resource usage warnings are enabled by default in pydebug mode */
984#ifdef Py_DEBUG
985 resource_action = "always";
986#else
987 resource_action = "ignore";
988#endif
989 PyList_SET_ITEM(filters, pos++, create_filter(PyExc_ResourceWarning,
990 resource_action));
Benjamin Peterson7ab4b8d2010-06-28 00:01:59 +0000991 for (x = 0; x < pos; x += 1) {
992 if (PyList_GET_ITEM(filters, x) == NULL) {
993 Py_DECREF(filters);
994 return NULL;
995 }
Christian Heimes33fe8092008-04-13 13:53:33 +0000996 }
997
998 return filters;
999}
1000
Martin v. Löwis1a214512008-06-11 05:26:20 +00001001static struct PyModuleDef warningsmodule = {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001002 PyModuleDef_HEAD_INIT,
1003 MODULE_NAME,
1004 warnings__doc__,
1005 0,
1006 warnings_functions,
1007 NULL,
1008 NULL,
1009 NULL,
1010 NULL
Martin v. Löwis1a214512008-06-11 05:26:20 +00001011};
1012
Christian Heimes33fe8092008-04-13 13:53:33 +00001013
1014PyMODINIT_FUNC
1015_PyWarnings_Init(void)
1016{
Brett Cannon0759dd62009-04-01 18:13:07 +00001017 PyObject *m;
Christian Heimes33fe8092008-04-13 13:53:33 +00001018
Martin v. Löwis1a214512008-06-11 05:26:20 +00001019 m = PyModule_Create(&warningsmodule);
Christian Heimes33fe8092008-04-13 13:53:33 +00001020 if (m == NULL)
Martin v. Löwis1a214512008-06-11 05:26:20 +00001021 return NULL;
Christian Heimes33fe8092008-04-13 13:53:33 +00001022
Antoine Pitrouaa5c5c62012-01-18 21:45:15 +01001023 if (_filters == NULL) {
1024 _filters = init_filters();
1025 if (_filters == NULL)
1026 return NULL;
1027 }
Christian Heimes33fe8092008-04-13 13:53:33 +00001028 Py_INCREF(_filters);
1029 if (PyModule_AddObject(m, "filters", _filters) < 0)
Martin v. Löwis1a214512008-06-11 05:26:20 +00001030 return NULL;
Christian Heimes33fe8092008-04-13 13:53:33 +00001031
Antoine Pitrouaa5c5c62012-01-18 21:45:15 +01001032 if (_once_registry == NULL) {
1033 _once_registry = PyDict_New();
1034 if (_once_registry == NULL)
1035 return NULL;
1036 }
Christian Heimes33fe8092008-04-13 13:53:33 +00001037 Py_INCREF(_once_registry);
Brett Cannonef0e6c32010-09-04 18:24:04 +00001038 if (PyModule_AddObject(m, "_onceregistry", _once_registry) < 0)
Martin v. Löwis1a214512008-06-11 05:26:20 +00001039 return NULL;
Christian Heimes33fe8092008-04-13 13:53:33 +00001040
Antoine Pitrouaa5c5c62012-01-18 21:45:15 +01001041 if (_default_action == NULL) {
1042 _default_action = PyUnicode_FromString("default");
1043 if (_default_action == NULL)
1044 return NULL;
1045 }
1046 Py_INCREF(_default_action);
Brett Cannonef0e6c32010-09-04 18:24:04 +00001047 if (PyModule_AddObject(m, "_defaultaction", _default_action) < 0)
Martin v. Löwis1a214512008-06-11 05:26:20 +00001048 return NULL;
1049 return m;
Christian Heimes33fe8092008-04-13 13:53:33 +00001050}