blob: ef23ac194a116c9be6d9d21d3f3390271730d20b [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
Antoine Pitrouc47bd4a2010-07-27 22:08:27 +0000261int
262PyObject_Print(PyObject *op, FILE *fp, int flags)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000263{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000264 int ret = 0;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000265 if (PyErr_CheckSignals())
266 return -1;
Guido van Rossum9b00dfa1998-04-28 16:06:54 +0000267#ifdef USE_STACKCHECK
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000268 if (PyOS_CheckStack()) {
269 PyErr_SetString(PyExc_MemoryError, "stack overflow");
270 return -1;
271 }
Guido van Rossum9b00dfa1998-04-28 16:06:54 +0000272#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000273 clearerr(fp); /* Clear any previous error condition */
274 if (op == NULL) {
275 Py_BEGIN_ALLOW_THREADS
276 fprintf(fp, "<nil>");
277 Py_END_ALLOW_THREADS
278 }
279 else {
280 if (op->ob_refcnt <= 0)
281 /* XXX(twouters) cast refcount to long until %zd is
282 universally available */
283 Py_BEGIN_ALLOW_THREADS
284 fprintf(fp, "<refcnt %ld at %p>",
285 (long)op->ob_refcnt, op);
286 Py_END_ALLOW_THREADS
287 else {
288 PyObject *s;
289 if (flags & Py_PRINT_RAW)
290 s = PyObject_Str(op);
291 else
292 s = PyObject_Repr(op);
293 if (s == NULL)
294 ret = -1;
295 else if (PyBytes_Check(s)) {
296 fwrite(PyBytes_AS_STRING(s), 1,
297 PyBytes_GET_SIZE(s), fp);
298 }
299 else if (PyUnicode_Check(s)) {
300 PyObject *t;
Victor Stinner372ac5e2010-05-17 01:26:01 +0000301 t = PyUnicode_EncodeUTF8(PyUnicode_AS_UNICODE(s),
302 PyUnicode_GET_SIZE(s),
303 "backslashreplace");
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000304 if (t == NULL)
305 ret = 0;
306 else {
307 fwrite(PyBytes_AS_STRING(t), 1,
308 PyBytes_GET_SIZE(t), fp);
Victor Stinnerba6b4302010-05-17 09:33:42 +0000309 Py_DECREF(t);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000310 }
311 }
312 else {
313 PyErr_Format(PyExc_TypeError,
314 "str() or repr() returned '%.100s'",
315 s->ob_type->tp_name);
316 ret = -1;
317 }
318 Py_XDECREF(s);
319 }
320 }
321 if (ret == 0) {
322 if (ferror(fp)) {
323 PyErr_SetFromErrno(PyExc_IOError);
324 clearerr(fp);
325 ret = -1;
326 }
327 }
328 return ret;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000329}
330
Guido van Rossum38938152006-08-21 23:36:26 +0000331/* For debugging convenience. Set a breakpoint here and call it from your DLL */
332void
Thomas Woutersb2137042007-02-01 18:02:27 +0000333_Py_BreakPoint(void)
Guido van Rossum38938152006-08-21 23:36:26 +0000334{
335}
336
Neal Norwitz1a997502003-01-13 20:13:12 +0000337
Barry Warsaw9bf16442001-01-23 16:24:35 +0000338/* For debugging convenience. See Misc/gdbinit for some useful gdb hooks */
Guido van Rossum38938152006-08-21 23:36:26 +0000339void
340_PyObject_Dump(PyObject* op)
Barry Warsaw9bf16442001-01-23 16:24:35 +0000341{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000342 if (op == NULL)
343 fprintf(stderr, "NULL\n");
344 else {
Georg Brandldfd73442009-04-05 11:47:34 +0000345#ifdef WITH_THREAD
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000346 PyGILState_STATE gil;
Georg Brandldfd73442009-04-05 11:47:34 +0000347#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000348 fprintf(stderr, "object : ");
Georg Brandldfd73442009-04-05 11:47:34 +0000349#ifdef WITH_THREAD
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000350 gil = PyGILState_Ensure();
Georg Brandldfd73442009-04-05 11:47:34 +0000351#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000352 (void)PyObject_Print(op, stderr, 0);
Georg Brandldfd73442009-04-05 11:47:34 +0000353#ifdef WITH_THREAD
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000354 PyGILState_Release(gil);
Georg Brandldfd73442009-04-05 11:47:34 +0000355#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000356 /* XXX(twouters) cast refcount to long until %zd is
357 universally available */
358 fprintf(stderr, "\n"
359 "type : %s\n"
360 "refcount: %ld\n"
361 "address : %p\n",
362 Py_TYPE(op)==NULL ? "NULL" : Py_TYPE(op)->tp_name,
363 (long)op->ob_refcnt,
364 op);
365 }
Barry Warsaw9bf16442001-01-23 16:24:35 +0000366}
Barry Warsaw903138f2001-01-23 16:33:18 +0000367
Guido van Rossumc0b618a1997-05-02 03:12:38 +0000368PyObject *
Fred Drake100814d2000-07-09 15:48:49 +0000369PyObject_Repr(PyObject *v)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000370{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000371 PyObject *res;
372 if (PyErr_CheckSignals())
373 return NULL;
Guido van Rossum9b00dfa1998-04-28 16:06:54 +0000374#ifdef USE_STACKCHECK
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000375 if (PyOS_CheckStack()) {
376 PyErr_SetString(PyExc_MemoryError, "stack overflow");
377 return NULL;
378 }
Guido van Rossum9b00dfa1998-04-28 16:06:54 +0000379#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000380 if (v == NULL)
381 return PyUnicode_FromString("<NULL>");
382 if (Py_TYPE(v)->tp_repr == NULL)
383 return PyUnicode_FromFormat("<%s object at %p>",
384 v->ob_type->tp_name, v);
385 res = (*v->ob_type->tp_repr)(v);
386 if (res != NULL && !PyUnicode_Check(res)) {
387 PyErr_Format(PyExc_TypeError,
388 "__repr__ returned non-string (type %.200s)",
389 res->ob_type->tp_name);
390 Py_DECREF(res);
391 return NULL;
392 }
393 return res;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000394}
395
Guido van Rossumc0b618a1997-05-02 03:12:38 +0000396PyObject *
Guido van Rossum98297ee2007-11-06 21:34:58 +0000397PyObject_Str(PyObject *v)
Guido van Rossumc6004111993-11-05 10:22:19 +0000398{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000399 PyObject *res;
400 if (PyErr_CheckSignals())
401 return NULL;
Guido van Rossum98297ee2007-11-06 21:34:58 +0000402#ifdef USE_STACKCHECK
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000403 if (PyOS_CheckStack()) {
404 PyErr_SetString(PyExc_MemoryError, "stack overflow");
405 return NULL;
406 }
Guido van Rossum98297ee2007-11-06 21:34:58 +0000407#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000408 if (v == NULL)
409 return PyUnicode_FromString("<NULL>");
410 if (PyUnicode_CheckExact(v)) {
411 Py_INCREF(v);
412 return v;
413 }
414 if (Py_TYPE(v)->tp_str == NULL)
415 return PyObject_Repr(v);
Guido van Rossum4f288ab2001-05-01 16:53:37 +0000416
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000417 /* It is possible for a type to have a tp_str representation that loops
418 infinitely. */
419 if (Py_EnterRecursiveCall(" while getting the str of an object"))
420 return NULL;
421 res = (*Py_TYPE(v)->tp_str)(v);
422 Py_LeaveRecursiveCall();
423 if (res == NULL)
424 return NULL;
425 if (!PyUnicode_Check(res)) {
426 PyErr_Format(PyExc_TypeError,
427 "__str__ returned non-string (type %.200s)",
428 Py_TYPE(res)->tp_name);
429 Py_DECREF(res);
430 return NULL;
431 }
432 return res;
Neil Schemenauercf52c072005-08-12 17:34:58 +0000433}
434
Georg Brandl559e5d72008-06-11 18:37:52 +0000435PyObject *
436PyObject_ASCII(PyObject *v)
437{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000438 PyObject *repr, *ascii, *res;
Georg Brandl559e5d72008-06-11 18:37:52 +0000439
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000440 repr = PyObject_Repr(v);
441 if (repr == NULL)
442 return NULL;
Georg Brandl559e5d72008-06-11 18:37:52 +0000443
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000444 /* repr is guaranteed to be a PyUnicode object by PyObject_Repr */
445 ascii = PyUnicode_EncodeASCII(
446 PyUnicode_AS_UNICODE(repr),
447 PyUnicode_GET_SIZE(repr),
448 "backslashreplace");
Georg Brandl559e5d72008-06-11 18:37:52 +0000449
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000450 Py_DECREF(repr);
451 if (ascii == NULL)
452 return NULL;
Georg Brandl559e5d72008-06-11 18:37:52 +0000453
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000454 res = PyUnicode_DecodeASCII(
455 PyBytes_AS_STRING(ascii),
456 PyBytes_GET_SIZE(ascii),
457 NULL);
458
459 Py_DECREF(ascii);
460 return res;
Georg Brandl559e5d72008-06-11 18:37:52 +0000461}
Guido van Rossuma3af41d2001-01-18 22:07:06 +0000462
Benjamin Petersonc15a0732008-08-26 16:46:47 +0000463PyObject *
464PyObject_Bytes(PyObject *v)
465{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000466 PyObject *result, *func;
467 static PyObject *bytesstring = NULL;
Benjamin Petersonc15a0732008-08-26 16:46:47 +0000468
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000469 if (v == NULL)
470 return PyBytes_FromString("<NULL>");
Benjamin Petersonc15a0732008-08-26 16:46:47 +0000471
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000472 if (PyBytes_CheckExact(v)) {
473 Py_INCREF(v);
474 return v;
475 }
Benjamin Petersonc15a0732008-08-26 16:46:47 +0000476
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000477 func = _PyObject_LookupSpecial(v, "__bytes__", &bytesstring);
478 if (func != NULL) {
479 result = PyObject_CallFunctionObjArgs(func, NULL);
480 Py_DECREF(func);
481 if (result == NULL)
482 return NULL;
483 if (!PyBytes_Check(result)) {
484 PyErr_Format(PyExc_TypeError,
485 "__bytes__ returned non-bytes (type %.200s)",
486 Py_TYPE(result)->tp_name);
487 Py_DECREF(result);
488 return NULL;
489 }
490 return result;
491 }
492 else if (PyErr_Occurred())
493 return NULL;
494 return PyBytes_FromObject(v);
Benjamin Petersonc15a0732008-08-26 16:46:47 +0000495}
496
Mark Dickinsonc008a172009-02-01 13:59:22 +0000497/* For Python 3.0.1 and later, the old three-way comparison has been
498 completely removed in favour of rich comparisons. PyObject_Compare() and
499 PyObject_Cmp() are gone, and the builtin cmp function no longer exists.
Mark Dickinsone94c6792009-02-02 20:36:42 +0000500 The old tp_compare slot has been renamed to tp_reserved, and should no
Mark Dickinsonc008a172009-02-01 13:59:22 +0000501 longer be used. Use tp_richcompare instead.
Guido van Rossum98297ee2007-11-06 21:34:58 +0000502
Guido van Rossum47b9ff62006-08-24 00:41:19 +0000503 See (*) below for practical amendments.
504
Mark Dickinsonc008a172009-02-01 13:59:22 +0000505 tp_richcompare gets called with a first argument of the appropriate type
506 and a second object of an arbitrary type. We never do any kind of
507 coercion.
Guido van Rossum47b9ff62006-08-24 00:41:19 +0000508
Mark Dickinsonc008a172009-02-01 13:59:22 +0000509 The tp_richcompare slot should return an object, as follows:
Guido van Rossum47b9ff62006-08-24 00:41:19 +0000510
511 NULL if an exception occurred
512 NotImplemented if the requested comparison is not implemented
513 any other false value if the requested comparison is false
514 any other true value if the requested comparison is true
515
516 The PyObject_RichCompare[Bool]() wrappers raise TypeError when they get
517 NotImplemented.
518
519 (*) Practical amendments:
520
521 - If rich comparison returns NotImplemented, == and != are decided by
522 comparing the object pointer (i.e. falling back to the base object
523 implementation).
524
Guido van Rossuma4073002002-05-31 20:03:54 +0000525*/
Guido van Rossum47b9ff62006-08-24 00:41:19 +0000526
Guido van Rossum47b9ff62006-08-24 00:41:19 +0000527/* Map rich comparison operators to their swapped version, e.g. LT <--> GT */
Brett Cannona5ca2e72004-09-25 01:37:24 +0000528int _Py_SwappedOp[] = {Py_GT, Py_GE, Py_EQ, Py_NE, Py_LT, Py_LE};
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +0000529
Guido van Rossum9a4e95c2006-12-19 21:35:46 +0000530static char *opstrings[] = {"<", "<=", "==", "!=", ">", ">="};
Guido van Rossum47b9ff62006-08-24 00:41:19 +0000531
532/* Perform a rich comparison, raising TypeError when the requested comparison
533 operator is not supported. */
Guido van Rossume797ec12001-01-17 15:24:28 +0000534static PyObject *
Guido van Rossum47b9ff62006-08-24 00:41:19 +0000535do_richcompare(PyObject *v, PyObject *w, int op)
Guido van Rossume797ec12001-01-17 15:24:28 +0000536{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000537 richcmpfunc f;
538 PyObject *res;
539 int checked_reverse_op = 0;
Guido van Rossume797ec12001-01-17 15:24:28 +0000540
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000541 if (v->ob_type != w->ob_type &&
542 PyType_IsSubtype(w->ob_type, v->ob_type) &&
543 (f = w->ob_type->tp_richcompare) != NULL) {
544 checked_reverse_op = 1;
545 res = (*f)(w, v, _Py_SwappedOp[op]);
546 if (res != Py_NotImplemented)
547 return res;
548 Py_DECREF(res);
549 }
550 if ((f = v->ob_type->tp_richcompare) != NULL) {
551 res = (*f)(v, w, op);
552 if (res != Py_NotImplemented)
553 return res;
554 Py_DECREF(res);
555 }
556 if (!checked_reverse_op && (f = w->ob_type->tp_richcompare) != NULL) {
557 res = (*f)(w, v, _Py_SwappedOp[op]);
558 if (res != Py_NotImplemented)
559 return res;
560 Py_DECREF(res);
561 }
562 /* If neither object implements it, provide a sensible default
563 for == and !=, but raise an exception for ordering. */
564 switch (op) {
565 case Py_EQ:
566 res = (v == w) ? Py_True : Py_False;
567 break;
568 case Py_NE:
569 res = (v != w) ? Py_True : Py_False;
570 break;
571 default:
572 /* XXX Special-case None so it doesn't show as NoneType() */
573 PyErr_Format(PyExc_TypeError,
574 "unorderable types: %.100s() %s %.100s()",
575 v->ob_type->tp_name,
576 opstrings[op],
577 w->ob_type->tp_name);
578 return NULL;
579 }
580 Py_INCREF(res);
581 return res;
Guido van Rossume797ec12001-01-17 15:24:28 +0000582}
583
Guido van Rossum47b9ff62006-08-24 00:41:19 +0000584/* Perform a rich comparison with object result. This wraps do_richcompare()
585 with a check for NULL arguments and a recursion check. */
Guido van Rossume797ec12001-01-17 15:24:28 +0000586
Guido van Rossume797ec12001-01-17 15:24:28 +0000587PyObject *
588PyObject_RichCompare(PyObject *v, PyObject *w, int op)
589{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000590 PyObject *res;
Guido van Rossume797ec12001-01-17 15:24:28 +0000591
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000592 assert(Py_LT <= op && op <= Py_GE);
593 if (v == NULL || w == NULL) {
594 if (!PyErr_Occurred())
595 PyErr_BadInternalCall();
596 return NULL;
597 }
598 if (Py_EnterRecursiveCall(" in comparison"))
599 return NULL;
600 res = do_richcompare(v, w, op);
601 Py_LeaveRecursiveCall();
602 return res;
Guido van Rossume797ec12001-01-17 15:24:28 +0000603}
604
Guido van Rossum47b9ff62006-08-24 00:41:19 +0000605/* Perform a rich comparison with integer result. This wraps
606 PyObject_RichCompare(), returning -1 for error, 0 for false, 1 for true. */
Guido van Rossume797ec12001-01-17 15:24:28 +0000607int
608PyObject_RichCompareBool(PyObject *v, PyObject *w, int op)
609{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000610 PyObject *res;
611 int ok;
Guido van Rossume797ec12001-01-17 15:24:28 +0000612
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000613 /* Quick result when objects are the same.
614 Guarantees that identity implies equality. */
615 if (v == w) {
616 if (op == Py_EQ)
617 return 1;
618 else if (op == Py_NE)
619 return 0;
620 }
Mark Dickinson4a1f5932008-11-12 23:23:36 +0000621
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000622 res = PyObject_RichCompare(v, w, op);
623 if (res == NULL)
624 return -1;
625 if (PyBool_Check(res))
626 ok = (res == Py_True);
627 else
628 ok = PyObject_IsTrue(res);
629 Py_DECREF(res);
630 return ok;
Guido van Rossume797ec12001-01-17 15:24:28 +0000631}
Fred Drake13634cf2000-06-29 19:17:04 +0000632
633/* Set of hash utility functions to help maintaining the invariant that
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000634 if a==b then hash(a)==hash(b)
Fred Drake13634cf2000-06-29 19:17:04 +0000635
636 All the utility functions (_Py_Hash*()) return "-1" to signify an error.
637*/
638
Mark Dickinsondc787d22010-05-23 13:33:13 +0000639/* For numeric types, the hash of a number x is based on the reduction
640 of x modulo the prime P = 2**_PyHASH_BITS - 1. It's designed so that
641 hash(x) == hash(y) whenever x and y are numerically equal, even if
642 x and y have different types.
643
644 A quick summary of the hashing strategy:
645
646 (1) First define the 'reduction of x modulo P' for any rational
647 number x; this is a standard extension of the usual notion of
648 reduction modulo P for integers. If x == p/q (written in lowest
649 terms), the reduction is interpreted as the reduction of p times
650 the inverse of the reduction of q, all modulo P; if q is exactly
651 divisible by P then define the reduction to be infinity. So we've
652 got a well-defined map
653
654 reduce : { rational numbers } -> { 0, 1, 2, ..., P-1, infinity }.
655
656 (2) Now for a rational number x, define hash(x) by:
657
658 reduce(x) if x >= 0
659 -reduce(-x) if x < 0
660
661 If the result of the reduction is infinity (this is impossible for
662 integers, floats and Decimals) then use the predefined hash value
663 _PyHASH_INF for x >= 0, or -_PyHASH_INF for x < 0, instead.
664 _PyHASH_INF, -_PyHASH_INF and _PyHASH_NAN are also used for the
665 hashes of float and Decimal infinities and nans.
666
667 A selling point for the above strategy is that it makes it possible
668 to compute hashes of decimal and binary floating-point numbers
669 efficiently, even if the exponent of the binary or decimal number
670 is large. The key point is that
671
672 reduce(x * y) == reduce(x) * reduce(y) (modulo _PyHASH_MODULUS)
673
674 provided that {reduce(x), reduce(y)} != {0, infinity}. The reduction of a
675 binary or decimal float is never infinity, since the denominator is a power
676 of 2 (for binary) or a divisor of a power of 10 (for decimal). So we have,
677 for nonnegative x,
678
679 reduce(x * 2**e) == reduce(x) * reduce(2**e) % _PyHASH_MODULUS
680
681 reduce(x * 10**e) == reduce(x) * reduce(10**e) % _PyHASH_MODULUS
682
683 and reduce(10**e) can be computed efficiently by the usual modular
684 exponentiation algorithm. For reduce(2**e) it's even better: since
685 P is of the form 2**n-1, reduce(2**e) is 2**(e mod n), and multiplication
686 by 2**(e mod n) modulo 2**n-1 just amounts to a rotation of bits.
687
688 */
689
Fred Drake13634cf2000-06-29 19:17:04 +0000690long
Fred Drake100814d2000-07-09 15:48:49 +0000691_Py_HashDouble(double v)
Fred Drake13634cf2000-06-29 19:17:04 +0000692{
Mark Dickinsondc787d22010-05-23 13:33:13 +0000693 int e, sign;
694 double m;
695 unsigned long x, y;
Tim Peters39dce292000-08-15 03:34:48 +0000696
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000697 if (!Py_IS_FINITE(v)) {
698 if (Py_IS_INFINITY(v))
Mark Dickinsondc787d22010-05-23 13:33:13 +0000699 return v > 0 ? _PyHASH_INF : -_PyHASH_INF;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000700 else
Mark Dickinsondc787d22010-05-23 13:33:13 +0000701 return _PyHASH_NAN;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000702 }
Mark Dickinsondc787d22010-05-23 13:33:13 +0000703
704 m = frexp(v, &e);
705
706 sign = 1;
707 if (m < 0) {
708 sign = -1;
709 m = -m;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000710 }
Mark Dickinsondc787d22010-05-23 13:33:13 +0000711
712 /* process 28 bits at a time; this should work well both for binary
713 and hexadecimal floating point. */
714 x = 0;
715 while (m) {
716 x = ((x << 28) & _PyHASH_MODULUS) | x >> (_PyHASH_BITS - 28);
717 m *= 268435456.0; /* 2**28 */
718 e -= 28;
719 y = (unsigned long)m; /* pull out integer part */
720 m -= y;
721 x += y;
722 if (x >= _PyHASH_MODULUS)
723 x -= _PyHASH_MODULUS;
724 }
725
726 /* adjust for the exponent; first reduce it modulo _PyHASH_BITS */
727 e = e >= 0 ? e % _PyHASH_BITS : _PyHASH_BITS-1-((-1-e) % _PyHASH_BITS);
728 x = ((x << e) & _PyHASH_MODULUS) | x >> (_PyHASH_BITS - e);
729
730 x = x * sign;
731 if (x == (unsigned long)-1)
732 x = (unsigned long)-2;
733 return (long)x;
Fred Drake13634cf2000-06-29 19:17:04 +0000734}
735
736long
Fred Drake100814d2000-07-09 15:48:49 +0000737_Py_HashPointer(void *p)
Fred Drake13634cf2000-06-29 19:17:04 +0000738{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000739 long x;
740 size_t y = (size_t)p;
741 /* bottom 3 or 4 bits are likely to be 0; rotate y by 4 to avoid
742 excessive hash collisions for dicts and sets */
743 y = (y >> 4) | (y << (8 * SIZEOF_VOID_P - 4));
744 x = (long)y;
745 if (x == -1)
746 x = -2;
747 return x;
Fred Drake13634cf2000-06-29 19:17:04 +0000748}
749
Nick Coghland1abd252008-07-15 15:46:38 +0000750long
751PyObject_HashNotImplemented(PyObject *v)
752{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000753 PyErr_Format(PyExc_TypeError, "unhashable type: '%.200s'",
754 Py_TYPE(v)->tp_name);
755 return -1;
Nick Coghland1abd252008-07-15 15:46:38 +0000756}
Fred Drake13634cf2000-06-29 19:17:04 +0000757
Guido van Rossum9bfef441993-03-29 10:43:31 +0000758long
Fred Drake100814d2000-07-09 15:48:49 +0000759PyObject_Hash(PyObject *v)
Guido van Rossum9bfef441993-03-29 10:43:31 +0000760{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000761 PyTypeObject *tp = Py_TYPE(v);
762 if (tp->tp_hash != NULL)
763 return (*tp->tp_hash)(v);
764 /* To keep to the general practice that inheriting
765 * solely from object in C code should work without
766 * an explicit call to PyType_Ready, we implicitly call
767 * PyType_Ready here and then check the tp_hash slot again
768 */
769 if (tp->tp_dict == NULL) {
770 if (PyType_Ready(tp) < 0)
771 return -1;
772 if (tp->tp_hash != NULL)
773 return (*tp->tp_hash)(v);
774 }
775 /* Otherwise, the object can't be hashed */
776 return PyObject_HashNotImplemented(v);
Guido van Rossum9bfef441993-03-29 10:43:31 +0000777}
778
Guido van Rossumc0b618a1997-05-02 03:12:38 +0000779PyObject *
Jeremy Hyltonaf68c872005-12-10 18:50:16 +0000780PyObject_GetAttrString(PyObject *v, const char *name)
Guido van Rossum3f5da241990-12-20 15:06:42 +0000781{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000782 PyObject *w, *res;
Guido van Rossumd8eb1b31996-08-09 20:52:03 +0000783
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000784 if (Py_TYPE(v)->tp_getattr != NULL)
785 return (*Py_TYPE(v)->tp_getattr)(v, (char*)name);
786 w = PyUnicode_InternFromString(name);
787 if (w == NULL)
788 return NULL;
789 res = PyObject_GetAttr(v, w);
790 Py_XDECREF(w);
791 return res;
Guido van Rossum3f5da241990-12-20 15:06:42 +0000792}
793
794int
Jeremy Hyltonaf68c872005-12-10 18:50:16 +0000795PyObject_HasAttrString(PyObject *v, const char *name)
Guido van Rossumed18fdc1993-07-11 19:55:34 +0000796{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000797 PyObject *res = PyObject_GetAttrString(v, name);
798 if (res != NULL) {
799 Py_DECREF(res);
800 return 1;
801 }
802 PyErr_Clear();
803 return 0;
Guido van Rossumed18fdc1993-07-11 19:55:34 +0000804}
805
806int
Jeremy Hyltonaf68c872005-12-10 18:50:16 +0000807PyObject_SetAttrString(PyObject *v, const char *name, PyObject *w)
Guido van Rossum3f5da241990-12-20 15:06:42 +0000808{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000809 PyObject *s;
810 int res;
Guido van Rossumd8eb1b31996-08-09 20:52:03 +0000811
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000812 if (Py_TYPE(v)->tp_setattr != NULL)
813 return (*Py_TYPE(v)->tp_setattr)(v, (char*)name, w);
814 s = PyUnicode_InternFromString(name);
815 if (s == NULL)
816 return -1;
817 res = PyObject_SetAttr(v, s, w);
818 Py_XDECREF(s);
819 return res;
Guido van Rossum3f5da241990-12-20 15:06:42 +0000820}
821
Guido van Rossum98ff96a1997-05-20 18:34:44 +0000822PyObject *
Fred Drake100814d2000-07-09 15:48:49 +0000823PyObject_GetAttr(PyObject *v, PyObject *name)
Guido van Rossum98ff96a1997-05-20 18:34:44 +0000824{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000825 PyTypeObject *tp = Py_TYPE(v);
Tim Peters6d6c1a32001-08-02 04:15:00 +0000826
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000827 if (!PyUnicode_Check(name)) {
828 PyErr_Format(PyExc_TypeError,
829 "attribute name must be string, not '%.200s'",
830 name->ob_type->tp_name);
831 return NULL;
832 }
833 if (tp->tp_getattro != NULL)
834 return (*tp->tp_getattro)(v, name);
835 if (tp->tp_getattr != NULL) {
836 char *name_str = _PyUnicode_AsString(name);
837 if (name_str == NULL)
838 return NULL;
839 return (*tp->tp_getattr)(v, name_str);
840 }
841 PyErr_Format(PyExc_AttributeError,
842 "'%.50s' object has no attribute '%U'",
843 tp->tp_name, name);
844 return NULL;
Guido van Rossum98ff96a1997-05-20 18:34:44 +0000845}
846
847int
Fred Drake100814d2000-07-09 15:48:49 +0000848PyObject_HasAttr(PyObject *v, PyObject *name)
Guido van Rossum98ff96a1997-05-20 18:34:44 +0000849{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000850 PyObject *res = PyObject_GetAttr(v, name);
851 if (res != NULL) {
852 Py_DECREF(res);
853 return 1;
854 }
855 PyErr_Clear();
856 return 0;
Guido van Rossum98ff96a1997-05-20 18:34:44 +0000857}
858
859int
Fred Drake100814d2000-07-09 15:48:49 +0000860PyObject_SetAttr(PyObject *v, PyObject *name, PyObject *value)
Guido van Rossum98ff96a1997-05-20 18:34:44 +0000861{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000862 PyTypeObject *tp = Py_TYPE(v);
863 int err;
Marc-André Lemburge44e5072000-09-18 16:20:57 +0000864
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000865 if (!PyUnicode_Check(name)) {
866 PyErr_Format(PyExc_TypeError,
867 "attribute name must be string, not '%.200s'",
868 name->ob_type->tp_name);
869 return -1;
870 }
871 Py_INCREF(name);
Tim Peters6d6c1a32001-08-02 04:15:00 +0000872
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000873 PyUnicode_InternInPlace(&name);
874 if (tp->tp_setattro != NULL) {
875 err = (*tp->tp_setattro)(v, name, value);
876 Py_DECREF(name);
877 return err;
878 }
879 if (tp->tp_setattr != NULL) {
880 char *name_str = _PyUnicode_AsString(name);
881 if (name_str == NULL)
882 return -1;
883 err = (*tp->tp_setattr)(v, name_str, value);
884 Py_DECREF(name);
885 return err;
886 }
887 Py_DECREF(name);
888 assert(name->ob_refcnt >= 1);
889 if (tp->tp_getattr == NULL && tp->tp_getattro == NULL)
890 PyErr_Format(PyExc_TypeError,
891 "'%.100s' object has no attributes "
892 "(%s .%U)",
893 tp->tp_name,
894 value==NULL ? "del" : "assign to",
895 name);
896 else
897 PyErr_Format(PyExc_TypeError,
898 "'%.100s' object has only read-only attributes "
899 "(%s .%U)",
900 tp->tp_name,
901 value==NULL ? "del" : "assign to",
902 name);
903 return -1;
Tim Peters6d6c1a32001-08-02 04:15:00 +0000904}
905
906/* Helper to get a pointer to an object's __dict__ slot, if any */
907
908PyObject **
909_PyObject_GetDictPtr(PyObject *obj)
910{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000911 Py_ssize_t dictoffset;
912 PyTypeObject *tp = Py_TYPE(obj);
Tim Peters6d6c1a32001-08-02 04:15:00 +0000913
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000914 dictoffset = tp->tp_dictoffset;
915 if (dictoffset == 0)
916 return NULL;
917 if (dictoffset < 0) {
918 Py_ssize_t tsize;
919 size_t size;
Guido van Rossum2eb0b872002-03-01 22:24:49 +0000920
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000921 tsize = ((PyVarObject *)obj)->ob_size;
922 if (tsize < 0)
923 tsize = -tsize;
924 size = _PyObject_VAR_SIZE(tp, tsize);
Guido van Rossum2eb0b872002-03-01 22:24:49 +0000925
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000926 dictoffset += (long)size;
927 assert(dictoffset > 0);
928 assert(dictoffset % SIZEOF_VOID_P == 0);
929 }
930 return (PyObject **) ((char *)obj + dictoffset);
Tim Peters6d6c1a32001-08-02 04:15:00 +0000931}
932
Tim Peters6d6c1a32001-08-02 04:15:00 +0000933PyObject *
Raymond Hettinger1da1dbf2003-03-17 19:46:11 +0000934PyObject_SelfIter(PyObject *obj)
Raymond Hettinger01538262003-03-17 08:24:35 +0000935{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000936 Py_INCREF(obj);
937 return obj;
Raymond Hettinger01538262003-03-17 08:24:35 +0000938}
939
Amaury Forgeot d'Arcf343e012009-01-12 23:58:21 +0000940/* Helper used when the __next__ method is removed from a type:
941 tp_iternext is never NULL and can be safely called without checking
942 on every iteration.
943 */
944
945PyObject *
946_PyObject_NextNotImplemented(PyObject *self)
947{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000948 PyErr_Format(PyExc_TypeError,
949 "'%.200s' object is not iterable",
950 Py_TYPE(self)->tp_name);
951 return NULL;
Amaury Forgeot d'Arcf343e012009-01-12 23:58:21 +0000952}
953
Michael W. Hudson1593f502004-09-14 17:09:47 +0000954/* Generic GetAttr functions - put these in your tp_[gs]etattro slot */
955
Raymond Hettinger01538262003-03-17 08:24:35 +0000956PyObject *
Tim Peters6d6c1a32001-08-02 04:15:00 +0000957PyObject_GenericGetAttr(PyObject *obj, PyObject *name)
958{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000959 PyTypeObject *tp = Py_TYPE(obj);
960 PyObject *descr = NULL;
961 PyObject *res = NULL;
962 descrgetfunc f;
963 Py_ssize_t dictoffset;
964 PyObject **dictptr;
Tim Peters6d6c1a32001-08-02 04:15:00 +0000965
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000966 if (!PyUnicode_Check(name)){
967 PyErr_Format(PyExc_TypeError,
968 "attribute name must be string, not '%.200s'",
969 name->ob_type->tp_name);
970 return NULL;
971 }
972 else
973 Py_INCREF(name);
Guido van Rossumebca9fc2001-12-04 15:54:53 +0000974
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000975 if (tp->tp_dict == NULL) {
976 if (PyType_Ready(tp) < 0)
977 goto done;
978 }
Tim Peters6d6c1a32001-08-02 04:15:00 +0000979
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000980 descr = _PyType_Lookup(tp, name);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000981 Py_XINCREF(descr);
Michael W. Hudsonb2c7de42003-08-15 13:07:47 +0000982
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000983 f = NULL;
984 if (descr != NULL) {
985 f = descr->ob_type->tp_descr_get;
986 if (f != NULL && PyDescr_IsData(descr)) {
987 res = f(descr, obj, (PyObject *)obj->ob_type);
988 Py_DECREF(descr);
989 goto done;
990 }
991 }
Tim Peters6d6c1a32001-08-02 04:15:00 +0000992
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000993 /* Inline _PyObject_GetDictPtr */
994 dictoffset = tp->tp_dictoffset;
995 if (dictoffset != 0) {
996 PyObject *dict;
997 if (dictoffset < 0) {
998 Py_ssize_t tsize;
999 size_t size;
Guido van Rossumc66ff442002-08-19 16:50:48 +00001000
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001001 tsize = ((PyVarObject *)obj)->ob_size;
1002 if (tsize < 0)
1003 tsize = -tsize;
1004 size = _PyObject_VAR_SIZE(tp, tsize);
Guido van Rossumc66ff442002-08-19 16:50:48 +00001005
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001006 dictoffset += (long)size;
1007 assert(dictoffset > 0);
1008 assert(dictoffset % SIZEOF_VOID_P == 0);
1009 }
1010 dictptr = (PyObject **) ((char *)obj + dictoffset);
1011 dict = *dictptr;
1012 if (dict != NULL) {
1013 Py_INCREF(dict);
1014 res = PyDict_GetItem(dict, name);
1015 if (res != NULL) {
1016 Py_INCREF(res);
1017 Py_XDECREF(descr);
1018 Py_DECREF(dict);
1019 goto done;
1020 }
1021 Py_DECREF(dict);
1022 }
1023 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00001024
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001025 if (f != NULL) {
1026 res = f(descr, obj, (PyObject *)Py_TYPE(obj));
1027 Py_DECREF(descr);
1028 goto done;
1029 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00001030
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001031 if (descr != NULL) {
1032 res = descr;
1033 /* descr was already increfed above */
1034 goto done;
1035 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00001036
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001037 PyErr_Format(PyExc_AttributeError,
1038 "'%.50s' object has no attribute '%U'",
1039 tp->tp_name, name);
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001040 done:
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001041 Py_DECREF(name);
1042 return res;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001043}
1044
1045int
1046PyObject_GenericSetAttr(PyObject *obj, PyObject *name, PyObject *value)
1047{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001048 PyTypeObject *tp = Py_TYPE(obj);
1049 PyObject *descr;
1050 descrsetfunc f;
1051 PyObject **dictptr;
1052 int res = -1;
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001053
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001054 if (!PyUnicode_Check(name)){
1055 PyErr_Format(PyExc_TypeError,
1056 "attribute name must be string, not '%.200s'",
1057 name->ob_type->tp_name);
1058 return -1;
1059 }
1060 else
1061 Py_INCREF(name);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001062
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001063 if (tp->tp_dict == NULL) {
1064 if (PyType_Ready(tp) < 0)
1065 goto done;
1066 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00001067
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001068 descr = _PyType_Lookup(tp, name);
1069 f = NULL;
1070 if (descr != NULL) {
1071 f = descr->ob_type->tp_descr_set;
1072 if (f != NULL && PyDescr_IsData(descr)) {
1073 res = f(descr, obj, value);
1074 goto done;
1075 }
1076 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00001077
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001078 dictptr = _PyObject_GetDictPtr(obj);
1079 if (dictptr != NULL) {
1080 PyObject *dict = *dictptr;
1081 if (dict == NULL && value != NULL) {
1082 dict = PyDict_New();
1083 if (dict == NULL)
1084 goto done;
1085 *dictptr = dict;
1086 }
1087 if (dict != NULL) {
1088 Py_INCREF(dict);
1089 if (value == NULL)
1090 res = PyDict_DelItem(dict, name);
1091 else
1092 res = PyDict_SetItem(dict, name, value);
1093 if (res < 0 && PyErr_ExceptionMatches(PyExc_KeyError))
1094 PyErr_SetObject(PyExc_AttributeError, name);
1095 Py_DECREF(dict);
1096 goto done;
1097 }
1098 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00001099
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001100 if (f != NULL) {
1101 res = f(descr, obj, value);
1102 goto done;
1103 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00001104
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001105 if (descr == NULL) {
1106 PyErr_Format(PyExc_AttributeError,
1107 "'%.100s' object has no attribute '%U'",
1108 tp->tp_name, name);
1109 goto done;
1110 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00001111
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001112 PyErr_Format(PyExc_AttributeError,
1113 "'%.50s' object attribute '%U' is read-only",
1114 tp->tp_name, name);
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001115 done:
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001116 Py_DECREF(name);
1117 return res;
Guido van Rossum98ff96a1997-05-20 18:34:44 +00001118}
1119
Guido van Rossum6ac258d1993-05-12 08:24:20 +00001120/* Test a value used as condition, e.g., in a for or if statement.
1121 Return -1 if an error occurred */
1122
1123int
Fred Drake100814d2000-07-09 15:48:49 +00001124PyObject_IsTrue(PyObject *v)
Guido van Rossum6ac258d1993-05-12 08:24:20 +00001125{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001126 Py_ssize_t res;
1127 if (v == Py_True)
1128 return 1;
1129 if (v == Py_False)
1130 return 0;
1131 if (v == Py_None)
1132 return 0;
1133 else if (v->ob_type->tp_as_number != NULL &&
1134 v->ob_type->tp_as_number->nb_bool != NULL)
1135 res = (*v->ob_type->tp_as_number->nb_bool)(v);
1136 else if (v->ob_type->tp_as_mapping != NULL &&
1137 v->ob_type->tp_as_mapping->mp_length != NULL)
1138 res = (*v->ob_type->tp_as_mapping->mp_length)(v);
1139 else if (v->ob_type->tp_as_sequence != NULL &&
1140 v->ob_type->tp_as_sequence->sq_length != NULL)
1141 res = (*v->ob_type->tp_as_sequence->sq_length)(v);
1142 else
1143 return 1;
1144 /* if it is negative, it should be either -1 or -2 */
1145 return (res > 0) ? 1 : Py_SAFE_DOWNCAST(res, Py_ssize_t, int);
Guido van Rossum6ac258d1993-05-12 08:24:20 +00001146}
1147
Tim Peters803526b2002-07-07 05:13:56 +00001148/* equivalent of 'not v'
Guido van Rossumc3d3f961998-04-09 17:53:59 +00001149 Return -1 if an error occurred */
1150
1151int
Fred Drake100814d2000-07-09 15:48:49 +00001152PyObject_Not(PyObject *v)
Guido van Rossumc3d3f961998-04-09 17:53:59 +00001153{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001154 int res;
1155 res = PyObject_IsTrue(v);
1156 if (res < 0)
1157 return res;
1158 return res == 0;
Guido van Rossumc3d3f961998-04-09 17:53:59 +00001159}
1160
Guido van Rossum49b11fe1995-01-26 00:38:22 +00001161/* Test whether an object can be called */
1162
1163int
Fred Drake100814d2000-07-09 15:48:49 +00001164PyCallable_Check(PyObject *x)
Guido van Rossum49b11fe1995-01-26 00:38:22 +00001165{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001166 if (x == NULL)
1167 return 0;
1168 return x->ob_type->tp_call != NULL;
Guido van Rossum49b11fe1995-01-26 00:38:22 +00001169}
1170
Georg Brandle32b4222007-03-10 22:13:27 +00001171/* ------------------------- PyObject_Dir() helpers ------------------------- */
1172
Tim Peters7eea37e2001-09-04 22:08:56 +00001173/* Helper for PyObject_Dir.
1174 Merge the __dict__ of aclass into dict, and recursively also all
1175 the __dict__s of aclass's base classes. The order of merging isn't
1176 defined, as it's expected that only the final set of dict keys is
1177 interesting.
1178 Return 0 on success, -1 on error.
1179*/
1180
1181static int
1182merge_class_dict(PyObject* dict, PyObject* aclass)
1183{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001184 PyObject *classdict;
1185 PyObject *bases;
Tim Peters7eea37e2001-09-04 22:08:56 +00001186
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001187 assert(PyDict_Check(dict));
1188 assert(aclass);
Tim Peters7eea37e2001-09-04 22:08:56 +00001189
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001190 /* Merge in the type's dict (if any). */
1191 classdict = PyObject_GetAttrString(aclass, "__dict__");
1192 if (classdict == NULL)
1193 PyErr_Clear();
1194 else {
1195 int status = PyDict_Update(dict, classdict);
1196 Py_DECREF(classdict);
1197 if (status < 0)
1198 return -1;
1199 }
Tim Peters7eea37e2001-09-04 22:08:56 +00001200
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001201 /* Recursively merge in the base types' (if any) dicts. */
1202 bases = PyObject_GetAttrString(aclass, "__bases__");
1203 if (bases == NULL)
1204 PyErr_Clear();
1205 else {
1206 /* We have no guarantee that bases is a real tuple */
1207 Py_ssize_t i, n;
1208 n = PySequence_Size(bases); /* This better be right */
1209 if (n < 0)
1210 PyErr_Clear();
1211 else {
1212 for (i = 0; i < n; i++) {
1213 int status;
1214 PyObject *base = PySequence_GetItem(bases, i);
1215 if (base == NULL) {
1216 Py_DECREF(bases);
1217 return -1;
1218 }
1219 status = merge_class_dict(dict, base);
1220 Py_DECREF(base);
1221 if (status < 0) {
1222 Py_DECREF(bases);
1223 return -1;
1224 }
1225 }
1226 }
1227 Py_DECREF(bases);
1228 }
1229 return 0;
Tim Peters7eea37e2001-09-04 22:08:56 +00001230}
1231
Georg Brandle32b4222007-03-10 22:13:27 +00001232/* Helper for PyObject_Dir without arguments: returns the local scope. */
1233static PyObject *
Guido van Rossumad7d8d12007-04-13 01:39:34 +00001234_dir_locals(void)
Tim Peters305b5852001-09-17 02:38:46 +00001235{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001236 PyObject *names;
1237 PyObject *locals = PyEval_GetLocals();
Tim Peters305b5852001-09-17 02:38:46 +00001238
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001239 if (locals == NULL) {
1240 PyErr_SetString(PyExc_SystemError, "frame does not exist");
1241 return NULL;
1242 }
Tim Peters305b5852001-09-17 02:38:46 +00001243
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001244 names = PyMapping_Keys(locals);
1245 if (!names)
1246 return NULL;
1247 if (!PyList_Check(names)) {
1248 PyErr_Format(PyExc_TypeError,
1249 "dir(): expected keys() of locals to be a list, "
1250 "not '%.200s'", Py_TYPE(names)->tp_name);
1251 Py_DECREF(names);
1252 return NULL;
1253 }
1254 /* the locals don't need to be DECREF'd */
1255 return names;
Georg Brandle32b4222007-03-10 22:13:27 +00001256}
1257
1258/* Helper for PyObject_Dir of type objects: returns __dict__ and __bases__.
Guido van Rossum98297ee2007-11-06 21:34:58 +00001259 We deliberately don't suck up its __class__, as methods belonging to the
1260 metaclass would probably be more confusing than helpful.
Georg Brandle32b4222007-03-10 22:13:27 +00001261*/
Guido van Rossum98297ee2007-11-06 21:34:58 +00001262static PyObject *
Georg Brandle32b4222007-03-10 22:13:27 +00001263_specialized_dir_type(PyObject *obj)
1264{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001265 PyObject *result = NULL;
1266 PyObject *dict = PyDict_New();
Georg Brandle32b4222007-03-10 22:13:27 +00001267
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001268 if (dict != NULL && merge_class_dict(dict, obj) == 0)
1269 result = PyDict_Keys(dict);
Georg Brandle32b4222007-03-10 22:13:27 +00001270
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001271 Py_XDECREF(dict);
1272 return result;
Tim Peters305b5852001-09-17 02:38:46 +00001273}
1274
Georg Brandle32b4222007-03-10 22:13:27 +00001275/* Helper for PyObject_Dir of module objects: returns the module's __dict__. */
1276static PyObject *
1277_specialized_dir_module(PyObject *obj)
Tim Peters7eea37e2001-09-04 22:08:56 +00001278{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001279 PyObject *result = NULL;
1280 PyObject *dict = PyObject_GetAttrString(obj, "__dict__");
Tim Peters7eea37e2001-09-04 22:08:56 +00001281
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001282 if (dict != NULL) {
1283 if (PyDict_Check(dict))
1284 result = PyDict_Keys(dict);
1285 else {
1286 const char *name = PyModule_GetName(obj);
1287 if (name)
1288 PyErr_Format(PyExc_TypeError,
1289 "%.200s.__dict__ is not a dictionary",
1290 name);
1291 }
1292 }
Tim Peters7eea37e2001-09-04 22:08:56 +00001293
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001294 Py_XDECREF(dict);
1295 return result;
Georg Brandle32b4222007-03-10 22:13:27 +00001296}
Tim Peters7eea37e2001-09-04 22:08:56 +00001297
Georg Brandle32b4222007-03-10 22:13:27 +00001298/* Helper for PyObject_Dir of generic objects: returns __dict__, __class__,
1299 and recursively up the __class__.__bases__ chain.
1300*/
1301static PyObject *
1302_generic_dir(PyObject *obj)
1303{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001304 PyObject *result = NULL;
1305 PyObject *dict = NULL;
1306 PyObject *itsclass = NULL;
Guido van Rossum98297ee2007-11-06 21:34:58 +00001307
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001308 /* Get __dict__ (which may or may not be a real dict...) */
1309 dict = PyObject_GetAttrString(obj, "__dict__");
1310 if (dict == NULL) {
1311 PyErr_Clear();
1312 dict = PyDict_New();
1313 }
1314 else if (!PyDict_Check(dict)) {
1315 Py_DECREF(dict);
1316 dict = PyDict_New();
1317 }
1318 else {
1319 /* Copy __dict__ to avoid mutating it. */
1320 PyObject *temp = PyDict_Copy(dict);
1321 Py_DECREF(dict);
1322 dict = temp;
1323 }
Tim Peters7eea37e2001-09-04 22:08:56 +00001324
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001325 if (dict == NULL)
1326 goto error;
Tim Peters7eea37e2001-09-04 22:08:56 +00001327
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001328 /* Merge in attrs reachable from its class. */
1329 itsclass = PyObject_GetAttrString(obj, "__class__");
1330 if (itsclass == NULL)
1331 /* XXX(tomer): Perhaps fall back to obj->ob_type if no
1332 __class__ exists? */
1333 PyErr_Clear();
1334 else {
1335 if (merge_class_dict(dict, itsclass) != 0)
1336 goto error;
1337 }
Georg Brandle32b4222007-03-10 22:13:27 +00001338
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001339 result = PyDict_Keys(dict);
1340 /* fall through */
Georg Brandle32b4222007-03-10 22:13:27 +00001341error:
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001342 Py_XDECREF(itsclass);
1343 Py_XDECREF(dict);
1344 return result;
Georg Brandle32b4222007-03-10 22:13:27 +00001345}
1346
1347/* Helper for PyObject_Dir: object introspection.
1348 This calls one of the above specialized versions if no __dir__ method
1349 exists. */
1350static PyObject *
1351_dir_object(PyObject *obj)
1352{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001353 PyObject * result = NULL;
1354 PyObject * dirfunc = PyObject_GetAttrString((PyObject*)obj->ob_type,
1355 "__dir__");
Georg Brandle32b4222007-03-10 22:13:27 +00001356
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001357 assert(obj);
1358 if (dirfunc == NULL) {
1359 /* use default implementation */
1360 PyErr_Clear();
1361 if (PyModule_Check(obj))
1362 result = _specialized_dir_module(obj);
1363 else if (PyType_Check(obj))
1364 result = _specialized_dir_type(obj);
1365 else
1366 result = _generic_dir(obj);
1367 }
1368 else {
1369 /* use __dir__ */
1370 result = PyObject_CallFunctionObjArgs(dirfunc, obj, NULL);
1371 Py_DECREF(dirfunc);
1372 if (result == NULL)
1373 return NULL;
Georg Brandle32b4222007-03-10 22:13:27 +00001374
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001375 /* result must be a list */
1376 /* XXX(gbrandl): could also check if all items are strings */
1377 if (!PyList_Check(result)) {
1378 PyErr_Format(PyExc_TypeError,
1379 "__dir__() must return a list, not %.200s",
1380 Py_TYPE(result)->tp_name);
1381 Py_DECREF(result);
1382 result = NULL;
1383 }
1384 }
Georg Brandle32b4222007-03-10 22:13:27 +00001385
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001386 return result;
Georg Brandle32b4222007-03-10 22:13:27 +00001387}
1388
1389/* Implementation of dir() -- if obj is NULL, returns the names in the current
1390 (local) scope. Otherwise, performs introspection of the object: returns a
1391 sorted list of attribute names (supposedly) accessible from the object
1392*/
1393PyObject *
1394PyObject_Dir(PyObject *obj)
1395{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001396 PyObject * result;
Georg Brandle32b4222007-03-10 22:13:27 +00001397
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001398 if (obj == NULL)
1399 /* no object -- introspect the locals */
1400 result = _dir_locals();
1401 else
1402 /* object -- introspect the object */
1403 result = _dir_object(obj);
Georg Brandle32b4222007-03-10 22:13:27 +00001404
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001405 assert(result == NULL || PyList_Check(result));
Georg Brandle32b4222007-03-10 22:13:27 +00001406
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001407 if (result != NULL && PyList_Sort(result) != 0) {
1408 /* sorting the list failed */
1409 Py_DECREF(result);
1410 result = NULL;
1411 }
Guido van Rossum98297ee2007-11-06 21:34:58 +00001412
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001413 return result;
Tim Peters7eea37e2001-09-04 22:08:56 +00001414}
Guido van Rossum49b11fe1995-01-26 00:38:22 +00001415
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001416/*
1417NoObject is usable as a non-NULL undefined value, used by the macro None.
1418There is (and should be!) no way to create other objects of this type,
Guido van Rossum3f5da241990-12-20 15:06:42 +00001419so there is exactly one (which is indestructible, by the way).
Guido van Rossumba21a492001-08-16 08:17:26 +00001420(XXX This type and the type of NotImplemented below should be unified.)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001421*/
1422
Guido van Rossum0c182a11992-03-27 17:26:13 +00001423/* ARGSUSED */
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001424static PyObject *
Fred Drake100814d2000-07-09 15:48:49 +00001425none_repr(PyObject *op)
Guido van Rossum3f5da241990-12-20 15:06:42 +00001426{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001427 return PyUnicode_FromString("None");
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001428}
1429
Barry Warsaw9bf16442001-01-23 16:24:35 +00001430/* ARGUSED */
1431static void
Tim Peters803526b2002-07-07 05:13:56 +00001432none_dealloc(PyObject* ignore)
Barry Warsaw9bf16442001-01-23 16:24:35 +00001433{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001434 /* This should never get called, but we also don't want to SEGV if
1435 * we accidentally decref None out of existence.
1436 */
1437 Py_FatalError("deallocating None");
Barry Warsaw9bf16442001-01-23 16:24:35 +00001438}
1439
1440
Guido van Rossumba21a492001-08-16 08:17:26 +00001441static PyTypeObject PyNone_Type = {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001442 PyVarObject_HEAD_INIT(&PyType_Type, 0)
1443 "NoneType",
1444 0,
1445 0,
1446 none_dealloc, /*tp_dealloc*/ /*never called*/
1447 0, /*tp_print*/
1448 0, /*tp_getattr*/
1449 0, /*tp_setattr*/
1450 0, /*tp_reserved*/
1451 none_repr, /*tp_repr*/
1452 0, /*tp_as_number*/
1453 0, /*tp_as_sequence*/
1454 0, /*tp_as_mapping*/
1455 0, /*tp_hash */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001456};
1457
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001458PyObject _Py_NoneStruct = {
Martin v. Löwis9f2e3462007-07-21 17:22:18 +00001459 _PyObject_EXTRA_INIT
1460 1, &PyNone_Type
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001461};
1462
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +00001463/* NotImplemented is an object that can be used to signal that an
1464 operation is not implemented for the given type combination. */
1465
1466static PyObject *
1467NotImplemented_repr(PyObject *op)
1468{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001469 return PyUnicode_FromString("NotImplemented");
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +00001470}
1471
1472static PyTypeObject PyNotImplemented_Type = {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001473 PyVarObject_HEAD_INIT(&PyType_Type, 0)
1474 "NotImplementedType",
1475 0,
1476 0,
1477 none_dealloc, /*tp_dealloc*/ /*never called*/
1478 0, /*tp_print*/
1479 0, /*tp_getattr*/
1480 0, /*tp_setattr*/
1481 0, /*tp_reserved*/
1482 NotImplemented_repr, /*tp_repr*/
1483 0, /*tp_as_number*/
1484 0, /*tp_as_sequence*/
1485 0, /*tp_as_mapping*/
1486 0, /*tp_hash */
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +00001487};
1488
1489PyObject _Py_NotImplementedStruct = {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001490 _PyObject_EXTRA_INIT
1491 1, &PyNotImplemented_Type
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +00001492};
1493
Guido van Rossumba21a492001-08-16 08:17:26 +00001494void
1495_Py_ReadyTypes(void)
1496{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001497 if (PyType_Ready(&PyType_Type) < 0)
1498 Py_FatalError("Can't initialize type type");
Guido van Rossumba21a492001-08-16 08:17:26 +00001499
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001500 if (PyType_Ready(&_PyWeakref_RefType) < 0)
1501 Py_FatalError("Can't initialize weakref type");
Fred Drake0a4dd392004-07-02 18:57:45 +00001502
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001503 if (PyType_Ready(&_PyWeakref_CallableProxyType) < 0)
1504 Py_FatalError("Can't initialize callable weakref proxy type");
Benjamin Petersonfd838e62009-04-20 02:09:13 +00001505
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001506 if (PyType_Ready(&_PyWeakref_ProxyType) < 0)
1507 Py_FatalError("Can't initialize weakref proxy type");
Benjamin Petersonfd838e62009-04-20 02:09:13 +00001508
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001509 if (PyType_Ready(&PyBool_Type) < 0)
1510 Py_FatalError("Can't initialize bool type");
Guido van Rossum77f6a652002-04-03 22:41:51 +00001511
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001512 if (PyType_Ready(&PyByteArray_Type) < 0)
1513 Py_FatalError("Can't initialize bytearray type");
Guido van Rossum4dfe8a12006-04-22 23:28:04 +00001514
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001515 if (PyType_Ready(&PyBytes_Type) < 0)
1516 Py_FatalError("Can't initialize 'str'");
Guido van Rossumcacfc072002-05-24 19:01:59 +00001517
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001518 if (PyType_Ready(&PyList_Type) < 0)
1519 Py_FatalError("Can't initialize list type");
Guido van Rossumba21a492001-08-16 08:17:26 +00001520
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001521 if (PyType_Ready(&PyNone_Type) < 0)
1522 Py_FatalError("Can't initialize None type");
Guido van Rossumba21a492001-08-16 08:17:26 +00001523
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001524 if (PyType_Ready(Py_Ellipsis->ob_type) < 0)
1525 Py_FatalError("Can't initialize type(Ellipsis)");
Guido van Rossum50e9fb92006-08-17 05:42:55 +00001526
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001527 if (PyType_Ready(&PyNotImplemented_Type) < 0)
1528 Py_FatalError("Can't initialize NotImplemented type");
Benjamin Petersonae937c02009-04-18 20:54:08 +00001529
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001530 if (PyType_Ready(&PyTraceBack_Type) < 0)
1531 Py_FatalError("Can't initialize traceback type");
Benjamin Petersonae937c02009-04-18 20:54:08 +00001532
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001533 if (PyType_Ready(&PySuper_Type) < 0)
1534 Py_FatalError("Can't initialize super type");
Benjamin Petersonae937c02009-04-18 20:54:08 +00001535
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001536 if (PyType_Ready(&PyBaseObject_Type) < 0)
1537 Py_FatalError("Can't initialize object type");
Benjamin Petersonae937c02009-04-18 20:54:08 +00001538
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001539 if (PyType_Ready(&PyRange_Type) < 0)
1540 Py_FatalError("Can't initialize range type");
Benjamin Petersonae937c02009-04-18 20:54:08 +00001541
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001542 if (PyType_Ready(&PyDict_Type) < 0)
1543 Py_FatalError("Can't initialize dict type");
Benjamin Petersonae937c02009-04-18 20:54:08 +00001544
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001545 if (PyType_Ready(&PySet_Type) < 0)
1546 Py_FatalError("Can't initialize set type");
Benjamin Petersonae937c02009-04-18 20:54:08 +00001547
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001548 if (PyType_Ready(&PyUnicode_Type) < 0)
1549 Py_FatalError("Can't initialize str type");
Benjamin Petersonae937c02009-04-18 20:54:08 +00001550
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001551 if (PyType_Ready(&PySlice_Type) < 0)
1552 Py_FatalError("Can't initialize slice type");
Benjamin Petersonae937c02009-04-18 20:54:08 +00001553
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001554 if (PyType_Ready(&PyStaticMethod_Type) < 0)
1555 Py_FatalError("Can't initialize static method type");
Benjamin Petersonae937c02009-04-18 20:54:08 +00001556
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001557 if (PyType_Ready(&PyComplex_Type) < 0)
1558 Py_FatalError("Can't initialize complex type");
Skip Montanaroba1e0f42009-10-18 14:25:35 +00001559
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001560 if (PyType_Ready(&PyFloat_Type) < 0)
1561 Py_FatalError("Can't initialize float type");
Benjamin Petersonae937c02009-04-18 20:54:08 +00001562
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001563 if (PyType_Ready(&PyLong_Type) < 0)
1564 Py_FatalError("Can't initialize int type");
Benjamin Petersonae937c02009-04-18 20:54:08 +00001565
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001566 if (PyType_Ready(&PyFrozenSet_Type) < 0)
1567 Py_FatalError("Can't initialize frozenset type");
Benjamin Petersonae937c02009-04-18 20:54:08 +00001568
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001569 if (PyType_Ready(&PyProperty_Type) < 0)
1570 Py_FatalError("Can't initialize property type");
Benjamin Petersonae937c02009-04-18 20:54:08 +00001571
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001572 if (PyType_Ready(&PyMemoryView_Type) < 0)
1573 Py_FatalError("Can't initialize memoryview type");
Benjamin Petersonae937c02009-04-18 20:54:08 +00001574
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001575 if (PyType_Ready(&PyTuple_Type) < 0)
1576 Py_FatalError("Can't initialize tuple type");
Benjamin Petersonae937c02009-04-18 20:54:08 +00001577
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001578 if (PyType_Ready(&PyEnum_Type) < 0)
1579 Py_FatalError("Can't initialize enumerate type");
Benjamin Petersonae937c02009-04-18 20:54:08 +00001580
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001581 if (PyType_Ready(&PyReversed_Type) < 0)
1582 Py_FatalError("Can't initialize reversed type");
Guido van Rossum47b9ff62006-08-24 00:41:19 +00001583
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001584 if (PyType_Ready(&PyStdPrinter_Type) < 0)
1585 Py_FatalError("Can't initialize StdPrinter");
Benjamin Petersonfd838e62009-04-20 02:09:13 +00001586
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001587 if (PyType_Ready(&PyCode_Type) < 0)
1588 Py_FatalError("Can't initialize code type");
Benjamin Petersonfd838e62009-04-20 02:09:13 +00001589
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001590 if (PyType_Ready(&PyFrame_Type) < 0)
1591 Py_FatalError("Can't initialize frame type");
Benjamin Petersonfd838e62009-04-20 02:09:13 +00001592
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001593 if (PyType_Ready(&PyCFunction_Type) < 0)
1594 Py_FatalError("Can't initialize builtin function type");
Benjamin Petersonfd838e62009-04-20 02:09:13 +00001595
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001596 if (PyType_Ready(&PyMethod_Type) < 0)
1597 Py_FatalError("Can't initialize method type");
Benjamin Petersonfd838e62009-04-20 02:09:13 +00001598
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001599 if (PyType_Ready(&PyFunction_Type) < 0)
1600 Py_FatalError("Can't initialize function type");
Benjamin Petersonfd838e62009-04-20 02:09:13 +00001601
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001602 if (PyType_Ready(&PyDictProxy_Type) < 0)
1603 Py_FatalError("Can't initialize dict proxy type");
Benjamin Petersonfd838e62009-04-20 02:09:13 +00001604
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001605 if (PyType_Ready(&PyGen_Type) < 0)
1606 Py_FatalError("Can't initialize generator type");
Benjamin Petersonfd838e62009-04-20 02:09:13 +00001607
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001608 if (PyType_Ready(&PyGetSetDescr_Type) < 0)
1609 Py_FatalError("Can't initialize get-set descriptor type");
Benjamin Petersonfd838e62009-04-20 02:09:13 +00001610
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001611 if (PyType_Ready(&PyWrapperDescr_Type) < 0)
1612 Py_FatalError("Can't initialize wrapper type");
Benjamin Petersonfd838e62009-04-20 02:09:13 +00001613
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001614 if (PyType_Ready(&PyEllipsis_Type) < 0)
1615 Py_FatalError("Can't initialize ellipsis type");
Benjamin Petersonfd838e62009-04-20 02:09:13 +00001616
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001617 if (PyType_Ready(&PyMemberDescr_Type) < 0)
1618 Py_FatalError("Can't initialize member descriptor type");
Benjamin Peterson8bc5b682009-05-09 18:10:51 +00001619
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001620 if (PyType_Ready(&PyFilter_Type) < 0)
1621 Py_FatalError("Can't initialize filter type");
Benjamin Peterson8bc5b682009-05-09 18:10:51 +00001622
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001623 if (PyType_Ready(&PyMap_Type) < 0)
1624 Py_FatalError("Can't initialize map type");
Benjamin Peterson8bc5b682009-05-09 18:10:51 +00001625
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001626 if (PyType_Ready(&PyZip_Type) < 0)
1627 Py_FatalError("Can't initialize zip type");
Guido van Rossumba21a492001-08-16 08:17:26 +00001628}
1629
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001630
Guido van Rossum84a90321996-05-22 16:34:47 +00001631#ifdef Py_TRACE_REFS
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001632
Guido van Rossumaacdc9d1996-08-12 21:32:12 +00001633void
Fred Drake100814d2000-07-09 15:48:49 +00001634_Py_NewReference(PyObject *op)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001635{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001636 _Py_INC_REFTOTAL;
1637 op->ob_refcnt = 1;
1638 _Py_AddToAllObjects(op, 1);
1639 _Py_INC_TPALLOCS(op);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001640}
1641
Guido van Rossumaacdc9d1996-08-12 21:32:12 +00001642void
Fred Drake100814d2000-07-09 15:48:49 +00001643_Py_ForgetReference(register PyObject *op)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001644{
Guido van Rossumbffd6832000-01-20 22:32:56 +00001645#ifdef SLOW_UNREF_CHECK
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001646 register PyObject *p;
Guido van Rossumbffd6832000-01-20 22:32:56 +00001647#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001648 if (op->ob_refcnt < 0)
1649 Py_FatalError("UNREF negative refcnt");
1650 if (op == &refchain ||
1651 op->_ob_prev->_ob_next != op || op->_ob_next->_ob_prev != op) {
1652 fprintf(stderr, "* ob\n");
1653 _PyObject_Dump(op);
1654 fprintf(stderr, "* op->_ob_prev->_ob_next\n");
1655 _PyObject_Dump(op->_ob_prev->_ob_next);
1656 fprintf(stderr, "* op->_ob_next->_ob_prev\n");
1657 _PyObject_Dump(op->_ob_next->_ob_prev);
1658 Py_FatalError("UNREF invalid object");
1659 }
Guido van Rossum2e8f6141992-09-03 20:32:55 +00001660#ifdef SLOW_UNREF_CHECK
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001661 for (p = refchain._ob_next; p != &refchain; p = p->_ob_next) {
1662 if (p == op)
1663 break;
1664 }
1665 if (p == &refchain) /* Not found */
1666 Py_FatalError("UNREF unknown object");
Guido van Rossum2e8f6141992-09-03 20:32:55 +00001667#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001668 op->_ob_next->_ob_prev = op->_ob_prev;
1669 op->_ob_prev->_ob_next = op->_ob_next;
1670 op->_ob_next = op->_ob_prev = NULL;
1671 _Py_INC_TPFREES(op);
Guido van Rossum3f5da241990-12-20 15:06:42 +00001672}
1673
Guido van Rossumaacdc9d1996-08-12 21:32:12 +00001674void
Fred Drake100814d2000-07-09 15:48:49 +00001675_Py_Dealloc(PyObject *op)
Guido van Rossum3f5da241990-12-20 15:06:42 +00001676{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001677 destructor dealloc = Py_TYPE(op)->tp_dealloc;
1678 _Py_ForgetReference(op);
1679 (*dealloc)(op);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001680}
1681
Tim Peters269b2a62003-04-17 19:52:29 +00001682/* Print all live objects. Because PyObject_Print is called, the
1683 * interpreter must be in a healthy state.
1684 */
Guido van Rossumaacdc9d1996-08-12 21:32:12 +00001685void
Fred Drake100814d2000-07-09 15:48:49 +00001686_Py_PrintReferences(FILE *fp)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001687{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001688 PyObject *op;
1689 fprintf(fp, "Remaining objects:\n");
1690 for (op = refchain._ob_next; op != &refchain; op = op->_ob_next) {
1691 fprintf(fp, "%p [%" PY_FORMAT_SIZE_T "d] ", op, op->ob_refcnt);
1692 if (PyObject_Print(op, fp, 0) != 0)
1693 PyErr_Clear();
1694 putc('\n', fp);
1695 }
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001696}
1697
Tim Peters269b2a62003-04-17 19:52:29 +00001698/* Print the addresses of all live objects. Unlike _Py_PrintReferences, this
1699 * doesn't make any calls to the Python C API, so is always safe to call.
1700 */
1701void
1702_Py_PrintReferenceAddresses(FILE *fp)
1703{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001704 PyObject *op;
1705 fprintf(fp, "Remaining object addresses:\n");
1706 for (op = refchain._ob_next; op != &refchain; op = op->_ob_next)
1707 fprintf(fp, "%p [%" PY_FORMAT_SIZE_T "d] %s\n", op,
1708 op->ob_refcnt, Py_TYPE(op)->tp_name);
Tim Peters269b2a62003-04-17 19:52:29 +00001709}
1710
Sjoerd Mullender6ec3c651995-08-29 09:18:14 +00001711PyObject *
Fred Drake100814d2000-07-09 15:48:49 +00001712_Py_GetObjects(PyObject *self, PyObject *args)
Sjoerd Mullender6ec3c651995-08-29 09:18:14 +00001713{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001714 int i, n;
1715 PyObject *t = NULL;
1716 PyObject *res, *op;
Sjoerd Mullender6ec3c651995-08-29 09:18:14 +00001717
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001718 if (!PyArg_ParseTuple(args, "i|O", &n, &t))
1719 return NULL;
1720 op = refchain._ob_next;
1721 res = PyList_New(0);
1722 if (res == NULL)
1723 return NULL;
1724 for (i = 0; (n == 0 || i < n) && op != &refchain; i++) {
1725 while (op == self || op == args || op == res || op == t ||
1726 (t != NULL && Py_TYPE(op) != (PyTypeObject *) t)) {
1727 op = op->_ob_next;
1728 if (op == &refchain)
1729 return res;
1730 }
1731 if (PyList_Append(res, op) < 0) {
1732 Py_DECREF(res);
1733 return NULL;
1734 }
1735 op = op->_ob_next;
1736 }
1737 return res;
Sjoerd Mullender6ec3c651995-08-29 09:18:14 +00001738}
1739
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001740#endif
Guido van Rossum97ead3f1996-01-12 01:24:09 +00001741
Guido van Rossum84a90321996-05-22 16:34:47 +00001742
Benjamin Petersonb173f782009-05-05 22:31:58 +00001743/* Hack to force loading of pycapsule.o */
1744PyTypeObject *_PyCapsule_hack = &PyCapsule_Type;
1745
1746
Guido van Rossum84a90321996-05-22 16:34:47 +00001747/* Hack to force loading of abstract.o */
Martin v. Löwis18e16552006-02-15 17:27:45 +00001748Py_ssize_t (*_Py_abstract_hack)(PyObject *) = PyObject_Size;
Guido van Rossume09fb551997-08-05 02:04:34 +00001749
1750
Andrew M. Kuchling1582a3a2000-08-16 12:27:23 +00001751/* Python's malloc wrappers (see pymem.h) */
Guido van Rossume09fb551997-08-05 02:04:34 +00001752
Thomas Wouters334fb892000-07-25 12:56:38 +00001753void *
Fred Drake100814d2000-07-09 15:48:49 +00001754PyMem_Malloc(size_t nbytes)
Guido van Rossume09fb551997-08-05 02:04:34 +00001755{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001756 return PyMem_MALLOC(nbytes);
Guido van Rossume09fb551997-08-05 02:04:34 +00001757}
1758
Thomas Wouters334fb892000-07-25 12:56:38 +00001759void *
1760PyMem_Realloc(void *p, size_t nbytes)
Guido van Rossume09fb551997-08-05 02:04:34 +00001761{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001762 return PyMem_REALLOC(p, nbytes);
Guido van Rossume09fb551997-08-05 02:04:34 +00001763}
1764
1765void
Thomas Wouters334fb892000-07-25 12:56:38 +00001766PyMem_Free(void *p)
Guido van Rossume09fb551997-08-05 02:04:34 +00001767{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001768 PyMem_FREE(p);
Guido van Rossumb18618d2000-05-03 23:44:39 +00001769}
1770
1771
Guido van Rossum86610361998-04-10 22:32:46 +00001772/* These methods are used to control infinite recursion in repr, str, print,
1773 etc. Container objects that may recursively contain themselves,
1774 e.g. builtin dictionaries and lists, should used Py_ReprEnter() and
1775 Py_ReprLeave() to avoid infinite recursion.
1776
1777 Py_ReprEnter() returns 0 the first time it is called for a particular
1778 object and 1 every time thereafter. It returns -1 if an exception
1779 occurred. Py_ReprLeave() has no return value.
1780
1781 See dictobject.c and listobject.c for examples of use.
1782*/
1783
1784#define KEY "Py_Repr"
1785
1786int
Fred Drake100814d2000-07-09 15:48:49 +00001787Py_ReprEnter(PyObject *obj)
Guido van Rossum86610361998-04-10 22:32:46 +00001788{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001789 PyObject *dict;
1790 PyObject *list;
1791 Py_ssize_t i;
Guido van Rossum86610361998-04-10 22:32:46 +00001792
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001793 dict = PyThreadState_GetDict();
1794 if (dict == NULL)
1795 return 0;
1796 list = PyDict_GetItemString(dict, KEY);
1797 if (list == NULL) {
1798 list = PyList_New(0);
1799 if (list == NULL)
1800 return -1;
1801 if (PyDict_SetItemString(dict, KEY, list) < 0)
1802 return -1;
1803 Py_DECREF(list);
1804 }
1805 i = PyList_GET_SIZE(list);
1806 while (--i >= 0) {
1807 if (PyList_GET_ITEM(list, i) == obj)
1808 return 1;
1809 }
1810 PyList_Append(list, obj);
1811 return 0;
Guido van Rossum86610361998-04-10 22:32:46 +00001812}
1813
1814void
Fred Drake100814d2000-07-09 15:48:49 +00001815Py_ReprLeave(PyObject *obj)
Guido van Rossum86610361998-04-10 22:32:46 +00001816{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001817 PyObject *dict;
1818 PyObject *list;
1819 Py_ssize_t i;
Guido van Rossum86610361998-04-10 22:32:46 +00001820
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001821 dict = PyThreadState_GetDict();
1822 if (dict == NULL)
1823 return;
1824 list = PyDict_GetItemString(dict, KEY);
1825 if (list == NULL || !PyList_Check(list))
1826 return;
1827 i = PyList_GET_SIZE(list);
1828 /* Count backwards because we always expect obj to be list[-1] */
1829 while (--i >= 0) {
1830 if (PyList_GET_ITEM(list, i) == obj) {
1831 PyList_SetSlice(list, i, i + 1, NULL);
1832 break;
1833 }
1834 }
Guido van Rossum86610361998-04-10 22:32:46 +00001835}
Guido van Rossumd724b232000-03-13 16:01:29 +00001836
Tim Peters803526b2002-07-07 05:13:56 +00001837/* Trashcan support. */
Guido van Rossumd724b232000-03-13 16:01:29 +00001838
Tim Peters803526b2002-07-07 05:13:56 +00001839/* Current call-stack depth of tp_dealloc calls. */
Guido van Rossumd724b232000-03-13 16:01:29 +00001840int _PyTrash_delete_nesting = 0;
Guido van Rossume92e6102000-04-24 15:40:53 +00001841
Tim Peters803526b2002-07-07 05:13:56 +00001842/* List of objects that still need to be cleaned up, singly linked via their
1843 * gc headers' gc_prev pointers.
1844 */
1845PyObject *_PyTrash_delete_later = NULL;
Guido van Rossumd724b232000-03-13 16:01:29 +00001846
Tim Peters803526b2002-07-07 05:13:56 +00001847/* Add op to the _PyTrash_delete_later list. Called when the current
1848 * call-stack depth gets large. op must be a currently untracked gc'ed
1849 * object, with refcount 0. Py_DECREF must already have been called on it.
1850 */
Guido van Rossumd724b232000-03-13 16:01:29 +00001851void
Fred Drake100814d2000-07-09 15:48:49 +00001852_PyTrash_deposit_object(PyObject *op)
Guido van Rossumd724b232000-03-13 16:01:29 +00001853{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001854 assert(PyObject_IS_GC(op));
1855 assert(_Py_AS_GC(op)->gc.gc_refs == _PyGC_REFS_UNTRACKED);
1856 assert(op->ob_refcnt == 0);
1857 _Py_AS_GC(op)->gc.gc_prev = (PyGC_Head *)_PyTrash_delete_later;
1858 _PyTrash_delete_later = op;
Guido van Rossumd724b232000-03-13 16:01:29 +00001859}
1860
Tim Peters803526b2002-07-07 05:13:56 +00001861/* Dealloccate all the objects in the _PyTrash_delete_later list. Called when
1862 * the call-stack unwinds again.
1863 */
Guido van Rossumd724b232000-03-13 16:01:29 +00001864void
Fred Drake100814d2000-07-09 15:48:49 +00001865_PyTrash_destroy_chain(void)
Guido van Rossumd724b232000-03-13 16:01:29 +00001866{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001867 while (_PyTrash_delete_later) {
1868 PyObject *op = _PyTrash_delete_later;
1869 destructor dealloc = Py_TYPE(op)->tp_dealloc;
Neil Schemenauerf589c052002-03-29 03:05:54 +00001870
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001871 _PyTrash_delete_later =
1872 (PyObject*) _Py_AS_GC(op)->gc.gc_prev;
Neil Schemenauerf589c052002-03-29 03:05:54 +00001873
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001874 /* Call the deallocator directly. This used to try to
1875 * fool Py_DECREF into calling it indirectly, but
1876 * Py_DECREF was already called on this object, and in
1877 * assorted non-release builds calling Py_DECREF again ends
1878 * up distorting allocation statistics.
1879 */
1880 assert(op->ob_refcnt == 0);
1881 ++_PyTrash_delete_nesting;
1882 (*dealloc)(op);
1883 --_PyTrash_delete_nesting;
1884 }
Guido van Rossumd724b232000-03-13 16:01:29 +00001885}
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001886
1887#ifdef __cplusplus
1888}
1889#endif