blob: 8ddc7ec78c0ed69b3d0e180e3ae8ab13c911a39a [file] [log] [blame]
Guido van Rossumf70e43a1991-02-19 12:39:46 +00001
Guido van Rossum3f5da241990-12-20 15:06:42 +00002/* Generic object operations; and implementation of None (NoObject) */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00003
Guido van Rossumc0b618a1997-05-02 03:12:38 +00004#include "Python.h"
Guido van Rossum50e9fb92006-08-17 05:42:55 +00005#include "sliceobject.h" /* For PyEllipsis_Type */
Benjamin Petersonfd838e62009-04-20 02:09:13 +00006#include "frameobject.h"
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00007
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00008#ifdef __cplusplus
9extern "C" {
10#endif
11
Tim Peters34592512002-07-11 06:23:50 +000012#ifdef Py_REF_DEBUG
Neal Norwitz84632ee2006-03-04 20:00:59 +000013Py_ssize_t _Py_RefTotal;
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000014
15Py_ssize_t
16_Py_GetRefTotal(void)
17{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000018 PyObject *o;
19 Py_ssize_t total = _Py_RefTotal;
20 /* ignore the references to the dummy object of the dicts and sets
21 because they are not reliable and not useful (now that the
22 hash table code is well-tested) */
23 o = _PyDict_Dummy();
24 if (o != NULL)
25 total -= o->ob_refcnt;
26 o = _PySet_Dummy();
27 if (o != NULL)
28 total -= o->ob_refcnt;
29 return total;
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000030}
31#endif /* Py_REF_DEBUG */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000032
Mark Hammonda2905272002-07-29 13:42:14 +000033int Py_DivisionWarningFlag;
Guido van Rossum393661d2001-08-31 17:40:15 +000034
Guido van Rossum3f5da241990-12-20 15:06:42 +000035/* Object allocation routines used by NEWOBJ and NEWVAROBJ macros.
36 These are used by the individual routines for object creation.
37 Do not call them otherwise, they do not initialize the object! */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000038
Tim Peters78be7992003-03-23 02:51:01 +000039#ifdef Py_TRACE_REFS
Tim Peters7571a0f2003-03-23 17:52:28 +000040/* Head of circular doubly-linked list of all objects. These are linked
41 * together via the _ob_prev and _ob_next members of a PyObject, which
42 * exist only in a Py_TRACE_REFS build.
43 */
Tim Peters78be7992003-03-23 02:51:01 +000044static PyObject refchain = {&refchain, &refchain};
Tim Peters36eb4df2003-03-23 03:33:13 +000045
Tim Peters7571a0f2003-03-23 17:52:28 +000046/* Insert op at the front of the list of all objects. If force is true,
47 * op is added even if _ob_prev and _ob_next are non-NULL already. If
48 * force is false amd _ob_prev or _ob_next are non-NULL, do nothing.
49 * force should be true if and only if op points to freshly allocated,
50 * uninitialized memory, or you've unlinked op from the list and are
Tim Peters51f8d382003-03-23 18:06:08 +000051 * relinking it into the front.
Tim Peters7571a0f2003-03-23 17:52:28 +000052 * Note that objects are normally added to the list via _Py_NewReference,
53 * which is called by PyObject_Init. Not all objects are initialized that
54 * way, though; exceptions include statically allocated type objects, and
55 * statically allocated singletons (like Py_True and Py_None).
56 */
Tim Peters36eb4df2003-03-23 03:33:13 +000057void
Tim Peters7571a0f2003-03-23 17:52:28 +000058_Py_AddToAllObjects(PyObject *op, int force)
Tim Peters36eb4df2003-03-23 03:33:13 +000059{
Tim Peters7571a0f2003-03-23 17:52:28 +000060#ifdef Py_DEBUG
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000061 if (!force) {
62 /* If it's initialized memory, op must be in or out of
63 * the list unambiguously.
64 */
65 assert((op->_ob_prev == NULL) == (op->_ob_next == NULL));
66 }
Tim Peters78be7992003-03-23 02:51:01 +000067#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000068 if (force || op->_ob_prev == NULL) {
69 op->_ob_next = refchain._ob_next;
70 op->_ob_prev = &refchain;
71 refchain._ob_next->_ob_prev = op;
72 refchain._ob_next = op;
73 }
Tim Peters7571a0f2003-03-23 17:52:28 +000074}
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000075#endif /* Py_TRACE_REFS */
Tim Peters78be7992003-03-23 02:51:01 +000076
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +000077#ifdef COUNT_ALLOCS
Guido van Rossumc0b618a1997-05-02 03:12:38 +000078static PyTypeObject *type_list;
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000079/* All types are added to type_list, at least when
80 they get one object created. That makes them
81 immortal, which unfortunately contributes to
82 garbage itself. If unlist_types_without_objects
83 is set, they will be removed from the type_list
84 once the last object is deallocated. */
Benjamin Petersona4a37fe2009-01-11 17:13:55 +000085static int unlist_types_without_objects;
86extern Py_ssize_t tuple_zero_allocs, fast_tuple_allocs;
87extern Py_ssize_t quick_int_allocs, quick_neg_int_allocs;
88extern Py_ssize_t null_strings, one_strings;
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +000089void
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000090dump_counts(FILE* f)
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +000091{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000092 PyTypeObject *tp;
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +000093
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000094 for (tp = type_list; tp; tp = tp->tp_next)
95 fprintf(f, "%s alloc'd: %" PY_FORMAT_SIZE_T "d, "
96 "freed: %" PY_FORMAT_SIZE_T "d, "
97 "max in use: %" PY_FORMAT_SIZE_T "d\n",
98 tp->tp_name, tp->tp_allocs, tp->tp_frees,
99 tp->tp_maxalloc);
100 fprintf(f, "fast tuple allocs: %" PY_FORMAT_SIZE_T "d, "
101 "empty: %" PY_FORMAT_SIZE_T "d\n",
102 fast_tuple_allocs, tuple_zero_allocs);
103 fprintf(f, "fast int allocs: pos: %" PY_FORMAT_SIZE_T "d, "
104 "neg: %" PY_FORMAT_SIZE_T "d\n",
105 quick_int_allocs, quick_neg_int_allocs);
106 fprintf(f, "null strings: %" PY_FORMAT_SIZE_T "d, "
107 "1-strings: %" PY_FORMAT_SIZE_T "d\n",
108 null_strings, one_strings);
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +0000109}
110
Sjoerd Mullender6ec3c651995-08-29 09:18:14 +0000111PyObject *
Fred Drake100814d2000-07-09 15:48:49 +0000112get_counts(void)
Sjoerd Mullender6ec3c651995-08-29 09:18:14 +0000113{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000114 PyTypeObject *tp;
115 PyObject *result;
116 PyObject *v;
Sjoerd Mullender6ec3c651995-08-29 09:18:14 +0000117
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000118 result = PyList_New(0);
119 if (result == NULL)
120 return NULL;
121 for (tp = type_list; tp; tp = tp->tp_next) {
122 v = Py_BuildValue("(snnn)", tp->tp_name, tp->tp_allocs,
123 tp->tp_frees, tp->tp_maxalloc);
124 if (v == NULL) {
125 Py_DECREF(result);
126 return NULL;
127 }
128 if (PyList_Append(result, v) < 0) {
129 Py_DECREF(v);
130 Py_DECREF(result);
131 return NULL;
132 }
133 Py_DECREF(v);
134 }
135 return result;
Sjoerd Mullender6ec3c651995-08-29 09:18:14 +0000136}
137
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +0000138void
Fred Drake100814d2000-07-09 15:48:49 +0000139inc_count(PyTypeObject *tp)
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +0000140{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000141 if (tp->tp_next == NULL && tp->tp_prev == NULL) {
142 /* first time; insert in linked list */
143 if (tp->tp_next != NULL) /* sanity check */
144 Py_FatalError("XXX inc_count sanity check");
145 if (type_list)
146 type_list->tp_prev = tp;
147 tp->tp_next = type_list;
148 /* Note that as of Python 2.2, heap-allocated type objects
149 * can go away, but this code requires that they stay alive
150 * until program exit. That's why we're careful with
151 * refcounts here. type_list gets a new reference to tp,
152 * while ownership of the reference type_list used to hold
153 * (if any) was transferred to tp->tp_next in the line above.
154 * tp is thus effectively immortal after this.
155 */
156 Py_INCREF(tp);
157 type_list = tp;
Tim Peters3e40c7f2003-03-23 03:04:32 +0000158#ifdef Py_TRACE_REFS
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000159 /* Also insert in the doubly-linked list of all objects,
160 * if not already there.
161 */
162 _Py_AddToAllObjects((PyObject *)tp, 0);
Tim Peters78be7992003-03-23 02:51:01 +0000163#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000164 }
165 tp->tp_allocs++;
166 if (tp->tp_allocs - tp->tp_frees > tp->tp_maxalloc)
167 tp->tp_maxalloc = tp->tp_allocs - tp->tp_frees;
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +0000168}
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000169
170void dec_count(PyTypeObject *tp)
171{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000172 tp->tp_frees++;
173 if (unlist_types_without_objects &&
174 tp->tp_allocs == tp->tp_frees) {
175 /* unlink the type from type_list */
176 if (tp->tp_prev)
177 tp->tp_prev->tp_next = tp->tp_next;
178 else
179 type_list = tp->tp_next;
180 if (tp->tp_next)
181 tp->tp_next->tp_prev = tp->tp_prev;
182 tp->tp_next = tp->tp_prev = NULL;
183 Py_DECREF(tp);
184 }
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000185}
186
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +0000187#endif
188
Tim Peters7c321a82002-07-09 02:57:01 +0000189#ifdef Py_REF_DEBUG
190/* Log a fatal error; doesn't return. */
191void
192_Py_NegativeRefcount(const char *fname, int lineno, PyObject *op)
193{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000194 char buf[300];
Tim Peters7c321a82002-07-09 02:57:01 +0000195
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000196 PyOS_snprintf(buf, sizeof(buf),
197 "%s:%i object at %p has negative ref count "
198 "%" PY_FORMAT_SIZE_T "d",
199 fname, lineno, op, op->ob_refcnt);
200 Py_FatalError(buf);
Tim Peters7c321a82002-07-09 02:57:01 +0000201}
202
203#endif /* Py_REF_DEBUG */
204
Thomas Heller1328b522004-04-22 17:23:49 +0000205void
206Py_IncRef(PyObject *o)
207{
208 Py_XINCREF(o);
209}
210
211void
212Py_DecRef(PyObject *o)
213{
214 Py_XDECREF(o);
215}
216
Guido van Rossumc0b618a1997-05-02 03:12:38 +0000217PyObject *
Fred Drake100814d2000-07-09 15:48:49 +0000218PyObject_Init(PyObject *op, PyTypeObject *tp)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000219{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000220 if (op == NULL)
221 return PyErr_NoMemory();
222 /* Any changes should be reflected in PyObject_INIT (objimpl.h) */
223 Py_TYPE(op) = tp;
224 _Py_NewReference(op);
225 return op;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000226}
227
Guido van Rossumb18618d2000-05-03 23:44:39 +0000228PyVarObject *
Martin v. Löwis18e16552006-02-15 17:27:45 +0000229PyObject_InitVar(PyVarObject *op, PyTypeObject *tp, Py_ssize_t size)
Guido van Rossumb18618d2000-05-03 23:44:39 +0000230{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000231 if (op == NULL)
232 return (PyVarObject *) PyErr_NoMemory();
233 /* Any changes should be reflected in PyObject_INIT_VAR */
234 op->ob_size = size;
235 Py_TYPE(op) = tp;
236 _Py_NewReference((PyObject *)op);
237 return op;
Guido van Rossumb18618d2000-05-03 23:44:39 +0000238}
239
240PyObject *
Fred Drake100814d2000-07-09 15:48:49 +0000241_PyObject_New(PyTypeObject *tp)
Guido van Rossumb18618d2000-05-03 23:44:39 +0000242{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000243 PyObject *op;
244 op = (PyObject *) PyObject_MALLOC(_PyObject_SIZE(tp));
245 if (op == NULL)
246 return PyErr_NoMemory();
247 return PyObject_INIT(op, tp);
Guido van Rossumb18618d2000-05-03 23:44:39 +0000248}
249
Guido van Rossumd0c87ee1997-05-15 21:31:03 +0000250PyVarObject *
Martin v. Löwis18e16552006-02-15 17:27:45 +0000251_PyObject_NewVar(PyTypeObject *tp, Py_ssize_t nitems)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000252{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000253 PyVarObject *op;
254 const size_t size = _PyObject_VAR_SIZE(tp, nitems);
255 op = (PyVarObject *) PyObject_MALLOC(size);
256 if (op == NULL)
257 return (PyVarObject *)PyErr_NoMemory();
258 return PyObject_INIT_VAR(op, tp, nitems);
Guido van Rossumb18618d2000-05-03 23:44:39 +0000259}
260
Neal Norwitz1a997502003-01-13 20:13:12 +0000261/* Implementation of PyObject_Print with recursion checking */
262static int
263internal_print(PyObject *op, FILE *fp, int flags, int nesting)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000264{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000265 int ret = 0;
266 if (nesting > 10) {
267 PyErr_SetString(PyExc_RuntimeError, "print recursion");
268 return -1;
269 }
270 if (PyErr_CheckSignals())
271 return -1;
Guido van Rossum9b00dfa1998-04-28 16:06:54 +0000272#ifdef USE_STACKCHECK
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000273 if (PyOS_CheckStack()) {
274 PyErr_SetString(PyExc_MemoryError, "stack overflow");
275 return -1;
276 }
Guido van Rossum9b00dfa1998-04-28 16:06:54 +0000277#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000278 clearerr(fp); /* Clear any previous error condition */
279 if (op == NULL) {
280 Py_BEGIN_ALLOW_THREADS
281 fprintf(fp, "<nil>");
282 Py_END_ALLOW_THREADS
283 }
284 else {
285 if (op->ob_refcnt <= 0)
286 /* XXX(twouters) cast refcount to long until %zd is
287 universally available */
288 Py_BEGIN_ALLOW_THREADS
289 fprintf(fp, "<refcnt %ld at %p>",
290 (long)op->ob_refcnt, op);
291 Py_END_ALLOW_THREADS
292 else {
293 PyObject *s;
294 if (flags & Py_PRINT_RAW)
295 s = PyObject_Str(op);
296 else
297 s = PyObject_Repr(op);
298 if (s == NULL)
299 ret = -1;
300 else if (PyBytes_Check(s)) {
301 fwrite(PyBytes_AS_STRING(s), 1,
302 PyBytes_GET_SIZE(s), fp);
303 }
304 else if (PyUnicode_Check(s)) {
305 PyObject *t;
306 t = _PyUnicode_AsDefaultEncodedString(s, NULL);
307 if (t == NULL)
308 ret = 0;
309 else {
310 fwrite(PyBytes_AS_STRING(t), 1,
311 PyBytes_GET_SIZE(t), fp);
312 }
313 }
314 else {
315 PyErr_Format(PyExc_TypeError,
316 "str() or repr() returned '%.100s'",
317 s->ob_type->tp_name);
318 ret = -1;
319 }
320 Py_XDECREF(s);
321 }
322 }
323 if (ret == 0) {
324 if (ferror(fp)) {
325 PyErr_SetFromErrno(PyExc_IOError);
326 clearerr(fp);
327 ret = -1;
328 }
329 }
330 return ret;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000331}
332
Neal Norwitz1a997502003-01-13 20:13:12 +0000333int
334PyObject_Print(PyObject *op, FILE *fp, int flags)
335{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000336 return internal_print(op, fp, flags, 0);
Neal Norwitz1a997502003-01-13 20:13:12 +0000337}
338
Guido van Rossum38938152006-08-21 23:36:26 +0000339/* For debugging convenience. Set a breakpoint here and call it from your DLL */
340void
Thomas Woutersb2137042007-02-01 18:02:27 +0000341_Py_BreakPoint(void)
Guido van Rossum38938152006-08-21 23:36:26 +0000342{
343}
344
Neal Norwitz1a997502003-01-13 20:13:12 +0000345
Barry Warsaw9bf16442001-01-23 16:24:35 +0000346/* For debugging convenience. See Misc/gdbinit for some useful gdb hooks */
Guido van Rossum38938152006-08-21 23:36:26 +0000347void
348_PyObject_Dump(PyObject* op)
Barry Warsaw9bf16442001-01-23 16:24:35 +0000349{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000350 if (op == NULL)
351 fprintf(stderr, "NULL\n");
352 else {
Georg Brandldfd73442009-04-05 11:47:34 +0000353#ifdef WITH_THREAD
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000354 PyGILState_STATE gil;
Georg Brandldfd73442009-04-05 11:47:34 +0000355#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000356 fprintf(stderr, "object : ");
Georg Brandldfd73442009-04-05 11:47:34 +0000357#ifdef WITH_THREAD
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000358 gil = PyGILState_Ensure();
Georg Brandldfd73442009-04-05 11:47:34 +0000359#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000360 (void)PyObject_Print(op, stderr, 0);
Georg Brandldfd73442009-04-05 11:47:34 +0000361#ifdef WITH_THREAD
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000362 PyGILState_Release(gil);
Georg Brandldfd73442009-04-05 11:47:34 +0000363#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000364 /* XXX(twouters) cast refcount to long until %zd is
365 universally available */
366 fprintf(stderr, "\n"
367 "type : %s\n"
368 "refcount: %ld\n"
369 "address : %p\n",
370 Py_TYPE(op)==NULL ? "NULL" : Py_TYPE(op)->tp_name,
371 (long)op->ob_refcnt,
372 op);
373 }
Barry Warsaw9bf16442001-01-23 16:24:35 +0000374}
Barry Warsaw903138f2001-01-23 16:33:18 +0000375
Guido van Rossumc0b618a1997-05-02 03:12:38 +0000376PyObject *
Fred Drake100814d2000-07-09 15:48:49 +0000377PyObject_Repr(PyObject *v)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000378{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000379 PyObject *res;
380 if (PyErr_CheckSignals())
381 return NULL;
Guido van Rossum9b00dfa1998-04-28 16:06:54 +0000382#ifdef USE_STACKCHECK
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000383 if (PyOS_CheckStack()) {
384 PyErr_SetString(PyExc_MemoryError, "stack overflow");
385 return NULL;
386 }
Guido van Rossum9b00dfa1998-04-28 16:06:54 +0000387#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000388 if (v == NULL)
389 return PyUnicode_FromString("<NULL>");
390 if (Py_TYPE(v)->tp_repr == NULL)
391 return PyUnicode_FromFormat("<%s object at %p>",
392 v->ob_type->tp_name, v);
393 res = (*v->ob_type->tp_repr)(v);
394 if (res != NULL && !PyUnicode_Check(res)) {
395 PyErr_Format(PyExc_TypeError,
396 "__repr__ returned non-string (type %.200s)",
397 res->ob_type->tp_name);
398 Py_DECREF(res);
399 return NULL;
400 }
401 return res;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000402}
403
Guido van Rossumc0b618a1997-05-02 03:12:38 +0000404PyObject *
Guido van Rossum98297ee2007-11-06 21:34:58 +0000405PyObject_Str(PyObject *v)
Guido van Rossumc6004111993-11-05 10:22:19 +0000406{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000407 PyObject *res;
408 if (PyErr_CheckSignals())
409 return NULL;
Guido van Rossum98297ee2007-11-06 21:34:58 +0000410#ifdef USE_STACKCHECK
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000411 if (PyOS_CheckStack()) {
412 PyErr_SetString(PyExc_MemoryError, "stack overflow");
413 return NULL;
414 }
Guido van Rossum98297ee2007-11-06 21:34:58 +0000415#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000416 if (v == NULL)
417 return PyUnicode_FromString("<NULL>");
418 if (PyUnicode_CheckExact(v)) {
419 Py_INCREF(v);
420 return v;
421 }
422 if (Py_TYPE(v)->tp_str == NULL)
423 return PyObject_Repr(v);
Guido van Rossum4f288ab2001-05-01 16:53:37 +0000424
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000425 /* It is possible for a type to have a tp_str representation that loops
426 infinitely. */
427 if (Py_EnterRecursiveCall(" while getting the str of an object"))
428 return NULL;
429 res = (*Py_TYPE(v)->tp_str)(v);
430 Py_LeaveRecursiveCall();
431 if (res == NULL)
432 return NULL;
433 if (!PyUnicode_Check(res)) {
434 PyErr_Format(PyExc_TypeError,
435 "__str__ returned non-string (type %.200s)",
436 Py_TYPE(res)->tp_name);
437 Py_DECREF(res);
438 return NULL;
439 }
440 return res;
Neil Schemenauercf52c072005-08-12 17:34:58 +0000441}
442
Georg Brandl559e5d72008-06-11 18:37:52 +0000443PyObject *
444PyObject_ASCII(PyObject *v)
445{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000446 PyObject *repr, *ascii, *res;
Georg Brandl559e5d72008-06-11 18:37:52 +0000447
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000448 repr = PyObject_Repr(v);
449 if (repr == NULL)
450 return NULL;
Georg Brandl559e5d72008-06-11 18:37:52 +0000451
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000452 /* repr is guaranteed to be a PyUnicode object by PyObject_Repr */
453 ascii = PyUnicode_EncodeASCII(
454 PyUnicode_AS_UNICODE(repr),
455 PyUnicode_GET_SIZE(repr),
456 "backslashreplace");
Georg Brandl559e5d72008-06-11 18:37:52 +0000457
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000458 Py_DECREF(repr);
459 if (ascii == NULL)
460 return NULL;
Georg Brandl559e5d72008-06-11 18:37:52 +0000461
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000462 res = PyUnicode_DecodeASCII(
463 PyBytes_AS_STRING(ascii),
464 PyBytes_GET_SIZE(ascii),
465 NULL);
466
467 Py_DECREF(ascii);
468 return res;
Georg Brandl559e5d72008-06-11 18:37:52 +0000469}
Guido van Rossuma3af41d2001-01-18 22:07:06 +0000470
Benjamin Petersonc15a0732008-08-26 16:46:47 +0000471PyObject *
472PyObject_Bytes(PyObject *v)
473{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000474 PyObject *result, *func;
475 static PyObject *bytesstring = NULL;
Benjamin Petersonc15a0732008-08-26 16:46:47 +0000476
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000477 if (v == NULL)
478 return PyBytes_FromString("<NULL>");
Benjamin Petersonc15a0732008-08-26 16:46:47 +0000479
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000480 if (PyBytes_CheckExact(v)) {
481 Py_INCREF(v);
482 return v;
483 }
Benjamin Petersonc15a0732008-08-26 16:46:47 +0000484
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000485 func = _PyObject_LookupSpecial(v, "__bytes__", &bytesstring);
486 if (func != NULL) {
487 result = PyObject_CallFunctionObjArgs(func, NULL);
488 Py_DECREF(func);
489 if (result == NULL)
490 return NULL;
491 if (!PyBytes_Check(result)) {
492 PyErr_Format(PyExc_TypeError,
493 "__bytes__ returned non-bytes (type %.200s)",
494 Py_TYPE(result)->tp_name);
495 Py_DECREF(result);
496 return NULL;
497 }
498 return result;
499 }
500 else if (PyErr_Occurred())
501 return NULL;
502 return PyBytes_FromObject(v);
Benjamin Petersonc15a0732008-08-26 16:46:47 +0000503}
504
Mark Dickinsonc008a172009-02-01 13:59:22 +0000505/* For Python 3.0.1 and later, the old three-way comparison has been
506 completely removed in favour of rich comparisons. PyObject_Compare() and
507 PyObject_Cmp() are gone, and the builtin cmp function no longer exists.
Mark Dickinsone94c6792009-02-02 20:36:42 +0000508 The old tp_compare slot has been renamed to tp_reserved, and should no
Mark Dickinsonc008a172009-02-01 13:59:22 +0000509 longer be used. Use tp_richcompare instead.
Guido van Rossum98297ee2007-11-06 21:34:58 +0000510
Guido van Rossum47b9ff62006-08-24 00:41:19 +0000511 See (*) below for practical amendments.
512
Mark Dickinsonc008a172009-02-01 13:59:22 +0000513 tp_richcompare gets called with a first argument of the appropriate type
514 and a second object of an arbitrary type. We never do any kind of
515 coercion.
Guido van Rossum47b9ff62006-08-24 00:41:19 +0000516
Mark Dickinsonc008a172009-02-01 13:59:22 +0000517 The tp_richcompare slot should return an object, as follows:
Guido van Rossum47b9ff62006-08-24 00:41:19 +0000518
519 NULL if an exception occurred
520 NotImplemented if the requested comparison is not implemented
521 any other false value if the requested comparison is false
522 any other true value if the requested comparison is true
523
524 The PyObject_RichCompare[Bool]() wrappers raise TypeError when they get
525 NotImplemented.
526
527 (*) Practical amendments:
528
529 - If rich comparison returns NotImplemented, == and != are decided by
530 comparing the object pointer (i.e. falling back to the base object
531 implementation).
532
Guido van Rossuma4073002002-05-31 20:03:54 +0000533*/
Guido van Rossum47b9ff62006-08-24 00:41:19 +0000534
Guido van Rossum47b9ff62006-08-24 00:41:19 +0000535/* Map rich comparison operators to their swapped version, e.g. LT <--> GT */
Brett Cannona5ca2e72004-09-25 01:37:24 +0000536int _Py_SwappedOp[] = {Py_GT, Py_GE, Py_EQ, Py_NE, Py_LT, Py_LE};
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +0000537
Guido van Rossum9a4e95c2006-12-19 21:35:46 +0000538static char *opstrings[] = {"<", "<=", "==", "!=", ">", ">="};
Guido van Rossum47b9ff62006-08-24 00:41:19 +0000539
540/* Perform a rich comparison, raising TypeError when the requested comparison
541 operator is not supported. */
Guido van Rossume797ec12001-01-17 15:24:28 +0000542static PyObject *
Guido van Rossum47b9ff62006-08-24 00:41:19 +0000543do_richcompare(PyObject *v, PyObject *w, int op)
Guido van Rossume797ec12001-01-17 15:24:28 +0000544{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000545 richcmpfunc f;
546 PyObject *res;
547 int checked_reverse_op = 0;
Guido van Rossume797ec12001-01-17 15:24:28 +0000548
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000549 if (v->ob_type != w->ob_type &&
550 PyType_IsSubtype(w->ob_type, v->ob_type) &&
551 (f = w->ob_type->tp_richcompare) != NULL) {
552 checked_reverse_op = 1;
553 res = (*f)(w, v, _Py_SwappedOp[op]);
554 if (res != Py_NotImplemented)
555 return res;
556 Py_DECREF(res);
557 }
558 if ((f = v->ob_type->tp_richcompare) != NULL) {
559 res = (*f)(v, w, op);
560 if (res != Py_NotImplemented)
561 return res;
562 Py_DECREF(res);
563 }
564 if (!checked_reverse_op && (f = w->ob_type->tp_richcompare) != NULL) {
565 res = (*f)(w, v, _Py_SwappedOp[op]);
566 if (res != Py_NotImplemented)
567 return res;
568 Py_DECREF(res);
569 }
570 /* If neither object implements it, provide a sensible default
571 for == and !=, but raise an exception for ordering. */
572 switch (op) {
573 case Py_EQ:
574 res = (v == w) ? Py_True : Py_False;
575 break;
576 case Py_NE:
577 res = (v != w) ? Py_True : Py_False;
578 break;
579 default:
580 /* XXX Special-case None so it doesn't show as NoneType() */
581 PyErr_Format(PyExc_TypeError,
582 "unorderable types: %.100s() %s %.100s()",
583 v->ob_type->tp_name,
584 opstrings[op],
585 w->ob_type->tp_name);
586 return NULL;
587 }
588 Py_INCREF(res);
589 return res;
Guido van Rossume797ec12001-01-17 15:24:28 +0000590}
591
Guido van Rossum47b9ff62006-08-24 00:41:19 +0000592/* Perform a rich comparison with object result. This wraps do_richcompare()
593 with a check for NULL arguments and a recursion check. */
Guido van Rossume797ec12001-01-17 15:24:28 +0000594
Guido van Rossume797ec12001-01-17 15:24:28 +0000595PyObject *
596PyObject_RichCompare(PyObject *v, PyObject *w, int op)
597{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000598 PyObject *res;
Guido van Rossume797ec12001-01-17 15:24:28 +0000599
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000600 assert(Py_LT <= op && op <= Py_GE);
601 if (v == NULL || w == NULL) {
602 if (!PyErr_Occurred())
603 PyErr_BadInternalCall();
604 return NULL;
605 }
606 if (Py_EnterRecursiveCall(" in comparison"))
607 return NULL;
608 res = do_richcompare(v, w, op);
609 Py_LeaveRecursiveCall();
610 return res;
Guido van Rossume797ec12001-01-17 15:24:28 +0000611}
612
Guido van Rossum47b9ff62006-08-24 00:41:19 +0000613/* Perform a rich comparison with integer result. This wraps
614 PyObject_RichCompare(), returning -1 for error, 0 for false, 1 for true. */
Guido van Rossume797ec12001-01-17 15:24:28 +0000615int
616PyObject_RichCompareBool(PyObject *v, PyObject *w, int op)
617{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000618 PyObject *res;
619 int ok;
Guido van Rossume797ec12001-01-17 15:24:28 +0000620
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000621 /* Quick result when objects are the same.
622 Guarantees that identity implies equality. */
623 if (v == w) {
624 if (op == Py_EQ)
625 return 1;
626 else if (op == Py_NE)
627 return 0;
628 }
Mark Dickinson4a1f5932008-11-12 23:23:36 +0000629
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000630 res = PyObject_RichCompare(v, w, op);
631 if (res == NULL)
632 return -1;
633 if (PyBool_Check(res))
634 ok = (res == Py_True);
635 else
636 ok = PyObject_IsTrue(res);
637 Py_DECREF(res);
638 return ok;
Guido van Rossume797ec12001-01-17 15:24:28 +0000639}
Fred Drake13634cf2000-06-29 19:17:04 +0000640
641/* Set of hash utility functions to help maintaining the invariant that
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000642 if a==b then hash(a)==hash(b)
Fred Drake13634cf2000-06-29 19:17:04 +0000643
644 All the utility functions (_Py_Hash*()) return "-1" to signify an error.
645*/
646
647long
Fred Drake100814d2000-07-09 15:48:49 +0000648_Py_HashDouble(double v)
Fred Drake13634cf2000-06-29 19:17:04 +0000649{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000650 double intpart, fractpart;
651 int expo;
652 long hipart;
653 long x; /* the final hash value */
654 /* This is designed so that Python numbers of different types
655 * that compare equal hash to the same value; otherwise comparisons
656 * of mapping keys will turn out weird.
657 */
Tim Peters39dce292000-08-15 03:34:48 +0000658
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000659 if (!Py_IS_FINITE(v)) {
660 if (Py_IS_INFINITY(v))
661 return v < 0 ? -271828 : 314159;
662 else
663 return 0;
664 }
665 fractpart = modf(v, &intpart);
666 if (fractpart == 0.0) {
667 /* This must return the same hash as an equal int or long. */
668 if (intpart > LONG_MAX/2 || -intpart > LONG_MAX/2) {
669 /* Convert to long and use its hash. */
670 PyObject *plong; /* converted to Python long */
671 plong = PyLong_FromDouble(v);
672 if (plong == NULL)
673 return -1;
674 x = PyObject_Hash(plong);
675 Py_DECREF(plong);
676 return x;
677 }
678 /* Fits in a C long == a Python int, so is its own hash. */
679 x = (long)intpart;
680 if (x == -1)
681 x = -2;
682 return x;
683 }
684 /* The fractional part is non-zero, so we don't have to worry about
685 * making this match the hash of some other type.
686 * Use frexp to get at the bits in the double.
687 * Since the VAX D double format has 56 mantissa bits, which is the
688 * most of any double format in use, each of these parts may have as
689 * many as (but no more than) 56 significant bits.
690 * So, assuming sizeof(long) >= 4, each part can be broken into two
691 * longs; frexp and multiplication are used to do that.
692 * Also, since the Cray double format has 15 exponent bits, which is
693 * the most of any double format in use, shifting the exponent field
694 * left by 15 won't overflow a long (again assuming sizeof(long) >= 4).
695 */
696 v = frexp(v, &expo);
697 v *= 2147483648.0; /* 2**31 */
698 hipart = (long)v; /* take the top 32 bits */
699 v = (v - (double)hipart) * 2147483648.0; /* get the next 32 bits */
700 x = hipart + (long)v + (expo << 15);
701 if (x == -1)
702 x = -2;
703 return x;
Fred Drake13634cf2000-06-29 19:17:04 +0000704}
705
706long
Fred Drake100814d2000-07-09 15:48:49 +0000707_Py_HashPointer(void *p)
Fred Drake13634cf2000-06-29 19:17:04 +0000708{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000709 long x;
710 size_t y = (size_t)p;
711 /* bottom 3 or 4 bits are likely to be 0; rotate y by 4 to avoid
712 excessive hash collisions for dicts and sets */
713 y = (y >> 4) | (y << (8 * SIZEOF_VOID_P - 4));
714 x = (long)y;
715 if (x == -1)
716 x = -2;
717 return x;
Fred Drake13634cf2000-06-29 19:17:04 +0000718}
719
Nick Coghland1abd252008-07-15 15:46:38 +0000720long
721PyObject_HashNotImplemented(PyObject *v)
722{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000723 PyErr_Format(PyExc_TypeError, "unhashable type: '%.200s'",
724 Py_TYPE(v)->tp_name);
725 return -1;
Nick Coghland1abd252008-07-15 15:46:38 +0000726}
Fred Drake13634cf2000-06-29 19:17:04 +0000727
Guido van Rossum9bfef441993-03-29 10:43:31 +0000728long
Fred Drake100814d2000-07-09 15:48:49 +0000729PyObject_Hash(PyObject *v)
Guido van Rossum9bfef441993-03-29 10:43:31 +0000730{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000731 PyTypeObject *tp = Py_TYPE(v);
732 if (tp->tp_hash != NULL)
733 return (*tp->tp_hash)(v);
734 /* To keep to the general practice that inheriting
735 * solely from object in C code should work without
736 * an explicit call to PyType_Ready, we implicitly call
737 * PyType_Ready here and then check the tp_hash slot again
738 */
739 if (tp->tp_dict == NULL) {
740 if (PyType_Ready(tp) < 0)
741 return -1;
742 if (tp->tp_hash != NULL)
743 return (*tp->tp_hash)(v);
744 }
745 /* Otherwise, the object can't be hashed */
746 return PyObject_HashNotImplemented(v);
Guido van Rossum9bfef441993-03-29 10:43:31 +0000747}
748
Guido van Rossumc0b618a1997-05-02 03:12:38 +0000749PyObject *
Jeremy Hyltonaf68c872005-12-10 18:50:16 +0000750PyObject_GetAttrString(PyObject *v, const char *name)
Guido van Rossum3f5da241990-12-20 15:06:42 +0000751{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000752 PyObject *w, *res;
Guido van Rossumd8eb1b31996-08-09 20:52:03 +0000753
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000754 if (Py_TYPE(v)->tp_getattr != NULL)
755 return (*Py_TYPE(v)->tp_getattr)(v, (char*)name);
756 w = PyUnicode_InternFromString(name);
757 if (w == NULL)
758 return NULL;
759 res = PyObject_GetAttr(v, w);
760 Py_XDECREF(w);
761 return res;
Guido van Rossum3f5da241990-12-20 15:06:42 +0000762}
763
764int
Jeremy Hyltonaf68c872005-12-10 18:50:16 +0000765PyObject_HasAttrString(PyObject *v, const char *name)
Guido van Rossumed18fdc1993-07-11 19:55:34 +0000766{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000767 PyObject *res = PyObject_GetAttrString(v, name);
768 if (res != NULL) {
769 Py_DECREF(res);
770 return 1;
771 }
772 PyErr_Clear();
773 return 0;
Guido van Rossumed18fdc1993-07-11 19:55:34 +0000774}
775
776int
Jeremy Hyltonaf68c872005-12-10 18:50:16 +0000777PyObject_SetAttrString(PyObject *v, const char *name, PyObject *w)
Guido van Rossum3f5da241990-12-20 15:06:42 +0000778{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000779 PyObject *s;
780 int res;
Guido van Rossumd8eb1b31996-08-09 20:52:03 +0000781
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000782 if (Py_TYPE(v)->tp_setattr != NULL)
783 return (*Py_TYPE(v)->tp_setattr)(v, (char*)name, w);
784 s = PyUnicode_InternFromString(name);
785 if (s == NULL)
786 return -1;
787 res = PyObject_SetAttr(v, s, w);
788 Py_XDECREF(s);
789 return res;
Guido van Rossum3f5da241990-12-20 15:06:42 +0000790}
791
Guido van Rossum98ff96a1997-05-20 18:34:44 +0000792PyObject *
Fred Drake100814d2000-07-09 15:48:49 +0000793PyObject_GetAttr(PyObject *v, PyObject *name)
Guido van Rossum98ff96a1997-05-20 18:34:44 +0000794{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000795 PyTypeObject *tp = Py_TYPE(v);
Tim Peters6d6c1a32001-08-02 04:15:00 +0000796
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000797 if (!PyUnicode_Check(name)) {
798 PyErr_Format(PyExc_TypeError,
799 "attribute name must be string, not '%.200s'",
800 name->ob_type->tp_name);
801 return NULL;
802 }
803 if (tp->tp_getattro != NULL)
804 return (*tp->tp_getattro)(v, name);
805 if (tp->tp_getattr != NULL) {
806 char *name_str = _PyUnicode_AsString(name);
807 if (name_str == NULL)
808 return NULL;
809 return (*tp->tp_getattr)(v, name_str);
810 }
811 PyErr_Format(PyExc_AttributeError,
812 "'%.50s' object has no attribute '%U'",
813 tp->tp_name, name);
814 return NULL;
Guido van Rossum98ff96a1997-05-20 18:34:44 +0000815}
816
817int
Fred Drake100814d2000-07-09 15:48:49 +0000818PyObject_HasAttr(PyObject *v, PyObject *name)
Guido van Rossum98ff96a1997-05-20 18:34:44 +0000819{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000820 PyObject *res = PyObject_GetAttr(v, name);
821 if (res != NULL) {
822 Py_DECREF(res);
823 return 1;
824 }
825 PyErr_Clear();
826 return 0;
Guido van Rossum98ff96a1997-05-20 18:34:44 +0000827}
828
829int
Fred Drake100814d2000-07-09 15:48:49 +0000830PyObject_SetAttr(PyObject *v, PyObject *name, PyObject *value)
Guido van Rossum98ff96a1997-05-20 18:34:44 +0000831{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000832 PyTypeObject *tp = Py_TYPE(v);
833 int err;
Marc-André Lemburge44e5072000-09-18 16:20:57 +0000834
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000835 if (!PyUnicode_Check(name)) {
836 PyErr_Format(PyExc_TypeError,
837 "attribute name must be string, not '%.200s'",
838 name->ob_type->tp_name);
839 return -1;
840 }
841 Py_INCREF(name);
Tim Peters6d6c1a32001-08-02 04:15:00 +0000842
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000843 PyUnicode_InternInPlace(&name);
844 if (tp->tp_setattro != NULL) {
845 err = (*tp->tp_setattro)(v, name, value);
846 Py_DECREF(name);
847 return err;
848 }
849 if (tp->tp_setattr != NULL) {
850 char *name_str = _PyUnicode_AsString(name);
851 if (name_str == NULL)
852 return -1;
853 err = (*tp->tp_setattr)(v, name_str, value);
854 Py_DECREF(name);
855 return err;
856 }
857 Py_DECREF(name);
858 assert(name->ob_refcnt >= 1);
859 if (tp->tp_getattr == NULL && tp->tp_getattro == NULL)
860 PyErr_Format(PyExc_TypeError,
861 "'%.100s' object has no attributes "
862 "(%s .%U)",
863 tp->tp_name,
864 value==NULL ? "del" : "assign to",
865 name);
866 else
867 PyErr_Format(PyExc_TypeError,
868 "'%.100s' object has only read-only attributes "
869 "(%s .%U)",
870 tp->tp_name,
871 value==NULL ? "del" : "assign to",
872 name);
873 return -1;
Tim Peters6d6c1a32001-08-02 04:15:00 +0000874}
875
876/* Helper to get a pointer to an object's __dict__ slot, if any */
877
878PyObject **
879_PyObject_GetDictPtr(PyObject *obj)
880{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000881 Py_ssize_t dictoffset;
882 PyTypeObject *tp = Py_TYPE(obj);
Tim Peters6d6c1a32001-08-02 04:15:00 +0000883
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000884 dictoffset = tp->tp_dictoffset;
885 if (dictoffset == 0)
886 return NULL;
887 if (dictoffset < 0) {
888 Py_ssize_t tsize;
889 size_t size;
Guido van Rossum2eb0b872002-03-01 22:24:49 +0000890
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000891 tsize = ((PyVarObject *)obj)->ob_size;
892 if (tsize < 0)
893 tsize = -tsize;
894 size = _PyObject_VAR_SIZE(tp, tsize);
Guido van Rossum2eb0b872002-03-01 22:24:49 +0000895
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000896 dictoffset += (long)size;
897 assert(dictoffset > 0);
898 assert(dictoffset % SIZEOF_VOID_P == 0);
899 }
900 return (PyObject **) ((char *)obj + dictoffset);
Tim Peters6d6c1a32001-08-02 04:15:00 +0000901}
902
Tim Peters6d6c1a32001-08-02 04:15:00 +0000903PyObject *
Raymond Hettinger1da1dbf2003-03-17 19:46:11 +0000904PyObject_SelfIter(PyObject *obj)
Raymond Hettinger01538262003-03-17 08:24:35 +0000905{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000906 Py_INCREF(obj);
907 return obj;
Raymond Hettinger01538262003-03-17 08:24:35 +0000908}
909
Amaury Forgeot d'Arcf343e012009-01-12 23:58:21 +0000910/* Helper used when the __next__ method is removed from a type:
911 tp_iternext is never NULL and can be safely called without checking
912 on every iteration.
913 */
914
915PyObject *
916_PyObject_NextNotImplemented(PyObject *self)
917{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000918 PyErr_Format(PyExc_TypeError,
919 "'%.200s' object is not iterable",
920 Py_TYPE(self)->tp_name);
921 return NULL;
Amaury Forgeot d'Arcf343e012009-01-12 23:58:21 +0000922}
923
Michael W. Hudson1593f502004-09-14 17:09:47 +0000924/* Generic GetAttr functions - put these in your tp_[gs]etattro slot */
925
Raymond Hettinger01538262003-03-17 08:24:35 +0000926PyObject *
Tim Peters6d6c1a32001-08-02 04:15:00 +0000927PyObject_GenericGetAttr(PyObject *obj, PyObject *name)
928{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000929 PyTypeObject *tp = Py_TYPE(obj);
930 PyObject *descr = NULL;
931 PyObject *res = NULL;
932 descrgetfunc f;
933 Py_ssize_t dictoffset;
934 PyObject **dictptr;
Tim Peters6d6c1a32001-08-02 04:15:00 +0000935
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000936 if (!PyUnicode_Check(name)){
937 PyErr_Format(PyExc_TypeError,
938 "attribute name must be string, not '%.200s'",
939 name->ob_type->tp_name);
940 return NULL;
941 }
942 else
943 Py_INCREF(name);
Guido van Rossumebca9fc2001-12-04 15:54:53 +0000944
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000945 if (tp->tp_dict == NULL) {
946 if (PyType_Ready(tp) < 0)
947 goto done;
948 }
Tim Peters6d6c1a32001-08-02 04:15:00 +0000949
Christian Heimesa62da1d2008-01-12 19:39:10 +0000950#if 0 /* XXX this is not quite _PyType_Lookup anymore */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000951 /* Inline _PyType_Lookup */
952 {
953 Py_ssize_t i, n;
954 PyObject *mro, *base, *dict;
Guido van Rossum056fbf42002-08-19 19:22:50 +0000955
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000956 /* Look in tp_dict of types in MRO */
957 mro = tp->tp_mro;
958 assert(mro != NULL);
959 assert(PyTuple_Check(mro));
960 n = PyTuple_GET_SIZE(mro);
961 for (i = 0; i < n; i++) {
962 base = PyTuple_GET_ITEM(mro, i);
963 assert(PyType_Check(base));
964 dict = ((PyTypeObject *)base)->tp_dict;
965 assert(dict && PyDict_Check(dict));
966 descr = PyDict_GetItem(dict, name);
967 if (descr != NULL)
968 break;
969 }
970 }
Christian Heimesa62da1d2008-01-12 19:39:10 +0000971#else
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000972 descr = _PyType_Lookup(tp, name);
Christian Heimesa62da1d2008-01-12 19:39:10 +0000973#endif
Guido van Rossum056fbf42002-08-19 19:22:50 +0000974
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000975 Py_XINCREF(descr);
Michael W. Hudsonb2c7de42003-08-15 13:07:47 +0000976
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000977 f = NULL;
978 if (descr != NULL) {
979 f = descr->ob_type->tp_descr_get;
980 if (f != NULL && PyDescr_IsData(descr)) {
981 res = f(descr, obj, (PyObject *)obj->ob_type);
982 Py_DECREF(descr);
983 goto done;
984 }
985 }
Tim Peters6d6c1a32001-08-02 04:15:00 +0000986
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000987 /* Inline _PyObject_GetDictPtr */
988 dictoffset = tp->tp_dictoffset;
989 if (dictoffset != 0) {
990 PyObject *dict;
991 if (dictoffset < 0) {
992 Py_ssize_t tsize;
993 size_t size;
Guido van Rossumc66ff442002-08-19 16:50:48 +0000994
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000995 tsize = ((PyVarObject *)obj)->ob_size;
996 if (tsize < 0)
997 tsize = -tsize;
998 size = _PyObject_VAR_SIZE(tp, tsize);
Guido van Rossumc66ff442002-08-19 16:50:48 +0000999
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001000 dictoffset += (long)size;
1001 assert(dictoffset > 0);
1002 assert(dictoffset % SIZEOF_VOID_P == 0);
1003 }
1004 dictptr = (PyObject **) ((char *)obj + dictoffset);
1005 dict = *dictptr;
1006 if (dict != NULL) {
1007 Py_INCREF(dict);
1008 res = PyDict_GetItem(dict, name);
1009 if (res != NULL) {
1010 Py_INCREF(res);
1011 Py_XDECREF(descr);
1012 Py_DECREF(dict);
1013 goto done;
1014 }
1015 Py_DECREF(dict);
1016 }
1017 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00001018
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001019 if (f != NULL) {
1020 res = f(descr, obj, (PyObject *)Py_TYPE(obj));
1021 Py_DECREF(descr);
1022 goto done;
1023 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00001024
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001025 if (descr != NULL) {
1026 res = descr;
1027 /* descr was already increfed above */
1028 goto done;
1029 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00001030
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001031 PyErr_Format(PyExc_AttributeError,
1032 "'%.50s' object has no attribute '%U'",
1033 tp->tp_name, name);
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001034 done:
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001035 Py_DECREF(name);
1036 return res;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001037}
1038
1039int
1040PyObject_GenericSetAttr(PyObject *obj, PyObject *name, PyObject *value)
1041{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001042 PyTypeObject *tp = Py_TYPE(obj);
1043 PyObject *descr;
1044 descrsetfunc f;
1045 PyObject **dictptr;
1046 int res = -1;
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001047
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001048 if (!PyUnicode_Check(name)){
1049 PyErr_Format(PyExc_TypeError,
1050 "attribute name must be string, not '%.200s'",
1051 name->ob_type->tp_name);
1052 return -1;
1053 }
1054 else
1055 Py_INCREF(name);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001056
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001057 if (tp->tp_dict == NULL) {
1058 if (PyType_Ready(tp) < 0)
1059 goto done;
1060 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00001061
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001062 descr = _PyType_Lookup(tp, name);
1063 f = NULL;
1064 if (descr != NULL) {
1065 f = descr->ob_type->tp_descr_set;
1066 if (f != NULL && PyDescr_IsData(descr)) {
1067 res = f(descr, obj, value);
1068 goto done;
1069 }
1070 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00001071
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001072 dictptr = _PyObject_GetDictPtr(obj);
1073 if (dictptr != NULL) {
1074 PyObject *dict = *dictptr;
1075 if (dict == NULL && value != NULL) {
1076 dict = PyDict_New();
1077 if (dict == NULL)
1078 goto done;
1079 *dictptr = dict;
1080 }
1081 if (dict != NULL) {
1082 Py_INCREF(dict);
1083 if (value == NULL)
1084 res = PyDict_DelItem(dict, name);
1085 else
1086 res = PyDict_SetItem(dict, name, value);
1087 if (res < 0 && PyErr_ExceptionMatches(PyExc_KeyError))
1088 PyErr_SetObject(PyExc_AttributeError, name);
1089 Py_DECREF(dict);
1090 goto done;
1091 }
1092 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00001093
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001094 if (f != NULL) {
1095 res = f(descr, obj, value);
1096 goto done;
1097 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00001098
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001099 if (descr == NULL) {
1100 PyErr_Format(PyExc_AttributeError,
1101 "'%.100s' object has no attribute '%U'",
1102 tp->tp_name, name);
1103 goto done;
1104 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00001105
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001106 PyErr_Format(PyExc_AttributeError,
1107 "'%.50s' object attribute '%U' is read-only",
1108 tp->tp_name, name);
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001109 done:
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001110 Py_DECREF(name);
1111 return res;
Guido van Rossum98ff96a1997-05-20 18:34:44 +00001112}
1113
Guido van Rossum6ac258d1993-05-12 08:24:20 +00001114/* Test a value used as condition, e.g., in a for or if statement.
1115 Return -1 if an error occurred */
1116
1117int
Fred Drake100814d2000-07-09 15:48:49 +00001118PyObject_IsTrue(PyObject *v)
Guido van Rossum6ac258d1993-05-12 08:24:20 +00001119{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001120 Py_ssize_t res;
1121 if (v == Py_True)
1122 return 1;
1123 if (v == Py_False)
1124 return 0;
1125 if (v == Py_None)
1126 return 0;
1127 else if (v->ob_type->tp_as_number != NULL &&
1128 v->ob_type->tp_as_number->nb_bool != NULL)
1129 res = (*v->ob_type->tp_as_number->nb_bool)(v);
1130 else if (v->ob_type->tp_as_mapping != NULL &&
1131 v->ob_type->tp_as_mapping->mp_length != NULL)
1132 res = (*v->ob_type->tp_as_mapping->mp_length)(v);
1133 else if (v->ob_type->tp_as_sequence != NULL &&
1134 v->ob_type->tp_as_sequence->sq_length != NULL)
1135 res = (*v->ob_type->tp_as_sequence->sq_length)(v);
1136 else
1137 return 1;
1138 /* if it is negative, it should be either -1 or -2 */
1139 return (res > 0) ? 1 : Py_SAFE_DOWNCAST(res, Py_ssize_t, int);
Guido van Rossum6ac258d1993-05-12 08:24:20 +00001140}
1141
Tim Peters803526b2002-07-07 05:13:56 +00001142/* equivalent of 'not v'
Guido van Rossumc3d3f961998-04-09 17:53:59 +00001143 Return -1 if an error occurred */
1144
1145int
Fred Drake100814d2000-07-09 15:48:49 +00001146PyObject_Not(PyObject *v)
Guido van Rossumc3d3f961998-04-09 17:53:59 +00001147{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001148 int res;
1149 res = PyObject_IsTrue(v);
1150 if (res < 0)
1151 return res;
1152 return res == 0;
Guido van Rossumc3d3f961998-04-09 17:53:59 +00001153}
1154
Guido van Rossum49b11fe1995-01-26 00:38:22 +00001155/* Test whether an object can be called */
1156
1157int
Fred Drake100814d2000-07-09 15:48:49 +00001158PyCallable_Check(PyObject *x)
Guido van Rossum49b11fe1995-01-26 00:38:22 +00001159{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001160 if (x == NULL)
1161 return 0;
1162 return x->ob_type->tp_call != NULL;
Guido van Rossum49b11fe1995-01-26 00:38:22 +00001163}
1164
Georg Brandle32b4222007-03-10 22:13:27 +00001165/* ------------------------- PyObject_Dir() helpers ------------------------- */
1166
Tim Peters7eea37e2001-09-04 22:08:56 +00001167/* Helper for PyObject_Dir.
1168 Merge the __dict__ of aclass into dict, and recursively also all
1169 the __dict__s of aclass's base classes. The order of merging isn't
1170 defined, as it's expected that only the final set of dict keys is
1171 interesting.
1172 Return 0 on success, -1 on error.
1173*/
1174
1175static int
1176merge_class_dict(PyObject* dict, PyObject* aclass)
1177{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001178 PyObject *classdict;
1179 PyObject *bases;
Tim Peters7eea37e2001-09-04 22:08:56 +00001180
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001181 assert(PyDict_Check(dict));
1182 assert(aclass);
Tim Peters7eea37e2001-09-04 22:08:56 +00001183
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001184 /* Merge in the type's dict (if any). */
1185 classdict = PyObject_GetAttrString(aclass, "__dict__");
1186 if (classdict == NULL)
1187 PyErr_Clear();
1188 else {
1189 int status = PyDict_Update(dict, classdict);
1190 Py_DECREF(classdict);
1191 if (status < 0)
1192 return -1;
1193 }
Tim Peters7eea37e2001-09-04 22:08:56 +00001194
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001195 /* Recursively merge in the base types' (if any) dicts. */
1196 bases = PyObject_GetAttrString(aclass, "__bases__");
1197 if (bases == NULL)
1198 PyErr_Clear();
1199 else {
1200 /* We have no guarantee that bases is a real tuple */
1201 Py_ssize_t i, n;
1202 n = PySequence_Size(bases); /* This better be right */
1203 if (n < 0)
1204 PyErr_Clear();
1205 else {
1206 for (i = 0; i < n; i++) {
1207 int status;
1208 PyObject *base = PySequence_GetItem(bases, i);
1209 if (base == NULL) {
1210 Py_DECREF(bases);
1211 return -1;
1212 }
1213 status = merge_class_dict(dict, base);
1214 Py_DECREF(base);
1215 if (status < 0) {
1216 Py_DECREF(bases);
1217 return -1;
1218 }
1219 }
1220 }
1221 Py_DECREF(bases);
1222 }
1223 return 0;
Tim Peters7eea37e2001-09-04 22:08:56 +00001224}
1225
Georg Brandle32b4222007-03-10 22:13:27 +00001226/* Helper for PyObject_Dir without arguments: returns the local scope. */
1227static PyObject *
Guido van Rossumad7d8d12007-04-13 01:39:34 +00001228_dir_locals(void)
Tim Peters305b5852001-09-17 02:38:46 +00001229{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001230 PyObject *names;
1231 PyObject *locals = PyEval_GetLocals();
Tim Peters305b5852001-09-17 02:38:46 +00001232
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001233 if (locals == NULL) {
1234 PyErr_SetString(PyExc_SystemError, "frame does not exist");
1235 return NULL;
1236 }
Tim Peters305b5852001-09-17 02:38:46 +00001237
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001238 names = PyMapping_Keys(locals);
1239 if (!names)
1240 return NULL;
1241 if (!PyList_Check(names)) {
1242 PyErr_Format(PyExc_TypeError,
1243 "dir(): expected keys() of locals to be a list, "
1244 "not '%.200s'", Py_TYPE(names)->tp_name);
1245 Py_DECREF(names);
1246 return NULL;
1247 }
1248 /* the locals don't need to be DECREF'd */
1249 return names;
Georg Brandle32b4222007-03-10 22:13:27 +00001250}
1251
1252/* Helper for PyObject_Dir of type objects: returns __dict__ and __bases__.
Guido van Rossum98297ee2007-11-06 21:34:58 +00001253 We deliberately don't suck up its __class__, as methods belonging to the
1254 metaclass would probably be more confusing than helpful.
Georg Brandle32b4222007-03-10 22:13:27 +00001255*/
Guido van Rossum98297ee2007-11-06 21:34:58 +00001256static PyObject *
Georg Brandle32b4222007-03-10 22:13:27 +00001257_specialized_dir_type(PyObject *obj)
1258{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001259 PyObject *result = NULL;
1260 PyObject *dict = PyDict_New();
Georg Brandle32b4222007-03-10 22:13:27 +00001261
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001262 if (dict != NULL && merge_class_dict(dict, obj) == 0)
1263 result = PyDict_Keys(dict);
Georg Brandle32b4222007-03-10 22:13:27 +00001264
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001265 Py_XDECREF(dict);
1266 return result;
Tim Peters305b5852001-09-17 02:38:46 +00001267}
1268
Georg Brandle32b4222007-03-10 22:13:27 +00001269/* Helper for PyObject_Dir of module objects: returns the module's __dict__. */
1270static PyObject *
1271_specialized_dir_module(PyObject *obj)
Tim Peters7eea37e2001-09-04 22:08:56 +00001272{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001273 PyObject *result = NULL;
1274 PyObject *dict = PyObject_GetAttrString(obj, "__dict__");
Tim Peters7eea37e2001-09-04 22:08:56 +00001275
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001276 if (dict != NULL) {
1277 if (PyDict_Check(dict))
1278 result = PyDict_Keys(dict);
1279 else {
1280 const char *name = PyModule_GetName(obj);
1281 if (name)
1282 PyErr_Format(PyExc_TypeError,
1283 "%.200s.__dict__ is not a dictionary",
1284 name);
1285 }
1286 }
Tim Peters7eea37e2001-09-04 22:08:56 +00001287
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001288 Py_XDECREF(dict);
1289 return result;
Georg Brandle32b4222007-03-10 22:13:27 +00001290}
Tim Peters7eea37e2001-09-04 22:08:56 +00001291
Georg Brandle32b4222007-03-10 22:13:27 +00001292/* Helper for PyObject_Dir of generic objects: returns __dict__, __class__,
1293 and recursively up the __class__.__bases__ chain.
1294*/
1295static PyObject *
1296_generic_dir(PyObject *obj)
1297{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001298 PyObject *result = NULL;
1299 PyObject *dict = NULL;
1300 PyObject *itsclass = NULL;
Guido van Rossum98297ee2007-11-06 21:34:58 +00001301
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001302 /* Get __dict__ (which may or may not be a real dict...) */
1303 dict = PyObject_GetAttrString(obj, "__dict__");
1304 if (dict == NULL) {
1305 PyErr_Clear();
1306 dict = PyDict_New();
1307 }
1308 else if (!PyDict_Check(dict)) {
1309 Py_DECREF(dict);
1310 dict = PyDict_New();
1311 }
1312 else {
1313 /* Copy __dict__ to avoid mutating it. */
1314 PyObject *temp = PyDict_Copy(dict);
1315 Py_DECREF(dict);
1316 dict = temp;
1317 }
Tim Peters7eea37e2001-09-04 22:08:56 +00001318
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001319 if (dict == NULL)
1320 goto error;
Tim Peters7eea37e2001-09-04 22:08:56 +00001321
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001322 /* Merge in attrs reachable from its class. */
1323 itsclass = PyObject_GetAttrString(obj, "__class__");
1324 if (itsclass == NULL)
1325 /* XXX(tomer): Perhaps fall back to obj->ob_type if no
1326 __class__ exists? */
1327 PyErr_Clear();
1328 else {
1329 if (merge_class_dict(dict, itsclass) != 0)
1330 goto error;
1331 }
Georg Brandle32b4222007-03-10 22:13:27 +00001332
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001333 result = PyDict_Keys(dict);
1334 /* fall through */
Georg Brandle32b4222007-03-10 22:13:27 +00001335error:
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001336 Py_XDECREF(itsclass);
1337 Py_XDECREF(dict);
1338 return result;
Georg Brandle32b4222007-03-10 22:13:27 +00001339}
1340
1341/* Helper for PyObject_Dir: object introspection.
1342 This calls one of the above specialized versions if no __dir__ method
1343 exists. */
1344static PyObject *
1345_dir_object(PyObject *obj)
1346{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001347 PyObject * result = NULL;
1348 PyObject * dirfunc = PyObject_GetAttrString((PyObject*)obj->ob_type,
1349 "__dir__");
Georg Brandle32b4222007-03-10 22:13:27 +00001350
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001351 assert(obj);
1352 if (dirfunc == NULL) {
1353 /* use default implementation */
1354 PyErr_Clear();
1355 if (PyModule_Check(obj))
1356 result = _specialized_dir_module(obj);
1357 else if (PyType_Check(obj))
1358 result = _specialized_dir_type(obj);
1359 else
1360 result = _generic_dir(obj);
1361 }
1362 else {
1363 /* use __dir__ */
1364 result = PyObject_CallFunctionObjArgs(dirfunc, obj, NULL);
1365 Py_DECREF(dirfunc);
1366 if (result == NULL)
1367 return NULL;
Georg Brandle32b4222007-03-10 22:13:27 +00001368
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001369 /* result must be a list */
1370 /* XXX(gbrandl): could also check if all items are strings */
1371 if (!PyList_Check(result)) {
1372 PyErr_Format(PyExc_TypeError,
1373 "__dir__() must return a list, not %.200s",
1374 Py_TYPE(result)->tp_name);
1375 Py_DECREF(result);
1376 result = NULL;
1377 }
1378 }
Georg Brandle32b4222007-03-10 22:13:27 +00001379
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001380 return result;
Georg Brandle32b4222007-03-10 22:13:27 +00001381}
1382
1383/* Implementation of dir() -- if obj is NULL, returns the names in the current
1384 (local) scope. Otherwise, performs introspection of the object: returns a
1385 sorted list of attribute names (supposedly) accessible from the object
1386*/
1387PyObject *
1388PyObject_Dir(PyObject *obj)
1389{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001390 PyObject * result;
Georg Brandle32b4222007-03-10 22:13:27 +00001391
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001392 if (obj == NULL)
1393 /* no object -- introspect the locals */
1394 result = _dir_locals();
1395 else
1396 /* object -- introspect the object */
1397 result = _dir_object(obj);
Georg Brandle32b4222007-03-10 22:13:27 +00001398
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001399 assert(result == NULL || PyList_Check(result));
Georg Brandle32b4222007-03-10 22:13:27 +00001400
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001401 if (result != NULL && PyList_Sort(result) != 0) {
1402 /* sorting the list failed */
1403 Py_DECREF(result);
1404 result = NULL;
1405 }
Guido van Rossum98297ee2007-11-06 21:34:58 +00001406
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001407 return result;
Tim Peters7eea37e2001-09-04 22:08:56 +00001408}
Guido van Rossum49b11fe1995-01-26 00:38:22 +00001409
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001410/*
1411NoObject is usable as a non-NULL undefined value, used by the macro None.
1412There is (and should be!) no way to create other objects of this type,
Guido van Rossum3f5da241990-12-20 15:06:42 +00001413so there is exactly one (which is indestructible, by the way).
Guido van Rossumba21a492001-08-16 08:17:26 +00001414(XXX This type and the type of NotImplemented below should be unified.)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001415*/
1416
Guido van Rossum0c182a11992-03-27 17:26:13 +00001417/* ARGSUSED */
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001418static PyObject *
Fred Drake100814d2000-07-09 15:48:49 +00001419none_repr(PyObject *op)
Guido van Rossum3f5da241990-12-20 15:06:42 +00001420{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001421 return PyUnicode_FromString("None");
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001422}
1423
Barry Warsaw9bf16442001-01-23 16:24:35 +00001424/* ARGUSED */
1425static void
Tim Peters803526b2002-07-07 05:13:56 +00001426none_dealloc(PyObject* ignore)
Barry Warsaw9bf16442001-01-23 16:24:35 +00001427{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001428 /* This should never get called, but we also don't want to SEGV if
1429 * we accidentally decref None out of existence.
1430 */
1431 Py_FatalError("deallocating None");
Barry Warsaw9bf16442001-01-23 16:24:35 +00001432}
1433
1434
Guido van Rossumba21a492001-08-16 08:17:26 +00001435static PyTypeObject PyNone_Type = {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001436 PyVarObject_HEAD_INIT(&PyType_Type, 0)
1437 "NoneType",
1438 0,
1439 0,
1440 none_dealloc, /*tp_dealloc*/ /*never called*/
1441 0, /*tp_print*/
1442 0, /*tp_getattr*/
1443 0, /*tp_setattr*/
1444 0, /*tp_reserved*/
1445 none_repr, /*tp_repr*/
1446 0, /*tp_as_number*/
1447 0, /*tp_as_sequence*/
1448 0, /*tp_as_mapping*/
1449 0, /*tp_hash */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001450};
1451
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001452PyObject _Py_NoneStruct = {
Martin v. Löwis9f2e3462007-07-21 17:22:18 +00001453 _PyObject_EXTRA_INIT
1454 1, &PyNone_Type
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001455};
1456
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +00001457/* NotImplemented is an object that can be used to signal that an
1458 operation is not implemented for the given type combination. */
1459
1460static PyObject *
1461NotImplemented_repr(PyObject *op)
1462{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001463 return PyUnicode_FromString("NotImplemented");
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +00001464}
1465
1466static PyTypeObject PyNotImplemented_Type = {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001467 PyVarObject_HEAD_INIT(&PyType_Type, 0)
1468 "NotImplementedType",
1469 0,
1470 0,
1471 none_dealloc, /*tp_dealloc*/ /*never called*/
1472 0, /*tp_print*/
1473 0, /*tp_getattr*/
1474 0, /*tp_setattr*/
1475 0, /*tp_reserved*/
1476 NotImplemented_repr, /*tp_repr*/
1477 0, /*tp_as_number*/
1478 0, /*tp_as_sequence*/
1479 0, /*tp_as_mapping*/
1480 0, /*tp_hash */
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +00001481};
1482
1483PyObject _Py_NotImplementedStruct = {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001484 _PyObject_EXTRA_INIT
1485 1, &PyNotImplemented_Type
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +00001486};
1487
Guido van Rossumba21a492001-08-16 08:17:26 +00001488void
1489_Py_ReadyTypes(void)
1490{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001491 if (PyType_Ready(&PyType_Type) < 0)
1492 Py_FatalError("Can't initialize type type");
Guido van Rossumba21a492001-08-16 08:17:26 +00001493
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001494 if (PyType_Ready(&_PyWeakref_RefType) < 0)
1495 Py_FatalError("Can't initialize weakref type");
Fred Drake0a4dd392004-07-02 18:57:45 +00001496
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001497 if (PyType_Ready(&_PyWeakref_CallableProxyType) < 0)
1498 Py_FatalError("Can't initialize callable weakref proxy type");
Benjamin Petersonfd838e62009-04-20 02:09:13 +00001499
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001500 if (PyType_Ready(&_PyWeakref_ProxyType) < 0)
1501 Py_FatalError("Can't initialize weakref proxy type");
Benjamin Petersonfd838e62009-04-20 02:09:13 +00001502
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001503 if (PyType_Ready(&PyBool_Type) < 0)
1504 Py_FatalError("Can't initialize bool type");
Guido van Rossum77f6a652002-04-03 22:41:51 +00001505
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001506 if (PyType_Ready(&PyByteArray_Type) < 0)
1507 Py_FatalError("Can't initialize bytearray type");
Guido van Rossum4dfe8a12006-04-22 23:28:04 +00001508
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001509 if (PyType_Ready(&PyBytes_Type) < 0)
1510 Py_FatalError("Can't initialize 'str'");
Guido van Rossumcacfc072002-05-24 19:01:59 +00001511
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001512 if (PyType_Ready(&PyList_Type) < 0)
1513 Py_FatalError("Can't initialize list type");
Guido van Rossumba21a492001-08-16 08:17:26 +00001514
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001515 if (PyType_Ready(&PyNone_Type) < 0)
1516 Py_FatalError("Can't initialize None type");
Guido van Rossumba21a492001-08-16 08:17:26 +00001517
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001518 if (PyType_Ready(Py_Ellipsis->ob_type) < 0)
1519 Py_FatalError("Can't initialize type(Ellipsis)");
Guido van Rossum50e9fb92006-08-17 05:42:55 +00001520
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001521 if (PyType_Ready(&PyNotImplemented_Type) < 0)
1522 Py_FatalError("Can't initialize NotImplemented type");
Benjamin Petersonae937c02009-04-18 20:54:08 +00001523
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001524 if (PyType_Ready(&PyTraceBack_Type) < 0)
1525 Py_FatalError("Can't initialize traceback type");
Benjamin Petersonae937c02009-04-18 20:54:08 +00001526
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001527 if (PyType_Ready(&PySuper_Type) < 0)
1528 Py_FatalError("Can't initialize super type");
Benjamin Petersonae937c02009-04-18 20:54:08 +00001529
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001530 if (PyType_Ready(&PyBaseObject_Type) < 0)
1531 Py_FatalError("Can't initialize object type");
Benjamin Petersonae937c02009-04-18 20:54:08 +00001532
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001533 if (PyType_Ready(&PyRange_Type) < 0)
1534 Py_FatalError("Can't initialize range type");
Benjamin Petersonae937c02009-04-18 20:54:08 +00001535
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001536 if (PyType_Ready(&PyDict_Type) < 0)
1537 Py_FatalError("Can't initialize dict type");
Benjamin Petersonae937c02009-04-18 20:54:08 +00001538
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001539 if (PyType_Ready(&PySet_Type) < 0)
1540 Py_FatalError("Can't initialize set type");
Benjamin Petersonae937c02009-04-18 20:54:08 +00001541
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001542 if (PyType_Ready(&PyUnicode_Type) < 0)
1543 Py_FatalError("Can't initialize str type");
Benjamin Petersonae937c02009-04-18 20:54:08 +00001544
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001545 if (PyType_Ready(&PySlice_Type) < 0)
1546 Py_FatalError("Can't initialize slice type");
Benjamin Petersonae937c02009-04-18 20:54:08 +00001547
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001548 if (PyType_Ready(&PyStaticMethod_Type) < 0)
1549 Py_FatalError("Can't initialize static method type");
Benjamin Petersonae937c02009-04-18 20:54:08 +00001550
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001551 if (PyType_Ready(&PyComplex_Type) < 0)
1552 Py_FatalError("Can't initialize complex type");
Skip Montanaroba1e0f42009-10-18 14:25:35 +00001553
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001554 if (PyType_Ready(&PyFloat_Type) < 0)
1555 Py_FatalError("Can't initialize float type");
Benjamin Petersonae937c02009-04-18 20:54:08 +00001556
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001557 if (PyType_Ready(&PyLong_Type) < 0)
1558 Py_FatalError("Can't initialize int type");
Benjamin Petersonae937c02009-04-18 20:54:08 +00001559
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001560 if (PyType_Ready(&PyFrozenSet_Type) < 0)
1561 Py_FatalError("Can't initialize frozenset type");
Benjamin Petersonae937c02009-04-18 20:54:08 +00001562
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001563 if (PyType_Ready(&PyProperty_Type) < 0)
1564 Py_FatalError("Can't initialize property type");
Benjamin Petersonae937c02009-04-18 20:54:08 +00001565
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001566 if (PyType_Ready(&PyMemoryView_Type) < 0)
1567 Py_FatalError("Can't initialize memoryview type");
Benjamin Petersonae937c02009-04-18 20:54:08 +00001568
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001569 if (PyType_Ready(&PyTuple_Type) < 0)
1570 Py_FatalError("Can't initialize tuple type");
Benjamin Petersonae937c02009-04-18 20:54:08 +00001571
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001572 if (PyType_Ready(&PyEnum_Type) < 0)
1573 Py_FatalError("Can't initialize enumerate type");
Benjamin Petersonae937c02009-04-18 20:54:08 +00001574
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001575 if (PyType_Ready(&PyReversed_Type) < 0)
1576 Py_FatalError("Can't initialize reversed type");
Guido van Rossum47b9ff62006-08-24 00:41:19 +00001577
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001578 if (PyType_Ready(&PyStdPrinter_Type) < 0)
1579 Py_FatalError("Can't initialize StdPrinter");
Benjamin Petersonfd838e62009-04-20 02:09:13 +00001580
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001581 if (PyType_Ready(&PyCode_Type) < 0)
1582 Py_FatalError("Can't initialize code type");
Benjamin Petersonfd838e62009-04-20 02:09:13 +00001583
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001584 if (PyType_Ready(&PyFrame_Type) < 0)
1585 Py_FatalError("Can't initialize frame type");
Benjamin Petersonfd838e62009-04-20 02:09:13 +00001586
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001587 if (PyType_Ready(&PyCFunction_Type) < 0)
1588 Py_FatalError("Can't initialize builtin function type");
Benjamin Petersonfd838e62009-04-20 02:09:13 +00001589
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001590 if (PyType_Ready(&PyMethod_Type) < 0)
1591 Py_FatalError("Can't initialize method type");
Benjamin Petersonfd838e62009-04-20 02:09:13 +00001592
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001593 if (PyType_Ready(&PyFunction_Type) < 0)
1594 Py_FatalError("Can't initialize function type");
Benjamin Petersonfd838e62009-04-20 02:09:13 +00001595
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001596 if (PyType_Ready(&PyDictProxy_Type) < 0)
1597 Py_FatalError("Can't initialize dict proxy type");
Benjamin Petersonfd838e62009-04-20 02:09:13 +00001598
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001599 if (PyType_Ready(&PyGen_Type) < 0)
1600 Py_FatalError("Can't initialize generator type");
Benjamin Petersonfd838e62009-04-20 02:09:13 +00001601
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001602 if (PyType_Ready(&PyGetSetDescr_Type) < 0)
1603 Py_FatalError("Can't initialize get-set descriptor type");
Benjamin Petersonfd838e62009-04-20 02:09:13 +00001604
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001605 if (PyType_Ready(&PyWrapperDescr_Type) < 0)
1606 Py_FatalError("Can't initialize wrapper type");
Benjamin Petersonfd838e62009-04-20 02:09:13 +00001607
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001608 if (PyType_Ready(&PyEllipsis_Type) < 0)
1609 Py_FatalError("Can't initialize ellipsis type");
Benjamin Petersonfd838e62009-04-20 02:09:13 +00001610
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001611 if (PyType_Ready(&PyMemberDescr_Type) < 0)
1612 Py_FatalError("Can't initialize member descriptor type");
Benjamin Peterson8bc5b682009-05-09 18:10:51 +00001613
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001614 if (PyType_Ready(&PyFilter_Type) < 0)
1615 Py_FatalError("Can't initialize filter type");
Benjamin Peterson8bc5b682009-05-09 18:10:51 +00001616
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001617 if (PyType_Ready(&PyMap_Type) < 0)
1618 Py_FatalError("Can't initialize map type");
Benjamin Peterson8bc5b682009-05-09 18:10:51 +00001619
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001620 if (PyType_Ready(&PyZip_Type) < 0)
1621 Py_FatalError("Can't initialize zip type");
Guido van Rossumba21a492001-08-16 08:17:26 +00001622}
1623
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001624
Guido van Rossum84a90321996-05-22 16:34:47 +00001625#ifdef Py_TRACE_REFS
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001626
Guido van Rossumaacdc9d1996-08-12 21:32:12 +00001627void
Fred Drake100814d2000-07-09 15:48:49 +00001628_Py_NewReference(PyObject *op)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001629{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001630 _Py_INC_REFTOTAL;
1631 op->ob_refcnt = 1;
1632 _Py_AddToAllObjects(op, 1);
1633 _Py_INC_TPALLOCS(op);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001634}
1635
Guido van Rossumaacdc9d1996-08-12 21:32:12 +00001636void
Fred Drake100814d2000-07-09 15:48:49 +00001637_Py_ForgetReference(register PyObject *op)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001638{
Guido van Rossumbffd6832000-01-20 22:32:56 +00001639#ifdef SLOW_UNREF_CHECK
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001640 register PyObject *p;
Guido van Rossumbffd6832000-01-20 22:32:56 +00001641#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001642 if (op->ob_refcnt < 0)
1643 Py_FatalError("UNREF negative refcnt");
1644 if (op == &refchain ||
1645 op->_ob_prev->_ob_next != op || op->_ob_next->_ob_prev != op) {
1646 fprintf(stderr, "* ob\n");
1647 _PyObject_Dump(op);
1648 fprintf(stderr, "* op->_ob_prev->_ob_next\n");
1649 _PyObject_Dump(op->_ob_prev->_ob_next);
1650 fprintf(stderr, "* op->_ob_next->_ob_prev\n");
1651 _PyObject_Dump(op->_ob_next->_ob_prev);
1652 Py_FatalError("UNREF invalid object");
1653 }
Guido van Rossum2e8f6141992-09-03 20:32:55 +00001654#ifdef SLOW_UNREF_CHECK
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001655 for (p = refchain._ob_next; p != &refchain; p = p->_ob_next) {
1656 if (p == op)
1657 break;
1658 }
1659 if (p == &refchain) /* Not found */
1660 Py_FatalError("UNREF unknown object");
Guido van Rossum2e8f6141992-09-03 20:32:55 +00001661#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001662 op->_ob_next->_ob_prev = op->_ob_prev;
1663 op->_ob_prev->_ob_next = op->_ob_next;
1664 op->_ob_next = op->_ob_prev = NULL;
1665 _Py_INC_TPFREES(op);
Guido van Rossum3f5da241990-12-20 15:06:42 +00001666}
1667
Guido van Rossumaacdc9d1996-08-12 21:32:12 +00001668void
Fred Drake100814d2000-07-09 15:48:49 +00001669_Py_Dealloc(PyObject *op)
Guido van Rossum3f5da241990-12-20 15:06:42 +00001670{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001671 destructor dealloc = Py_TYPE(op)->tp_dealloc;
1672 _Py_ForgetReference(op);
1673 (*dealloc)(op);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001674}
1675
Tim Peters269b2a62003-04-17 19:52:29 +00001676/* Print all live objects. Because PyObject_Print is called, the
1677 * interpreter must be in a healthy state.
1678 */
Guido van Rossumaacdc9d1996-08-12 21:32:12 +00001679void
Fred Drake100814d2000-07-09 15:48:49 +00001680_Py_PrintReferences(FILE *fp)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001681{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001682 PyObject *op;
1683 fprintf(fp, "Remaining objects:\n");
1684 for (op = refchain._ob_next; op != &refchain; op = op->_ob_next) {
1685 fprintf(fp, "%p [%" PY_FORMAT_SIZE_T "d] ", op, op->ob_refcnt);
1686 if (PyObject_Print(op, fp, 0) != 0)
1687 PyErr_Clear();
1688 putc('\n', fp);
1689 }
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001690}
1691
Tim Peters269b2a62003-04-17 19:52:29 +00001692/* Print the addresses of all live objects. Unlike _Py_PrintReferences, this
1693 * doesn't make any calls to the Python C API, so is always safe to call.
1694 */
1695void
1696_Py_PrintReferenceAddresses(FILE *fp)
1697{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001698 PyObject *op;
1699 fprintf(fp, "Remaining object addresses:\n");
1700 for (op = refchain._ob_next; op != &refchain; op = op->_ob_next)
1701 fprintf(fp, "%p [%" PY_FORMAT_SIZE_T "d] %s\n", op,
1702 op->ob_refcnt, Py_TYPE(op)->tp_name);
Tim Peters269b2a62003-04-17 19:52:29 +00001703}
1704
Sjoerd Mullender6ec3c651995-08-29 09:18:14 +00001705PyObject *
Fred Drake100814d2000-07-09 15:48:49 +00001706_Py_GetObjects(PyObject *self, PyObject *args)
Sjoerd Mullender6ec3c651995-08-29 09:18:14 +00001707{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001708 int i, n;
1709 PyObject *t = NULL;
1710 PyObject *res, *op;
Sjoerd Mullender6ec3c651995-08-29 09:18:14 +00001711
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001712 if (!PyArg_ParseTuple(args, "i|O", &n, &t))
1713 return NULL;
1714 op = refchain._ob_next;
1715 res = PyList_New(0);
1716 if (res == NULL)
1717 return NULL;
1718 for (i = 0; (n == 0 || i < n) && op != &refchain; i++) {
1719 while (op == self || op == args || op == res || op == t ||
1720 (t != NULL && Py_TYPE(op) != (PyTypeObject *) t)) {
1721 op = op->_ob_next;
1722 if (op == &refchain)
1723 return res;
1724 }
1725 if (PyList_Append(res, op) < 0) {
1726 Py_DECREF(res);
1727 return NULL;
1728 }
1729 op = op->_ob_next;
1730 }
1731 return res;
Sjoerd Mullender6ec3c651995-08-29 09:18:14 +00001732}
1733
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001734#endif
Guido van Rossum97ead3f1996-01-12 01:24:09 +00001735
Guido van Rossum84a90321996-05-22 16:34:47 +00001736
Benjamin Petersonb173f782009-05-05 22:31:58 +00001737/* Hack to force loading of pycapsule.o */
1738PyTypeObject *_PyCapsule_hack = &PyCapsule_Type;
1739
1740
Guido van Rossum84a90321996-05-22 16:34:47 +00001741/* Hack to force loading of abstract.o */
Martin v. Löwis18e16552006-02-15 17:27:45 +00001742Py_ssize_t (*_Py_abstract_hack)(PyObject *) = PyObject_Size;
Guido van Rossume09fb551997-08-05 02:04:34 +00001743
1744
Andrew M. Kuchling1582a3a2000-08-16 12:27:23 +00001745/* Python's malloc wrappers (see pymem.h) */
Guido van Rossume09fb551997-08-05 02:04:34 +00001746
Thomas Wouters334fb892000-07-25 12:56:38 +00001747void *
Fred Drake100814d2000-07-09 15:48:49 +00001748PyMem_Malloc(size_t nbytes)
Guido van Rossume09fb551997-08-05 02:04:34 +00001749{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001750 return PyMem_MALLOC(nbytes);
Guido van Rossume09fb551997-08-05 02:04:34 +00001751}
1752
Thomas Wouters334fb892000-07-25 12:56:38 +00001753void *
1754PyMem_Realloc(void *p, size_t nbytes)
Guido van Rossume09fb551997-08-05 02:04:34 +00001755{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001756 return PyMem_REALLOC(p, nbytes);
Guido van Rossume09fb551997-08-05 02:04:34 +00001757}
1758
1759void
Thomas Wouters334fb892000-07-25 12:56:38 +00001760PyMem_Free(void *p)
Guido van Rossume09fb551997-08-05 02:04:34 +00001761{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001762 PyMem_FREE(p);
Guido van Rossumb18618d2000-05-03 23:44:39 +00001763}
1764
1765
Guido van Rossum86610361998-04-10 22:32:46 +00001766/* These methods are used to control infinite recursion in repr, str, print,
1767 etc. Container objects that may recursively contain themselves,
1768 e.g. builtin dictionaries and lists, should used Py_ReprEnter() and
1769 Py_ReprLeave() to avoid infinite recursion.
1770
1771 Py_ReprEnter() returns 0 the first time it is called for a particular
1772 object and 1 every time thereafter. It returns -1 if an exception
1773 occurred. Py_ReprLeave() has no return value.
1774
1775 See dictobject.c and listobject.c for examples of use.
1776*/
1777
1778#define KEY "Py_Repr"
1779
1780int
Fred Drake100814d2000-07-09 15:48:49 +00001781Py_ReprEnter(PyObject *obj)
Guido van Rossum86610361998-04-10 22:32:46 +00001782{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001783 PyObject *dict;
1784 PyObject *list;
1785 Py_ssize_t i;
Guido van Rossum86610361998-04-10 22:32:46 +00001786
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001787 dict = PyThreadState_GetDict();
1788 if (dict == NULL)
1789 return 0;
1790 list = PyDict_GetItemString(dict, KEY);
1791 if (list == NULL) {
1792 list = PyList_New(0);
1793 if (list == NULL)
1794 return -1;
1795 if (PyDict_SetItemString(dict, KEY, list) < 0)
1796 return -1;
1797 Py_DECREF(list);
1798 }
1799 i = PyList_GET_SIZE(list);
1800 while (--i >= 0) {
1801 if (PyList_GET_ITEM(list, i) == obj)
1802 return 1;
1803 }
1804 PyList_Append(list, obj);
1805 return 0;
Guido van Rossum86610361998-04-10 22:32:46 +00001806}
1807
1808void
Fred Drake100814d2000-07-09 15:48:49 +00001809Py_ReprLeave(PyObject *obj)
Guido van Rossum86610361998-04-10 22:32:46 +00001810{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001811 PyObject *dict;
1812 PyObject *list;
1813 Py_ssize_t i;
Guido van Rossum86610361998-04-10 22:32:46 +00001814
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001815 dict = PyThreadState_GetDict();
1816 if (dict == NULL)
1817 return;
1818 list = PyDict_GetItemString(dict, KEY);
1819 if (list == NULL || !PyList_Check(list))
1820 return;
1821 i = PyList_GET_SIZE(list);
1822 /* Count backwards because we always expect obj to be list[-1] */
1823 while (--i >= 0) {
1824 if (PyList_GET_ITEM(list, i) == obj) {
1825 PyList_SetSlice(list, i, i + 1, NULL);
1826 break;
1827 }
1828 }
Guido van Rossum86610361998-04-10 22:32:46 +00001829}
Guido van Rossumd724b232000-03-13 16:01:29 +00001830
Tim Peters803526b2002-07-07 05:13:56 +00001831/* Trashcan support. */
Guido van Rossumd724b232000-03-13 16:01:29 +00001832
Tim Peters803526b2002-07-07 05:13:56 +00001833/* Current call-stack depth of tp_dealloc calls. */
Guido van Rossumd724b232000-03-13 16:01:29 +00001834int _PyTrash_delete_nesting = 0;
Guido van Rossume92e6102000-04-24 15:40:53 +00001835
Tim Peters803526b2002-07-07 05:13:56 +00001836/* List of objects that still need to be cleaned up, singly linked via their
1837 * gc headers' gc_prev pointers.
1838 */
1839PyObject *_PyTrash_delete_later = NULL;
Guido van Rossumd724b232000-03-13 16:01:29 +00001840
Tim Peters803526b2002-07-07 05:13:56 +00001841/* Add op to the _PyTrash_delete_later list. Called when the current
1842 * call-stack depth gets large. op must be a currently untracked gc'ed
1843 * object, with refcount 0. Py_DECREF must already have been called on it.
1844 */
Guido van Rossumd724b232000-03-13 16:01:29 +00001845void
Fred Drake100814d2000-07-09 15:48:49 +00001846_PyTrash_deposit_object(PyObject *op)
Guido van Rossumd724b232000-03-13 16:01:29 +00001847{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001848 assert(PyObject_IS_GC(op));
1849 assert(_Py_AS_GC(op)->gc.gc_refs == _PyGC_REFS_UNTRACKED);
1850 assert(op->ob_refcnt == 0);
1851 _Py_AS_GC(op)->gc.gc_prev = (PyGC_Head *)_PyTrash_delete_later;
1852 _PyTrash_delete_later = op;
Guido van Rossumd724b232000-03-13 16:01:29 +00001853}
1854
Tim Peters803526b2002-07-07 05:13:56 +00001855/* Dealloccate all the objects in the _PyTrash_delete_later list. Called when
1856 * the call-stack unwinds again.
1857 */
Guido van Rossumd724b232000-03-13 16:01:29 +00001858void
Fred Drake100814d2000-07-09 15:48:49 +00001859_PyTrash_destroy_chain(void)
Guido van Rossumd724b232000-03-13 16:01:29 +00001860{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001861 while (_PyTrash_delete_later) {
1862 PyObject *op = _PyTrash_delete_later;
1863 destructor dealloc = Py_TYPE(op)->tp_dealloc;
Neil Schemenauerf589c052002-03-29 03:05:54 +00001864
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001865 _PyTrash_delete_later =
1866 (PyObject*) _Py_AS_GC(op)->gc.gc_prev;
Neil Schemenauerf589c052002-03-29 03:05:54 +00001867
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001868 /* Call the deallocator directly. This used to try to
1869 * fool Py_DECREF into calling it indirectly, but
1870 * Py_DECREF was already called on this object, and in
1871 * assorted non-release builds calling Py_DECREF again ends
1872 * up distorting allocation statistics.
1873 */
1874 assert(op->ob_refcnt == 0);
1875 ++_PyTrash_delete_nesting;
1876 (*dealloc)(op);
1877 --_PyTrash_delete_nesting;
1878 }
Guido van Rossumd724b232000-03-13 16:01:29 +00001879}
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001880
1881#ifdef __cplusplus
1882}
1883#endif