blob: 9fea13a33936d207f2bfe1ac0250fdb99ace5f01 [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"
Benjamin Peterson01c6e6f2009-04-18 22:15:26 +00005#include "frameobject.h"
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00006
Anthony Baxterac6bd462006-04-13 02:06:09 +00007#ifdef __cplusplus
8extern "C" {
9#endif
10
Tim Peters34592512002-07-11 06:23:50 +000011#ifdef Py_REF_DEBUG
Neal Norwitz84632ee2006-03-04 20:00:59 +000012Py_ssize_t _Py_RefTotal;
Armin Rigoe1709372006-04-12 17:06:05 +000013
14Py_ssize_t
15_Py_GetRefTotal(void)
16{
Antoine Pitrouc83ea132010-05-09 14:46:46 +000017 PyObject *o;
18 Py_ssize_t total = _Py_RefTotal;
19 /* ignore the references to the dummy object of the dicts and sets
20 because they are not reliable and not useful (now that the
21 hash table code is well-tested) */
22 o = _PyDict_Dummy();
23 if (o != NULL)
24 total -= o->ob_refcnt;
25 o = _PySet_Dummy();
26 if (o != NULL)
27 total -= o->ob_refcnt;
28 return total;
Armin Rigoe1709372006-04-12 17:06:05 +000029}
30#endif /* Py_REF_DEBUG */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000031
Mark Hammonda2905272002-07-29 13:42:14 +000032int Py_DivisionWarningFlag;
Neal Norwitz8b2bfbc2007-05-23 06:35:32 +000033int Py_Py3kWarningFlag;
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 Pitrouc83ea132010-05-09 14:46:46 +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 Pitrouc83ea132010-05-09 14:46:46 +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 Pitrouc83ea132010-05-09 14:46:46 +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;
Andrew M. Kuchling2060d1b2006-04-18 11:49:53 +000079/* All types are added to type_list, at least when
Martin v. Löwis45294a92006-04-18 06:24:08 +000080 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. */
Martin v. Löwisb90304a2009-01-07 18:40:40 +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
Martin v. Löwis45294a92006-04-18 06:24:08 +000090dump_counts(FILE* f)
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +000091{
Antoine Pitrouc83ea132010-05-09 14:46:46 +000092 PyTypeObject *tp;
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +000093
Antoine Pitrouc83ea132010-05-09 14:46:46 +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 Pitrouc83ea132010-05-09 14:46:46 +0000114 PyTypeObject *tp;
115 PyObject *result;
116 PyObject *v;
Sjoerd Mullender6ec3c651995-08-29 09:18:14 +0000117
Antoine Pitrouc83ea132010-05-09 14:46:46 +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 Pitrouc83ea132010-05-09 14:46:46 +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 Pitrouc83ea132010-05-09 14:46:46 +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 Pitrouc83ea132010-05-09 14:46:46 +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}
Martin v. Löwis45294a92006-04-18 06:24:08 +0000169
170void dec_count(PyTypeObject *tp)
171{
Antoine Pitrouc83ea132010-05-09 14:46:46 +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 }
Martin v. Löwis45294a92006-04-18 06:24:08 +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 Pitrouc83ea132010-05-09 14:46:46 +0000194 char buf[300];
Tim Peters7c321a82002-07-09 02:57:01 +0000195
Antoine Pitrouc83ea132010-05-09 14:46:46 +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 Pitrouc83ea132010-05-09 14:46:46 +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 Pitrouc83ea132010-05-09 14:46:46 +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 Pitrouc83ea132010-05-09 14:46:46 +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 Pitrouc83ea132010-05-09 14:46:46 +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
Neil Schemenauerbdf0eed2002-04-12 03:08:42 +0000261/* for binary compatibility with 2.2 */
262#undef _PyObject_Del
Guido van Rossumb18618d2000-05-03 23:44:39 +0000263void
Fred Drake100814d2000-07-09 15:48:49 +0000264_PyObject_Del(PyObject *op)
Guido van Rossumb18618d2000-05-03 23:44:39 +0000265{
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000266 PyObject_FREE(op);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000267}
268
Neal Norwitz1a997502003-01-13 20:13:12 +0000269/* Implementation of PyObject_Print with recursion checking */
270static int
271internal_print(PyObject *op, FILE *fp, int flags, int nesting)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000272{
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000273 int ret = 0;
274 if (nesting > 10) {
275 PyErr_SetString(PyExc_RuntimeError, "print recursion");
276 return -1;
277 }
278 if (PyErr_CheckSignals())
279 return -1;
Guido van Rossum9b00dfa1998-04-28 16:06:54 +0000280#ifdef USE_STACKCHECK
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000281 if (PyOS_CheckStack()) {
282 PyErr_SetString(PyExc_MemoryError, "stack overflow");
283 return -1;
284 }
Guido van Rossum9b00dfa1998-04-28 16:06:54 +0000285#endif
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000286 clearerr(fp); /* Clear any previous error condition */
287 if (op == NULL) {
288 Py_BEGIN_ALLOW_THREADS
289 fprintf(fp, "<nil>");
290 Py_END_ALLOW_THREADS
291 }
292 else {
293 if (op->ob_refcnt <= 0)
294 /* XXX(twouters) cast refcount to long until %zd is
295 universally available */
296 Py_BEGIN_ALLOW_THREADS
297 fprintf(fp, "<refcnt %ld at %p>",
298 (long)op->ob_refcnt, op);
299 Py_END_ALLOW_THREADS
300 else if (Py_TYPE(op)->tp_print == NULL) {
301 PyObject *s;
302 if (flags & Py_PRINT_RAW)
303 s = PyObject_Str(op);
304 else
305 s = PyObject_Repr(op);
306 if (s == NULL)
307 ret = -1;
308 else {
309 ret = internal_print(s, fp, Py_PRINT_RAW,
310 nesting+1);
311 }
312 Py_XDECREF(s);
313 }
314 else
315 ret = (*Py_TYPE(op)->tp_print)(op, fp, flags);
316 }
317 if (ret == 0) {
318 if (ferror(fp)) {
319 PyErr_SetFromErrno(PyExc_IOError);
320 clearerr(fp);
321 ret = -1;
322 }
323 }
324 return ret;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000325}
326
Neal Norwitz1a997502003-01-13 20:13:12 +0000327int
328PyObject_Print(PyObject *op, FILE *fp, int flags)
329{
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000330 return internal_print(op, fp, flags, 0);
Neal Norwitz1a997502003-01-13 20:13:12 +0000331}
332
333
Barry Warsaw9bf16442001-01-23 16:24:35 +0000334/* For debugging convenience. See Misc/gdbinit for some useful gdb hooks */
Tim Peters803526b2002-07-07 05:13:56 +0000335void _PyObject_Dump(PyObject* op)
Barry Warsaw9bf16442001-01-23 16:24:35 +0000336{
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000337 if (op == NULL)
338 fprintf(stderr, "NULL\n");
339 else {
Georg Brandld3eaa742009-04-05 11:07:14 +0000340#ifdef WITH_THREAD
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000341 PyGILState_STATE gil;
Georg Brandld3eaa742009-04-05 11:07:14 +0000342#endif
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000343 fprintf(stderr, "object : ");
Georg Brandld3eaa742009-04-05 11:07:14 +0000344#ifdef WITH_THREAD
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000345 gil = PyGILState_Ensure();
Georg Brandld3eaa742009-04-05 11:07:14 +0000346#endif
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000347 (void)PyObject_Print(op, stderr, 0);
Georg Brandld3eaa742009-04-05 11:07:14 +0000348#ifdef WITH_THREAD
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000349 PyGILState_Release(gil);
Georg Brandld3eaa742009-04-05 11:07:14 +0000350#endif
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000351 /* XXX(twouters) cast refcount to long until %zd is
352 universally available */
353 fprintf(stderr, "\n"
354 "type : %s\n"
355 "refcount: %ld\n"
356 "address : %p\n",
357 Py_TYPE(op)==NULL ? "NULL" : Py_TYPE(op)->tp_name,
358 (long)op->ob_refcnt,
359 op);
360 }
Barry Warsaw9bf16442001-01-23 16:24:35 +0000361}
Barry Warsaw903138f2001-01-23 16:33:18 +0000362
Guido van Rossumc0b618a1997-05-02 03:12:38 +0000363PyObject *
Fred Drake100814d2000-07-09 15:48:49 +0000364PyObject_Repr(PyObject *v)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000365{
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000366 if (PyErr_CheckSignals())
367 return NULL;
Guido van Rossum9b00dfa1998-04-28 16:06:54 +0000368#ifdef USE_STACKCHECK
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000369 if (PyOS_CheckStack()) {
370 PyErr_SetString(PyExc_MemoryError, "stack overflow");
371 return NULL;
372 }
Guido van Rossum9b00dfa1998-04-28 16:06:54 +0000373#endif
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000374 if (v == NULL)
375 return PyString_FromString("<NULL>");
376 else if (Py_TYPE(v)->tp_repr == NULL)
377 return PyString_FromFormat("<%s object at %p>",
378 Py_TYPE(v)->tp_name, v);
379 else {
380 PyObject *res;
381 res = (*Py_TYPE(v)->tp_repr)(v);
382 if (res == NULL)
383 return NULL;
Martin v. Löwis339d0f72001-08-17 18:39:25 +0000384#ifdef Py_USING_UNICODE
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000385 if (PyUnicode_Check(res)) {
386 PyObject* str;
387 str = PyUnicode_AsEncodedString(res, NULL, NULL);
388 Py_DECREF(res);
389 if (str)
390 res = str;
391 else
392 return NULL;
393 }
Martin v. Löwis339d0f72001-08-17 18:39:25 +0000394#endif
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000395 if (!PyString_Check(res)) {
396 PyErr_Format(PyExc_TypeError,
397 "__repr__ returned non-string (type %.200s)",
398 Py_TYPE(res)->tp_name);
399 Py_DECREF(res);
400 return NULL;
401 }
402 return res;
403 }
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000404}
405
Guido van Rossumc0b618a1997-05-02 03:12:38 +0000406PyObject *
Neil Schemenauercf52c072005-08-12 17:34:58 +0000407_PyObject_Str(PyObject *v)
Guido van Rossumc6004111993-11-05 10:22:19 +0000408{
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000409 PyObject *res;
410 int type_ok;
411 if (v == NULL)
412 return PyString_FromString("<NULL>");
413 if (PyString_CheckExact(v)) {
414 Py_INCREF(v);
415 return v;
416 }
Neil Schemenauercf52c072005-08-12 17:34:58 +0000417#ifdef Py_USING_UNICODE
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000418 if (PyUnicode_CheckExact(v)) {
419 Py_INCREF(v);
420 return v;
421 }
Neil Schemenauercf52c072005-08-12 17:34:58 +0000422#endif
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000423 if (Py_TYPE(v)->tp_str == NULL)
424 return PyObject_Repr(v);
Guido van Rossum4f288ab2001-05-01 16:53:37 +0000425
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000426 /* It is possible for a type to have a tp_str representation that loops
427 infinitely. */
428 if (Py_EnterRecursiveCall(" while getting the str of an object"))
429 return NULL;
430 res = (*Py_TYPE(v)->tp_str)(v);
431 Py_LeaveRecursiveCall();
432 if (res == NULL)
433 return NULL;
434 type_ok = PyString_Check(res);
Neil Schemenauercf52c072005-08-12 17:34:58 +0000435#ifdef Py_USING_UNICODE
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000436 type_ok = type_ok || PyUnicode_Check(res);
Neil Schemenauercf52c072005-08-12 17:34:58 +0000437#endif
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000438 if (!type_ok) {
439 PyErr_Format(PyExc_TypeError,
440 "__str__ returned non-string (type %.200s)",
441 Py_TYPE(res)->tp_name);
442 Py_DECREF(res);
443 return NULL;
444 }
445 return res;
Neil Schemenauercf52c072005-08-12 17:34:58 +0000446}
447
448PyObject *
449PyObject_Str(PyObject *v)
450{
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000451 PyObject *res = _PyObject_Str(v);
452 if (res == NULL)
453 return NULL;
Martin v. Löwis339d0f72001-08-17 18:39:25 +0000454#ifdef Py_USING_UNICODE
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000455 if (PyUnicode_Check(res)) {
456 PyObject* str;
457 str = PyUnicode_AsEncodedString(res, NULL, NULL);
458 Py_DECREF(res);
459 if (str)
460 res = str;
461 else
462 return NULL;
463 }
Martin v. Löwis339d0f72001-08-17 18:39:25 +0000464#endif
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000465 assert(PyString_Check(res));
466 return res;
Guido van Rossumc6004111993-11-05 10:22:19 +0000467}
468
Martin v. Löwis339d0f72001-08-17 18:39:25 +0000469#ifdef Py_USING_UNICODE
Guido van Rossuma3af41d2001-01-18 22:07:06 +0000470PyObject *
471PyObject_Unicode(PyObject *v)
472{
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000473 PyObject *res;
474 PyObject *func;
475 PyObject *str;
476 int unicode_method_found = 0;
477 static PyObject *unicodestr;
Tim Peters803526b2002-07-07 05:13:56 +0000478
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000479 if (v == NULL) {
480 res = PyString_FromString("<NULL>");
481 if (res == NULL)
482 return NULL;
483 str = PyUnicode_FromEncodedObject(res, NULL, "strict");
484 Py_DECREF(res);
485 return str;
486 } else if (PyUnicode_CheckExact(v)) {
487 Py_INCREF(v);
488 return v;
489 }
Nick Coghlan524b7772008-07-08 14:08:04 +0000490
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000491 if (PyInstance_Check(v)) {
492 /* We're an instance of a classic class */
493 /* Try __unicode__ from the instance -- alas we have no type */
494 func = PyObject_GetAttr(v, unicodestr);
495 if (func != NULL) {
496 unicode_method_found = 1;
497 res = PyObject_CallFunctionObjArgs(func, NULL);
498 Py_DECREF(func);
499 }
500 else {
501 PyErr_Clear();
502 }
503 }
504 else {
505 /* Not a classic class instance, try __unicode__. */
506 func = _PyObject_LookupSpecial(v, "__unicode__", &unicodestr);
507 if (func != NULL) {
508 unicode_method_found = 1;
509 res = PyObject_CallFunctionObjArgs(func, NULL);
510 Py_DECREF(func);
511 }
512 else if (PyErr_Occurred())
513 return NULL;
514 }
Nick Coghlan524b7772008-07-08 14:08:04 +0000515
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000516 /* Didn't find __unicode__ */
517 if (!unicode_method_found) {
518 if (PyUnicode_Check(v)) {
519 /* For a Unicode subtype that's didn't overwrite __unicode__,
520 return a true Unicode object with the same data. */
521 return PyUnicode_FromUnicode(PyUnicode_AS_UNICODE(v),
522 PyUnicode_GET_SIZE(v));
523 }
524 if (PyString_CheckExact(v)) {
525 Py_INCREF(v);
526 res = v;
527 }
528 else {
529 if (Py_TYPE(v)->tp_str != NULL)
530 res = (*Py_TYPE(v)->tp_str)(v);
531 else
532 res = PyObject_Repr(v);
533 }
534 }
Nick Coghlan524b7772008-07-08 14:08:04 +0000535
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000536 if (res == NULL)
537 return NULL;
538 if (!PyUnicode_Check(res)) {
539 str = PyUnicode_FromEncodedObject(res, NULL, "strict");
540 Py_DECREF(res);
541 res = str;
542 }
543 return res;
Guido van Rossuma3af41d2001-01-18 22:07:06 +0000544}
Martin v. Löwis339d0f72001-08-17 18:39:25 +0000545#endif
Guido van Rossuma3af41d2001-01-18 22:07:06 +0000546
547
Guido van Rossuma4073002002-05-31 20:03:54 +0000548/* Helper to warn about deprecated tp_compare return values. Return:
549 -2 for an exception;
550 -1 if v < w;
551 0 if v == w;
552 1 if v > w.
553 (This function cannot return 2.)
554*/
555static int
556adjust_tp_compare(int c)
557{
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000558 if (PyErr_Occurred()) {
559 if (c != -1 && c != -2) {
560 PyObject *t, *v, *tb;
561 PyErr_Fetch(&t, &v, &tb);
562 if (PyErr_Warn(PyExc_RuntimeWarning,
563 "tp_compare didn't return -1 or -2 "
564 "for exception") < 0) {
565 Py_XDECREF(t);
566 Py_XDECREF(v);
567 Py_XDECREF(tb);
568 }
569 else
570 PyErr_Restore(t, v, tb);
571 }
572 return -2;
573 }
574 else if (c < -1 || c > 1) {
575 if (PyErr_Warn(PyExc_RuntimeWarning,
576 "tp_compare didn't return -1, 0 or 1") < 0)
577 return -2;
578 else
579 return c < -1 ? -1 : 1;
580 }
581 else {
582 assert(c >= -1 && c <= 1);
583 return c;
584 }
Guido van Rossuma4073002002-05-31 20:03:54 +0000585}
586
587
Guido van Rossumd1f06b92001-01-24 22:14:43 +0000588/* Macro to get the tp_richcompare field of a type if defined */
589#define RICHCOMPARE(t) (PyType_HasFeature((t), Py_TPFLAGS_HAVE_RICHCOMPARE) \
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000590 ? (t)->tp_richcompare : NULL)
Guido van Rossumd1f06b92001-01-24 22:14:43 +0000591
Guido van Rossume797ec12001-01-17 15:24:28 +0000592/* Map rich comparison operators to their swapped version, e.g. LT --> GT */
Brett Cannona5ca2e72004-09-25 01:37:24 +0000593int _Py_SwappedOp[] = {Py_GT, Py_GE, Py_EQ, Py_NE, Py_LT, Py_LE};
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +0000594
Guido van Rossume797ec12001-01-17 15:24:28 +0000595/* Try a genuine rich comparison, returning an object. Return:
596 NULL for exception;
597 NotImplemented if this particular rich comparison is not implemented or
598 undefined;
599 some object not equal to NotImplemented if it is implemented
600 (this latter object may not be a Boolean).
601*/
602static PyObject *
603try_rich_compare(PyObject *v, PyObject *w, int op)
604{
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000605 richcmpfunc f;
606 PyObject *res;
Guido van Rossume797ec12001-01-17 15:24:28 +0000607
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000608 if (v->ob_type != w->ob_type &&
609 PyType_IsSubtype(w->ob_type, v->ob_type) &&
610 (f = RICHCOMPARE(w->ob_type)) != NULL) {
611 res = (*f)(w, v, _Py_SwappedOp[op]);
612 if (res != Py_NotImplemented)
613 return res;
614 Py_DECREF(res);
615 }
616 if ((f = RICHCOMPARE(v->ob_type)) != NULL) {
617 res = (*f)(v, w, op);
618 if (res != Py_NotImplemented)
619 return res;
620 Py_DECREF(res);
621 }
622 if ((f = RICHCOMPARE(w->ob_type)) != NULL) {
623 return (*f)(w, v, _Py_SwappedOp[op]);
624 }
625 res = Py_NotImplemented;
626 Py_INCREF(res);
627 return res;
Guido van Rossume797ec12001-01-17 15:24:28 +0000628}
629
630/* Try a genuine rich comparison, returning an int. Return:
631 -1 for exception (including the case where try_rich_compare() returns an
632 object that's not a Boolean);
Tim Petersc99213f2001-11-04 05:57:16 +0000633 0 if the outcome is false;
634 1 if the outcome is true;
635 2 if this particular rich comparison is not implemented or undefined.
Guido van Rossume797ec12001-01-17 15:24:28 +0000636*/
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +0000637static int
Guido van Rossume797ec12001-01-17 15:24:28 +0000638try_rich_compare_bool(PyObject *v, PyObject *w, int op)
639{
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000640 PyObject *res;
641 int ok;
Guido van Rossume797ec12001-01-17 15:24:28 +0000642
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000643 if (RICHCOMPARE(v->ob_type) == NULL && RICHCOMPARE(w->ob_type) == NULL)
644 return 2; /* Shortcut, avoid INCREF+DECREF */
645 res = try_rich_compare(v, w, op);
646 if (res == NULL)
647 return -1;
648 if (res == Py_NotImplemented) {
649 Py_DECREF(res);
650 return 2;
651 }
652 ok = PyObject_IsTrue(res);
653 Py_DECREF(res);
654 return ok;
Guido van Rossume797ec12001-01-17 15:24:28 +0000655}
656
657/* Try rich comparisons to determine a 3-way comparison. Return:
658 -2 for an exception;
Tim Petersc99213f2001-11-04 05:57:16 +0000659 -1 if v < w;
660 0 if v == w;
661 1 if v > w;
662 2 if this particular rich comparison is not implemented or undefined.
Guido van Rossume797ec12001-01-17 15:24:28 +0000663*/
664static int
665try_rich_to_3way_compare(PyObject *v, PyObject *w)
666{
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000667 static struct { int op; int outcome; } tries[3] = {
668 /* Try this operator, and if it is true, use this outcome: */
669 {Py_EQ, 0},
670 {Py_LT, -1},
671 {Py_GT, 1},
672 };
673 int i;
Guido van Rossum2ffbf6b2001-01-17 21:27:02 +0000674
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000675 if (RICHCOMPARE(v->ob_type) == NULL && RICHCOMPARE(w->ob_type) == NULL)
676 return 2; /* Shortcut */
Guido van Rossum2ffbf6b2001-01-17 21:27:02 +0000677
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000678 for (i = 0; i < 3; i++) {
679 switch (try_rich_compare_bool(v, w, tries[i].op)) {
680 case -1:
681 return -2;
682 case 1:
683 return tries[i].outcome;
684 }
685 }
Guido van Rossum2ffbf6b2001-01-17 21:27:02 +0000686
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000687 return 2;
Guido van Rossume797ec12001-01-17 15:24:28 +0000688}
689
690/* Try a 3-way comparison, returning an int. Return:
691 -2 for an exception;
Tim Petersc99213f2001-11-04 05:57:16 +0000692 -1 if v < w;
693 0 if v == w;
694 1 if v > w;
695 2 if this particular 3-way comparison is not implemented or undefined.
Guido van Rossume797ec12001-01-17 15:24:28 +0000696*/
697static int
698try_3way_compare(PyObject *v, PyObject *w)
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +0000699{
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000700 int c;
701 cmpfunc f;
Guido van Rossume797ec12001-01-17 15:24:28 +0000702
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000703 /* Comparisons involving instances are given to instance_compare,
704 which has the same return conventions as this function. */
Guido van Rossume797ec12001-01-17 15:24:28 +0000705
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000706 f = v->ob_type->tp_compare;
707 if (PyInstance_Check(v))
708 return (*f)(v, w);
709 if (PyInstance_Check(w))
710 return (*w->ob_type->tp_compare)(v, w);
Guido van Rossume797ec12001-01-17 15:24:28 +0000711
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000712 /* If both have the same (non-NULL) tp_compare, use it. */
713 if (f != NULL && f == w->ob_type->tp_compare) {
714 c = (*f)(v, w);
715 return adjust_tp_compare(c);
716 }
Guido van Rossumab3b0342001-09-18 20:38:53 +0000717
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000718 /* If either tp_compare is _PyObject_SlotCompare, that's safe. */
719 if (f == _PyObject_SlotCompare ||
720 w->ob_type->tp_compare == _PyObject_SlotCompare)
721 return _PyObject_SlotCompare(v, w);
Guido van Rossumab3b0342001-09-18 20:38:53 +0000722
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000723 /* If we're here, v and w,
724 a) are not instances;
725 b) have different types or a type without tp_compare; and
726 c) don't have a user-defined tp_compare.
727 tp_compare implementations in C assume that both arguments
728 have their type, so we give up if the coercion fails or if
729 it yields types which are still incompatible (which can
730 happen with a user-defined nb_coerce).
731 */
732 c = PyNumber_CoerceEx(&v, &w);
733 if (c < 0)
734 return -2;
735 if (c > 0)
736 return 2;
737 f = v->ob_type->tp_compare;
738 if (f != NULL && f == w->ob_type->tp_compare) {
739 c = (*f)(v, w);
740 Py_DECREF(v);
741 Py_DECREF(w);
742 return adjust_tp_compare(c);
743 }
Guido van Rossume797ec12001-01-17 15:24:28 +0000744
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000745 /* No comparison defined */
746 Py_DECREF(v);
747 Py_DECREF(w);
748 return 2;
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +0000749}
750
Guido van Rossume797ec12001-01-17 15:24:28 +0000751/* Final fallback 3-way comparison, returning an int. Return:
752 -2 if an error occurred;
Tim Petersc99213f2001-11-04 05:57:16 +0000753 -1 if v < w;
754 0 if v == w;
755 1 if v > w.
Guido van Rossume797ec12001-01-17 15:24:28 +0000756*/
757static int
758default_3way_compare(PyObject *v, PyObject *w)
759{
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000760 int c;
761 const char *vname, *wname;
Guido van Rossume797ec12001-01-17 15:24:28 +0000762
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000763 if (v->ob_type == w->ob_type) {
764 /* When comparing these pointers, they must be cast to
765 * integer types (i.e. Py_uintptr_t, our spelling of C9X's
766 * uintptr_t). ANSI specifies that pointer compares other
767 * than == and != to non-related structures are undefined.
768 */
769 Py_uintptr_t vv = (Py_uintptr_t)v;
770 Py_uintptr_t ww = (Py_uintptr_t)w;
771 return (vv < ww) ? -1 : (vv > ww) ? 1 : 0;
772 }
Guido van Rossume797ec12001-01-17 15:24:28 +0000773
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000774 /* None is smaller than anything */
775 if (v == Py_None)
776 return -1;
777 if (w == Py_None)
778 return 1;
Guido van Rossum0871e932001-01-22 19:28:09 +0000779
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000780 /* different type: compare type names; numbers are smaller */
781 if (PyNumber_Check(v))
782 vname = "";
783 else
784 vname = v->ob_type->tp_name;
785 if (PyNumber_Check(w))
786 wname = "";
787 else
788 wname = w->ob_type->tp_name;
789 c = strcmp(vname, wname);
790 if (c < 0)
791 return -1;
792 if (c > 0)
793 return 1;
794 /* Same type name, or (more likely) incomparable numeric types */
795 return ((Py_uintptr_t)(v->ob_type) < (
796 Py_uintptr_t)(w->ob_type)) ? -1 : 1;
Guido van Rossume797ec12001-01-17 15:24:28 +0000797}
798
Tim Peters6d60b2e2001-05-07 20:53:51 +0000799/* Do a 3-way comparison, by hook or by crook. Return:
Guido van Rossuma4073002002-05-31 20:03:54 +0000800 -2 for an exception (but see below);
Tim Petersc99213f2001-11-04 05:57:16 +0000801 -1 if v < w;
Tim Peters6d60b2e2001-05-07 20:53:51 +0000802 0 if v == w;
Tim Petersc99213f2001-11-04 05:57:16 +0000803 1 if v > w;
Guido van Rossuma4073002002-05-31 20:03:54 +0000804 BUT: if the object implements a tp_compare function, it returns
Martin v. Löwis0163d6d2001-06-09 07:34:05 +0000805 whatever this function returns (whether with an exception or not).
Tim Peters6d60b2e2001-05-07 20:53:51 +0000806*/
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +0000807static int
Fred Drake100814d2000-07-09 15:48:49 +0000808do_cmp(PyObject *v, PyObject *w)
Guido van Rossum20566841995-01-12 11:26:10 +0000809{
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000810 int c;
811 cmpfunc f;
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +0000812
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000813 if (v->ob_type == w->ob_type
814 && (f = v->ob_type->tp_compare) != NULL) {
815 c = (*f)(v, w);
816 if (PyInstance_Check(v)) {
817 /* Instance tp_compare has a different signature.
818 But if it returns undefined we fall through. */
819 if (c != 2)
820 return c;
821 /* Else fall through to try_rich_to_3way_compare() */
822 }
823 else
824 return adjust_tp_compare(c);
825 }
826 /* We only get here if one of the following is true:
827 a) v and w have different types
828 b) v and w have the same type, which doesn't have tp_compare
829 c) v and w are instances, and either __cmp__ is not defined or
830 __cmp__ returns NotImplemented
831 */
832 c = try_rich_to_3way_compare(v, w);
833 if (c < 2)
834 return c;
835 c = try_3way_compare(v, w);
836 if (c < 2)
837 return c;
838 return default_3way_compare(v, w);
Guido van Rossum20566841995-01-12 11:26:10 +0000839}
840
Tim Petersc99213f2001-11-04 05:57:16 +0000841/* Compare v to w. Return
842 -1 if v < w or exception (PyErr_Occurred() true in latter case).
843 0 if v == w.
844 1 if v > w.
845 XXX The docs (C API manual) say the return value is undefined in case
846 XXX of error.
847*/
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000848int
Fred Drake100814d2000-07-09 15:48:49 +0000849PyObject_Compare(PyObject *v, PyObject *w)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000850{
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000851 int result;
Jeremy Hylton4a3dd2d2000-04-14 19:13:24 +0000852
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000853 if (v == NULL || w == NULL) {
854 PyErr_BadInternalCall();
855 return -1;
856 }
857 if (v == w)
858 return 0;
859 if (Py_EnterRecursiveCall(" in cmp"))
860 return -1;
861 result = do_cmp(v, w);
862 Py_LeaveRecursiveCall();
863 return result < 0 ? -1 : result;
Guido van Rossume797ec12001-01-17 15:24:28 +0000864}
865
Tim Petersc99213f2001-11-04 05:57:16 +0000866/* Return (new reference to) Py_True or Py_False. */
Guido van Rossume797ec12001-01-17 15:24:28 +0000867static PyObject *
Martin v. Löwis0163d6d2001-06-09 07:34:05 +0000868convert_3way_to_object(int op, int c)
Guido van Rossume797ec12001-01-17 15:24:28 +0000869{
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000870 PyObject *result;
871 switch (op) {
872 case Py_LT: c = c < 0; break;
873 case Py_LE: c = c <= 0; break;
874 case Py_EQ: c = c == 0; break;
875 case Py_NE: c = c != 0; break;
876 case Py_GT: c = c > 0; break;
877 case Py_GE: c = c >= 0; break;
878 }
879 result = c ? Py_True : Py_False;
880 Py_INCREF(result);
881 return result;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000882}
Tim Peters803526b2002-07-07 05:13:56 +0000883
Tim Petersc99213f2001-11-04 05:57:16 +0000884/* We want a rich comparison but don't have one. Try a 3-way cmp instead.
885 Return
886 NULL if error
887 Py_True if v op w
888 Py_False if not (v op w)
889*/
Martin v. Löwis0163d6d2001-06-09 07:34:05 +0000890static PyObject *
891try_3way_to_rich_compare(PyObject *v, PyObject *w, int op)
892{
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000893 int c;
Martin v. Löwis0163d6d2001-06-09 07:34:05 +0000894
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000895 c = try_3way_compare(v, w);
896 if (c >= 2) {
Steven Bethardae42f332008-03-18 17:26:10 +0000897
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000898 /* Py3K warning if types are not equal and comparison isn't == or != */
899 if (Py_Py3kWarningFlag &&
900 v->ob_type != w->ob_type && op != Py_EQ && op != Py_NE &&
901 PyErr_WarnEx(PyExc_DeprecationWarning,
902 "comparing unequal types not supported "
903 "in 3.x", 1) < 0) {
904 return NULL;
905 }
Steven Bethardae42f332008-03-18 17:26:10 +0000906
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000907 c = default_3way_compare(v, w);
908 }
909 if (c <= -2)
910 return NULL;
911 return convert_3way_to_object(op, c);
Martin v. Löwis0163d6d2001-06-09 07:34:05 +0000912}
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000913
Tim Petersc99213f2001-11-04 05:57:16 +0000914/* Do rich comparison on v and w. Return
915 NULL if error
916 Else a new reference to an object other than Py_NotImplemented, usually(?):
917 Py_True if v op w
918 Py_False if not (v op w)
919*/
Neil Schemenauerd38855c2001-01-21 16:25:18 +0000920static PyObject *
Guido van Rossume797ec12001-01-17 15:24:28 +0000921do_richcmp(PyObject *v, PyObject *w, int op)
922{
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000923 PyObject *res;
Guido van Rossume797ec12001-01-17 15:24:28 +0000924
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000925 res = try_rich_compare(v, w, op);
926 if (res != Py_NotImplemented)
927 return res;
928 Py_DECREF(res);
Guido van Rossume797ec12001-01-17 15:24:28 +0000929
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000930 return try_3way_to_rich_compare(v, w, op);
Guido van Rossume797ec12001-01-17 15:24:28 +0000931}
932
Tim Petersc99213f2001-11-04 05:57:16 +0000933/* Return:
934 NULL for exception;
Tim Petersc99213f2001-11-04 05:57:16 +0000935 some object not equal to NotImplemented if it is implemented
936 (this latter object may not be a Boolean).
937*/
Guido van Rossume797ec12001-01-17 15:24:28 +0000938PyObject *
939PyObject_RichCompare(PyObject *v, PyObject *w, int op)
940{
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000941 PyObject *res;
Guido van Rossume797ec12001-01-17 15:24:28 +0000942
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000943 assert(Py_LT <= op && op <= Py_GE);
944 if (Py_EnterRecursiveCall(" in cmp"))
945 return NULL;
Guido van Rossume797ec12001-01-17 15:24:28 +0000946
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000947 /* If the types are equal, and not old-style instances, try to
948 get out cheap (don't bother with coercions etc.). */
949 if (v->ob_type == w->ob_type && !PyInstance_Check(v)) {
950 cmpfunc fcmp;
951 richcmpfunc frich = RICHCOMPARE(v->ob_type);
952 /* If the type has richcmp, try it first. try_rich_compare
953 tries it two-sided, which is not needed since we've a
954 single type only. */
955 if (frich != NULL) {
956 res = (*frich)(v, w, op);
957 if (res != Py_NotImplemented)
958 goto Done;
959 Py_DECREF(res);
960 }
961 /* No richcmp, or this particular richmp not implemented.
962 Try 3-way cmp. */
963 fcmp = v->ob_type->tp_compare;
964 if (fcmp != NULL) {
965 int c = (*fcmp)(v, w);
966 c = adjust_tp_compare(c);
967 if (c == -2) {
968 res = NULL;
969 goto Done;
970 }
971 res = convert_3way_to_object(op, c);
972 goto Done;
973 }
974 }
Tim Peters67754e92001-11-04 07:29:31 +0000975
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000976 /* Fast path not taken, or couldn't deliver a useful result. */
977 res = do_richcmp(v, w, op);
Tim Peters67754e92001-11-04 07:29:31 +0000978Done:
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000979 Py_LeaveRecursiveCall();
980 return res;
Guido van Rossume797ec12001-01-17 15:24:28 +0000981}
982
Tim Petersde9725f2001-05-05 10:06:17 +0000983/* Return -1 if error; 1 if v op w; 0 if not (v op w). */
Guido van Rossume797ec12001-01-17 15:24:28 +0000984int
985PyObject_RichCompareBool(PyObject *v, PyObject *w, int op)
986{
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000987 PyObject *res;
988 int ok;
Guido van Rossume797ec12001-01-17 15:24:28 +0000989
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000990 /* Quick result when objects are the same.
991 Guarantees that identity implies equality. */
992 if (v == w) {
993 if (op == Py_EQ)
994 return 1;
995 else if (op == Py_NE)
996 return 0;
997 }
Raymond Hettinger93d44812004-03-21 17:01:44 +0000998
Antoine Pitrouc83ea132010-05-09 14:46:46 +0000999 res = PyObject_RichCompare(v, w, op);
1000 if (res == NULL)
1001 return -1;
1002 if (PyBool_Check(res))
1003 ok = (res == Py_True);
1004 else
1005 ok = PyObject_IsTrue(res);
1006 Py_DECREF(res);
1007 return ok;
Guido van Rossume797ec12001-01-17 15:24:28 +00001008}
Fred Drake13634cf2000-06-29 19:17:04 +00001009
1010/* Set of hash utility functions to help maintaining the invariant that
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001011 if a==b then hash(a)==hash(b)
Fred Drake13634cf2000-06-29 19:17:04 +00001012
1013 All the utility functions (_Py_Hash*()) return "-1" to signify an error.
1014*/
1015
1016long
Fred Drake100814d2000-07-09 15:48:49 +00001017_Py_HashDouble(double v)
Fred Drake13634cf2000-06-29 19:17:04 +00001018{
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001019 double intpart, fractpart;
1020 int expo;
1021 long hipart;
1022 long x; /* the final hash value */
1023 /* This is designed so that Python numbers of different types
1024 * that compare equal hash to the same value; otherwise comparisons
1025 * of mapping keys will turn out weird.
1026 */
Tim Peters39dce292000-08-15 03:34:48 +00001027
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001028 if (!Py_IS_FINITE(v)) {
1029 if (Py_IS_INFINITY(v))
1030 return v < 0 ? -271828 : 314159;
1031 else
1032 return 0;
1033 }
1034 fractpart = modf(v, &intpart);
1035 if (fractpart == 0.0) {
1036 /* This must return the same hash as an equal int or long. */
1037 if (intpart > LONG_MAX/2 || -intpart > LONG_MAX/2) {
1038 /* Convert to long and use its hash. */
1039 PyObject *plong; /* converted to Python long */
1040 plong = PyLong_FromDouble(v);
1041 if (plong == NULL)
1042 return -1;
1043 x = PyObject_Hash(plong);
1044 Py_DECREF(plong);
1045 return x;
1046 }
1047 /* Fits in a C long == a Python int, so is its own hash. */
1048 x = (long)intpart;
1049 if (x == -1)
1050 x = -2;
1051 return x;
1052 }
1053 /* The fractional part is non-zero, so we don't have to worry about
1054 * making this match the hash of some other type.
1055 * Use frexp to get at the bits in the double.
1056 * Since the VAX D double format has 56 mantissa bits, which is the
1057 * most of any double format in use, each of these parts may have as
1058 * many as (but no more than) 56 significant bits.
1059 * So, assuming sizeof(long) >= 4, each part can be broken into two
1060 * longs; frexp and multiplication are used to do that.
1061 * Also, since the Cray double format has 15 exponent bits, which is
1062 * the most of any double format in use, shifting the exponent field
1063 * left by 15 won't overflow a long (again assuming sizeof(long) >= 4).
1064 */
1065 v = frexp(v, &expo);
1066 v *= 2147483648.0; /* 2**31 */
1067 hipart = (long)v; /* take the top 32 bits */
1068 v = (v - (double)hipart) * 2147483648.0; /* get the next 32 bits */
1069 x = hipart + (long)v + (expo << 15);
1070 if (x == -1)
1071 x = -2;
1072 return x;
Fred Drake13634cf2000-06-29 19:17:04 +00001073}
1074
1075long
Fred Drake100814d2000-07-09 15:48:49 +00001076_Py_HashPointer(void *p)
Fred Drake13634cf2000-06-29 19:17:04 +00001077{
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001078 long x;
1079 size_t y = (size_t)p;
1080 /* bottom 3 or 4 bits are likely to be 0; rotate y by 4 to avoid
1081 excessive hash collisions for dicts and sets */
1082 y = (y >> 4) | (y << (8 * SIZEOF_VOID_P - 4));
1083 x = (long)y;
1084 if (x == -1)
1085 x = -2;
1086 return x;
Fred Drake13634cf2000-06-29 19:17:04 +00001087}
1088
Nick Coghlan53663a62008-07-15 14:27:37 +00001089long
1090PyObject_HashNotImplemented(PyObject *self)
1091{
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001092 PyErr_Format(PyExc_TypeError, "unhashable type: '%.200s'",
1093 self->ob_type->tp_name);
1094 return -1;
Nick Coghlan53663a62008-07-15 14:27:37 +00001095}
Fred Drake13634cf2000-06-29 19:17:04 +00001096
Barry Warsaw1e13eb02012-02-20 20:42:21 -05001097_Py_HashSecret_t _Py_HashSecret;
1098
Guido van Rossum9bfef441993-03-29 10:43:31 +00001099long
Fred Drake100814d2000-07-09 15:48:49 +00001100PyObject_Hash(PyObject *v)
Guido van Rossum9bfef441993-03-29 10:43:31 +00001101{
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001102 PyTypeObject *tp = v->ob_type;
1103 if (tp->tp_hash != NULL)
1104 return (*tp->tp_hash)(v);
1105 /* To keep to the general practice that inheriting
1106 * solely from object in C code should work without
1107 * an explicit call to PyType_Ready, we implicitly call
1108 * PyType_Ready here and then check the tp_hash slot again
1109 */
1110 if (tp->tp_dict == NULL) {
1111 if (PyType_Ready(tp) < 0)
1112 return -1;
1113 if (tp->tp_hash != NULL)
1114 return (*tp->tp_hash)(v);
1115 }
1116 if (tp->tp_compare == NULL && RICHCOMPARE(tp) == NULL) {
1117 return _Py_HashPointer(v); /* Use address as hash value */
1118 }
1119 /* If there's a cmp but no hash defined, the object can't be hashed */
1120 return PyObject_HashNotImplemented(v);
Guido van Rossum9bfef441993-03-29 10:43:31 +00001121}
1122
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001123PyObject *
Jeremy Hyltonaf68c872005-12-10 18:50:16 +00001124PyObject_GetAttrString(PyObject *v, const char *name)
Guido van Rossum3f5da241990-12-20 15:06:42 +00001125{
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001126 PyObject *w, *res;
Guido van Rossumd8eb1b31996-08-09 20:52:03 +00001127
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001128 if (Py_TYPE(v)->tp_getattr != NULL)
1129 return (*Py_TYPE(v)->tp_getattr)(v, (char*)name);
1130 w = PyString_InternFromString(name);
1131 if (w == NULL)
1132 return NULL;
1133 res = PyObject_GetAttr(v, w);
1134 Py_XDECREF(w);
1135 return res;
Guido van Rossum3f5da241990-12-20 15:06:42 +00001136}
1137
1138int
Jeremy Hyltonaf68c872005-12-10 18:50:16 +00001139PyObject_HasAttrString(PyObject *v, const char *name)
Guido van Rossumed18fdc1993-07-11 19:55:34 +00001140{
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001141 PyObject *res = PyObject_GetAttrString(v, name);
1142 if (res != NULL) {
1143 Py_DECREF(res);
1144 return 1;
1145 }
1146 PyErr_Clear();
1147 return 0;
Guido van Rossumed18fdc1993-07-11 19:55:34 +00001148}
1149
1150int
Jeremy Hyltonaf68c872005-12-10 18:50:16 +00001151PyObject_SetAttrString(PyObject *v, const char *name, PyObject *w)
Guido van Rossum3f5da241990-12-20 15:06:42 +00001152{
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001153 PyObject *s;
1154 int res;
Guido van Rossumd8eb1b31996-08-09 20:52:03 +00001155
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001156 if (Py_TYPE(v)->tp_setattr != NULL)
1157 return (*Py_TYPE(v)->tp_setattr)(v, (char*)name, w);
1158 s = PyString_InternFromString(name);
1159 if (s == NULL)
1160 return -1;
1161 res = PyObject_SetAttr(v, s, w);
1162 Py_XDECREF(s);
1163 return res;
Guido van Rossum3f5da241990-12-20 15:06:42 +00001164}
1165
Guido van Rossum98ff96a1997-05-20 18:34:44 +00001166PyObject *
Fred Drake100814d2000-07-09 15:48:49 +00001167PyObject_GetAttr(PyObject *v, PyObject *name)
Guido van Rossum98ff96a1997-05-20 18:34:44 +00001168{
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001169 PyTypeObject *tp = Py_TYPE(v);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001170
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001171 if (!PyString_Check(name)) {
Martin v. Löwis0c160a02002-03-15 13:40:30 +00001172#ifdef Py_USING_UNICODE
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001173 /* The Unicode to string conversion is done here because the
1174 existing tp_getattro slots expect a string object as name
1175 and we wouldn't want to break those. */
1176 if (PyUnicode_Check(name)) {
1177 name = _PyUnicode_AsDefaultEncodedString(name, NULL);
1178 if (name == NULL)
1179 return NULL;
1180 }
1181 else
Martin v. Löwis0c160a02002-03-15 13:40:30 +00001182#endif
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001183 {
1184 PyErr_Format(PyExc_TypeError,
1185 "attribute name must be string, not '%.200s'",
1186 Py_TYPE(name)->tp_name);
1187 return NULL;
1188 }
1189 }
1190 if (tp->tp_getattro != NULL)
1191 return (*tp->tp_getattro)(v, name);
1192 if (tp->tp_getattr != NULL)
1193 return (*tp->tp_getattr)(v, PyString_AS_STRING(name));
1194 PyErr_Format(PyExc_AttributeError,
1195 "'%.50s' object has no attribute '%.400s'",
1196 tp->tp_name, PyString_AS_STRING(name));
1197 return NULL;
Guido van Rossum98ff96a1997-05-20 18:34:44 +00001198}
1199
1200int
Fred Drake100814d2000-07-09 15:48:49 +00001201PyObject_HasAttr(PyObject *v, PyObject *name)
Guido van Rossum98ff96a1997-05-20 18:34:44 +00001202{
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001203 PyObject *res = PyObject_GetAttr(v, name);
1204 if (res != NULL) {
1205 Py_DECREF(res);
1206 return 1;
1207 }
1208 PyErr_Clear();
1209 return 0;
Guido van Rossum98ff96a1997-05-20 18:34:44 +00001210}
1211
1212int
Fred Drake100814d2000-07-09 15:48:49 +00001213PyObject_SetAttr(PyObject *v, PyObject *name, PyObject *value)
Guido van Rossum98ff96a1997-05-20 18:34:44 +00001214{
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001215 PyTypeObject *tp = Py_TYPE(v);
1216 int err;
Marc-André Lemburge44e5072000-09-18 16:20:57 +00001217
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001218 if (!PyString_Check(name)){
Martin v. Löwis0c160a02002-03-15 13:40:30 +00001219#ifdef Py_USING_UNICODE
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001220 /* The Unicode to string conversion is done here because the
1221 existing tp_setattro slots expect a string object as name
1222 and we wouldn't want to break those. */
1223 if (PyUnicode_Check(name)) {
1224 name = PyUnicode_AsEncodedString(name, NULL, NULL);
1225 if (name == NULL)
1226 return -1;
1227 }
1228 else
Martin v. Löwis0c160a02002-03-15 13:40:30 +00001229#endif
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001230 {
1231 PyErr_Format(PyExc_TypeError,
1232 "attribute name must be string, not '%.200s'",
1233 Py_TYPE(name)->tp_name);
1234 return -1;
1235 }
1236 }
1237 else
1238 Py_INCREF(name);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001239
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001240 PyString_InternInPlace(&name);
1241 if (tp->tp_setattro != NULL) {
1242 err = (*tp->tp_setattro)(v, name, value);
1243 Py_DECREF(name);
1244 return err;
1245 }
1246 if (tp->tp_setattr != NULL) {
1247 err = (*tp->tp_setattr)(v, PyString_AS_STRING(name), value);
1248 Py_DECREF(name);
1249 return err;
1250 }
1251 Py_DECREF(name);
1252 if (tp->tp_getattr == NULL && tp->tp_getattro == NULL)
1253 PyErr_Format(PyExc_TypeError,
1254 "'%.100s' object has no attributes "
1255 "(%s .%.100s)",
1256 tp->tp_name,
1257 value==NULL ? "del" : "assign to",
1258 PyString_AS_STRING(name));
1259 else
1260 PyErr_Format(PyExc_TypeError,
1261 "'%.100s' object has only read-only attributes "
1262 "(%s .%.100s)",
1263 tp->tp_name,
1264 value==NULL ? "del" : "assign to",
1265 PyString_AS_STRING(name));
1266 return -1;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001267}
1268
1269/* Helper to get a pointer to an object's __dict__ slot, if any */
1270
1271PyObject **
1272_PyObject_GetDictPtr(PyObject *obj)
1273{
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001274 Py_ssize_t dictoffset;
1275 PyTypeObject *tp = Py_TYPE(obj);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001276
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001277 if (!(tp->tp_flags & Py_TPFLAGS_HAVE_CLASS))
1278 return NULL;
1279 dictoffset = tp->tp_dictoffset;
1280 if (dictoffset == 0)
1281 return NULL;
1282 if (dictoffset < 0) {
1283 Py_ssize_t tsize;
1284 size_t size;
Guido van Rossum2eb0b872002-03-01 22:24:49 +00001285
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001286 tsize = ((PyVarObject *)obj)->ob_size;
1287 if (tsize < 0)
1288 tsize = -tsize;
1289 size = _PyObject_VAR_SIZE(tp, tsize);
Guido van Rossum2eb0b872002-03-01 22:24:49 +00001290
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001291 dictoffset += (long)size;
1292 assert(dictoffset > 0);
1293 assert(dictoffset % SIZEOF_VOID_P == 0);
1294 }
1295 return (PyObject **) ((char *)obj + dictoffset);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001296}
1297
Tim Peters6d6c1a32001-08-02 04:15:00 +00001298PyObject *
Raymond Hettinger1da1dbf2003-03-17 19:46:11 +00001299PyObject_SelfIter(PyObject *obj)
Raymond Hettinger01538262003-03-17 08:24:35 +00001300{
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001301 Py_INCREF(obj);
1302 return obj;
Raymond Hettinger01538262003-03-17 08:24:35 +00001303}
1304
Amaury Forgeot d'Arca40d5732009-01-12 23:36:55 +00001305/* Helper used when the __next__ method is removed from a type:
1306 tp_iternext is never NULL and can be safely called without checking
1307 on every iteration.
1308 */
1309
1310PyObject *
1311_PyObject_NextNotImplemented(PyObject *self)
1312{
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001313 PyErr_Format(PyExc_TypeError,
1314 "'%.200s' object is not iterable",
1315 Py_TYPE(self)->tp_name);
1316 return NULL;
Amaury Forgeot d'Arca40d5732009-01-12 23:36:55 +00001317}
1318
Michael W. Hudson1593f502004-09-14 17:09:47 +00001319/* Generic GetAttr functions - put these in your tp_[gs]etattro slot */
1320
Raymond Hettinger01538262003-03-17 08:24:35 +00001321PyObject *
Antoine Pitroua4083502010-08-28 18:29:13 +00001322_PyObject_GenericGetAttrWithDict(PyObject *obj, PyObject *name, PyObject *dict)
Tim Peters6d6c1a32001-08-02 04:15:00 +00001323{
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001324 PyTypeObject *tp = Py_TYPE(obj);
1325 PyObject *descr = NULL;
1326 PyObject *res = NULL;
1327 descrgetfunc f;
1328 Py_ssize_t dictoffset;
1329 PyObject **dictptr;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001330
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001331 if (!PyString_Check(name)){
Martin v. Löwis0c160a02002-03-15 13:40:30 +00001332#ifdef Py_USING_UNICODE
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001333 /* The Unicode to string conversion is done here because the
1334 existing tp_setattro slots expect a string object as name
1335 and we wouldn't want to break those. */
1336 if (PyUnicode_Check(name)) {
1337 name = PyUnicode_AsEncodedString(name, NULL, NULL);
1338 if (name == NULL)
1339 return NULL;
1340 }
1341 else
Martin v. Löwis0c160a02002-03-15 13:40:30 +00001342#endif
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001343 {
1344 PyErr_Format(PyExc_TypeError,
1345 "attribute name must be string, not '%.200s'",
1346 Py_TYPE(name)->tp_name);
1347 return NULL;
1348 }
1349 }
1350 else
1351 Py_INCREF(name);
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001352
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001353 if (tp->tp_dict == NULL) {
1354 if (PyType_Ready(tp) < 0)
1355 goto done;
1356 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00001357
Amaury Forgeot d'Arce4c270c2008-01-14 00:29:41 +00001358#if 0 /* XXX this is not quite _PyType_Lookup anymore */
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001359 /* Inline _PyType_Lookup */
1360 {
1361 Py_ssize_t i, n;
1362 PyObject *mro, *base, *dict;
Guido van Rossum056fbf42002-08-19 19:22:50 +00001363
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001364 /* Look in tp_dict of types in MRO */
1365 mro = tp->tp_mro;
1366 assert(mro != NULL);
1367 assert(PyTuple_Check(mro));
1368 n = PyTuple_GET_SIZE(mro);
1369 for (i = 0; i < n; i++) {
1370 base = PyTuple_GET_ITEM(mro, i);
1371 if (PyClass_Check(base))
1372 dict = ((PyClassObject *)base)->cl_dict;
1373 else {
1374 assert(PyType_Check(base));
1375 dict = ((PyTypeObject *)base)->tp_dict;
1376 }
1377 assert(dict && PyDict_Check(dict));
1378 descr = PyDict_GetItem(dict, name);
1379 if (descr != NULL)
1380 break;
1381 }
1382 }
Amaury Forgeot d'Arce4c270c2008-01-14 00:29:41 +00001383#else
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001384 descr = _PyType_Lookup(tp, name);
Amaury Forgeot d'Arce4c270c2008-01-14 00:29:41 +00001385#endif
Guido van Rossum056fbf42002-08-19 19:22:50 +00001386
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001387 Py_XINCREF(descr);
Michael W. Hudsonb2c7de42003-08-15 13:07:47 +00001388
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001389 f = NULL;
1390 if (descr != NULL &&
1391 PyType_HasFeature(descr->ob_type, Py_TPFLAGS_HAVE_CLASS)) {
1392 f = descr->ob_type->tp_descr_get;
1393 if (f != NULL && PyDescr_IsData(descr)) {
1394 res = f(descr, obj, (PyObject *)obj->ob_type);
1395 Py_DECREF(descr);
1396 goto done;
1397 }
1398 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00001399
Antoine Pitroua4083502010-08-28 18:29:13 +00001400 if (dict == NULL) {
1401 /* Inline _PyObject_GetDictPtr */
1402 dictoffset = tp->tp_dictoffset;
1403 if (dictoffset != 0) {
1404 if (dictoffset < 0) {
1405 Py_ssize_t tsize;
1406 size_t size;
Guido van Rossumc66ff442002-08-19 16:50:48 +00001407
Antoine Pitroua4083502010-08-28 18:29:13 +00001408 tsize = ((PyVarObject *)obj)->ob_size;
1409 if (tsize < 0)
1410 tsize = -tsize;
1411 size = _PyObject_VAR_SIZE(tp, tsize);
Guido van Rossumc66ff442002-08-19 16:50:48 +00001412
Antoine Pitroua4083502010-08-28 18:29:13 +00001413 dictoffset += (long)size;
1414 assert(dictoffset > 0);
1415 assert(dictoffset % SIZEOF_VOID_P == 0);
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001416 }
Antoine Pitroua4083502010-08-28 18:29:13 +00001417 dictptr = (PyObject **) ((char *)obj + dictoffset);
1418 dict = *dictptr;
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001419 }
1420 }
Antoine Pitroua4083502010-08-28 18:29:13 +00001421 if (dict != NULL) {
1422 Py_INCREF(dict);
1423 res = PyDict_GetItem(dict, name);
1424 if (res != NULL) {
1425 Py_INCREF(res);
1426 Py_XDECREF(descr);
1427 Py_DECREF(dict);
1428 goto done;
1429 }
1430 Py_DECREF(dict);
1431 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00001432
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001433 if (f != NULL) {
1434 res = f(descr, obj, (PyObject *)Py_TYPE(obj));
1435 Py_DECREF(descr);
1436 goto done;
1437 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00001438
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001439 if (descr != NULL) {
1440 res = descr;
1441 /* descr was already increfed above */
1442 goto done;
1443 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00001444
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001445 PyErr_Format(PyExc_AttributeError,
1446 "'%.50s' object has no attribute '%.400s'",
1447 tp->tp_name, PyString_AS_STRING(name));
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001448 done:
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001449 Py_DECREF(name);
1450 return res;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001451}
1452
Antoine Pitroua4083502010-08-28 18:29:13 +00001453PyObject *
1454PyObject_GenericGetAttr(PyObject *obj, PyObject *name)
1455{
1456 return _PyObject_GenericGetAttrWithDict(obj, name, NULL);
1457}
1458
Tim Peters6d6c1a32001-08-02 04:15:00 +00001459int
Antoine Pitroua4083502010-08-28 18:29:13 +00001460_PyObject_GenericSetAttrWithDict(PyObject *obj, PyObject *name,
1461 PyObject *value, PyObject *dict)
Tim Peters6d6c1a32001-08-02 04:15:00 +00001462{
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001463 PyTypeObject *tp = Py_TYPE(obj);
1464 PyObject *descr;
1465 descrsetfunc f;
1466 PyObject **dictptr;
1467 int res = -1;
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001468
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001469 if (!PyString_Check(name)){
Martin v. Löwis0c160a02002-03-15 13:40:30 +00001470#ifdef Py_USING_UNICODE
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001471 /* The Unicode to string conversion is done here because the
1472 existing tp_setattro slots expect a string object as name
1473 and we wouldn't want to break those. */
1474 if (PyUnicode_Check(name)) {
1475 name = PyUnicode_AsEncodedString(name, NULL, NULL);
1476 if (name == NULL)
1477 return -1;
1478 }
1479 else
Martin v. Löwis0c160a02002-03-15 13:40:30 +00001480#endif
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001481 {
1482 PyErr_Format(PyExc_TypeError,
1483 "attribute name must be string, not '%.200s'",
1484 Py_TYPE(name)->tp_name);
1485 return -1;
1486 }
1487 }
1488 else
1489 Py_INCREF(name);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001490
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001491 if (tp->tp_dict == NULL) {
1492 if (PyType_Ready(tp) < 0)
1493 goto done;
1494 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00001495
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001496 descr = _PyType_Lookup(tp, name);
1497 f = NULL;
1498 if (descr != NULL &&
1499 PyType_HasFeature(descr->ob_type, Py_TPFLAGS_HAVE_CLASS)) {
1500 f = descr->ob_type->tp_descr_set;
1501 if (f != NULL && PyDescr_IsData(descr)) {
1502 res = f(descr, obj, value);
1503 goto done;
1504 }
1505 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00001506
Antoine Pitroua4083502010-08-28 18:29:13 +00001507 if (dict == NULL) {
1508 dictptr = _PyObject_GetDictPtr(obj);
1509 if (dictptr != NULL) {
1510 dict = *dictptr;
1511 if (dict == NULL && value != NULL) {
1512 dict = PyDict_New();
1513 if (dict == NULL)
1514 goto done;
1515 *dictptr = dict;
1516 }
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001517 }
Antoine Pitroua4083502010-08-28 18:29:13 +00001518 }
1519 if (dict != NULL) {
1520 Py_INCREF(dict);
1521 if (value == NULL)
1522 res = PyDict_DelItem(dict, name);
1523 else
1524 res = PyDict_SetItem(dict, name, value);
1525 if (res < 0 && PyErr_ExceptionMatches(PyExc_KeyError))
1526 PyErr_SetObject(PyExc_AttributeError, name);
1527 Py_DECREF(dict);
1528 goto done;
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001529 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00001530
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001531 if (f != NULL) {
1532 res = f(descr, obj, value);
1533 goto done;
1534 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00001535
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001536 if (descr == NULL) {
1537 PyErr_Format(PyExc_AttributeError,
1538 "'%.100s' object has no attribute '%.200s'",
1539 tp->tp_name, PyString_AS_STRING(name));
1540 goto done;
1541 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00001542
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001543 PyErr_Format(PyExc_AttributeError,
1544 "'%.50s' object attribute '%.400s' is read-only",
1545 tp->tp_name, PyString_AS_STRING(name));
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001546 done:
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001547 Py_DECREF(name);
1548 return res;
Guido van Rossum98ff96a1997-05-20 18:34:44 +00001549}
1550
Antoine Pitroua4083502010-08-28 18:29:13 +00001551int
1552PyObject_GenericSetAttr(PyObject *obj, PyObject *name, PyObject *value)
1553{
1554 return _PyObject_GenericSetAttrWithDict(obj, name, value, NULL);
1555}
1556
1557
Guido van Rossum6ac258d1993-05-12 08:24:20 +00001558/* Test a value used as condition, e.g., in a for or if statement.
1559 Return -1 if an error occurred */
1560
1561int
Fred Drake100814d2000-07-09 15:48:49 +00001562PyObject_IsTrue(PyObject *v)
Guido van Rossum6ac258d1993-05-12 08:24:20 +00001563{
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001564 Py_ssize_t res;
1565 if (v == Py_True)
1566 return 1;
1567 if (v == Py_False)
1568 return 0;
1569 if (v == Py_None)
1570 return 0;
1571 else if (v->ob_type->tp_as_number != NULL &&
1572 v->ob_type->tp_as_number->nb_nonzero != NULL)
1573 res = (*v->ob_type->tp_as_number->nb_nonzero)(v);
1574 else if (v->ob_type->tp_as_mapping != NULL &&
1575 v->ob_type->tp_as_mapping->mp_length != NULL)
1576 res = (*v->ob_type->tp_as_mapping->mp_length)(v);
1577 else if (v->ob_type->tp_as_sequence != NULL &&
1578 v->ob_type->tp_as_sequence->sq_length != NULL)
1579 res = (*v->ob_type->tp_as_sequence->sq_length)(v);
1580 else
1581 return 1;
1582 /* if it is negative, it should be either -1 or -2 */
1583 return (res > 0) ? 1 : Py_SAFE_DOWNCAST(res, Py_ssize_t, int);
Guido van Rossum6ac258d1993-05-12 08:24:20 +00001584}
1585
Tim Peters803526b2002-07-07 05:13:56 +00001586/* equivalent of 'not v'
Guido van Rossumc3d3f961998-04-09 17:53:59 +00001587 Return -1 if an error occurred */
1588
1589int
Fred Drake100814d2000-07-09 15:48:49 +00001590PyObject_Not(PyObject *v)
Guido van Rossumc3d3f961998-04-09 17:53:59 +00001591{
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001592 int res;
1593 res = PyObject_IsTrue(v);
1594 if (res < 0)
1595 return res;
1596 return res == 0;
Guido van Rossumc3d3f961998-04-09 17:53:59 +00001597}
1598
Guido van Rossum5524a591995-01-10 15:26:20 +00001599/* Coerce two numeric types to the "larger" one.
1600 Increment the reference count on each argument.
Guido van Rossume797ec12001-01-17 15:24:28 +00001601 Return value:
1602 -1 if an error occurred;
1603 0 if the coercion succeeded (and then the reference counts are increased);
1604 1 if no coercion is possible (and no error is raised).
Guido van Rossum5524a591995-01-10 15:26:20 +00001605*/
Guido van Rossum5524a591995-01-10 15:26:20 +00001606int
Fred Drake100814d2000-07-09 15:48:49 +00001607PyNumber_CoerceEx(PyObject **pv, PyObject **pw)
Guido van Rossum5524a591995-01-10 15:26:20 +00001608{
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001609 register PyObject *v = *pv;
1610 register PyObject *w = *pw;
1611 int res;
Guido van Rossum5524a591995-01-10 15:26:20 +00001612
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001613 /* Shortcut only for old-style types */
1614 if (v->ob_type == w->ob_type &&
1615 !PyType_HasFeature(v->ob_type, Py_TPFLAGS_CHECKTYPES))
1616 {
1617 Py_INCREF(v);
1618 Py_INCREF(w);
1619 return 0;
1620 }
1621 if (v->ob_type->tp_as_number && v->ob_type->tp_as_number->nb_coerce) {
1622 res = (*v->ob_type->tp_as_number->nb_coerce)(pv, pw);
1623 if (res <= 0)
1624 return res;
1625 }
1626 if (w->ob_type->tp_as_number && w->ob_type->tp_as_number->nb_coerce) {
1627 res = (*w->ob_type->tp_as_number->nb_coerce)(pw, pv);
1628 if (res <= 0)
1629 return res;
1630 }
1631 return 1;
Guido van Rossum242c6421997-11-19 16:03:17 +00001632}
1633
Guido van Rossume797ec12001-01-17 15:24:28 +00001634/* Coerce two numeric types to the "larger" one.
1635 Increment the reference count on each argument.
1636 Return -1 and raise an exception if no coercion is possible
1637 (and then no reference count is incremented).
1638*/
Guido van Rossum242c6421997-11-19 16:03:17 +00001639int
Fred Drake100814d2000-07-09 15:48:49 +00001640PyNumber_Coerce(PyObject **pv, PyObject **pw)
Guido van Rossum242c6421997-11-19 16:03:17 +00001641{
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001642 int err = PyNumber_CoerceEx(pv, pw);
1643 if (err <= 0)
1644 return err;
1645 PyErr_SetString(PyExc_TypeError, "number coercion failed");
1646 return -1;
Guido van Rossum5524a591995-01-10 15:26:20 +00001647}
1648
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001649
Guido van Rossum49b11fe1995-01-26 00:38:22 +00001650/* Test whether an object can be called */
1651
1652int
Fred Drake100814d2000-07-09 15:48:49 +00001653PyCallable_Check(PyObject *x)
Guido van Rossum49b11fe1995-01-26 00:38:22 +00001654{
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001655 if (x == NULL)
1656 return 0;
1657 if (PyInstance_Check(x)) {
1658 PyObject *call = PyObject_GetAttrString(x, "__call__");
1659 if (call == NULL) {
1660 PyErr_Clear();
1661 return 0;
1662 }
1663 /* Could test recursively but don't, for fear of endless
1664 recursion if some joker sets self.__call__ = self */
1665 Py_DECREF(call);
1666 return 1;
1667 }
1668 else {
1669 return x->ob_type->tp_call != NULL;
1670 }
Guido van Rossum49b11fe1995-01-26 00:38:22 +00001671}
1672
Georg Brandl871f1bc2007-03-12 13:17:36 +00001673/* ------------------------- PyObject_Dir() helpers ------------------------- */
1674
Tim Peters7eea37e2001-09-04 22:08:56 +00001675/* Helper for PyObject_Dir.
1676 Merge the __dict__ of aclass into dict, and recursively also all
1677 the __dict__s of aclass's base classes. The order of merging isn't
1678 defined, as it's expected that only the final set of dict keys is
1679 interesting.
1680 Return 0 on success, -1 on error.
1681*/
1682
1683static int
1684merge_class_dict(PyObject* dict, PyObject* aclass)
1685{
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001686 PyObject *classdict;
1687 PyObject *bases;
Tim Peters7eea37e2001-09-04 22:08:56 +00001688
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001689 assert(PyDict_Check(dict));
1690 assert(aclass);
Tim Peters7eea37e2001-09-04 22:08:56 +00001691
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001692 /* Merge in the type's dict (if any). */
1693 classdict = PyObject_GetAttrString(aclass, "__dict__");
1694 if (classdict == NULL)
1695 PyErr_Clear();
1696 else {
1697 int status = PyDict_Update(dict, classdict);
1698 Py_DECREF(classdict);
1699 if (status < 0)
1700 return -1;
1701 }
Tim Peters7eea37e2001-09-04 22:08:56 +00001702
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001703 /* Recursively merge in the base types' (if any) dicts. */
1704 bases = PyObject_GetAttrString(aclass, "__bases__");
1705 if (bases == NULL)
1706 PyErr_Clear();
1707 else {
1708 /* We have no guarantee that bases is a real tuple */
1709 Py_ssize_t i, n;
1710 n = PySequence_Size(bases); /* This better be right */
1711 if (n < 0)
1712 PyErr_Clear();
1713 else {
1714 for (i = 0; i < n; i++) {
1715 int status;
1716 PyObject *base = PySequence_GetItem(bases, i);
1717 if (base == NULL) {
1718 Py_DECREF(bases);
1719 return -1;
1720 }
1721 status = merge_class_dict(dict, base);
1722 Py_DECREF(base);
1723 if (status < 0) {
1724 Py_DECREF(bases);
1725 return -1;
1726 }
1727 }
1728 }
1729 Py_DECREF(bases);
1730 }
1731 return 0;
Tim Peters7eea37e2001-09-04 22:08:56 +00001732}
1733
Tim Peters305b5852001-09-17 02:38:46 +00001734/* Helper for PyObject_Dir.
1735 If obj has an attr named attrname that's a list, merge its string
1736 elements into keys of dict.
1737 Return 0 on success, -1 on error. Errors due to not finding the attr,
1738 or the attr not being a list, are suppressed.
1739*/
1740
1741static int
Jeremy Hyltonaf68c872005-12-10 18:50:16 +00001742merge_list_attr(PyObject* dict, PyObject* obj, const char *attrname)
Tim Peters305b5852001-09-17 02:38:46 +00001743{
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001744 PyObject *list;
1745 int result = 0;
Tim Peters305b5852001-09-17 02:38:46 +00001746
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001747 assert(PyDict_Check(dict));
1748 assert(obj);
1749 assert(attrname);
Tim Peters305b5852001-09-17 02:38:46 +00001750
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001751 list = PyObject_GetAttrString(obj, attrname);
1752 if (list == NULL)
1753 PyErr_Clear();
Tim Peters305b5852001-09-17 02:38:46 +00001754
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001755 else if (PyList_Check(list)) {
1756 int i;
1757 for (i = 0; i < PyList_GET_SIZE(list); ++i) {
1758 PyObject *item = PyList_GET_ITEM(list, i);
1759 if (PyString_Check(item)) {
1760 result = PyDict_SetItem(dict, item, Py_None);
1761 if (result < 0)
1762 break;
1763 }
1764 }
1765 if (Py_Py3kWarningFlag &&
1766 (strcmp(attrname, "__members__") == 0 ||
1767 strcmp(attrname, "__methods__") == 0)) {
1768 if (PyErr_WarnEx(PyExc_DeprecationWarning,
1769 "__members__ and __methods__ not "
1770 "supported in 3.x", 1) < 0) {
1771 Py_XDECREF(list);
1772 return -1;
1773 }
1774 }
1775 }
Tim Peters305b5852001-09-17 02:38:46 +00001776
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001777 Py_XDECREF(list);
1778 return result;
Tim Peters305b5852001-09-17 02:38:46 +00001779}
1780
Georg Brandl871f1bc2007-03-12 13:17:36 +00001781/* Helper for PyObject_Dir without arguments: returns the local scope. */
1782static PyObject *
Jeremy Hylton26ca9252007-03-16 14:49:11 +00001783_dir_locals(void)
Tim Peters7eea37e2001-09-04 22:08:56 +00001784{
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001785 PyObject *names;
1786 PyObject *locals = PyEval_GetLocals();
Tim Peters7eea37e2001-09-04 22:08:56 +00001787
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001788 if (locals == NULL) {
1789 PyErr_SetString(PyExc_SystemError, "frame does not exist");
1790 return NULL;
1791 }
Tim Peters7eea37e2001-09-04 22:08:56 +00001792
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001793 names = PyMapping_Keys(locals);
1794 if (!names)
1795 return NULL;
1796 if (!PyList_Check(names)) {
1797 PyErr_Format(PyExc_TypeError,
1798 "dir(): expected keys() of locals to be a list, "
1799 "not '%.200s'", Py_TYPE(names)->tp_name);
1800 Py_DECREF(names);
1801 return NULL;
1802 }
1803 /* the locals don't need to be DECREF'd */
1804 return names;
Georg Brandl871f1bc2007-03-12 13:17:36 +00001805}
Tim Peters7eea37e2001-09-04 22:08:56 +00001806
Georg Brandl871f1bc2007-03-12 13:17:36 +00001807/* Helper for PyObject_Dir of type objects: returns __dict__ and __bases__.
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001808 We deliberately don't suck up its __class__, as methods belonging to the
1809 metaclass would probably be more confusing than helpful.
Georg Brandl871f1bc2007-03-12 13:17:36 +00001810*/
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001811static PyObject *
Georg Brandl871f1bc2007-03-12 13:17:36 +00001812_specialized_dir_type(PyObject *obj)
1813{
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001814 PyObject *result = NULL;
1815 PyObject *dict = PyDict_New();
Georg Brandl871f1bc2007-03-12 13:17:36 +00001816
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001817 if (dict != NULL && merge_class_dict(dict, obj) == 0)
1818 result = PyDict_Keys(dict);
Georg Brandl871f1bc2007-03-12 13:17:36 +00001819
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001820 Py_XDECREF(dict);
1821 return result;
Georg Brandl871f1bc2007-03-12 13:17:36 +00001822}
1823
1824/* Helper for PyObject_Dir of module objects: returns the module's __dict__. */
1825static PyObject *
1826_specialized_dir_module(PyObject *obj)
1827{
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001828 PyObject *result = NULL;
1829 PyObject *dict = PyObject_GetAttrString(obj, "__dict__");
Georg Brandl871f1bc2007-03-12 13:17:36 +00001830
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001831 if (dict != NULL) {
1832 if (PyDict_Check(dict))
1833 result = PyDict_Keys(dict);
1834 else {
1835 char *name = PyModule_GetName(obj);
1836 if (name)
1837 PyErr_Format(PyExc_TypeError,
1838 "%.200s.__dict__ is not a dictionary",
1839 name);
1840 }
1841 }
Georg Brandl871f1bc2007-03-12 13:17:36 +00001842
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001843 Py_XDECREF(dict);
1844 return result;
Georg Brandl871f1bc2007-03-12 13:17:36 +00001845}
1846
1847/* Helper for PyObject_Dir of generic objects: returns __dict__, __class__,
1848 and recursively up the __class__.__bases__ chain.
1849*/
1850static PyObject *
1851_generic_dir(PyObject *obj)
1852{
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001853 PyObject *result = NULL;
1854 PyObject *dict = NULL;
1855 PyObject *itsclass = NULL;
Georg Brandl871f1bc2007-03-12 13:17:36 +00001856
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001857 /* Get __dict__ (which may or may not be a real dict...) */
1858 dict = PyObject_GetAttrString(obj, "__dict__");
1859 if (dict == NULL) {
1860 PyErr_Clear();
1861 dict = PyDict_New();
1862 }
1863 else if (!PyDict_Check(dict)) {
1864 Py_DECREF(dict);
1865 dict = PyDict_New();
1866 }
1867 else {
1868 /* Copy __dict__ to avoid mutating it. */
1869 PyObject *temp = PyDict_Copy(dict);
1870 Py_DECREF(dict);
1871 dict = temp;
1872 }
Georg Brandl871f1bc2007-03-12 13:17:36 +00001873
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001874 if (dict == NULL)
1875 goto error;
Georg Brandl871f1bc2007-03-12 13:17:36 +00001876
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001877 /* Merge in __members__ and __methods__ (if any).
1878 * This is removed in Python 3000. */
1879 if (merge_list_attr(dict, obj, "__members__") < 0)
1880 goto error;
1881 if (merge_list_attr(dict, obj, "__methods__") < 0)
1882 goto error;
Georg Brandl871f1bc2007-03-12 13:17:36 +00001883
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001884 /* Merge in attrs reachable from its class. */
1885 itsclass = PyObject_GetAttrString(obj, "__class__");
1886 if (itsclass == NULL)
1887 /* XXX(tomer): Perhaps fall back to obj->ob_type if no
1888 __class__ exists? */
1889 PyErr_Clear();
1890 else {
1891 if (merge_class_dict(dict, itsclass) != 0)
1892 goto error;
1893 }
1894
1895 result = PyDict_Keys(dict);
1896 /* fall through */
Georg Brandl871f1bc2007-03-12 13:17:36 +00001897error:
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001898 Py_XDECREF(itsclass);
1899 Py_XDECREF(dict);
1900 return result;
Georg Brandl871f1bc2007-03-12 13:17:36 +00001901}
1902
1903/* Helper for PyObject_Dir: object introspection.
1904 This calls one of the above specialized versions if no __dir__ method
1905 exists. */
1906static PyObject *
1907_dir_object(PyObject *obj)
1908{
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001909 PyObject *result = NULL;
Benjamin Peterson8de87a62011-05-23 16:11:05 -05001910 static PyObject *dir_str = NULL;
Benjamin Petersonfd89af52011-05-23 17:11:21 -05001911 PyObject *dirfunc;
Georg Brandl871f1bc2007-03-12 13:17:36 +00001912
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001913 assert(obj);
Benjamin Petersonfd89af52011-05-23 17:11:21 -05001914 if (PyInstance_Check(obj)) {
1915 dirfunc = PyObject_GetAttrString(obj, "__dir__");
Benjamin Peterson7f5cd452011-05-23 18:17:55 -05001916 if (dirfunc == NULL) {
1917 if (PyErr_ExceptionMatches(PyExc_AttributeError))
1918 PyErr_Clear();
1919 else
1920 return NULL;
1921 }
Benjamin Petersonfd89af52011-05-23 17:11:21 -05001922 }
1923 else {
1924 dirfunc = _PyObject_LookupSpecial(obj, "__dir__", &dir_str);
Benjamin Peterson8de87a62011-05-23 16:11:05 -05001925 if (PyErr_Occurred())
1926 return NULL;
Benjamin Petersonfd89af52011-05-23 17:11:21 -05001927 }
1928 if (dirfunc == NULL) {
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001929 /* use default implementation */
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001930 if (PyModule_Check(obj))
1931 result = _specialized_dir_module(obj);
1932 else if (PyType_Check(obj) || PyClass_Check(obj))
1933 result = _specialized_dir_type(obj);
1934 else
1935 result = _generic_dir(obj);
1936 }
1937 else {
1938 /* use __dir__ */
Benjamin Peterson8de87a62011-05-23 16:11:05 -05001939 result = PyObject_CallFunctionObjArgs(dirfunc, NULL);
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001940 Py_DECREF(dirfunc);
1941 if (result == NULL)
1942 return NULL;
Georg Brandl871f1bc2007-03-12 13:17:36 +00001943
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001944 /* result must be a list */
1945 /* XXX(gbrandl): could also check if all items are strings */
1946 if (!PyList_Check(result)) {
1947 PyErr_Format(PyExc_TypeError,
1948 "__dir__() must return a list, not %.200s",
1949 Py_TYPE(result)->tp_name);
1950 Py_DECREF(result);
1951 result = NULL;
1952 }
1953 }
Georg Brandl871f1bc2007-03-12 13:17:36 +00001954
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001955 return result;
Georg Brandl871f1bc2007-03-12 13:17:36 +00001956}
1957
1958/* Implementation of dir() -- if obj is NULL, returns the names in the current
1959 (local) scope. Otherwise, performs introspection of the object: returns a
1960 sorted list of attribute names (supposedly) accessible from the object
1961*/
1962PyObject *
1963PyObject_Dir(PyObject *obj)
1964{
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001965 PyObject * result;
Georg Brandl871f1bc2007-03-12 13:17:36 +00001966
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001967 if (obj == NULL)
1968 /* no object -- introspect the locals */
1969 result = _dir_locals();
1970 else
1971 /* object -- introspect the object */
1972 result = _dir_object(obj);
Georg Brandl871f1bc2007-03-12 13:17:36 +00001973
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001974 assert(result == NULL || PyList_Check(result));
Georg Brandl871f1bc2007-03-12 13:17:36 +00001975
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001976 if (result != NULL && PyList_Sort(result) != 0) {
1977 /* sorting the list failed */
1978 Py_DECREF(result);
1979 result = NULL;
1980 }
1981
1982 return result;
Tim Peters7eea37e2001-09-04 22:08:56 +00001983}
Guido van Rossum49b11fe1995-01-26 00:38:22 +00001984
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001985/*
1986NoObject is usable as a non-NULL undefined value, used by the macro None.
1987There is (and should be!) no way to create other objects of this type,
Guido van Rossum3f5da241990-12-20 15:06:42 +00001988so there is exactly one (which is indestructible, by the way).
Guido van Rossumba21a492001-08-16 08:17:26 +00001989(XXX This type and the type of NotImplemented below should be unified.)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001990*/
1991
Guido van Rossum0c182a11992-03-27 17:26:13 +00001992/* ARGSUSED */
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001993static PyObject *
Fred Drake100814d2000-07-09 15:48:49 +00001994none_repr(PyObject *op)
Guido van Rossum3f5da241990-12-20 15:06:42 +00001995{
Antoine Pitrouc83ea132010-05-09 14:46:46 +00001996 return PyString_FromString("None");
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001997}
1998
Barry Warsaw9bf16442001-01-23 16:24:35 +00001999/* ARGUSED */
2000static void
Tim Peters803526b2002-07-07 05:13:56 +00002001none_dealloc(PyObject* ignore)
Barry Warsaw9bf16442001-01-23 16:24:35 +00002002{
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002003 /* This should never get called, but we also don't want to SEGV if
2004 * we accidentally decref None out of existence.
2005 */
2006 Py_FatalError("deallocating None");
Barry Warsaw9bf16442001-01-23 16:24:35 +00002007}
2008
2009
Guido van Rossumba21a492001-08-16 08:17:26 +00002010static PyTypeObject PyNone_Type = {
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002011 PyVarObject_HEAD_INIT(&PyType_Type, 0)
2012 "NoneType",
2013 0,
2014 0,
2015 none_dealloc, /*tp_dealloc*/ /*never called*/
2016 0, /*tp_print*/
2017 0, /*tp_getattr*/
2018 0, /*tp_setattr*/
2019 0, /*tp_compare*/
2020 none_repr, /*tp_repr*/
2021 0, /*tp_as_number*/
2022 0, /*tp_as_sequence*/
2023 0, /*tp_as_mapping*/
2024 (hashfunc)_Py_HashPointer, /*tp_hash */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002025};
2026
Guido van Rossumc0b618a1997-05-02 03:12:38 +00002027PyObject _Py_NoneStruct = {
Martin v. Löwis68192102007-07-21 06:55:02 +00002028 _PyObject_EXTRA_INIT
2029 1, &PyNone_Type
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002030};
2031
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +00002032/* NotImplemented is an object that can be used to signal that an
2033 operation is not implemented for the given type combination. */
2034
2035static PyObject *
2036NotImplemented_repr(PyObject *op)
2037{
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002038 return PyString_FromString("NotImplemented");
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +00002039}
2040
2041static PyTypeObject PyNotImplemented_Type = {
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002042 PyVarObject_HEAD_INIT(&PyType_Type, 0)
2043 "NotImplementedType",
2044 0,
2045 0,
2046 none_dealloc, /*tp_dealloc*/ /*never called*/
2047 0, /*tp_print*/
2048 0, /*tp_getattr*/
2049 0, /*tp_setattr*/
2050 0, /*tp_compare*/
2051 NotImplemented_repr, /*tp_repr*/
2052 0, /*tp_as_number*/
2053 0, /*tp_as_sequence*/
2054 0, /*tp_as_mapping*/
2055 0, /*tp_hash */
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +00002056};
2057
2058PyObject _Py_NotImplementedStruct = {
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002059 _PyObject_EXTRA_INIT
2060 1, &PyNotImplemented_Type
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +00002061};
2062
Guido van Rossumba21a492001-08-16 08:17:26 +00002063void
2064_Py_ReadyTypes(void)
2065{
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002066 if (PyType_Ready(&PyType_Type) < 0)
2067 Py_FatalError("Can't initialize type type");
Guido van Rossumba21a492001-08-16 08:17:26 +00002068
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002069 if (PyType_Ready(&_PyWeakref_RefType) < 0)
2070 Py_FatalError("Can't initialize weakref type");
Fred Drake0a4dd392004-07-02 18:57:45 +00002071
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002072 if (PyType_Ready(&_PyWeakref_CallableProxyType) < 0)
2073 Py_FatalError("Can't initialize callable weakref proxy type");
Benjamin Peterson308c6ba2009-04-19 02:32:42 +00002074
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002075 if (PyType_Ready(&_PyWeakref_ProxyType) < 0)
2076 Py_FatalError("Can't initialize weakref proxy type");
Benjamin Peterson308c6ba2009-04-19 02:32:42 +00002077
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002078 if (PyType_Ready(&PyBool_Type) < 0)
2079 Py_FatalError("Can't initialize bool type");
Guido van Rossum77f6a652002-04-03 22:41:51 +00002080
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002081 if (PyType_Ready(&PyString_Type) < 0)
2082 Py_FatalError("Can't initialize str type");
Guido van Rossumcacfc072002-05-24 19:01:59 +00002083
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002084 if (PyType_Ready(&PyByteArray_Type) < 0)
2085 Py_FatalError("Can't initialize bytearray type");
Christian Heimes1a6387e2008-03-26 12:49:49 +00002086
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002087 if (PyType_Ready(&PyList_Type) < 0)
2088 Py_FatalError("Can't initialize list type");
Guido van Rossumba21a492001-08-16 08:17:26 +00002089
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002090 if (PyType_Ready(&PyNone_Type) < 0)
2091 Py_FatalError("Can't initialize None type");
Guido van Rossumba21a492001-08-16 08:17:26 +00002092
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002093 if (PyType_Ready(&PyNotImplemented_Type) < 0)
2094 Py_FatalError("Can't initialize NotImplemented type");
Benjamin Petersond4d400c2009-04-18 20:12:47 +00002095
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002096 if (PyType_Ready(&PyTraceBack_Type) < 0)
2097 Py_FatalError("Can't initialize traceback type");
Benjamin Petersond4d400c2009-04-18 20:12:47 +00002098
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002099 if (PyType_Ready(&PySuper_Type) < 0)
2100 Py_FatalError("Can't initialize super type");
Benjamin Petersond4d400c2009-04-18 20:12:47 +00002101
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002102 if (PyType_Ready(&PyBaseObject_Type) < 0)
2103 Py_FatalError("Can't initialize object type");
Benjamin Petersond4d400c2009-04-18 20:12:47 +00002104
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002105 if (PyType_Ready(&PyRange_Type) < 0)
2106 Py_FatalError("Can't initialize xrange type");
Benjamin Petersond4d400c2009-04-18 20:12:47 +00002107
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002108 if (PyType_Ready(&PyDict_Type) < 0)
2109 Py_FatalError("Can't initialize dict type");
Benjamin Petersond4d400c2009-04-18 20:12:47 +00002110
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002111 if (PyType_Ready(&PySet_Type) < 0)
2112 Py_FatalError("Can't initialize set type");
Benjamin Petersond4d400c2009-04-18 20:12:47 +00002113
Martin v. Löwised11a5d2012-05-20 10:42:17 +02002114#ifdef Py_USING_UNICODE
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002115 if (PyType_Ready(&PyUnicode_Type) < 0)
2116 Py_FatalError("Can't initialize unicode type");
Martin v. Löwised11a5d2012-05-20 10:42:17 +02002117#endif
Benjamin Petersond4d400c2009-04-18 20:12:47 +00002118
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002119 if (PyType_Ready(&PySlice_Type) < 0)
2120 Py_FatalError("Can't initialize slice type");
Benjamin Petersond4d400c2009-04-18 20:12:47 +00002121
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002122 if (PyType_Ready(&PyStaticMethod_Type) < 0)
2123 Py_FatalError("Can't initialize static method type");
Benjamin Petersond4d400c2009-04-18 20:12:47 +00002124
Benjamin Peterson01c6e6f2009-04-18 22:15:26 +00002125#ifndef WITHOUT_COMPLEX
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002126 if (PyType_Ready(&PyComplex_Type) < 0)
2127 Py_FatalError("Can't initialize complex type");
Benjamin Peterson01c6e6f2009-04-18 22:15:26 +00002128#endif
Benjamin Petersond4d400c2009-04-18 20:12:47 +00002129
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002130 if (PyType_Ready(&PyFloat_Type) < 0)
2131 Py_FatalError("Can't initialize float type");
Benjamin Petersond4d400c2009-04-18 20:12:47 +00002132
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002133 if (PyType_Ready(&PyBuffer_Type) < 0)
2134 Py_FatalError("Can't initialize buffer type");
Benjamin Petersond4d400c2009-04-18 20:12:47 +00002135
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002136 if (PyType_Ready(&PyLong_Type) < 0)
2137 Py_FatalError("Can't initialize long type");
Benjamin Petersond4d400c2009-04-18 20:12:47 +00002138
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002139 if (PyType_Ready(&PyInt_Type) < 0)
2140 Py_FatalError("Can't initialize int type");
Benjamin Petersond4d400c2009-04-18 20:12:47 +00002141
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002142 if (PyType_Ready(&PyFrozenSet_Type) < 0)
2143 Py_FatalError("Can't initialize frozenset type");
Benjamin Petersond4d400c2009-04-18 20:12:47 +00002144
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002145 if (PyType_Ready(&PyProperty_Type) < 0)
2146 Py_FatalError("Can't initialize property type");
Benjamin Petersond4d400c2009-04-18 20:12:47 +00002147
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002148 if (PyType_Ready(&PyMemoryView_Type) < 0)
2149 Py_FatalError("Can't initialize memoryview type");
Benjamin Petersond4d400c2009-04-18 20:12:47 +00002150
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002151 if (PyType_Ready(&PyTuple_Type) < 0)
2152 Py_FatalError("Can't initialize tuple type");
Benjamin Petersond4d400c2009-04-18 20:12:47 +00002153
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002154 if (PyType_Ready(&PyEnum_Type) < 0)
2155 Py_FatalError("Can't initialize enumerate type");
Benjamin Petersond4d400c2009-04-18 20:12:47 +00002156
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002157 if (PyType_Ready(&PyReversed_Type) < 0)
2158 Py_FatalError("Can't initialize reversed type");
Benjamin Peterson01c6e6f2009-04-18 22:15:26 +00002159
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002160 if (PyType_Ready(&PyCode_Type) < 0)
2161 Py_FatalError("Can't initialize code type");
Benjamin Peterson01c6e6f2009-04-18 22:15:26 +00002162
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002163 if (PyType_Ready(&PyFrame_Type) < 0)
2164 Py_FatalError("Can't initialize frame type");
Benjamin Peterson01c6e6f2009-04-18 22:15:26 +00002165
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002166 if (PyType_Ready(&PyCFunction_Type) < 0)
2167 Py_FatalError("Can't initialize builtin function type");
Benjamin Peterson01c6e6f2009-04-18 22:15:26 +00002168
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002169 if (PyType_Ready(&PyMethod_Type) < 0)
2170 Py_FatalError("Can't initialize method type");
Benjamin Peterson01c6e6f2009-04-18 22:15:26 +00002171
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002172 if (PyType_Ready(&PyFunction_Type) < 0)
2173 Py_FatalError("Can't initialize function type");
Benjamin Peterson01c6e6f2009-04-18 22:15:26 +00002174
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002175 if (PyType_Ready(&PyClass_Type) < 0)
2176 Py_FatalError("Can't initialize class type");
Benjamin Peterson01c6e6f2009-04-18 22:15:26 +00002177
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002178 if (PyType_Ready(&PyDictProxy_Type) < 0)
2179 Py_FatalError("Can't initialize dict proxy type");
Benjamin Peterson01c6e6f2009-04-18 22:15:26 +00002180
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002181 if (PyType_Ready(&PyGen_Type) < 0)
2182 Py_FatalError("Can't initialize generator type");
Benjamin Peterson01c6e6f2009-04-18 22:15:26 +00002183
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002184 if (PyType_Ready(&PyGetSetDescr_Type) < 0)
2185 Py_FatalError("Can't initialize get-set descriptor type");
Benjamin Peterson01c6e6f2009-04-18 22:15:26 +00002186
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002187 if (PyType_Ready(&PyWrapperDescr_Type) < 0)
2188 Py_FatalError("Can't initialize wrapper type");
Benjamin Peterson01c6e6f2009-04-18 22:15:26 +00002189
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002190 if (PyType_Ready(&PyInstance_Type) < 0)
2191 Py_FatalError("Can't initialize instance type");
Benjamin Peterson01c6e6f2009-04-18 22:15:26 +00002192
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002193 if (PyType_Ready(&PyEllipsis_Type) < 0)
2194 Py_FatalError("Can't initialize ellipsis type");
Benjamin Peterson01c6e6f2009-04-18 22:15:26 +00002195
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002196 if (PyType_Ready(&PyMemberDescr_Type) < 0)
2197 Py_FatalError("Can't initialize member descriptor type");
Antoine Pitroud11f7fc2009-05-31 18:05:51 +00002198
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002199 if (PyType_Ready(&PyFile_Type) < 0)
2200 Py_FatalError("Can't initialize file type");
Guido van Rossumba21a492001-08-16 08:17:26 +00002201}
2202
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002203
Guido van Rossum84a90321996-05-22 16:34:47 +00002204#ifdef Py_TRACE_REFS
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002205
Guido van Rossumaacdc9d1996-08-12 21:32:12 +00002206void
Fred Drake100814d2000-07-09 15:48:49 +00002207_Py_NewReference(PyObject *op)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002208{
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002209 _Py_INC_REFTOTAL;
2210 op->ob_refcnt = 1;
2211 _Py_AddToAllObjects(op, 1);
2212 _Py_INC_TPALLOCS(op);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002213}
2214
Guido van Rossumaacdc9d1996-08-12 21:32:12 +00002215void
Fred Drake100814d2000-07-09 15:48:49 +00002216_Py_ForgetReference(register PyObject *op)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002217{
Guido van Rossumbffd6832000-01-20 22:32:56 +00002218#ifdef SLOW_UNREF_CHECK
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002219 register PyObject *p;
Guido van Rossumbffd6832000-01-20 22:32:56 +00002220#endif
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002221 if (op->ob_refcnt < 0)
2222 Py_FatalError("UNREF negative refcnt");
2223 if (op == &refchain ||
2224 op->_ob_prev->_ob_next != op || op->_ob_next->_ob_prev != op)
2225 Py_FatalError("UNREF invalid object");
Guido van Rossum2e8f6141992-09-03 20:32:55 +00002226#ifdef SLOW_UNREF_CHECK
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002227 for (p = refchain._ob_next; p != &refchain; p = p->_ob_next) {
2228 if (p == op)
2229 break;
2230 }
2231 if (p == &refchain) /* Not found */
2232 Py_FatalError("UNREF unknown object");
Guido van Rossum2e8f6141992-09-03 20:32:55 +00002233#endif
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002234 op->_ob_next->_ob_prev = op->_ob_prev;
2235 op->_ob_prev->_ob_next = op->_ob_next;
2236 op->_ob_next = op->_ob_prev = NULL;
2237 _Py_INC_TPFREES(op);
Guido van Rossum3f5da241990-12-20 15:06:42 +00002238}
2239
Guido van Rossumaacdc9d1996-08-12 21:32:12 +00002240void
Fred Drake100814d2000-07-09 15:48:49 +00002241_Py_Dealloc(PyObject *op)
Guido van Rossum3f5da241990-12-20 15:06:42 +00002242{
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002243 destructor dealloc = Py_TYPE(op)->tp_dealloc;
2244 _Py_ForgetReference(op);
2245 (*dealloc)(op);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002246}
2247
Tim Peters269b2a62003-04-17 19:52:29 +00002248/* Print all live objects. Because PyObject_Print is called, the
2249 * interpreter must be in a healthy state.
2250 */
Guido van Rossumaacdc9d1996-08-12 21:32:12 +00002251void
Fred Drake100814d2000-07-09 15:48:49 +00002252_Py_PrintReferences(FILE *fp)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002253{
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002254 PyObject *op;
2255 fprintf(fp, "Remaining objects:\n");
2256 for (op = refchain._ob_next; op != &refchain; op = op->_ob_next) {
2257 fprintf(fp, "%p [%" PY_FORMAT_SIZE_T "d] ", op, op->ob_refcnt);
2258 if (PyObject_Print(op, fp, 0) != 0)
2259 PyErr_Clear();
2260 putc('\n', fp);
2261 }
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002262}
2263
Tim Peters269b2a62003-04-17 19:52:29 +00002264/* Print the addresses of all live objects. Unlike _Py_PrintReferences, this
2265 * doesn't make any calls to the Python C API, so is always safe to call.
2266 */
2267void
2268_Py_PrintReferenceAddresses(FILE *fp)
2269{
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002270 PyObject *op;
2271 fprintf(fp, "Remaining object addresses:\n");
2272 for (op = refchain._ob_next; op != &refchain; op = op->_ob_next)
2273 fprintf(fp, "%p [%" PY_FORMAT_SIZE_T "d] %s\n", op,
2274 op->ob_refcnt, Py_TYPE(op)->tp_name);
Tim Peters269b2a62003-04-17 19:52:29 +00002275}
2276
Sjoerd Mullender6ec3c651995-08-29 09:18:14 +00002277PyObject *
Fred Drake100814d2000-07-09 15:48:49 +00002278_Py_GetObjects(PyObject *self, PyObject *args)
Sjoerd Mullender6ec3c651995-08-29 09:18:14 +00002279{
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002280 int i, n;
2281 PyObject *t = NULL;
2282 PyObject *res, *op;
Sjoerd Mullender6ec3c651995-08-29 09:18:14 +00002283
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002284 if (!PyArg_ParseTuple(args, "i|O", &n, &t))
2285 return NULL;
2286 op = refchain._ob_next;
2287 res = PyList_New(0);
2288 if (res == NULL)
2289 return NULL;
2290 for (i = 0; (n == 0 || i < n) && op != &refchain; i++) {
2291 while (op == self || op == args || op == res || op == t ||
2292 (t != NULL && Py_TYPE(op) != (PyTypeObject *) t)) {
2293 op = op->_ob_next;
2294 if (op == &refchain)
2295 return res;
2296 }
2297 if (PyList_Append(res, op) < 0) {
2298 Py_DECREF(res);
2299 return NULL;
2300 }
2301 op = op->_ob_next;
2302 }
2303 return res;
Sjoerd Mullender6ec3c651995-08-29 09:18:14 +00002304}
2305
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002306#endif
Guido van Rossum97ead3f1996-01-12 01:24:09 +00002307
2308
Larry Hastings402b73f2010-03-25 00:54:54 +00002309/* Hack to force loading of capsule.o */
2310PyTypeObject *_Py_capsule_hack = &PyCapsule_Type;
2311
2312
Guido van Rossum97ead3f1996-01-12 01:24:09 +00002313/* Hack to force loading of cobject.o */
Guido van Rossumda9c2711996-12-05 21:58:58 +00002314PyTypeObject *_Py_cobject_hack = &PyCObject_Type;
Guido van Rossum84a90321996-05-22 16:34:47 +00002315
2316
2317/* Hack to force loading of abstract.o */
Martin v. Löwis18e16552006-02-15 17:27:45 +00002318Py_ssize_t (*_Py_abstract_hack)(PyObject *) = PyObject_Size;
Guido van Rossume09fb551997-08-05 02:04:34 +00002319
2320
Andrew M. Kuchling1582a3a2000-08-16 12:27:23 +00002321/* Python's malloc wrappers (see pymem.h) */
Guido van Rossume09fb551997-08-05 02:04:34 +00002322
Thomas Wouters334fb892000-07-25 12:56:38 +00002323void *
Fred Drake100814d2000-07-09 15:48:49 +00002324PyMem_Malloc(size_t nbytes)
Guido van Rossume09fb551997-08-05 02:04:34 +00002325{
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002326 return PyMem_MALLOC(nbytes);
Guido van Rossume09fb551997-08-05 02:04:34 +00002327}
2328
Thomas Wouters334fb892000-07-25 12:56:38 +00002329void *
2330PyMem_Realloc(void *p, size_t nbytes)
Guido van Rossume09fb551997-08-05 02:04:34 +00002331{
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002332 return PyMem_REALLOC(p, nbytes);
Guido van Rossume09fb551997-08-05 02:04:34 +00002333}
2334
2335void
Thomas Wouters334fb892000-07-25 12:56:38 +00002336PyMem_Free(void *p)
Guido van Rossume09fb551997-08-05 02:04:34 +00002337{
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002338 PyMem_FREE(p);
Guido van Rossumb18618d2000-05-03 23:44:39 +00002339}
2340
2341
Guido van Rossum86610361998-04-10 22:32:46 +00002342/* These methods are used to control infinite recursion in repr, str, print,
2343 etc. Container objects that may recursively contain themselves,
2344 e.g. builtin dictionaries and lists, should used Py_ReprEnter() and
2345 Py_ReprLeave() to avoid infinite recursion.
2346
2347 Py_ReprEnter() returns 0 the first time it is called for a particular
2348 object and 1 every time thereafter. It returns -1 if an exception
2349 occurred. Py_ReprLeave() has no return value.
2350
2351 See dictobject.c and listobject.c for examples of use.
2352*/
2353
2354#define KEY "Py_Repr"
2355
2356int
Fred Drake100814d2000-07-09 15:48:49 +00002357Py_ReprEnter(PyObject *obj)
Guido van Rossum86610361998-04-10 22:32:46 +00002358{
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002359 PyObject *dict;
2360 PyObject *list;
2361 Py_ssize_t i;
Guido van Rossum86610361998-04-10 22:32:46 +00002362
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002363 dict = PyThreadState_GetDict();
2364 if (dict == NULL)
2365 return 0;
2366 list = PyDict_GetItemString(dict, KEY);
2367 if (list == NULL) {
2368 list = PyList_New(0);
2369 if (list == NULL)
2370 return -1;
2371 if (PyDict_SetItemString(dict, KEY, list) < 0)
2372 return -1;
2373 Py_DECREF(list);
2374 }
2375 i = PyList_GET_SIZE(list);
2376 while (--i >= 0) {
2377 if (PyList_GET_ITEM(list, i) == obj)
2378 return 1;
2379 }
2380 PyList_Append(list, obj);
2381 return 0;
Guido van Rossum86610361998-04-10 22:32:46 +00002382}
2383
2384void
Fred Drake100814d2000-07-09 15:48:49 +00002385Py_ReprLeave(PyObject *obj)
Guido van Rossum86610361998-04-10 22:32:46 +00002386{
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002387 PyObject *dict;
2388 PyObject *list;
2389 Py_ssize_t i;
Guido van Rossum86610361998-04-10 22:32:46 +00002390
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002391 dict = PyThreadState_GetDict();
2392 if (dict == NULL)
2393 return;
2394 list = PyDict_GetItemString(dict, KEY);
2395 if (list == NULL || !PyList_Check(list))
2396 return;
2397 i = PyList_GET_SIZE(list);
2398 /* Count backwards because we always expect obj to be list[-1] */
2399 while (--i >= 0) {
2400 if (PyList_GET_ITEM(list, i) == obj) {
2401 PyList_SetSlice(list, i, i + 1, NULL);
2402 break;
2403 }
2404 }
Guido van Rossum86610361998-04-10 22:32:46 +00002405}
Guido van Rossumd724b232000-03-13 16:01:29 +00002406
Tim Peters803526b2002-07-07 05:13:56 +00002407/* Trashcan support. */
Guido van Rossumd724b232000-03-13 16:01:29 +00002408
Tim Peters803526b2002-07-07 05:13:56 +00002409/* Current call-stack depth of tp_dealloc calls. */
Guido van Rossumd724b232000-03-13 16:01:29 +00002410int _PyTrash_delete_nesting = 0;
Guido van Rossume92e6102000-04-24 15:40:53 +00002411
Tim Peters803526b2002-07-07 05:13:56 +00002412/* List of objects that still need to be cleaned up, singly linked via their
2413 * gc headers' gc_prev pointers.
2414 */
2415PyObject *_PyTrash_delete_later = NULL;
Guido van Rossumd724b232000-03-13 16:01:29 +00002416
Tim Peters803526b2002-07-07 05:13:56 +00002417/* Add op to the _PyTrash_delete_later list. Called when the current
2418 * call-stack depth gets large. op must be a currently untracked gc'ed
2419 * object, with refcount 0. Py_DECREF must already have been called on it.
2420 */
Guido van Rossumd724b232000-03-13 16:01:29 +00002421void
Fred Drake100814d2000-07-09 15:48:49 +00002422_PyTrash_deposit_object(PyObject *op)
Guido van Rossumd724b232000-03-13 16:01:29 +00002423{
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002424 assert(PyObject_IS_GC(op));
2425 assert(_Py_AS_GC(op)->gc.gc_refs == _PyGC_REFS_UNTRACKED);
2426 assert(op->ob_refcnt == 0);
2427 _Py_AS_GC(op)->gc.gc_prev = (PyGC_Head *)_PyTrash_delete_later;
2428 _PyTrash_delete_later = op;
Guido van Rossumd724b232000-03-13 16:01:29 +00002429}
2430
Antoine Pitrou58098a72012-09-06 00:59:49 +02002431/* The equivalent API, using per-thread state recursion info */
2432void
2433_PyTrash_thread_deposit_object(PyObject *op)
2434{
2435 PyThreadState *tstate = PyThreadState_GET();
2436 assert(PyObject_IS_GC(op));
2437 assert(_Py_AS_GC(op)->gc.gc_refs == _PyGC_REFS_UNTRACKED);
2438 assert(op->ob_refcnt == 0);
2439 _Py_AS_GC(op)->gc.gc_prev = (PyGC_Head *) tstate->trash_delete_later;
2440 tstate->trash_delete_later = op;
2441}
2442
Tim Peters803526b2002-07-07 05:13:56 +00002443/* Dealloccate all the objects in the _PyTrash_delete_later list. Called when
2444 * the call-stack unwinds again.
2445 */
Guido van Rossumd724b232000-03-13 16:01:29 +00002446void
Fred Drake100814d2000-07-09 15:48:49 +00002447_PyTrash_destroy_chain(void)
Guido van Rossumd724b232000-03-13 16:01:29 +00002448{
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002449 while (_PyTrash_delete_later) {
2450 PyObject *op = _PyTrash_delete_later;
2451 destructor dealloc = Py_TYPE(op)->tp_dealloc;
Neil Schemenauerf589c052002-03-29 03:05:54 +00002452
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002453 _PyTrash_delete_later =
2454 (PyObject*) _Py_AS_GC(op)->gc.gc_prev;
Neil Schemenauerf589c052002-03-29 03:05:54 +00002455
Antoine Pitrouc83ea132010-05-09 14:46:46 +00002456 /* Call the deallocator directly. This used to try to
2457 * fool Py_DECREF into calling it indirectly, but
2458 * Py_DECREF was already called on this object, and in
2459 * assorted non-release builds calling Py_DECREF again ends
2460 * up distorting allocation statistics.
2461 */
2462 assert(op->ob_refcnt == 0);
2463 ++_PyTrash_delete_nesting;
2464 (*dealloc)(op);
2465 --_PyTrash_delete_nesting;
2466 }
Guido van Rossumd724b232000-03-13 16:01:29 +00002467}
Anthony Baxterac6bd462006-04-13 02:06:09 +00002468
Antoine Pitrou58098a72012-09-06 00:59:49 +02002469/* The equivalent API, using per-thread state recursion info */
2470void
2471_PyTrash_thread_destroy_chain(void)
2472{
2473 PyThreadState *tstate = PyThreadState_GET();
2474 while (tstate->trash_delete_later) {
2475 PyObject *op = tstate->trash_delete_later;
2476 destructor dealloc = Py_TYPE(op)->tp_dealloc;
2477
2478 tstate->trash_delete_later =
2479 (PyObject*) _Py_AS_GC(op)->gc.gc_prev;
2480
2481 /* Call the deallocator directly. This used to try to
2482 * fool Py_DECREF into calling it indirectly, but
2483 * Py_DECREF was already called on this object, and in
2484 * assorted non-release builds calling Py_DECREF again ends
2485 * up distorting allocation statistics.
2486 */
2487 assert(op->ob_refcnt == 0);
2488 ++tstate->trash_delete_nesting;
2489 (*dealloc)(op);
2490 --tstate->trash_delete_nesting;
2491 }
2492}
2493
Anthony Baxterac6bd462006-04-13 02:06:09 +00002494#ifdef __cplusplus
2495}
2496#endif