blob: 6254dfa0e51158f3e158d9126779f56fec4d171e [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{
17 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;
29}
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
61 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
Tim Peters7571a0f2003-03-23 17:52:28 +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 }
74}
75#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{
Guido van Rossumc0b618a1997-05-02 03:12:38 +000092 PyTypeObject *tp;
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +000093
94 for (tp = type_list; tp; tp = tp->tp_next)
Martin v. Löwisb90304a2009-01-07 18:40:40 +000095 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",
Tim Peters6d6c1a32001-08-02 04:15:00 +000098 tp->tp_name, tp->tp_allocs, tp->tp_frees,
Sjoerd Mullender52c1f511993-10-25 08:40:52 +000099 tp->tp_maxalloc);
Martin v. Löwisb90304a2009-01-07 18:40:40 +0000100 fprintf(f, "fast tuple allocs: %" PY_FORMAT_SIZE_T "d, "
101 "empty: %" PY_FORMAT_SIZE_T "d\n",
Sjoerd Mullender52c1f511993-10-25 08:40:52 +0000102 fast_tuple_allocs, tuple_zero_allocs);
Martin v. Löwisb90304a2009-01-07 18:40:40 +0000103 fprintf(f, "fast int allocs: pos: %" PY_FORMAT_SIZE_T "d, "
104 "neg: %" PY_FORMAT_SIZE_T "d\n",
Sjoerd Mullender52c1f511993-10-25 08:40:52 +0000105 quick_int_allocs, quick_neg_int_allocs);
Martin v. Löwisb90304a2009-01-07 18:40:40 +0000106 fprintf(f, "null strings: %" PY_FORMAT_SIZE_T "d, "
107 "1-strings: %" PY_FORMAT_SIZE_T "d\n",
Sjoerd Mullender52c1f511993-10-25 08:40:52 +0000108 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{
114 PyTypeObject *tp;
115 PyObject *result;
116 PyObject *v;
117
118 result = PyList_New(0);
119 if (result == NULL)
120 return NULL;
121 for (tp = type_list; tp; tp = tp->tp_next) {
Georg Brandl2cfaa342006-05-29 19:39:45 +0000122 v = Py_BuildValue("(snnn)", tp->tp_name, tp->tp_allocs,
Tim Peters6d6c1a32001-08-02 04:15:00 +0000123 tp->tp_frees, tp->tp_maxalloc);
Sjoerd Mullender6ec3c651995-08-29 09:18:14 +0000124 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;
136}
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{
Martin v. Löwis45294a92006-04-18 06:24:08 +0000141 if (tp->tp_next == NULL && tp->tp_prev == NULL) {
Guido van Rossumd8953cb1995-04-06 14:46:26 +0000142 /* first time; insert in linked list */
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +0000143 if (tp->tp_next != NULL) /* sanity check */
Guido van Rossumc0b618a1997-05-02 03:12:38 +0000144 Py_FatalError("XXX inc_count sanity check");
Martin v. Löwis45294a92006-04-18 06:24:08 +0000145 if (type_list)
146 type_list->tp_prev = tp;
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +0000147 tp->tp_next = type_list;
Tim Petersc6a3ff62002-07-08 22:11:52 +0000148 /* 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);
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +0000157 type_list = tp;
Tim Peters3e40c7f2003-03-23 03:04:32 +0000158#ifdef Py_TRACE_REFS
Tim Peters7571a0f2003-03-23 17:52:28 +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
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +0000164 }
Tim Peters6d6c1a32001-08-02 04:15:00 +0000165 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{
172 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 }
185}
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{
194 char buf[300];
195
196 PyOS_snprintf(buf, sizeof(buf),
Tim Peters4d073bb2006-03-23 05:38:33 +0000197 "%s:%i object at %p has negative ref count "
198 "%" PY_FORMAT_SIZE_T "d",
Tim Peters8af92d12006-03-23 05:41:24 +0000199 fname, lineno, op, op->ob_refcnt);
Tim Peters7c321a82002-07-09 02:57:01 +0000200 Py_FatalError(buf);
201}
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{
Guido van Rossum6e08c142002-10-11 20:37:24 +0000220 if (op == NULL)
221 return PyErr_NoMemory();
Guido van Rossumb18618d2000-05-03 23:44:39 +0000222 /* Any changes should be reflected in PyObject_INIT (objimpl.h) */
Christian Heimese93237d2007-12-19 02:37:44 +0000223 Py_TYPE(op) = tp;
Guido van Rossumc0b618a1997-05-02 03:12:38 +0000224 _Py_NewReference(op);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000225 return op;
226}
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{
Guido van Rossum6e08c142002-10-11 20:37:24 +0000231 if (op == NULL)
232 return (PyVarObject *) PyErr_NoMemory();
Guido van Rossumb18618d2000-05-03 23:44:39 +0000233 /* Any changes should be reflected in PyObject_INIT_VAR */
234 op->ob_size = size;
Christian Heimese93237d2007-12-19 02:37:44 +0000235 Py_TYPE(op) = tp;
Guido van Rossumb18618d2000-05-03 23:44:39 +0000236 _Py_NewReference((PyObject *)op);
237 return op;
238}
239
240PyObject *
Fred Drake100814d2000-07-09 15:48:49 +0000241_PyObject_New(PyTypeObject *tp)
Guido van Rossumb18618d2000-05-03 23:44:39 +0000242{
243 PyObject *op;
244 op = (PyObject *) PyObject_MALLOC(_PyObject_SIZE(tp));
245 if (op == NULL)
246 return PyErr_NoMemory();
247 return PyObject_INIT(op, tp);
248}
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{
Guido van Rossumb18618d2000-05-03 23:44:39 +0000253 PyVarObject *op;
Tim Petersf2a67da2001-10-07 03:54:51 +0000254 const size_t size = _PyObject_VAR_SIZE(tp, nitems);
Tim Peters6d483d32001-10-06 21:27:34 +0000255 op = (PyVarObject *) PyObject_MALLOC(size);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000256 if (op == NULL)
Guido van Rossumd0c87ee1997-05-15 21:31:03 +0000257 return (PyVarObject *)PyErr_NoMemory();
Tim Peters6d483d32001-10-06 21:27:34 +0000258 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{
Guido van Rossum4cc6ac72000-07-01 01:00:38 +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{
Guido van Rossum278ef591991-07-27 21:40:24 +0000273 int ret = 0;
Neal Norwitz1a997502003-01-13 20:13:12 +0000274 if (nesting > 10) {
275 PyErr_SetString(PyExc_RuntimeError, "print recursion");
276 return -1;
277 }
Guido van Rossumc0b618a1997-05-02 03:12:38 +0000278 if (PyErr_CheckSignals())
Guido van Rossum90933611991-06-07 16:10:43 +0000279 return -1;
Guido van Rossum9b00dfa1998-04-28 16:06:54 +0000280#ifdef USE_STACKCHECK
281 if (PyOS_CheckStack()) {
Fred Drake661ea262000-10-24 19:57:45 +0000282 PyErr_SetString(PyExc_MemoryError, "stack overflow");
Guido van Rossum9b00dfa1998-04-28 16:06:54 +0000283 return -1;
284 }
285#endif
Guido van Rossum687ef6e2000-01-12 16:28:58 +0000286 clearerr(fp); /* Clear any previous error condition */
Guido van Rossum90933611991-06-07 16:10:43 +0000287 if (op == NULL) {
Brett Cannon01531592007-09-17 03:28:34 +0000288 Py_BEGIN_ALLOW_THREADS
Guido van Rossum90933611991-06-07 16:10:43 +0000289 fprintf(fp, "<nil>");
Brett Cannon01531592007-09-17 03:28:34 +0000290 Py_END_ALLOW_THREADS
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000291 }
Guido van Rossum90933611991-06-07 16:10:43 +0000292 else {
293 if (op->ob_refcnt <= 0)
Thomas Wouters8b87a0b2006-03-01 05:41:20 +0000294 /* XXX(twouters) cast refcount to long until %zd is
295 universally available */
Brett Cannon01531592007-09-17 03:28:34 +0000296 Py_BEGIN_ALLOW_THREADS
Thomas Wouters8b87a0b2006-03-01 05:41:20 +0000297 fprintf(fp, "<refcnt %ld at %p>",
298 (long)op->ob_refcnt, op);
Brett Cannon01531592007-09-17 03:28:34 +0000299 Py_END_ALLOW_THREADS
Christian Heimese93237d2007-12-19 02:37:44 +0000300 else if (Py_TYPE(op)->tp_print == NULL) {
Guido van Rossum4f288ab2001-05-01 16:53:37 +0000301 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;
Guido van Rossum2e8f6141992-09-03 20:32:55 +0000308 else {
Neal Norwitz1a997502003-01-13 20:13:12 +0000309 ret = internal_print(s, fp, Py_PRINT_RAW,
310 nesting+1);
Guido van Rossum2e8f6141992-09-03 20:32:55 +0000311 }
Guido van Rossum4f288ab2001-05-01 16:53:37 +0000312 Py_XDECREF(s);
Guido van Rossum2e8f6141992-09-03 20:32:55 +0000313 }
Guido van Rossum90933611991-06-07 16:10:43 +0000314 else
Christian Heimese93237d2007-12-19 02:37:44 +0000315 ret = (*Py_TYPE(op)->tp_print)(op, fp, flags);
Guido van Rossum90933611991-06-07 16:10:43 +0000316 }
Guido van Rossum278ef591991-07-27 21:40:24 +0000317 if (ret == 0) {
318 if (ferror(fp)) {
Guido van Rossumc0b618a1997-05-02 03:12:38 +0000319 PyErr_SetFromErrno(PyExc_IOError);
Guido van Rossum278ef591991-07-27 21:40:24 +0000320 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{
330 return internal_print(op, fp, flags, 0);
331}
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{
Barry Warsaweefb1072001-02-22 22:39:18 +0000337 if (op == NULL)
338 fprintf(stderr, "NULL\n");
339 else {
Georg Brandld3eaa742009-04-05 11:07:14 +0000340#ifdef WITH_THREAD
Amaury Forgeot d'Arc3538a312008-12-15 22:29:14 +0000341 PyGILState_STATE gil;
Georg Brandld3eaa742009-04-05 11:07:14 +0000342#endif
Guido van Rossum5f5512d2001-09-14 15:50:08 +0000343 fprintf(stderr, "object : ");
Georg Brandld3eaa742009-04-05 11:07:14 +0000344#ifdef WITH_THREAD
Amaury Forgeot d'Arc3538a312008-12-15 22:29:14 +0000345 gil = PyGILState_Ensure();
Georg Brandld3eaa742009-04-05 11:07:14 +0000346#endif
Barry Warsaweefb1072001-02-22 22:39:18 +0000347 (void)PyObject_Print(op, stderr, 0);
Georg Brandld3eaa742009-04-05 11:07:14 +0000348#ifdef WITH_THREAD
Amaury Forgeot d'Arc3538a312008-12-15 22:29:14 +0000349 PyGILState_Release(gil);
Georg Brandld3eaa742009-04-05 11:07:14 +0000350#endif
Thomas Wouters8b87a0b2006-03-01 05:41:20 +0000351 /* XXX(twouters) cast refcount to long until %zd is
352 universally available */
Guido van Rossum5f5512d2001-09-14 15:50:08 +0000353 fprintf(stderr, "\n"
354 "type : %s\n"
Thomas Wouters8b87a0b2006-03-01 05:41:20 +0000355 "refcount: %ld\n"
Guido van Rossum5f5512d2001-09-14 15:50:08 +0000356 "address : %p\n",
Christian Heimese93237d2007-12-19 02:37:44 +0000357 Py_TYPE(op)==NULL ? "NULL" : Py_TYPE(op)->tp_name,
Thomas Wouters8b87a0b2006-03-01 05:41:20 +0000358 (long)op->ob_refcnt,
Guido van Rossum5f5512d2001-09-14 15:50:08 +0000359 op);
Barry Warsaweefb1072001-02-22 22:39:18 +0000360 }
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{
Guido van Rossumc0b618a1997-05-02 03:12:38 +0000366 if (PyErr_CheckSignals())
Guido van Rossum90933611991-06-07 16:10:43 +0000367 return NULL;
Guido van Rossum9b00dfa1998-04-28 16:06:54 +0000368#ifdef USE_STACKCHECK
369 if (PyOS_CheckStack()) {
Fred Drake661ea262000-10-24 19:57:45 +0000370 PyErr_SetString(PyExc_MemoryError, "stack overflow");
Guido van Rossum9b00dfa1998-04-28 16:06:54 +0000371 return NULL;
372 }
373#endif
Guido van Rossum90933611991-06-07 16:10:43 +0000374 if (v == NULL)
Gregory P. Smithdd96db62008-06-09 04:58:54 +0000375 return PyString_FromString("<NULL>");
Christian Heimese93237d2007-12-19 02:37:44 +0000376 else if (Py_TYPE(v)->tp_repr == NULL)
Gregory P. Smithdd96db62008-06-09 04:58:54 +0000377 return PyString_FromFormat("<%s object at %p>",
Christian Heimese93237d2007-12-19 02:37:44 +0000378 Py_TYPE(v)->tp_name, v);
Guido van Rossum4c08d552000-03-10 22:55:18 +0000379 else {
380 PyObject *res;
Christian Heimese93237d2007-12-19 02:37:44 +0000381 res = (*Py_TYPE(v)->tp_repr)(v);
Guido van Rossum4c08d552000-03-10 22:55:18 +0000382 if (res == NULL)
383 return NULL;
Martin v. Löwis339d0f72001-08-17 18:39:25 +0000384#ifdef Py_USING_UNICODE
Fredrik Lundhefecc7d2000-07-01 14:31:09 +0000385 if (PyUnicode_Check(res)) {
386 PyObject* str;
Anthony Baxter262c00a2006-03-30 10:53:17 +0000387 str = PyUnicode_AsEncodedString(res, NULL, NULL);
Marc-André Lemburg891bc652000-07-03 09:57:53 +0000388 Py_DECREF(res);
389 if (str)
Fredrik Lundhefecc7d2000-07-01 14:31:09 +0000390 res = str;
Marc-André Lemburg891bc652000-07-03 09:57:53 +0000391 else
392 return NULL;
Fredrik Lundhefecc7d2000-07-01 14:31:09 +0000393 }
Martin v. Löwis339d0f72001-08-17 18:39:25 +0000394#endif
Gregory P. Smithdd96db62008-06-09 04:58:54 +0000395 if (!PyString_Check(res)) {
Guido van Rossum4c08d552000-03-10 22:55:18 +0000396 PyErr_Format(PyExc_TypeError,
Guido van Rossum5db862d2000-04-10 12:46:51 +0000397 "__repr__ returned non-string (type %.200s)",
Christian Heimese93237d2007-12-19 02:37:44 +0000398 Py_TYPE(res)->tp_name);
Guido van Rossum4c08d552000-03-10 22:55:18 +0000399 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{
Guido van Rossum4c08d552000-03-10 22:55:18 +0000409 PyObject *res;
Neil Schemenauercf52c072005-08-12 17:34:58 +0000410 int type_ok;
Guido van Rossumc6004111993-11-05 10:22:19 +0000411 if (v == NULL)
Gregory P. Smithdd96db62008-06-09 04:58:54 +0000412 return PyString_FromString("<NULL>");
413 if (PyString_CheckExact(v)) {
Guido van Rossumc0b618a1997-05-02 03:12:38 +0000414 Py_INCREF(v);
Guido van Rossumc6004111993-11-05 10:22:19 +0000415 return v;
416 }
Neil Schemenauercf52c072005-08-12 17:34:58 +0000417#ifdef Py_USING_UNICODE
418 if (PyUnicode_CheckExact(v)) {
419 Py_INCREF(v);
420 return v;
421 }
422#endif
Christian Heimese93237d2007-12-19 02:37:44 +0000423 if (Py_TYPE(v)->tp_str == NULL)
Guido van Rossum4f288ab2001-05-01 16:53:37 +0000424 return PyObject_Repr(v);
425
Brett Cannon0b14f242007-09-30 19:45:10 +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;
Christian Heimese93237d2007-12-19 02:37:44 +0000430 res = (*Py_TYPE(v)->tp_str)(v);
Brett Cannon0b14f242007-09-30 19:45:10 +0000431 Py_LeaveRecursiveCall();
Guido van Rossum4c08d552000-03-10 22:55:18 +0000432 if (res == NULL)
433 return NULL;
Gregory P. Smithdd96db62008-06-09 04:58:54 +0000434 type_ok = PyString_Check(res);
Neil Schemenauercf52c072005-08-12 17:34:58 +0000435#ifdef Py_USING_UNICODE
436 type_ok = type_ok || PyUnicode_Check(res);
437#endif
438 if (!type_ok) {
439 PyErr_Format(PyExc_TypeError,
440 "__str__ returned non-string (type %.200s)",
Christian Heimese93237d2007-12-19 02:37:44 +0000441 Py_TYPE(res)->tp_name);
Neil Schemenauercf52c072005-08-12 17:34:58 +0000442 Py_DECREF(res);
443 return NULL;
444 }
445 return res;
446}
447
448PyObject *
449PyObject_Str(PyObject *v)
450{
451 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
Marc-André Lemburg891bc652000-07-03 09:57:53 +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
Gregory P. Smithdd96db62008-06-09 04:58:54 +0000465 assert(PyString_Check(res));
Guido van Rossum4c08d552000-03-10 22:55:18 +0000466 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{
473 PyObject *res;
Brett Cannonc3647ac2005-04-26 03:45:26 +0000474 PyObject *func;
Neal Norwitz75801462006-03-14 06:02:16 +0000475 PyObject *str;
Nick Coghlan524b7772008-07-08 14:08:04 +0000476 int unicode_method_found = 0;
Brett Cannonc3647ac2005-04-26 03:45:26 +0000477 static PyObject *unicodestr;
Tim Peters803526b2002-07-07 05:13:56 +0000478
Georg Brandl3daf7582006-03-13 22:22:11 +0000479 if (v == NULL) {
Gregory P. Smithdd96db62008-06-09 04:58:54 +0000480 res = PyString_FromString("<NULL>");
Neal Norwitz75801462006-03-14 06:02:16 +0000481 if (res == NULL)
482 return NULL;
483 str = PyUnicode_FromEncodedObject(res, NULL, "strict");
484 Py_DECREF(res);
485 return str;
Georg Brandl3daf7582006-03-13 22:22:11 +0000486 } else if (PyUnicode_CheckExact(v)) {
Guido van Rossuma3af41d2001-01-18 22:07:06 +0000487 Py_INCREF(v);
488 return v;
489 }
Nick Coghlan524b7772008-07-08 14:08:04 +0000490
491 /* Try the __unicode__ method */
Brett Cannonc3647ac2005-04-26 03:45:26 +0000492 if (unicodestr == NULL) {
Gregory P. Smithdd96db62008-06-09 04:58:54 +0000493 unicodestr= PyString_InternFromString("__unicode__");
Brett Cannonc3647ac2005-04-26 03:45:26 +0000494 if (unicodestr == NULL)
495 return NULL;
Guido van Rossumb8c65bc2001-10-19 02:01:31 +0000496 }
Nick Coghlan524b7772008-07-08 14:08:04 +0000497 if (PyInstance_Check(v)) {
498 /* We're an instance of a classic class */
499 /* Try __unicode__ from the instance -- alas we have no type */
500 func = PyObject_GetAttr(v, unicodestr);
501 if (func != NULL) {
502 unicode_method_found = 1;
503 res = PyObject_CallFunctionObjArgs(func, NULL);
504 Py_DECREF(func);
505 }
506 else {
507 PyErr_Clear();
508 }
Brett Cannonc3647ac2005-04-26 03:45:26 +0000509 }
Guido van Rossuma3af41d2001-01-18 22:07:06 +0000510 else {
Nick Coghlan524b7772008-07-08 14:08:04 +0000511 /* Not a classic class instance, try __unicode__ from type */
512 /* _PyType_Lookup doesn't create a reference */
513 func = _PyType_Lookup(Py_TYPE(v), unicodestr);
514 if (func != NULL) {
515 unicode_method_found = 1;
516 res = PyObject_CallFunctionObjArgs(func, v, NULL);
517 }
518 else {
519 PyErr_Clear();
520 }
521 }
522
523 /* Didn't find __unicode__ */
524 if (!unicode_method_found) {
Brett Cannonc3647ac2005-04-26 03:45:26 +0000525 if (PyUnicode_Check(v)) {
526 /* For a Unicode subtype that's didn't overwrite __unicode__,
527 return a true Unicode object with the same data. */
528 return PyUnicode_FromUnicode(PyUnicode_AS_UNICODE(v),
Nick Coghlan524b7772008-07-08 14:08:04 +0000529 PyUnicode_GET_SIZE(v));
Guido van Rossuma3af41d2001-01-18 22:07:06 +0000530 }
Gregory P. Smithdd96db62008-06-09 04:58:54 +0000531 if (PyString_CheckExact(v)) {
Brett Cannonc3647ac2005-04-26 03:45:26 +0000532 Py_INCREF(v);
533 res = v;
Guido van Rossuma3af41d2001-01-18 22:07:06 +0000534 }
Guido van Rossumb8c65bc2001-10-19 02:01:31 +0000535 else {
Christian Heimese93237d2007-12-19 02:37:44 +0000536 if (Py_TYPE(v)->tp_str != NULL)
537 res = (*Py_TYPE(v)->tp_str)(v);
Guido van Rossumb8c65bc2001-10-19 02:01:31 +0000538 else
539 res = PyObject_Repr(v);
540 }
Guido van Rossuma3af41d2001-01-18 22:07:06 +0000541 }
Nick Coghlan524b7772008-07-08 14:08:04 +0000542
Guido van Rossuma3af41d2001-01-18 22:07:06 +0000543 if (res == NULL)
544 return NULL;
545 if (!PyUnicode_Check(res)) {
Guido van Rossumb8c65bc2001-10-19 02:01:31 +0000546 str = PyUnicode_FromEncodedObject(res, NULL, "strict");
Guido van Rossuma3af41d2001-01-18 22:07:06 +0000547 Py_DECREF(res);
Neal Norwitz75801462006-03-14 06:02:16 +0000548 res = str;
Guido van Rossuma3af41d2001-01-18 22:07:06 +0000549 }
550 return res;
551}
Martin v. Löwis339d0f72001-08-17 18:39:25 +0000552#endif
Guido van Rossuma3af41d2001-01-18 22:07:06 +0000553
554
Guido van Rossuma4073002002-05-31 20:03:54 +0000555/* Helper to warn about deprecated tp_compare return values. Return:
556 -2 for an exception;
557 -1 if v < w;
558 0 if v == w;
559 1 if v > w.
560 (This function cannot return 2.)
561*/
562static int
563adjust_tp_compare(int c)
564{
565 if (PyErr_Occurred()) {
566 if (c != -1 && c != -2) {
567 PyObject *t, *v, *tb;
568 PyErr_Fetch(&t, &v, &tb);
569 if (PyErr_Warn(PyExc_RuntimeWarning,
570 "tp_compare didn't return -1 or -2 "
571 "for exception") < 0) {
572 Py_XDECREF(t);
573 Py_XDECREF(v);
574 Py_XDECREF(tb);
575 }
576 else
577 PyErr_Restore(t, v, tb);
578 }
579 return -2;
580 }
581 else if (c < -1 || c > 1) {
582 if (PyErr_Warn(PyExc_RuntimeWarning,
583 "tp_compare didn't return -1, 0 or 1") < 0)
584 return -2;
585 else
586 return c < -1 ? -1 : 1;
587 }
588 else {
589 assert(c >= -1 && c <= 1);
590 return c;
591 }
592}
593
594
Guido van Rossumd1f06b92001-01-24 22:14:43 +0000595/* Macro to get the tp_richcompare field of a type if defined */
596#define RICHCOMPARE(t) (PyType_HasFeature((t), Py_TPFLAGS_HAVE_RICHCOMPARE) \
597 ? (t)->tp_richcompare : NULL)
598
Guido van Rossume797ec12001-01-17 15:24:28 +0000599/* Map rich comparison operators to their swapped version, e.g. LT --> GT */
Brett Cannona5ca2e72004-09-25 01:37:24 +0000600int _Py_SwappedOp[] = {Py_GT, Py_GE, Py_EQ, Py_NE, Py_LT, Py_LE};
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +0000601
Guido van Rossume797ec12001-01-17 15:24:28 +0000602/* Try a genuine rich comparison, returning an object. Return:
603 NULL for exception;
604 NotImplemented if this particular rich comparison is not implemented or
605 undefined;
606 some object not equal to NotImplemented if it is implemented
607 (this latter object may not be a Boolean).
608*/
609static PyObject *
610try_rich_compare(PyObject *v, PyObject *w, int op)
611{
612 richcmpfunc f;
613 PyObject *res;
614
Guido van Rossum2ed6bf82001-09-27 20:30:07 +0000615 if (v->ob_type != w->ob_type &&
616 PyType_IsSubtype(w->ob_type, v->ob_type) &&
617 (f = RICHCOMPARE(w->ob_type)) != NULL) {
Tim Petersf4aca752004-09-23 02:39:37 +0000618 res = (*f)(w, v, _Py_SwappedOp[op]);
Guido van Rossum2ed6bf82001-09-27 20:30:07 +0000619 if (res != Py_NotImplemented)
620 return res;
621 Py_DECREF(res);
622 }
Guido van Rossumd1f06b92001-01-24 22:14:43 +0000623 if ((f = RICHCOMPARE(v->ob_type)) != NULL) {
Guido van Rossume797ec12001-01-17 15:24:28 +0000624 res = (*f)(v, w, op);
625 if (res != Py_NotImplemented)
626 return res;
627 Py_DECREF(res);
628 }
Guido van Rossumd1f06b92001-01-24 22:14:43 +0000629 if ((f = RICHCOMPARE(w->ob_type)) != NULL) {
Tim Petersf4aca752004-09-23 02:39:37 +0000630 return (*f)(w, v, _Py_SwappedOp[op]);
Guido van Rossume797ec12001-01-17 15:24:28 +0000631 }
632 res = Py_NotImplemented;
633 Py_INCREF(res);
634 return res;
635}
636
637/* Try a genuine rich comparison, returning an int. Return:
638 -1 for exception (including the case where try_rich_compare() returns an
639 object that's not a Boolean);
Tim Petersc99213f2001-11-04 05:57:16 +0000640 0 if the outcome is false;
641 1 if the outcome is true;
642 2 if this particular rich comparison is not implemented or undefined.
Guido van Rossume797ec12001-01-17 15:24:28 +0000643*/
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +0000644static int
Guido van Rossume797ec12001-01-17 15:24:28 +0000645try_rich_compare_bool(PyObject *v, PyObject *w, int op)
646{
647 PyObject *res;
648 int ok;
649
Guido van Rossumd1f06b92001-01-24 22:14:43 +0000650 if (RICHCOMPARE(v->ob_type) == NULL && RICHCOMPARE(w->ob_type) == NULL)
Guido van Rossume797ec12001-01-17 15:24:28 +0000651 return 2; /* Shortcut, avoid INCREF+DECREF */
652 res = try_rich_compare(v, w, op);
653 if (res == NULL)
654 return -1;
655 if (res == Py_NotImplemented) {
656 Py_DECREF(res);
657 return 2;
658 }
659 ok = PyObject_IsTrue(res);
660 Py_DECREF(res);
661 return ok;
662}
663
664/* Try rich comparisons to determine a 3-way comparison. Return:
665 -2 for an exception;
Tim Petersc99213f2001-11-04 05:57:16 +0000666 -1 if v < w;
667 0 if v == w;
668 1 if v > w;
669 2 if this particular rich comparison is not implemented or undefined.
Guido van Rossume797ec12001-01-17 15:24:28 +0000670*/
671static int
672try_rich_to_3way_compare(PyObject *v, PyObject *w)
673{
Guido van Rossum2ffbf6b2001-01-17 21:27:02 +0000674 static struct { int op; int outcome; } tries[3] = {
675 /* Try this operator, and if it is true, use this outcome: */
676 {Py_EQ, 0},
677 {Py_LT, -1},
678 {Py_GT, 1},
679 };
680 int i;
681
Guido van Rossumd1f06b92001-01-24 22:14:43 +0000682 if (RICHCOMPARE(v->ob_type) == NULL && RICHCOMPARE(w->ob_type) == NULL)
Guido van Rossume797ec12001-01-17 15:24:28 +0000683 return 2; /* Shortcut */
Guido van Rossum2ffbf6b2001-01-17 21:27:02 +0000684
685 for (i = 0; i < 3; i++) {
686 switch (try_rich_compare_bool(v, w, tries[i].op)) {
687 case -1:
Tim Peters6d60b2e2001-05-07 20:53:51 +0000688 return -2;
Guido van Rossum2ffbf6b2001-01-17 21:27:02 +0000689 case 1:
690 return tries[i].outcome;
691 }
Guido van Rossume797ec12001-01-17 15:24:28 +0000692 }
Guido van Rossum2ffbf6b2001-01-17 21:27:02 +0000693
694 return 2;
Guido van Rossume797ec12001-01-17 15:24:28 +0000695}
696
697/* Try a 3-way comparison, returning an int. Return:
698 -2 for an exception;
Tim Petersc99213f2001-11-04 05:57:16 +0000699 -1 if v < w;
700 0 if v == w;
701 1 if v > w;
702 2 if this particular 3-way comparison is not implemented or undefined.
Guido van Rossume797ec12001-01-17 15:24:28 +0000703*/
704static int
705try_3way_compare(PyObject *v, PyObject *w)
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +0000706{
707 int c;
Guido van Rossume797ec12001-01-17 15:24:28 +0000708 cmpfunc f;
709
710 /* Comparisons involving instances are given to instance_compare,
711 which has the same return conventions as this function. */
712
Guido van Rossumab3b0342001-09-18 20:38:53 +0000713 f = v->ob_type->tp_compare;
Guido van Rossume797ec12001-01-17 15:24:28 +0000714 if (PyInstance_Check(v))
Guido van Rossumab3b0342001-09-18 20:38:53 +0000715 return (*f)(v, w);
Guido van Rossume797ec12001-01-17 15:24:28 +0000716 if (PyInstance_Check(w))
717 return (*w->ob_type->tp_compare)(v, w);
718
Guido van Rossumab3b0342001-09-18 20:38:53 +0000719 /* If both have the same (non-NULL) tp_compare, use it. */
720 if (f != NULL && f == w->ob_type->tp_compare) {
721 c = (*f)(v, w);
Guido van Rossuma4073002002-05-31 20:03:54 +0000722 return adjust_tp_compare(c);
Guido van Rossumab3b0342001-09-18 20:38:53 +0000723 }
724
725 /* If either tp_compare is _PyObject_SlotCompare, that's safe. */
726 if (f == _PyObject_SlotCompare ||
727 w->ob_type->tp_compare == _PyObject_SlotCompare)
728 return _PyObject_SlotCompare(v, w);
729
Armin Rigoa1748132004-12-23 22:13:13 +0000730 /* If we're here, v and w,
731 a) are not instances;
732 b) have different types or a type without tp_compare; and
733 c) don't have a user-defined tp_compare.
734 tp_compare implementations in C assume that both arguments
735 have their type, so we give up if the coercion fails or if
736 it yields types which are still incompatible (which can
737 happen with a user-defined nb_coerce).
738 */
Guido van Rossume797ec12001-01-17 15:24:28 +0000739 c = PyNumber_CoerceEx(&v, &w);
740 if (c < 0)
741 return -2;
742 if (c > 0)
743 return 2;
Armin Rigoa1748132004-12-23 22:13:13 +0000744 f = v->ob_type->tp_compare;
745 if (f != NULL && f == w->ob_type->tp_compare) {
Guido van Rossume797ec12001-01-17 15:24:28 +0000746 c = (*f)(v, w);
747 Py_DECREF(v);
748 Py_DECREF(w);
Guido van Rossuma4073002002-05-31 20:03:54 +0000749 return adjust_tp_compare(c);
Guido van Rossume797ec12001-01-17 15:24:28 +0000750 }
751
Guido van Rossume797ec12001-01-17 15:24:28 +0000752 /* No comparison defined */
753 Py_DECREF(v);
754 Py_DECREF(w);
755 return 2;
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +0000756}
757
Guido van Rossume797ec12001-01-17 15:24:28 +0000758/* Final fallback 3-way comparison, returning an int. Return:
759 -2 if an error occurred;
Tim Petersc99213f2001-11-04 05:57:16 +0000760 -1 if v < w;
761 0 if v == w;
762 1 if v > w.
Guido van Rossume797ec12001-01-17 15:24:28 +0000763*/
764static int
765default_3way_compare(PyObject *v, PyObject *w)
766{
767 int c;
Jeremy Hyltonaf68c872005-12-10 18:50:16 +0000768 const char *vname, *wname;
Guido van Rossume797ec12001-01-17 15:24:28 +0000769
770 if (v->ob_type == w->ob_type) {
Barry Warsawb0e754d2001-01-20 06:24:55 +0000771 /* When comparing these pointers, they must be cast to
772 * integer types (i.e. Py_uintptr_t, our spelling of C9X's
773 * uintptr_t). ANSI specifies that pointer compares other
774 * than == and != to non-related structures are undefined.
775 */
Barry Warsaw71ff8d52001-01-20 06:08:10 +0000776 Py_uintptr_t vv = (Py_uintptr_t)v;
777 Py_uintptr_t ww = (Py_uintptr_t)w;
Guido van Rossume797ec12001-01-17 15:24:28 +0000778 return (vv < ww) ? -1 : (vv > ww) ? 1 : 0;
779 }
780
Guido van Rossum0871e932001-01-22 19:28:09 +0000781 /* None is smaller than anything */
782 if (v == Py_None)
783 return -1;
784 if (w == Py_None)
785 return 1;
786
Guido van Rossumfb50d3f2003-02-18 16:40:09 +0000787 /* different type: compare type names; numbers are smaller */
788 if (PyNumber_Check(v))
Guido van Rossum8f9143d2001-01-22 15:59:32 +0000789 vname = "";
790 else
791 vname = v->ob_type->tp_name;
Guido van Rossumfb50d3f2003-02-18 16:40:09 +0000792 if (PyNumber_Check(w))
Guido van Rossum8f9143d2001-01-22 15:59:32 +0000793 wname = "";
794 else
795 wname = w->ob_type->tp_name;
796 c = strcmp(vname, wname);
797 if (c < 0)
798 return -1;
799 if (c > 0)
800 return 1;
801 /* Same type name, or (more likely) incomparable numeric types */
802 return ((Py_uintptr_t)(v->ob_type) < (
803 Py_uintptr_t)(w->ob_type)) ? -1 : 1;
Guido van Rossume797ec12001-01-17 15:24:28 +0000804}
805
Tim Peters6d60b2e2001-05-07 20:53:51 +0000806/* Do a 3-way comparison, by hook or by crook. Return:
Guido van Rossuma4073002002-05-31 20:03:54 +0000807 -2 for an exception (but see below);
Tim Petersc99213f2001-11-04 05:57:16 +0000808 -1 if v < w;
Tim Peters6d60b2e2001-05-07 20:53:51 +0000809 0 if v == w;
Tim Petersc99213f2001-11-04 05:57:16 +0000810 1 if v > w;
Guido van Rossuma4073002002-05-31 20:03:54 +0000811 BUT: if the object implements a tp_compare function, it returns
Martin v. Löwis0163d6d2001-06-09 07:34:05 +0000812 whatever this function returns (whether with an exception or not).
Tim Peters6d60b2e2001-05-07 20:53:51 +0000813*/
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +0000814static int
Fred Drake100814d2000-07-09 15:48:49 +0000815do_cmp(PyObject *v, PyObject *w)
Guido van Rossum20566841995-01-12 11:26:10 +0000816{
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +0000817 int c;
Martin v. Löwis0163d6d2001-06-09 07:34:05 +0000818 cmpfunc f;
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +0000819
Martin v. Löwis0163d6d2001-06-09 07:34:05 +0000820 if (v->ob_type == w->ob_type
Guido van Rossum82fc51c2001-08-16 08:02:45 +0000821 && (f = v->ob_type->tp_compare) != NULL) {
822 c = (*f)(v, w);
Guido van Rossuma4073002002-05-31 20:03:54 +0000823 if (PyInstance_Check(v)) {
824 /* Instance tp_compare has a different signature.
825 But if it returns undefined we fall through. */
826 if (c != 2)
827 return c;
Neal Norwitz3f8dae72002-05-31 20:23:33 +0000828 /* Else fall through to try_rich_to_3way_compare() */
Guido van Rossuma4073002002-05-31 20:03:54 +0000829 }
830 else
831 return adjust_tp_compare(c);
Guido van Rossum82fc51c2001-08-16 08:02:45 +0000832 }
Guido van Rossuma4073002002-05-31 20:03:54 +0000833 /* We only get here if one of the following is true:
834 a) v and w have different types
835 b) v and w have the same type, which doesn't have tp_compare
836 c) v and w are instances, and either __cmp__ is not defined or
837 __cmp__ returns NotImplemented
838 */
Guido van Rossume797ec12001-01-17 15:24:28 +0000839 c = try_rich_to_3way_compare(v, w);
840 if (c < 2)
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +0000841 return c;
Guido van Rossume797ec12001-01-17 15:24:28 +0000842 c = try_3way_compare(v, w);
843 if (c < 2)
844 return c;
845 return default_3way_compare(v, w);
Guido van Rossum20566841995-01-12 11:26:10 +0000846}
847
Tim Petersc99213f2001-11-04 05:57:16 +0000848/* Compare v to w. Return
849 -1 if v < w or exception (PyErr_Occurred() true in latter case).
850 0 if v == w.
851 1 if v > w.
852 XXX The docs (C API manual) say the return value is undefined in case
853 XXX of error.
854*/
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000855int
Fred Drake100814d2000-07-09 15:48:49 +0000856PyObject_Compare(PyObject *v, PyObject *w)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000857{
Jeremy Hylton4a3dd2d2000-04-14 19:13:24 +0000858 int result;
859
Guido van Rossumc8b6df91997-05-23 00:06:51 +0000860 if (v == NULL || w == NULL) {
861 PyErr_BadInternalCall();
862 return -1;
863 }
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000864 if (v == w)
865 return 0;
Armin Rigo2b3eb402003-10-28 12:05:48 +0000866 if (Py_EnterRecursiveCall(" in cmp"))
867 return -1;
868 result = do_cmp(v, w);
869 Py_LeaveRecursiveCall();
Guido van Rossume797ec12001-01-17 15:24:28 +0000870 return result < 0 ? -1 : result;
871}
872
Tim Petersc99213f2001-11-04 05:57:16 +0000873/* Return (new reference to) Py_True or Py_False. */
Guido van Rossume797ec12001-01-17 15:24:28 +0000874static PyObject *
Martin v. Löwis0163d6d2001-06-09 07:34:05 +0000875convert_3way_to_object(int op, int c)
Guido van Rossume797ec12001-01-17 15:24:28 +0000876{
Guido van Rossume797ec12001-01-17 15:24:28 +0000877 PyObject *result;
Guido van Rossume797ec12001-01-17 15:24:28 +0000878 switch (op) {
879 case Py_LT: c = c < 0; break;
880 case Py_LE: c = c <= 0; break;
881 case Py_EQ: c = c == 0; break;
882 case Py_NE: c = c != 0; break;
883 case Py_GT: c = c > 0; break;
884 case Py_GE: c = c >= 0; break;
885 }
886 result = c ? Py_True : Py_False;
887 Py_INCREF(result);
Jeremy Hylton4a3dd2d2000-04-14 19:13:24 +0000888 return result;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000889}
Tim Peters803526b2002-07-07 05:13:56 +0000890
Tim Petersc99213f2001-11-04 05:57:16 +0000891/* We want a rich comparison but don't have one. Try a 3-way cmp instead.
892 Return
893 NULL if error
894 Py_True if v op w
895 Py_False if not (v op w)
896*/
Martin v. Löwis0163d6d2001-06-09 07:34:05 +0000897static PyObject *
898try_3way_to_rich_compare(PyObject *v, PyObject *w, int op)
899{
900 int c;
901
902 c = try_3way_compare(v, w);
Steven Bethardae42f332008-03-18 17:26:10 +0000903 if (c >= 2) {
904
905 /* Py3K warning if types are not equal and comparison isn't == or != */
906 if (Py_Py3kWarningFlag &&
Georg Brandld5b635f2008-03-25 08:29:14 +0000907 v->ob_type != w->ob_type && op != Py_EQ && op != Py_NE &&
Benjamin Peterson9f4f4812008-04-27 03:01:45 +0000908 PyErr_WarnEx(PyExc_DeprecationWarning,
Georg Brandld5b635f2008-03-25 08:29:14 +0000909 "comparing unequal types not supported "
Benjamin Peterson9f4f4812008-04-27 03:01:45 +0000910 "in 3.x", 1) < 0) {
Steven Bethardae42f332008-03-18 17:26:10 +0000911 return NULL;
912 }
913
Martin v. Löwis0163d6d2001-06-09 07:34:05 +0000914 c = default_3way_compare(v, w);
Steven Bethardae42f332008-03-18 17:26:10 +0000915 }
Martin v. Löwis0163d6d2001-06-09 07:34:05 +0000916 if (c <= -2)
917 return NULL;
918 return convert_3way_to_object(op, c);
919}
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000920
Tim Petersc99213f2001-11-04 05:57:16 +0000921/* Do rich comparison on v and w. Return
922 NULL if error
923 Else a new reference to an object other than Py_NotImplemented, usually(?):
924 Py_True if v op w
925 Py_False if not (v op w)
926*/
Neil Schemenauerd38855c2001-01-21 16:25:18 +0000927static PyObject *
Guido van Rossume797ec12001-01-17 15:24:28 +0000928do_richcmp(PyObject *v, PyObject *w, int op)
929{
930 PyObject *res;
931
932 res = try_rich_compare(v, w, op);
933 if (res != Py_NotImplemented)
934 return res;
935 Py_DECREF(res);
936
937 return try_3way_to_rich_compare(v, w, op);
938}
939
Tim Petersc99213f2001-11-04 05:57:16 +0000940/* Return:
941 NULL for exception;
Tim Petersc99213f2001-11-04 05:57:16 +0000942 some object not equal to NotImplemented if it is implemented
943 (this latter object may not be a Boolean).
944*/
Guido van Rossume797ec12001-01-17 15:24:28 +0000945PyObject *
946PyObject_RichCompare(PyObject *v, PyObject *w, int op)
947{
948 PyObject *res;
949
950 assert(Py_LT <= op && op <= Py_GE);
Armin Rigo2b3eb402003-10-28 12:05:48 +0000951 if (Py_EnterRecursiveCall(" in cmp"))
952 return NULL;
Guido van Rossume797ec12001-01-17 15:24:28 +0000953
Armin Rigo2b3eb402003-10-28 12:05:48 +0000954 /* If the types are equal, and not old-style instances, try to
Tim Peters67754e92001-11-04 07:29:31 +0000955 get out cheap (don't bother with coercions etc.). */
956 if (v->ob_type == w->ob_type && !PyInstance_Check(v)) {
957 cmpfunc fcmp;
958 richcmpfunc frich = RICHCOMPARE(v->ob_type);
959 /* If the type has richcmp, try it first. try_rich_compare
960 tries it two-sided, which is not needed since we've a
961 single type only. */
962 if (frich != NULL) {
963 res = (*frich)(v, w, op);
964 if (res != Py_NotImplemented)
965 goto Done;
966 Py_DECREF(res);
967 }
968 /* No richcmp, or this particular richmp not implemented.
969 Try 3-way cmp. */
970 fcmp = v->ob_type->tp_compare;
971 if (fcmp != NULL) {
972 int c = (*fcmp)(v, w);
Guido van Rossuma4073002002-05-31 20:03:54 +0000973 c = adjust_tp_compare(c);
974 if (c == -2) {
Tim Peters67754e92001-11-04 07:29:31 +0000975 res = NULL;
976 goto Done;
977 }
978 res = convert_3way_to_object(op, c);
979 goto Done;
980 }
Guido van Rossum2ffbf6b2001-01-17 21:27:02 +0000981 }
Tim Peters67754e92001-11-04 07:29:31 +0000982
983 /* Fast path not taken, or couldn't deliver a useful result. */
984 res = do_richcmp(v, w, op);
985Done:
Armin Rigo2b3eb402003-10-28 12:05:48 +0000986 Py_LeaveRecursiveCall();
Guido van Rossume797ec12001-01-17 15:24:28 +0000987 return res;
988}
989
Tim Petersde9725f2001-05-05 10:06:17 +0000990/* Return -1 if error; 1 if v op w; 0 if not (v op w). */
Guido van Rossume797ec12001-01-17 15:24:28 +0000991int
992PyObject_RichCompareBool(PyObject *v, PyObject *w, int op)
993{
Raymond Hettinger93d44812004-03-21 17:01:44 +0000994 PyObject *res;
Guido van Rossume797ec12001-01-17 15:24:28 +0000995 int ok;
996
Raymond Hettinger93d44812004-03-21 17:01:44 +0000997 /* Quick result when objects are the same.
998 Guarantees that identity implies equality. */
999 if (v == w) {
1000 if (op == Py_EQ)
1001 return 1;
1002 else if (op == Py_NE)
1003 return 0;
1004 }
1005
1006 res = PyObject_RichCompare(v, w, op);
Guido van Rossume797ec12001-01-17 15:24:28 +00001007 if (res == NULL)
1008 return -1;
Guido van Rossum81912d42002-08-24 05:33:28 +00001009 if (PyBool_Check(res))
1010 ok = (res == Py_True);
1011 else
1012 ok = PyObject_IsTrue(res);
Guido van Rossume797ec12001-01-17 15:24:28 +00001013 Py_DECREF(res);
1014 return ok;
1015}
Fred Drake13634cf2000-06-29 19:17:04 +00001016
1017/* Set of hash utility functions to help maintaining the invariant that
Raymond Hettinger8183fa42004-03-21 17:35:06 +00001018 if a==b then hash(a)==hash(b)
Fred Drake13634cf2000-06-29 19:17:04 +00001019
1020 All the utility functions (_Py_Hash*()) return "-1" to signify an error.
1021*/
1022
1023long
Fred Drake100814d2000-07-09 15:48:49 +00001024_Py_HashDouble(double v)
Fred Drake13634cf2000-06-29 19:17:04 +00001025{
Tim Peters39dce292000-08-15 03:34:48 +00001026 double intpart, fractpart;
1027 int expo;
1028 long hipart;
1029 long x; /* the final hash value */
1030 /* This is designed so that Python numbers of different types
1031 * that compare equal hash to the same value; otherwise comparisons
1032 * of mapping keys will turn out weird.
1033 */
1034
Tim Peters39dce292000-08-15 03:34:48 +00001035 fractpart = modf(v, &intpart);
Tim Peters39dce292000-08-15 03:34:48 +00001036 if (fractpart == 0.0) {
1037 /* This must return the same hash as an equal int or long. */
Mark Dickinson10fe8772009-02-08 14:42:28 +00001038 if (intpart > LONG_MAX/2 || -intpart > LONG_MAX/2) {
Tim Peters39dce292000-08-15 03:34:48 +00001039 /* Convert to long and use its hash. */
1040 PyObject *plong; /* converted to Python long */
1041 if (Py_IS_INFINITY(intpart))
1042 /* can't convert to long int -- arbitrary */
1043 v = v < 0 ? -271828.0 : 314159.0;
1044 plong = PyLong_FromDouble(v);
1045 if (plong == NULL)
1046 return -1;
1047 x = PyObject_Hash(plong);
1048 Py_DECREF(plong);
1049 return x;
1050 }
1051 /* Fits in a C long == a Python int, so is its own hash. */
1052 x = (long)intpart;
1053 if (x == -1)
1054 x = -2;
1055 return x;
1056 }
1057 /* The fractional part is non-zero, so we don't have to worry about
1058 * making this match the hash of some other type.
1059 * Use frexp to get at the bits in the double.
Fred Drake13634cf2000-06-29 19:17:04 +00001060 * Since the VAX D double format has 56 mantissa bits, which is the
1061 * most of any double format in use, each of these parts may have as
1062 * many as (but no more than) 56 significant bits.
Tim Peters39dce292000-08-15 03:34:48 +00001063 * So, assuming sizeof(long) >= 4, each part can be broken into two
1064 * longs; frexp and multiplication are used to do that.
1065 * Also, since the Cray double format has 15 exponent bits, which is
1066 * the most of any double format in use, shifting the exponent field
1067 * left by 15 won't overflow a long (again assuming sizeof(long) >= 4).
Fred Drake13634cf2000-06-29 19:17:04 +00001068 */
Tim Peters39dce292000-08-15 03:34:48 +00001069 v = frexp(v, &expo);
1070 v *= 2147483648.0; /* 2**31 */
1071 hipart = (long)v; /* take the top 32 bits */
1072 v = (v - (double)hipart) * 2147483648.0; /* get the next 32 bits */
1073 x = hipart + (long)v + (expo << 15);
1074 if (x == -1)
1075 x = -2;
1076 return x;
Fred Drake13634cf2000-06-29 19:17:04 +00001077}
1078
1079long
Fred Drake100814d2000-07-09 15:48:49 +00001080_Py_HashPointer(void *p)
Fred Drake13634cf2000-06-29 19:17:04 +00001081{
Fred Drake13634cf2000-06-29 19:17:04 +00001082 long x;
Antoine Pitrou76a4b892009-02-13 13:52:33 +00001083 size_t y = (size_t)p;
1084 /* bottom 3 or 4 bits are likely to be 0; rotate y by 4 to avoid
1085 excessive hash collisions for dicts and sets */
Antoine Pitrou9e8a2502009-02-13 13:57:40 +00001086 y = (y >> 4) | (y << (8 * SIZEOF_VOID_P - 4));
Antoine Pitrou76a4b892009-02-13 13:52:33 +00001087 x = (long)y;
1088 if (x == -1)
1089 x = -2;
Fred Drake13634cf2000-06-29 19:17:04 +00001090 return x;
Fred Drake13634cf2000-06-29 19:17:04 +00001091}
1092
Nick Coghlan53663a62008-07-15 14:27:37 +00001093long
1094PyObject_HashNotImplemented(PyObject *self)
1095{
1096 PyErr_Format(PyExc_TypeError, "unhashable type: '%.200s'",
1097 self->ob_type->tp_name);
1098 return -1;
1099}
Fred Drake13634cf2000-06-29 19:17:04 +00001100
Guido van Rossum9bfef441993-03-29 10:43:31 +00001101long
Fred Drake100814d2000-07-09 15:48:49 +00001102PyObject_Hash(PyObject *v)
Guido van Rossum9bfef441993-03-29 10:43:31 +00001103{
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001104 PyTypeObject *tp = v->ob_type;
Guido van Rossum9bfef441993-03-29 10:43:31 +00001105 if (tp->tp_hash != NULL)
1106 return (*tp->tp_hash)(v);
Nick Coghlan180e4002008-12-30 01:18:48 +00001107 /* To keep to the general practice that inheriting
1108 * solely from object in C code should work without
1109 * an explicit call to PyType_Ready, we implicitly call
1110 * PyType_Ready here and then check the tp_hash slot again
1111 */
1112 if (tp->tp_dict == NULL) {
1113 if (PyType_Ready(tp) < 0)
1114 return -1;
1115 if (tp->tp_hash != NULL)
1116 return (*tp->tp_hash)(v);
1117 }
Guido van Rossumd1f06b92001-01-24 22:14:43 +00001118 if (tp->tp_compare == NULL && RICHCOMPARE(tp) == NULL) {
Fred Drake13634cf2000-06-29 19:17:04 +00001119 return _Py_HashPointer(v); /* Use address as hash value */
1120 }
Guido van Rossum9bfef441993-03-29 10:43:31 +00001121 /* If there's a cmp but no hash defined, the object can't be hashed */
Nick Coghlan53663a62008-07-15 14:27:37 +00001122 return PyObject_HashNotImplemented(v);
Guido van Rossum9bfef441993-03-29 10:43:31 +00001123}
1124
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001125PyObject *
Jeremy Hyltonaf68c872005-12-10 18:50:16 +00001126PyObject_GetAttrString(PyObject *v, const char *name)
Guido van Rossum3f5da241990-12-20 15:06:42 +00001127{
Tim Peters6d6c1a32001-08-02 04:15:00 +00001128 PyObject *w, *res;
Guido van Rossumd8eb1b31996-08-09 20:52:03 +00001129
Christian Heimese93237d2007-12-19 02:37:44 +00001130 if (Py_TYPE(v)->tp_getattr != NULL)
1131 return (*Py_TYPE(v)->tp_getattr)(v, (char*)name);
Gregory P. Smithdd96db62008-06-09 04:58:54 +00001132 w = PyString_InternFromString(name);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001133 if (w == NULL)
1134 return NULL;
1135 res = PyObject_GetAttr(v, w);
1136 Py_XDECREF(w);
1137 return res;
Guido van Rossum3f5da241990-12-20 15:06:42 +00001138}
1139
1140int
Jeremy Hyltonaf68c872005-12-10 18:50:16 +00001141PyObject_HasAttrString(PyObject *v, const char *name)
Guido van Rossumed18fdc1993-07-11 19:55:34 +00001142{
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001143 PyObject *res = PyObject_GetAttrString(v, name);
Guido van Rossumed18fdc1993-07-11 19:55:34 +00001144 if (res != NULL) {
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001145 Py_DECREF(res);
Guido van Rossumed18fdc1993-07-11 19:55:34 +00001146 return 1;
1147 }
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001148 PyErr_Clear();
Guido van Rossumed18fdc1993-07-11 19:55:34 +00001149 return 0;
1150}
1151
1152int
Jeremy Hyltonaf68c872005-12-10 18:50:16 +00001153PyObject_SetAttrString(PyObject *v, const char *name, PyObject *w)
Guido van Rossum3f5da241990-12-20 15:06:42 +00001154{
Tim Peters6d6c1a32001-08-02 04:15:00 +00001155 PyObject *s;
1156 int res;
Guido van Rossumd8eb1b31996-08-09 20:52:03 +00001157
Christian Heimese93237d2007-12-19 02:37:44 +00001158 if (Py_TYPE(v)->tp_setattr != NULL)
1159 return (*Py_TYPE(v)->tp_setattr)(v, (char*)name, w);
Gregory P. Smithdd96db62008-06-09 04:58:54 +00001160 s = PyString_InternFromString(name);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001161 if (s == NULL)
1162 return -1;
1163 res = PyObject_SetAttr(v, s, w);
1164 Py_XDECREF(s);
1165 return res;
Guido van Rossum3f5da241990-12-20 15:06:42 +00001166}
1167
Guido van Rossum98ff96a1997-05-20 18:34:44 +00001168PyObject *
Fred Drake100814d2000-07-09 15:48:49 +00001169PyObject_GetAttr(PyObject *v, PyObject *name)
Guido van Rossum98ff96a1997-05-20 18:34:44 +00001170{
Christian Heimese93237d2007-12-19 02:37:44 +00001171 PyTypeObject *tp = Py_TYPE(v);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001172
Gregory P. Smithdd96db62008-06-09 04:58:54 +00001173 if (!PyString_Check(name)) {
Martin v. Löwis0c160a02002-03-15 13:40:30 +00001174#ifdef Py_USING_UNICODE
1175 /* The Unicode to string conversion is done here because the
1176 existing tp_getattro slots expect a string object as name
1177 and we wouldn't want to break those. */
1178 if (PyUnicode_Check(name)) {
1179 name = _PyUnicode_AsDefaultEncodedString(name, NULL);
1180 if (name == NULL)
1181 return NULL;
1182 }
1183 else
1184#endif
1185 {
Georg Brandlccff7852006-06-18 22:17:29 +00001186 PyErr_Format(PyExc_TypeError,
1187 "attribute name must be string, not '%.200s'",
Christian Heimese93237d2007-12-19 02:37:44 +00001188 Py_TYPE(name)->tp_name);
Martin v. Löwis0c160a02002-03-15 13:40:30 +00001189 return NULL;
1190 }
Jeremy Hylton99a8f902000-06-23 14:36:32 +00001191 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00001192 if (tp->tp_getattro != NULL)
1193 return (*tp->tp_getattro)(v, name);
1194 if (tp->tp_getattr != NULL)
Gregory P. Smithdd96db62008-06-09 04:58:54 +00001195 return (*tp->tp_getattr)(v, PyString_AS_STRING(name));
Tim Peters6d6c1a32001-08-02 04:15:00 +00001196 PyErr_Format(PyExc_AttributeError,
1197 "'%.50s' object has no attribute '%.400s'",
Gregory P. Smithdd96db62008-06-09 04:58:54 +00001198 tp->tp_name, PyString_AS_STRING(name));
Tim Peters6d6c1a32001-08-02 04:15:00 +00001199 return NULL;
Guido van Rossum98ff96a1997-05-20 18:34:44 +00001200}
1201
1202int
Fred Drake100814d2000-07-09 15:48:49 +00001203PyObject_HasAttr(PyObject *v, PyObject *name)
Guido van Rossum98ff96a1997-05-20 18:34:44 +00001204{
1205 PyObject *res = PyObject_GetAttr(v, name);
1206 if (res != NULL) {
1207 Py_DECREF(res);
1208 return 1;
1209 }
1210 PyErr_Clear();
1211 return 0;
1212}
1213
1214int
Fred Drake100814d2000-07-09 15:48:49 +00001215PyObject_SetAttr(PyObject *v, PyObject *name, PyObject *value)
Guido van Rossum98ff96a1997-05-20 18:34:44 +00001216{
Christian Heimese93237d2007-12-19 02:37:44 +00001217 PyTypeObject *tp = Py_TYPE(v);
Guido van Rossum98ff96a1997-05-20 18:34:44 +00001218 int err;
Marc-André Lemburge44e5072000-09-18 16:20:57 +00001219
Gregory P. Smithdd96db62008-06-09 04:58:54 +00001220 if (!PyString_Check(name)){
Martin v. Löwis0c160a02002-03-15 13:40:30 +00001221#ifdef Py_USING_UNICODE
1222 /* The Unicode to string conversion is done here because the
1223 existing tp_setattro slots expect a string object as name
1224 and we wouldn't want to break those. */
1225 if (PyUnicode_Check(name)) {
1226 name = PyUnicode_AsEncodedString(name, NULL, NULL);
1227 if (name == NULL)
1228 return -1;
1229 }
Tim Peters803526b2002-07-07 05:13:56 +00001230 else
Martin v. Löwis0c160a02002-03-15 13:40:30 +00001231#endif
1232 {
Georg Brandlccff7852006-06-18 22:17:29 +00001233 PyErr_Format(PyExc_TypeError,
1234 "attribute name must be string, not '%.200s'",
Christian Heimese93237d2007-12-19 02:37:44 +00001235 Py_TYPE(name)->tp_name);
Martin v. Löwis0c160a02002-03-15 13:40:30 +00001236 return -1;
1237 }
Jeremy Hylton99a8f902000-06-23 14:36:32 +00001238 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00001239 else
1240 Py_INCREF(name);
1241
Gregory P. Smithdd96db62008-06-09 04:58:54 +00001242 PyString_InternInPlace(&name);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001243 if (tp->tp_setattro != NULL) {
1244 err = (*tp->tp_setattro)(v, name, value);
1245 Py_DECREF(name);
1246 return err;
Marc-André Lemburge44e5072000-09-18 16:20:57 +00001247 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00001248 if (tp->tp_setattr != NULL) {
Gregory P. Smithdd96db62008-06-09 04:58:54 +00001249 err = (*tp->tp_setattr)(v, PyString_AS_STRING(name), value);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001250 Py_DECREF(name);
1251 return err;
1252 }
Guido van Rossum98ff96a1997-05-20 18:34:44 +00001253 Py_DECREF(name);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001254 if (tp->tp_getattr == NULL && tp->tp_getattro == NULL)
1255 PyErr_Format(PyExc_TypeError,
1256 "'%.100s' object has no attributes "
1257 "(%s .%.100s)",
1258 tp->tp_name,
1259 value==NULL ? "del" : "assign to",
Gregory P. Smithdd96db62008-06-09 04:58:54 +00001260 PyString_AS_STRING(name));
Tim Peters6d6c1a32001-08-02 04:15:00 +00001261 else
1262 PyErr_Format(PyExc_TypeError,
1263 "'%.100s' object has only read-only attributes "
1264 "(%s .%.100s)",
1265 tp->tp_name,
1266 value==NULL ? "del" : "assign to",
Gregory P. Smithdd96db62008-06-09 04:58:54 +00001267 PyString_AS_STRING(name));
Tim Peters6d6c1a32001-08-02 04:15:00 +00001268 return -1;
1269}
1270
1271/* Helper to get a pointer to an object's __dict__ slot, if any */
1272
1273PyObject **
1274_PyObject_GetDictPtr(PyObject *obj)
1275{
Martin v. Löwis725507b2006-03-07 12:08:51 +00001276 Py_ssize_t dictoffset;
Christian Heimese93237d2007-12-19 02:37:44 +00001277 PyTypeObject *tp = Py_TYPE(obj);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001278
1279 if (!(tp->tp_flags & Py_TPFLAGS_HAVE_CLASS))
1280 return NULL;
1281 dictoffset = tp->tp_dictoffset;
1282 if (dictoffset == 0)
1283 return NULL;
1284 if (dictoffset < 0) {
Martin v. Löwis18e16552006-02-15 17:27:45 +00001285 Py_ssize_t tsize;
Guido van Rossum2eb0b872002-03-01 22:24:49 +00001286 size_t size;
1287
1288 tsize = ((PyVarObject *)obj)->ob_size;
1289 if (tsize < 0)
1290 tsize = -tsize;
1291 size = _PyObject_VAR_SIZE(tp, tsize);
1292
Tim Peters6d483d32001-10-06 21:27:34 +00001293 dictoffset += (long)size;
1294 assert(dictoffset > 0);
1295 assert(dictoffset % SIZEOF_VOID_P == 0);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001296 }
1297 return (PyObject **) ((char *)obj + dictoffset);
1298}
1299
Tim Peters6d6c1a32001-08-02 04:15:00 +00001300PyObject *
Raymond Hettinger1da1dbf2003-03-17 19:46:11 +00001301PyObject_SelfIter(PyObject *obj)
Raymond Hettinger01538262003-03-17 08:24:35 +00001302{
1303 Py_INCREF(obj);
1304 return obj;
1305}
1306
Amaury Forgeot d'Arca40d5732009-01-12 23:36:55 +00001307/* Helper used when the __next__ method is removed from a type:
1308 tp_iternext is never NULL and can be safely called without checking
1309 on every iteration.
1310 */
1311
1312PyObject *
1313_PyObject_NextNotImplemented(PyObject *self)
1314{
1315 PyErr_Format(PyExc_TypeError,
1316 "'%.200s' object is not iterable",
1317 Py_TYPE(self)->tp_name);
1318 return NULL;
1319}
1320
Michael W. Hudson1593f502004-09-14 17:09:47 +00001321/* Generic GetAttr functions - put these in your tp_[gs]etattro slot */
1322
Raymond Hettinger01538262003-03-17 08:24:35 +00001323PyObject *
Tim Peters6d6c1a32001-08-02 04:15:00 +00001324PyObject_GenericGetAttr(PyObject *obj, PyObject *name)
1325{
Christian Heimese93237d2007-12-19 02:37:44 +00001326 PyTypeObject *tp = Py_TYPE(obj);
Guido van Rossum056fbf42002-08-19 19:22:50 +00001327 PyObject *descr = NULL;
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001328 PyObject *res = NULL;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001329 descrgetfunc f;
Martin v. Löwis725507b2006-03-07 12:08:51 +00001330 Py_ssize_t dictoffset;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001331 PyObject **dictptr;
1332
Gregory P. Smithdd96db62008-06-09 04:58:54 +00001333 if (!PyString_Check(name)){
Martin v. Löwis0c160a02002-03-15 13:40:30 +00001334#ifdef Py_USING_UNICODE
1335 /* The Unicode to string conversion is done here because the
1336 existing tp_setattro slots expect a string object as name
1337 and we wouldn't want to break those. */
1338 if (PyUnicode_Check(name)) {
1339 name = PyUnicode_AsEncodedString(name, NULL, NULL);
1340 if (name == NULL)
1341 return NULL;
1342 }
Tim Peters803526b2002-07-07 05:13:56 +00001343 else
Martin v. Löwis0c160a02002-03-15 13:40:30 +00001344#endif
1345 {
Georg Brandlccff7852006-06-18 22:17:29 +00001346 PyErr_Format(PyExc_TypeError,
1347 "attribute name must be string, not '%.200s'",
Christian Heimese93237d2007-12-19 02:37:44 +00001348 Py_TYPE(name)->tp_name);
Martin v. Löwis0c160a02002-03-15 13:40:30 +00001349 return NULL;
1350 }
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001351 }
1352 else
1353 Py_INCREF(name);
1354
Tim Peters6d6c1a32001-08-02 04:15:00 +00001355 if (tp->tp_dict == NULL) {
Guido van Rossum528b7eb2001-08-07 17:24:28 +00001356 if (PyType_Ready(tp) < 0)
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001357 goto done;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001358 }
1359
Amaury Forgeot d'Arce4c270c2008-01-14 00:29:41 +00001360#if 0 /* XXX this is not quite _PyType_Lookup anymore */
Guido van Rossum056fbf42002-08-19 19:22:50 +00001361 /* Inline _PyType_Lookup */
1362 {
Martin v. Löwis18e16552006-02-15 17:27:45 +00001363 Py_ssize_t i, n;
Guido van Rossum056fbf42002-08-19 19:22:50 +00001364 PyObject *mro, *base, *dict;
1365
1366 /* Look in tp_dict of types in MRO */
1367 mro = tp->tp_mro;
1368 assert(mro != NULL);
1369 assert(PyTuple_Check(mro));
1370 n = PyTuple_GET_SIZE(mro);
1371 for (i = 0; i < n; i++) {
1372 base = PyTuple_GET_ITEM(mro, i);
1373 if (PyClass_Check(base))
1374 dict = ((PyClassObject *)base)->cl_dict;
1375 else {
1376 assert(PyType_Check(base));
1377 dict = ((PyTypeObject *)base)->tp_dict;
1378 }
1379 assert(dict && PyDict_Check(dict));
1380 descr = PyDict_GetItem(dict, name);
1381 if (descr != NULL)
1382 break;
1383 }
1384 }
Amaury Forgeot d'Arce4c270c2008-01-14 00:29:41 +00001385#else
1386 descr = _PyType_Lookup(tp, name);
1387#endif
Guido van Rossum056fbf42002-08-19 19:22:50 +00001388
Michael W. Hudsonb2c7de42003-08-15 13:07:47 +00001389 Py_XINCREF(descr);
1390
Tim Peters6d6c1a32001-08-02 04:15:00 +00001391 f = NULL;
Guido van Rossum90195e22003-02-19 03:19:29 +00001392 if (descr != NULL &&
1393 PyType_HasFeature(descr->ob_type, Py_TPFLAGS_HAVE_CLASS)) {
Tim Peters6d6c1a32001-08-02 04:15:00 +00001394 f = descr->ob_type->tp_descr_get;
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001395 if (f != NULL && PyDescr_IsData(descr)) {
1396 res = f(descr, obj, (PyObject *)obj->ob_type);
Michael W. Hudsonb2c7de42003-08-15 13:07:47 +00001397 Py_DECREF(descr);
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001398 goto done;
1399 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00001400 }
1401
Guido van Rossumc66ff442002-08-19 16:50:48 +00001402 /* Inline _PyObject_GetDictPtr */
1403 dictoffset = tp->tp_dictoffset;
1404 if (dictoffset != 0) {
1405 PyObject *dict;
1406 if (dictoffset < 0) {
Martin v. Löwis18e16552006-02-15 17:27:45 +00001407 Py_ssize_t tsize;
Guido van Rossumc66ff442002-08-19 16:50:48 +00001408 size_t size;
1409
1410 tsize = ((PyVarObject *)obj)->ob_size;
1411 if (tsize < 0)
1412 tsize = -tsize;
1413 size = _PyObject_VAR_SIZE(tp, tsize);
1414
1415 dictoffset += (long)size;
1416 assert(dictoffset > 0);
1417 assert(dictoffset % SIZEOF_VOID_P == 0);
1418 }
1419 dictptr = (PyObject **) ((char *)obj + dictoffset);
1420 dict = *dictptr;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001421 if (dict != NULL) {
Guido van Rossum37edeab2008-01-24 17:58:05 +00001422 Py_INCREF(dict);
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001423 res = PyDict_GetItem(dict, name);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001424 if (res != NULL) {
1425 Py_INCREF(res);
Michael W. Hudsonb2c7de42003-08-15 13:07:47 +00001426 Py_XDECREF(descr);
Guido van Rossum37edeab2008-01-24 17:58:05 +00001427 Py_DECREF(dict);
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001428 goto done;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001429 }
Guido van Rossum37edeab2008-01-24 17:58:05 +00001430 Py_DECREF(dict);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001431 }
1432 }
1433
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001434 if (f != NULL) {
Christian Heimese93237d2007-12-19 02:37:44 +00001435 res = f(descr, obj, (PyObject *)Py_TYPE(obj));
Michael W. Hudsonb2c7de42003-08-15 13:07:47 +00001436 Py_DECREF(descr);
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001437 goto done;
1438 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00001439
1440 if (descr != NULL) {
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001441 res = descr;
Michael W. Hudsonb2c7de42003-08-15 13:07:47 +00001442 /* descr was already increfed above */
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001443 goto done;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001444 }
1445
1446 PyErr_Format(PyExc_AttributeError,
1447 "'%.50s' object has no attribute '%.400s'",
Gregory P. Smithdd96db62008-06-09 04:58:54 +00001448 tp->tp_name, PyString_AS_STRING(name));
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001449 done:
1450 Py_DECREF(name);
1451 return res;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001452}
1453
1454int
1455PyObject_GenericSetAttr(PyObject *obj, PyObject *name, PyObject *value)
1456{
Christian Heimese93237d2007-12-19 02:37:44 +00001457 PyTypeObject *tp = Py_TYPE(obj);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001458 PyObject *descr;
1459 descrsetfunc f;
1460 PyObject **dictptr;
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001461 int res = -1;
1462
Gregory P. Smithdd96db62008-06-09 04:58:54 +00001463 if (!PyString_Check(name)){
Martin v. Löwis0c160a02002-03-15 13:40:30 +00001464#ifdef Py_USING_UNICODE
1465 /* The Unicode to string conversion is done here because the
1466 existing tp_setattro slots expect a string object as name
1467 and we wouldn't want to break those. */
1468 if (PyUnicode_Check(name)) {
1469 name = PyUnicode_AsEncodedString(name, NULL, NULL);
1470 if (name == NULL)
1471 return -1;
1472 }
Tim Peters803526b2002-07-07 05:13:56 +00001473 else
Martin v. Löwis0c160a02002-03-15 13:40:30 +00001474#endif
1475 {
Georg Brandlccff7852006-06-18 22:17:29 +00001476 PyErr_Format(PyExc_TypeError,
1477 "attribute name must be string, not '%.200s'",
Christian Heimese93237d2007-12-19 02:37:44 +00001478 Py_TYPE(name)->tp_name);
Martin v. Löwis0c160a02002-03-15 13:40:30 +00001479 return -1;
1480 }
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001481 }
1482 else
1483 Py_INCREF(name);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001484
1485 if (tp->tp_dict == NULL) {
Guido van Rossum528b7eb2001-08-07 17:24:28 +00001486 if (PyType_Ready(tp) < 0)
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001487 goto done;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001488 }
1489
1490 descr = _PyType_Lookup(tp, name);
1491 f = NULL;
Guido van Rossum90195e22003-02-19 03:19:29 +00001492 if (descr != NULL &&
1493 PyType_HasFeature(descr->ob_type, Py_TPFLAGS_HAVE_CLASS)) {
Tim Peters6d6c1a32001-08-02 04:15:00 +00001494 f = descr->ob_type->tp_descr_set;
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001495 if (f != NULL && PyDescr_IsData(descr)) {
1496 res = f(descr, obj, value);
1497 goto done;
1498 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00001499 }
1500
1501 dictptr = _PyObject_GetDictPtr(obj);
1502 if (dictptr != NULL) {
1503 PyObject *dict = *dictptr;
1504 if (dict == NULL && value != NULL) {
1505 dict = PyDict_New();
1506 if (dict == NULL)
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001507 goto done;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001508 *dictptr = dict;
1509 }
1510 if (dict != NULL) {
Guido van Rossum37edeab2008-01-24 17:58:05 +00001511 Py_INCREF(dict);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001512 if (value == NULL)
1513 res = PyDict_DelItem(dict, name);
1514 else
1515 res = PyDict_SetItem(dict, name, value);
1516 if (res < 0 && PyErr_ExceptionMatches(PyExc_KeyError))
1517 PyErr_SetObject(PyExc_AttributeError, name);
Guido van Rossum37edeab2008-01-24 17:58:05 +00001518 Py_DECREF(dict);
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001519 goto done;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001520 }
1521 }
1522
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001523 if (f != NULL) {
1524 res = f(descr, obj, value);
1525 goto done;
1526 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00001527
1528 if (descr == NULL) {
1529 PyErr_Format(PyExc_AttributeError,
Georg Brandlccff7852006-06-18 22:17:29 +00001530 "'%.100s' object has no attribute '%.200s'",
Gregory P. Smithdd96db62008-06-09 04:58:54 +00001531 tp->tp_name, PyString_AS_STRING(name));
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001532 goto done;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001533 }
1534
1535 PyErr_Format(PyExc_AttributeError,
1536 "'%.50s' object attribute '%.400s' is read-only",
Gregory P. Smithdd96db62008-06-09 04:58:54 +00001537 tp->tp_name, PyString_AS_STRING(name));
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001538 done:
1539 Py_DECREF(name);
1540 return res;
Guido van Rossum98ff96a1997-05-20 18:34:44 +00001541}
1542
Guido van Rossum6ac258d1993-05-12 08:24:20 +00001543/* Test a value used as condition, e.g., in a for or if statement.
1544 Return -1 if an error occurred */
1545
1546int
Fred Drake100814d2000-07-09 15:48:49 +00001547PyObject_IsTrue(PyObject *v)
Guido van Rossum6ac258d1993-05-12 08:24:20 +00001548{
Martin v. Löwis18e16552006-02-15 17:27:45 +00001549 Py_ssize_t res;
Guido van Rossum6248f442002-08-24 06:31:34 +00001550 if (v == Py_True)
1551 return 1;
1552 if (v == Py_False)
1553 return 0;
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001554 if (v == Py_None)
Neal Norwitz51290d32002-06-13 21:32:44 +00001555 return 0;
Guido van Rossum1c4f4581998-05-22 00:53:24 +00001556 else if (v->ob_type->tp_as_number != NULL &&
1557 v->ob_type->tp_as_number->nb_nonzero != NULL)
Guido van Rossum6ac258d1993-05-12 08:24:20 +00001558 res = (*v->ob_type->tp_as_number->nb_nonzero)(v);
Guido van Rossum1c4f4581998-05-22 00:53:24 +00001559 else if (v->ob_type->tp_as_mapping != NULL &&
1560 v->ob_type->tp_as_mapping->mp_length != NULL)
Guido van Rossum6ac258d1993-05-12 08:24:20 +00001561 res = (*v->ob_type->tp_as_mapping->mp_length)(v);
Guido van Rossum1c4f4581998-05-22 00:53:24 +00001562 else if (v->ob_type->tp_as_sequence != NULL &&
1563 v->ob_type->tp_as_sequence->sq_length != NULL)
Guido van Rossum6ac258d1993-05-12 08:24:20 +00001564 res = (*v->ob_type->tp_as_sequence->sq_length)(v);
1565 else
Neal Norwitz51290d32002-06-13 21:32:44 +00001566 return 1;
Martin v. Löwis18e16552006-02-15 17:27:45 +00001567 /* if it is negative, it should be either -1 or -2 */
1568 return (res > 0) ? 1 : Py_SAFE_DOWNCAST(res, Py_ssize_t, int);
Guido van Rossum6ac258d1993-05-12 08:24:20 +00001569}
1570
Tim Peters803526b2002-07-07 05:13:56 +00001571/* equivalent of 'not v'
Guido van Rossumc3d3f961998-04-09 17:53:59 +00001572 Return -1 if an error occurred */
1573
1574int
Fred Drake100814d2000-07-09 15:48:49 +00001575PyObject_Not(PyObject *v)
Guido van Rossumc3d3f961998-04-09 17:53:59 +00001576{
1577 int res;
1578 res = PyObject_IsTrue(v);
1579 if (res < 0)
1580 return res;
1581 return res == 0;
1582}
1583
Guido van Rossum5524a591995-01-10 15:26:20 +00001584/* Coerce two numeric types to the "larger" one.
1585 Increment the reference count on each argument.
Guido van Rossume797ec12001-01-17 15:24:28 +00001586 Return value:
1587 -1 if an error occurred;
1588 0 if the coercion succeeded (and then the reference counts are increased);
1589 1 if no coercion is possible (and no error is raised).
Guido van Rossum5524a591995-01-10 15:26:20 +00001590*/
Guido van Rossum5524a591995-01-10 15:26:20 +00001591int
Fred Drake100814d2000-07-09 15:48:49 +00001592PyNumber_CoerceEx(PyObject **pv, PyObject **pw)
Guido van Rossum5524a591995-01-10 15:26:20 +00001593{
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001594 register PyObject *v = *pv;
1595 register PyObject *w = *pw;
Guido van Rossum5524a591995-01-10 15:26:20 +00001596 int res;
1597
Guido van Rossum517c7d42002-04-26 02:49:14 +00001598 /* Shortcut only for old-style types */
1599 if (v->ob_type == w->ob_type &&
1600 !PyType_HasFeature(v->ob_type, Py_TPFLAGS_CHECKTYPES))
1601 {
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001602 Py_INCREF(v);
1603 Py_INCREF(w);
Guido van Rossum5524a591995-01-10 15:26:20 +00001604 return 0;
1605 }
1606 if (v->ob_type->tp_as_number && v->ob_type->tp_as_number->nb_coerce) {
1607 res = (*v->ob_type->tp_as_number->nb_coerce)(pv, pw);
1608 if (res <= 0)
1609 return res;
1610 }
1611 if (w->ob_type->tp_as_number && w->ob_type->tp_as_number->nb_coerce) {
1612 res = (*w->ob_type->tp_as_number->nb_coerce)(pw, pv);
1613 if (res <= 0)
1614 return res;
1615 }
Guido van Rossum242c6421997-11-19 16:03:17 +00001616 return 1;
1617}
1618
Guido van Rossume797ec12001-01-17 15:24:28 +00001619/* Coerce two numeric types to the "larger" one.
1620 Increment the reference count on each argument.
1621 Return -1 and raise an exception if no coercion is possible
1622 (and then no reference count is incremented).
1623*/
Guido van Rossum242c6421997-11-19 16:03:17 +00001624int
Fred Drake100814d2000-07-09 15:48:49 +00001625PyNumber_Coerce(PyObject **pv, PyObject **pw)
Guido van Rossum242c6421997-11-19 16:03:17 +00001626{
1627 int err = PyNumber_CoerceEx(pv, pw);
1628 if (err <= 0)
1629 return err;
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001630 PyErr_SetString(PyExc_TypeError, "number coercion failed");
Guido van Rossum5524a591995-01-10 15:26:20 +00001631 return -1;
1632}
1633
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001634
Guido van Rossum49b11fe1995-01-26 00:38:22 +00001635/* Test whether an object can be called */
1636
1637int
Fred Drake100814d2000-07-09 15:48:49 +00001638PyCallable_Check(PyObject *x)
Guido van Rossum49b11fe1995-01-26 00:38:22 +00001639{
1640 if (x == NULL)
1641 return 0;
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001642 if (PyInstance_Check(x)) {
1643 PyObject *call = PyObject_GetAttrString(x, "__call__");
Guido van Rossum49b11fe1995-01-26 00:38:22 +00001644 if (call == NULL) {
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001645 PyErr_Clear();
Guido van Rossum49b11fe1995-01-26 00:38:22 +00001646 return 0;
1647 }
1648 /* Could test recursively but don't, for fear of endless
1649 recursion if some joker sets self.__call__ = self */
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001650 Py_DECREF(call);
Guido van Rossum49b11fe1995-01-26 00:38:22 +00001651 return 1;
1652 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00001653 else {
1654 return x->ob_type->tp_call != NULL;
1655 }
Guido van Rossum49b11fe1995-01-26 00:38:22 +00001656}
1657
Georg Brandl871f1bc2007-03-12 13:17:36 +00001658/* ------------------------- PyObject_Dir() helpers ------------------------- */
1659
Tim Peters7eea37e2001-09-04 22:08:56 +00001660/* Helper for PyObject_Dir.
1661 Merge the __dict__ of aclass into dict, and recursively also all
1662 the __dict__s of aclass's base classes. The order of merging isn't
1663 defined, as it's expected that only the final set of dict keys is
1664 interesting.
1665 Return 0 on success, -1 on error.
1666*/
1667
1668static int
1669merge_class_dict(PyObject* dict, PyObject* aclass)
1670{
1671 PyObject *classdict;
1672 PyObject *bases;
1673
1674 assert(PyDict_Check(dict));
1675 assert(aclass);
1676
1677 /* Merge in the type's dict (if any). */
1678 classdict = PyObject_GetAttrString(aclass, "__dict__");
1679 if (classdict == NULL)
1680 PyErr_Clear();
1681 else {
1682 int status = PyDict_Update(dict, classdict);
1683 Py_DECREF(classdict);
1684 if (status < 0)
1685 return -1;
1686 }
1687
1688 /* Recursively merge in the base types' (if any) dicts. */
1689 bases = PyObject_GetAttrString(aclass, "__bases__");
Tim Petersbc7e8632001-09-16 20:33:22 +00001690 if (bases == NULL)
1691 PyErr_Clear();
1692 else {
Guido van Rossum44022412002-05-13 18:29:46 +00001693 /* We have no guarantee that bases is a real tuple */
Martin v. Löwis18e16552006-02-15 17:27:45 +00001694 Py_ssize_t i, n;
Guido van Rossum44022412002-05-13 18:29:46 +00001695 n = PySequence_Size(bases); /* This better be right */
1696 if (n < 0)
1697 PyErr_Clear();
1698 else {
1699 for (i = 0; i < n; i++) {
Tim Peters18e70832003-02-05 19:35:19 +00001700 int status;
Guido van Rossum44022412002-05-13 18:29:46 +00001701 PyObject *base = PySequence_GetItem(bases, i);
1702 if (base == NULL) {
1703 Py_DECREF(bases);
1704 return -1;
1705 }
Tim Peters18e70832003-02-05 19:35:19 +00001706 status = merge_class_dict(dict, base);
1707 Py_DECREF(base);
1708 if (status < 0) {
Guido van Rossum44022412002-05-13 18:29:46 +00001709 Py_DECREF(bases);
1710 return -1;
1711 }
Tim Peters7eea37e2001-09-04 22:08:56 +00001712 }
1713 }
1714 Py_DECREF(bases);
1715 }
1716 return 0;
1717}
1718
Tim Peters305b5852001-09-17 02:38:46 +00001719/* Helper for PyObject_Dir.
1720 If obj has an attr named attrname that's a list, merge its string
1721 elements into keys of dict.
1722 Return 0 on success, -1 on error. Errors due to not finding the attr,
1723 or the attr not being a list, are suppressed.
1724*/
1725
1726static int
Jeremy Hyltonaf68c872005-12-10 18:50:16 +00001727merge_list_attr(PyObject* dict, PyObject* obj, const char *attrname)
Tim Peters305b5852001-09-17 02:38:46 +00001728{
1729 PyObject *list;
1730 int result = 0;
1731
1732 assert(PyDict_Check(dict));
1733 assert(obj);
1734 assert(attrname);
1735
1736 list = PyObject_GetAttrString(obj, attrname);
1737 if (list == NULL)
1738 PyErr_Clear();
1739
1740 else if (PyList_Check(list)) {
1741 int i;
1742 for (i = 0; i < PyList_GET_SIZE(list); ++i) {
1743 PyObject *item = PyList_GET_ITEM(list, i);
Gregory P. Smithdd96db62008-06-09 04:58:54 +00001744 if (PyString_Check(item)) {
Tim Peters305b5852001-09-17 02:38:46 +00001745 result = PyDict_SetItem(dict, item, Py_None);
1746 if (result < 0)
1747 break;
1748 }
1749 }
Georg Brandl07e56812008-03-21 20:21:46 +00001750 if (Py_Py3kWarningFlag &&
1751 (strcmp(attrname, "__members__") == 0 ||
1752 strcmp(attrname, "__methods__") == 0)) {
Benjamin Peterson9f4f4812008-04-27 03:01:45 +00001753 if (PyErr_WarnEx(PyExc_DeprecationWarning,
Georg Brandld5b635f2008-03-25 08:29:14 +00001754 "__members__ and __methods__ not "
Benjamin Peterson9f4f4812008-04-27 03:01:45 +00001755 "supported in 3.x", 1) < 0) {
Georg Brandl07e56812008-03-21 20:21:46 +00001756 Py_XDECREF(list);
1757 return -1;
1758 }
1759 }
Tim Peters305b5852001-09-17 02:38:46 +00001760 }
1761
1762 Py_XDECREF(list);
1763 return result;
1764}
1765
Georg Brandl871f1bc2007-03-12 13:17:36 +00001766/* Helper for PyObject_Dir without arguments: returns the local scope. */
1767static PyObject *
Jeremy Hylton26ca9252007-03-16 14:49:11 +00001768_dir_locals(void)
Tim Peters7eea37e2001-09-04 22:08:56 +00001769{
Georg Brandl871f1bc2007-03-12 13:17:36 +00001770 PyObject *names;
1771 PyObject *locals = PyEval_GetLocals();
Tim Peters7eea37e2001-09-04 22:08:56 +00001772
Georg Brandl871f1bc2007-03-12 13:17:36 +00001773 if (locals == NULL) {
1774 PyErr_SetString(PyExc_SystemError, "frame does not exist");
1775 return NULL;
Tim Peters7eea37e2001-09-04 22:08:56 +00001776 }
1777
Georg Brandl871f1bc2007-03-12 13:17:36 +00001778 names = PyMapping_Keys(locals);
1779 if (!names)
1780 return NULL;
1781 if (!PyList_Check(names)) {
Georg Brandlccff7852006-06-18 22:17:29 +00001782 PyErr_Format(PyExc_TypeError,
Georg Brandl871f1bc2007-03-12 13:17:36 +00001783 "dir(): expected keys() of locals to be a list, "
Christian Heimese93237d2007-12-19 02:37:44 +00001784 "not '%.200s'", Py_TYPE(names)->tp_name);
Georg Brandl871f1bc2007-03-12 13:17:36 +00001785 Py_DECREF(names);
1786 return NULL;
Raymond Hettinger2a7dede2004-08-07 04:55:30 +00001787 }
Georg Brandl871f1bc2007-03-12 13:17:36 +00001788 /* the locals don't need to be DECREF'd */
1789 return names;
1790}
Tim Peters7eea37e2001-09-04 22:08:56 +00001791
Georg Brandl871f1bc2007-03-12 13:17:36 +00001792/* Helper for PyObject_Dir of type objects: returns __dict__ and __bases__.
1793 We deliberately don't suck up its __class__, as methods belonging to the
1794 metaclass would probably be more confusing than helpful.
1795*/
1796static PyObject *
1797_specialized_dir_type(PyObject *obj)
1798{
1799 PyObject *result = NULL;
1800 PyObject *dict = PyDict_New();
1801
1802 if (dict != NULL && merge_class_dict(dict, obj) == 0)
1803 result = PyDict_Keys(dict);
1804
1805 Py_XDECREF(dict);
1806 return result;
1807}
1808
1809/* Helper for PyObject_Dir of module objects: returns the module's __dict__. */
1810static PyObject *
1811_specialized_dir_module(PyObject *obj)
1812{
1813 PyObject *result = NULL;
1814 PyObject *dict = PyObject_GetAttrString(obj, "__dict__");
1815
1816 if (dict != NULL) {
1817 if (PyDict_Check(dict))
1818 result = PyDict_Keys(dict);
1819 else {
1820 PyErr_Format(PyExc_TypeError,
1821 "%.200s.__dict__ is not a dictionary",
1822 PyModule_GetName(obj));
1823 }
1824 }
1825
1826 Py_XDECREF(dict);
1827 return result;
1828}
1829
1830/* Helper for PyObject_Dir of generic objects: returns __dict__, __class__,
1831 and recursively up the __class__.__bases__ chain.
1832*/
1833static PyObject *
1834_generic_dir(PyObject *obj)
1835{
1836 PyObject *result = NULL;
1837 PyObject *dict = NULL;
1838 PyObject *itsclass = NULL;
1839
1840 /* Get __dict__ (which may or may not be a real dict...) */
1841 dict = PyObject_GetAttrString(obj, "__dict__");
1842 if (dict == NULL) {
1843 PyErr_Clear();
1844 dict = PyDict_New();
1845 }
1846 else if (!PyDict_Check(dict)) {
1847 Py_DECREF(dict);
1848 dict = PyDict_New();
1849 }
1850 else {
1851 /* Copy __dict__ to avoid mutating it. */
1852 PyObject *temp = PyDict_Copy(dict);
1853 Py_DECREF(dict);
1854 dict = temp;
1855 }
1856
1857 if (dict == NULL)
1858 goto error;
1859
1860 /* Merge in __members__ and __methods__ (if any).
1861 * This is removed in Python 3000. */
1862 if (merge_list_attr(dict, obj, "__members__") < 0)
1863 goto error;
1864 if (merge_list_attr(dict, obj, "__methods__") < 0)
1865 goto error;
1866
1867 /* Merge in attrs reachable from its class. */
1868 itsclass = PyObject_GetAttrString(obj, "__class__");
1869 if (itsclass == NULL)
1870 /* XXX(tomer): Perhaps fall back to obj->ob_type if no
1871 __class__ exists? */
1872 PyErr_Clear();
1873 else {
1874 if (merge_class_dict(dict, itsclass) != 0)
1875 goto error;
1876 }
1877
1878 result = PyDict_Keys(dict);
Tim Peters7eea37e2001-09-04 22:08:56 +00001879 /* fall through */
Georg Brandl871f1bc2007-03-12 13:17:36 +00001880error:
1881 Py_XDECREF(itsclass);
1882 Py_XDECREF(dict);
1883 return result;
1884}
1885
1886/* Helper for PyObject_Dir: object introspection.
1887 This calls one of the above specialized versions if no __dir__ method
1888 exists. */
1889static PyObject *
1890_dir_object(PyObject *obj)
1891{
Georg Brandl3bb15672007-03-13 07:23:16 +00001892 PyObject *result = NULL;
1893 PyObject *dirfunc = PyObject_GetAttrString((PyObject *)obj->ob_type,
1894 "__dir__");
Georg Brandl871f1bc2007-03-12 13:17:36 +00001895
1896 assert(obj);
1897 if (dirfunc == NULL) {
1898 /* use default implementation */
1899 PyErr_Clear();
1900 if (PyModule_Check(obj))
1901 result = _specialized_dir_module(obj);
1902 else if (PyType_Check(obj) || PyClass_Check(obj))
1903 result = _specialized_dir_type(obj);
1904 else
1905 result = _generic_dir(obj);
1906 }
1907 else {
1908 /* use __dir__ */
1909 result = PyObject_CallFunctionObjArgs(dirfunc, obj, NULL);
1910 Py_DECREF(dirfunc);
1911 if (result == NULL)
1912 return NULL;
1913
1914 /* result must be a list */
1915 /* XXX(gbrandl): could also check if all items are strings */
1916 if (!PyList_Check(result)) {
1917 PyErr_Format(PyExc_TypeError,
1918 "__dir__() must return a list, not %.200s",
Christian Heimese93237d2007-12-19 02:37:44 +00001919 Py_TYPE(result)->tp_name);
Georg Brandl871f1bc2007-03-12 13:17:36 +00001920 Py_DECREF(result);
1921 result = NULL;
1922 }
1923 }
1924
1925 return result;
1926}
1927
1928/* Implementation of dir() -- if obj is NULL, returns the names in the current
1929 (local) scope. Otherwise, performs introspection of the object: returns a
1930 sorted list of attribute names (supposedly) accessible from the object
1931*/
1932PyObject *
1933PyObject_Dir(PyObject *obj)
1934{
1935 PyObject * result;
1936
1937 if (obj == NULL)
1938 /* no object -- introspect the locals */
1939 result = _dir_locals();
1940 else
1941 /* object -- introspect the object */
1942 result = _dir_object(obj);
1943
1944 assert(result == NULL || PyList_Check(result));
1945
1946 if (result != NULL && PyList_Sort(result) != 0) {
1947 /* sorting the list failed */
1948 Py_DECREF(result);
1949 result = NULL;
1950 }
1951
Tim Peters7eea37e2001-09-04 22:08:56 +00001952 return result;
1953}
Guido van Rossum49b11fe1995-01-26 00:38:22 +00001954
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001955/*
1956NoObject is usable as a non-NULL undefined value, used by the macro None.
1957There is (and should be!) no way to create other objects of this type,
Guido van Rossum3f5da241990-12-20 15:06:42 +00001958so there is exactly one (which is indestructible, by the way).
Guido van Rossumba21a492001-08-16 08:17:26 +00001959(XXX This type and the type of NotImplemented below should be unified.)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001960*/
1961
Guido van Rossum0c182a11992-03-27 17:26:13 +00001962/* ARGSUSED */
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001963static PyObject *
Fred Drake100814d2000-07-09 15:48:49 +00001964none_repr(PyObject *op)
Guido van Rossum3f5da241990-12-20 15:06:42 +00001965{
Gregory P. Smithdd96db62008-06-09 04:58:54 +00001966 return PyString_FromString("None");
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001967}
1968
Barry Warsaw9bf16442001-01-23 16:24:35 +00001969/* ARGUSED */
1970static void
Tim Peters803526b2002-07-07 05:13:56 +00001971none_dealloc(PyObject* ignore)
Barry Warsaw9bf16442001-01-23 16:24:35 +00001972{
1973 /* This should never get called, but we also don't want to SEGV if
Mark Dickinson3e4caeb2009-02-21 20:27:01 +00001974 * we accidentally decref None out of existence.
Barry Warsaw9bf16442001-01-23 16:24:35 +00001975 */
Martin v. Löwis3f19b102002-08-07 16:21:51 +00001976 Py_FatalError("deallocating None");
Barry Warsaw9bf16442001-01-23 16:24:35 +00001977}
1978
1979
Guido van Rossumba21a492001-08-16 08:17:26 +00001980static PyTypeObject PyNone_Type = {
Martin v. Löwis68192102007-07-21 06:55:02 +00001981 PyVarObject_HEAD_INIT(&PyType_Type, 0)
Guido van Rossumba21a492001-08-16 08:17:26 +00001982 "NoneType",
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001983 0,
1984 0,
Georg Brandl347b3002006-03-30 11:57:00 +00001985 none_dealloc, /*tp_dealloc*/ /*never called*/
Guido van Rossum7066dd71992-09-17 17:54:56 +00001986 0, /*tp_print*/
Guido van Rossum3f5da241990-12-20 15:06:42 +00001987 0, /*tp_getattr*/
1988 0, /*tp_setattr*/
1989 0, /*tp_compare*/
Georg Brandl347b3002006-03-30 11:57:00 +00001990 none_repr, /*tp_repr*/
Guido van Rossum3f5da241990-12-20 15:06:42 +00001991 0, /*tp_as_number*/
1992 0, /*tp_as_sequence*/
1993 0, /*tp_as_mapping*/
Guido van Rossum64c06e32007-11-22 00:55:51 +00001994 (hashfunc)_Py_HashPointer, /*tp_hash */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001995};
1996
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001997PyObject _Py_NoneStruct = {
Martin v. Löwis68192102007-07-21 06:55:02 +00001998 _PyObject_EXTRA_INIT
1999 1, &PyNone_Type
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002000};
2001
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +00002002/* NotImplemented is an object that can be used to signal that an
2003 operation is not implemented for the given type combination. */
2004
2005static PyObject *
2006NotImplemented_repr(PyObject *op)
2007{
Gregory P. Smithdd96db62008-06-09 04:58:54 +00002008 return PyString_FromString("NotImplemented");
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +00002009}
2010
2011static PyTypeObject PyNotImplemented_Type = {
Martin v. Löwis68192102007-07-21 06:55:02 +00002012 PyVarObject_HEAD_INIT(&PyType_Type, 0)
Guido van Rossumba21a492001-08-16 08:17:26 +00002013 "NotImplementedType",
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +00002014 0,
2015 0,
Georg Brandl347b3002006-03-30 11:57:00 +00002016 none_dealloc, /*tp_dealloc*/ /*never called*/
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +00002017 0, /*tp_print*/
2018 0, /*tp_getattr*/
2019 0, /*tp_setattr*/
2020 0, /*tp_compare*/
Georg Brandl347b3002006-03-30 11:57:00 +00002021 NotImplemented_repr, /*tp_repr*/
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +00002022 0, /*tp_as_number*/
2023 0, /*tp_as_sequence*/
2024 0, /*tp_as_mapping*/
2025 0, /*tp_hash */
2026};
2027
2028PyObject _Py_NotImplementedStruct = {
Martin v. Löwis68192102007-07-21 06:55:02 +00002029 _PyObject_EXTRA_INIT
2030 1, &PyNotImplemented_Type
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +00002031};
2032
Guido van Rossumba21a492001-08-16 08:17:26 +00002033void
2034_Py_ReadyTypes(void)
2035{
2036 if (PyType_Ready(&PyType_Type) < 0)
Benjamin Petersond4d400c2009-04-18 20:12:47 +00002037 Py_FatalError("Can't initialize type type");
Guido van Rossumba21a492001-08-16 08:17:26 +00002038
Fred Drake0a4dd392004-07-02 18:57:45 +00002039 if (PyType_Ready(&_PyWeakref_RefType) < 0)
Benjamin Petersond4d400c2009-04-18 20:12:47 +00002040 Py_FatalError("Can't initialize weakref type");
Fred Drake0a4dd392004-07-02 18:57:45 +00002041
Benjamin Peterson308c6ba2009-04-19 02:32:42 +00002042 if (PyType_Ready(&_PyWeakref_CallableProxyType) < 0)
2043 Py_FatalError("Can't initialize callable weakref proxy type");
2044
2045 if (PyType_Ready(&_PyWeakref_ProxyType) < 0)
2046 Py_FatalError("Can't initialize weakref proxy type");
2047
Guido van Rossum77f6a652002-04-03 22:41:51 +00002048 if (PyType_Ready(&PyBool_Type) < 0)
Benjamin Petersond4d400c2009-04-18 20:12:47 +00002049 Py_FatalError("Can't initialize bool type");
Guido van Rossum77f6a652002-04-03 22:41:51 +00002050
Gregory P. Smithdd96db62008-06-09 04:58:54 +00002051 if (PyType_Ready(&PyString_Type) < 0)
Benjamin Petersond4d400c2009-04-18 20:12:47 +00002052 Py_FatalError("Can't initialize str type");
Guido van Rossumcacfc072002-05-24 19:01:59 +00002053
Christian Heimes3497f942008-05-26 12:29:14 +00002054 if (PyType_Ready(&PyByteArray_Type) < 0)
Benjamin Peterson8cfa8e62009-04-19 02:40:43 +00002055 Py_FatalError("Can't initialize bytearray type");
Christian Heimes1a6387e2008-03-26 12:49:49 +00002056
Guido van Rossumba21a492001-08-16 08:17:26 +00002057 if (PyType_Ready(&PyList_Type) < 0)
Benjamin Peterson8cfa8e62009-04-19 02:40:43 +00002058 Py_FatalError("Can't initialize list type");
Guido van Rossumba21a492001-08-16 08:17:26 +00002059
2060 if (PyType_Ready(&PyNone_Type) < 0)
Benjamin Petersond4d400c2009-04-18 20:12:47 +00002061 Py_FatalError("Can't initialize None type");
Guido van Rossumba21a492001-08-16 08:17:26 +00002062
2063 if (PyType_Ready(&PyNotImplemented_Type) < 0)
Benjamin Petersond4d400c2009-04-18 20:12:47 +00002064 Py_FatalError("Can't initialize NotImplemented type");
2065
2066 if (PyType_Ready(&PyTraceBack_Type) < 0)
2067 Py_FatalError("Can't initialize traceback type");
2068
2069 if (PyType_Ready(&PySuper_Type) < 0)
2070 Py_FatalError("Can't initialize super type");
2071
2072 if (PyType_Ready(&PyBaseObject_Type) < 0)
2073 Py_FatalError("Can't initialize object type");
2074
2075 if (PyType_Ready(&PyRange_Type) < 0)
2076 Py_FatalError("Can't initialize xrange type");
2077
2078 if (PyType_Ready(&PyDict_Type) < 0)
2079 Py_FatalError("Can't initialize dict type");
2080
2081 if (PyType_Ready(&PySet_Type) < 0)
2082 Py_FatalError("Can't initialize set type");
2083
2084 if (PyType_Ready(&PyUnicode_Type) < 0)
2085 Py_FatalError("Can't initialize unicode type");
2086
2087 if (PyType_Ready(&PySlice_Type) < 0)
2088 Py_FatalError("Can't initialize slice type");
2089
2090 if (PyType_Ready(&PyStaticMethod_Type) < 0)
2091 Py_FatalError("Can't initialize static method type");
2092
Benjamin Peterson01c6e6f2009-04-18 22:15:26 +00002093#ifndef WITHOUT_COMPLEX
Benjamin Petersond4d400c2009-04-18 20:12:47 +00002094 if (PyType_Ready(&PyComplex_Type) < 0)
Benjamin Peterson01c6e6f2009-04-18 22:15:26 +00002095 Py_FatalError("Can't initialize complex type");
2096#endif
Benjamin Petersond4d400c2009-04-18 20:12:47 +00002097
2098 if (PyType_Ready(&PyFloat_Type) < 0)
Benjamin Peterson5ce73752009-04-18 20:25:25 +00002099 Py_FatalError("Can't initialize float type");
Benjamin Petersond4d400c2009-04-18 20:12:47 +00002100
2101 if (PyType_Ready(&PyBuffer_Type) < 0)
2102 Py_FatalError("Can't initialize buffer type");
2103
2104 if (PyType_Ready(&PyLong_Type) < 0)
2105 Py_FatalError("Can't initialize long type");
2106
2107 if (PyType_Ready(&PyInt_Type) < 0)
2108 Py_FatalError("Can't initialize int type");
2109
2110 if (PyType_Ready(&PyFrozenSet_Type) < 0)
2111 Py_FatalError("Can't initialize frozenset type");
2112
2113 if (PyType_Ready(&PyProperty_Type) < 0)
2114 Py_FatalError("Can't initialize property type");
2115
2116 if (PyType_Ready(&PyMemoryView_Type) < 0)
2117 Py_FatalError("Can't initialize memoryview type");
2118
2119 if (PyType_Ready(&PyTuple_Type) < 0)
Benjamin Peterson5ce73752009-04-18 20:25:25 +00002120 Py_FatalError("Can't initialize tuple type");
Benjamin Petersond4d400c2009-04-18 20:12:47 +00002121
2122 if (PyType_Ready(&PyEnum_Type) < 0)
Benjamin Peterson5ce73752009-04-18 20:25:25 +00002123 Py_FatalError("Can't initialize enumerate type");
Benjamin Petersond4d400c2009-04-18 20:12:47 +00002124
2125 if (PyType_Ready(&PyReversed_Type) < 0)
Benjamin Peterson5ce73752009-04-18 20:25:25 +00002126 Py_FatalError("Can't initialize reversed type");
Benjamin Peterson01c6e6f2009-04-18 22:15:26 +00002127
2128 if (PyType_Ready(&PyCode_Type) < 0)
2129 Py_FatalError("Can't initialize code type");
2130
2131 if (PyType_Ready(&PyFrame_Type) < 0)
2132 Py_FatalError("Can't initialize frame type");
2133
2134 if (PyType_Ready(&PyCFunction_Type) < 0)
2135 Py_FatalError("Can't initialize builtin function type");
2136
2137 if (PyType_Ready(&PyMethod_Type) < 0)
2138 Py_FatalError("Can't initialize method type");
2139
2140 if (PyType_Ready(&PyFunction_Type) < 0)
2141 Py_FatalError("Can't initialize function type");
2142
2143 if (PyType_Ready(&PyClass_Type) < 0)
2144 Py_FatalError("Can't initialize class type");
2145
2146 if (PyType_Ready(&PyDictProxy_Type) < 0)
2147 Py_FatalError("Can't initialize dict proxy type");
2148
2149 if (PyType_Ready(&PyGen_Type) < 0)
2150 Py_FatalError("Can't initialize generator type");
2151
2152 if (PyType_Ready(&PyGetSetDescr_Type) < 0)
2153 Py_FatalError("Can't initialize get-set descriptor type");
2154
2155 if (PyType_Ready(&PyWrapperDescr_Type) < 0)
2156 Py_FatalError("Can't initialize wrapper type");
2157
2158 if (PyType_Ready(&PyInstance_Type) < 0)
2159 Py_FatalError("Can't initialize instance type");
2160
2161 if (PyType_Ready(&PyEllipsis_Type) < 0)
2162 Py_FatalError("Can't initialize ellipsis type");
2163
2164 if (PyType_Ready(&PyMemberDescr_Type) < 0)
2165 Py_FatalError("Can't initialize member descriptor type");
Guido van Rossumba21a492001-08-16 08:17:26 +00002166}
2167
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002168
Guido van Rossum84a90321996-05-22 16:34:47 +00002169#ifdef Py_TRACE_REFS
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002170
Guido van Rossumaacdc9d1996-08-12 21:32:12 +00002171void
Fred Drake100814d2000-07-09 15:48:49 +00002172_Py_NewReference(PyObject *op)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002173{
Tim Peters34592512002-07-11 06:23:50 +00002174 _Py_INC_REFTOTAL;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002175 op->ob_refcnt = 1;
Tim Peters7571a0f2003-03-23 17:52:28 +00002176 _Py_AddToAllObjects(op, 1);
Tim Peters34592512002-07-11 06:23:50 +00002177 _Py_INC_TPALLOCS(op);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002178}
2179
Guido van Rossumaacdc9d1996-08-12 21:32:12 +00002180void
Fred Drake100814d2000-07-09 15:48:49 +00002181_Py_ForgetReference(register PyObject *op)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002182{
Guido van Rossumbffd6832000-01-20 22:32:56 +00002183#ifdef SLOW_UNREF_CHECK
Guido van Rossum4c08d552000-03-10 22:55:18 +00002184 register PyObject *p;
Guido van Rossumbffd6832000-01-20 22:32:56 +00002185#endif
Guido van Rossumd7047b31995-01-02 19:07:15 +00002186 if (op->ob_refcnt < 0)
Guido van Rossumc0b618a1997-05-02 03:12:38 +00002187 Py_FatalError("UNREF negative refcnt");
Guido van Rossum2e8f6141992-09-03 20:32:55 +00002188 if (op == &refchain ||
Guido van Rossumd7047b31995-01-02 19:07:15 +00002189 op->_ob_prev->_ob_next != op || op->_ob_next->_ob_prev != op)
Guido van Rossumc0b618a1997-05-02 03:12:38 +00002190 Py_FatalError("UNREF invalid object");
Guido van Rossum2e8f6141992-09-03 20:32:55 +00002191#ifdef SLOW_UNREF_CHECK
Guido van Rossum3f5da241990-12-20 15:06:42 +00002192 for (p = refchain._ob_next; p != &refchain; p = p->_ob_next) {
2193 if (p == op)
2194 break;
2195 }
Guido van Rossumd7047b31995-01-02 19:07:15 +00002196 if (p == &refchain) /* Not found */
Guido van Rossumc0b618a1997-05-02 03:12:38 +00002197 Py_FatalError("UNREF unknown object");
Guido van Rossum2e8f6141992-09-03 20:32:55 +00002198#endif
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002199 op->_ob_next->_ob_prev = op->_ob_prev;
2200 op->_ob_prev->_ob_next = op->_ob_next;
Guido van Rossum2e8f6141992-09-03 20:32:55 +00002201 op->_ob_next = op->_ob_prev = NULL;
Tim Peters34592512002-07-11 06:23:50 +00002202 _Py_INC_TPFREES(op);
Guido van Rossum3f5da241990-12-20 15:06:42 +00002203}
2204
Guido van Rossumaacdc9d1996-08-12 21:32:12 +00002205void
Fred Drake100814d2000-07-09 15:48:49 +00002206_Py_Dealloc(PyObject *op)
Guido van Rossum3f5da241990-12-20 15:06:42 +00002207{
Christian Heimese93237d2007-12-19 02:37:44 +00002208 destructor dealloc = Py_TYPE(op)->tp_dealloc;
Guido van Rossumc0b618a1997-05-02 03:12:38 +00002209 _Py_ForgetReference(op);
Guido van Rossum9776adf1994-09-07 14:36:45 +00002210 (*dealloc)(op);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002211}
2212
Tim Peters269b2a62003-04-17 19:52:29 +00002213/* Print all live objects. Because PyObject_Print is called, the
2214 * interpreter must be in a healthy state.
2215 */
Guido van Rossumaacdc9d1996-08-12 21:32:12 +00002216void
Fred Drake100814d2000-07-09 15:48:49 +00002217_Py_PrintReferences(FILE *fp)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002218{
Guido van Rossumc0b618a1997-05-02 03:12:38 +00002219 PyObject *op;
Guido van Rossume09fb551997-08-05 02:04:34 +00002220 fprintf(fp, "Remaining objects:\n");
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002221 for (op = refchain._ob_next; op != &refchain; op = op->_ob_next) {
Tim Peterscbd6f182006-04-11 19:12:33 +00002222 fprintf(fp, "%p [%" PY_FORMAT_SIZE_T "d] ", op, op->ob_refcnt);
Guido van Rossumc0b618a1997-05-02 03:12:38 +00002223 if (PyObject_Print(op, fp, 0) != 0)
2224 PyErr_Clear();
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002225 putc('\n', fp);
2226 }
2227}
2228
Tim Peters269b2a62003-04-17 19:52:29 +00002229/* Print the addresses of all live objects. Unlike _Py_PrintReferences, this
2230 * doesn't make any calls to the Python C API, so is always safe to call.
2231 */
2232void
2233_Py_PrintReferenceAddresses(FILE *fp)
2234{
2235 PyObject *op;
2236 fprintf(fp, "Remaining object addresses:\n");
2237 for (op = refchain._ob_next; op != &refchain; op = op->_ob_next)
Tim Peterscbd6f182006-04-11 19:12:33 +00002238 fprintf(fp, "%p [%" PY_FORMAT_SIZE_T "d] %s\n", op,
Christian Heimese93237d2007-12-19 02:37:44 +00002239 op->ob_refcnt, Py_TYPE(op)->tp_name);
Tim Peters269b2a62003-04-17 19:52:29 +00002240}
2241
Sjoerd Mullender6ec3c651995-08-29 09:18:14 +00002242PyObject *
Fred Drake100814d2000-07-09 15:48:49 +00002243_Py_GetObjects(PyObject *self, PyObject *args)
Sjoerd Mullender6ec3c651995-08-29 09:18:14 +00002244{
2245 int i, n;
2246 PyObject *t = NULL;
2247 PyObject *res, *op;
2248
2249 if (!PyArg_ParseTuple(args, "i|O", &n, &t))
2250 return NULL;
2251 op = refchain._ob_next;
2252 res = PyList_New(0);
2253 if (res == NULL)
2254 return NULL;
2255 for (i = 0; (n == 0 || i < n) && op != &refchain; i++) {
2256 while (op == self || op == args || op == res || op == t ||
Christian Heimese93237d2007-12-19 02:37:44 +00002257 (t != NULL && Py_TYPE(op) != (PyTypeObject *) t)) {
Sjoerd Mullender6ec3c651995-08-29 09:18:14 +00002258 op = op->_ob_next;
2259 if (op == &refchain)
2260 return res;
2261 }
2262 if (PyList_Append(res, op) < 0) {
2263 Py_DECREF(res);
2264 return NULL;
2265 }
2266 op = op->_ob_next;
2267 }
2268 return res;
2269}
2270
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002271#endif
Guido van Rossum97ead3f1996-01-12 01:24:09 +00002272
2273
2274/* Hack to force loading of cobject.o */
Guido van Rossumda9c2711996-12-05 21:58:58 +00002275PyTypeObject *_Py_cobject_hack = &PyCObject_Type;
Guido van Rossum84a90321996-05-22 16:34:47 +00002276
2277
2278/* Hack to force loading of abstract.o */
Martin v. Löwis18e16552006-02-15 17:27:45 +00002279Py_ssize_t (*_Py_abstract_hack)(PyObject *) = PyObject_Size;
Guido van Rossume09fb551997-08-05 02:04:34 +00002280
2281
Andrew M. Kuchling1582a3a2000-08-16 12:27:23 +00002282/* Python's malloc wrappers (see pymem.h) */
Guido van Rossume09fb551997-08-05 02:04:34 +00002283
Thomas Wouters334fb892000-07-25 12:56:38 +00002284void *
Fred Drake100814d2000-07-09 15:48:49 +00002285PyMem_Malloc(size_t nbytes)
Guido van Rossume09fb551997-08-05 02:04:34 +00002286{
Guido van Rossumb18618d2000-05-03 23:44:39 +00002287 return PyMem_MALLOC(nbytes);
Guido van Rossume09fb551997-08-05 02:04:34 +00002288}
2289
Thomas Wouters334fb892000-07-25 12:56:38 +00002290void *
2291PyMem_Realloc(void *p, size_t nbytes)
Guido van Rossume09fb551997-08-05 02:04:34 +00002292{
Tim Petersaf3e8de2002-04-12 07:22:56 +00002293 return PyMem_REALLOC(p, nbytes);
Guido van Rossume09fb551997-08-05 02:04:34 +00002294}
2295
2296void
Thomas Wouters334fb892000-07-25 12:56:38 +00002297PyMem_Free(void *p)
Guido van Rossume09fb551997-08-05 02:04:34 +00002298{
Guido van Rossumb18618d2000-05-03 23:44:39 +00002299 PyMem_FREE(p);
2300}
2301
2302
Guido van Rossum86610361998-04-10 22:32:46 +00002303/* These methods are used to control infinite recursion in repr, str, print,
2304 etc. Container objects that may recursively contain themselves,
2305 e.g. builtin dictionaries and lists, should used Py_ReprEnter() and
2306 Py_ReprLeave() to avoid infinite recursion.
2307
2308 Py_ReprEnter() returns 0 the first time it is called for a particular
2309 object and 1 every time thereafter. It returns -1 if an exception
2310 occurred. Py_ReprLeave() has no return value.
2311
2312 See dictobject.c and listobject.c for examples of use.
2313*/
2314
2315#define KEY "Py_Repr"
2316
2317int
Fred Drake100814d2000-07-09 15:48:49 +00002318Py_ReprEnter(PyObject *obj)
Guido van Rossum86610361998-04-10 22:32:46 +00002319{
2320 PyObject *dict;
2321 PyObject *list;
Martin v. Löwis18e16552006-02-15 17:27:45 +00002322 Py_ssize_t i;
Guido van Rossum86610361998-04-10 22:32:46 +00002323
2324 dict = PyThreadState_GetDict();
2325 if (dict == NULL)
Guido van Rossum0fc8f002003-04-15 15:12:39 +00002326 return 0;
Guido van Rossum86610361998-04-10 22:32:46 +00002327 list = PyDict_GetItemString(dict, KEY);
2328 if (list == NULL) {
2329 list = PyList_New(0);
2330 if (list == NULL)
2331 return -1;
2332 if (PyDict_SetItemString(dict, KEY, list) < 0)
2333 return -1;
2334 Py_DECREF(list);
2335 }
2336 i = PyList_GET_SIZE(list);
2337 while (--i >= 0) {
2338 if (PyList_GET_ITEM(list, i) == obj)
2339 return 1;
2340 }
2341 PyList_Append(list, obj);
2342 return 0;
2343}
2344
2345void
Fred Drake100814d2000-07-09 15:48:49 +00002346Py_ReprLeave(PyObject *obj)
Guido van Rossum86610361998-04-10 22:32:46 +00002347{
2348 PyObject *dict;
2349 PyObject *list;
Martin v. Löwis18e16552006-02-15 17:27:45 +00002350 Py_ssize_t i;
Guido van Rossum86610361998-04-10 22:32:46 +00002351
2352 dict = PyThreadState_GetDict();
Guido van Rossumeb909461998-04-11 15:17:34 +00002353 if (dict == NULL)
2354 return;
Guido van Rossum86610361998-04-10 22:32:46 +00002355 list = PyDict_GetItemString(dict, KEY);
Guido van Rossumeb909461998-04-11 15:17:34 +00002356 if (list == NULL || !PyList_Check(list))
2357 return;
Guido van Rossum86610361998-04-10 22:32:46 +00002358 i = PyList_GET_SIZE(list);
2359 /* Count backwards because we always expect obj to be list[-1] */
2360 while (--i >= 0) {
2361 if (PyList_GET_ITEM(list, i) == obj) {
2362 PyList_SetSlice(list, i, i + 1, NULL);
2363 break;
2364 }
2365 }
2366}
Guido van Rossumd724b232000-03-13 16:01:29 +00002367
Tim Peters803526b2002-07-07 05:13:56 +00002368/* Trashcan support. */
Guido van Rossumd724b232000-03-13 16:01:29 +00002369
Tim Peters803526b2002-07-07 05:13:56 +00002370/* Current call-stack depth of tp_dealloc calls. */
Guido van Rossumd724b232000-03-13 16:01:29 +00002371int _PyTrash_delete_nesting = 0;
Guido van Rossume92e6102000-04-24 15:40:53 +00002372
Tim Peters803526b2002-07-07 05:13:56 +00002373/* List of objects that still need to be cleaned up, singly linked via their
2374 * gc headers' gc_prev pointers.
2375 */
2376PyObject *_PyTrash_delete_later = NULL;
Guido van Rossumd724b232000-03-13 16:01:29 +00002377
Tim Peters803526b2002-07-07 05:13:56 +00002378/* Add op to the _PyTrash_delete_later list. Called when the current
2379 * call-stack depth gets large. op must be a currently untracked gc'ed
2380 * object, with refcount 0. Py_DECREF must already have been called on it.
2381 */
Guido van Rossumd724b232000-03-13 16:01:29 +00002382void
Fred Drake100814d2000-07-09 15:48:49 +00002383_PyTrash_deposit_object(PyObject *op)
Guido van Rossumd724b232000-03-13 16:01:29 +00002384{
Tim Peters803526b2002-07-07 05:13:56 +00002385 assert(PyObject_IS_GC(op));
2386 assert(_Py_AS_GC(op)->gc.gc_refs == _PyGC_REFS_UNTRACKED);
2387 assert(op->ob_refcnt == 0);
Neil Schemenauerf589c052002-03-29 03:05:54 +00002388 _Py_AS_GC(op)->gc.gc_prev = (PyGC_Head *)_PyTrash_delete_later;
Guido van Rossume92e6102000-04-24 15:40:53 +00002389 _PyTrash_delete_later = op;
Guido van Rossumd724b232000-03-13 16:01:29 +00002390}
2391
Tim Peters803526b2002-07-07 05:13:56 +00002392/* Dealloccate all the objects in the _PyTrash_delete_later list. Called when
2393 * the call-stack unwinds again.
2394 */
Guido van Rossumd724b232000-03-13 16:01:29 +00002395void
Fred Drake100814d2000-07-09 15:48:49 +00002396_PyTrash_destroy_chain(void)
Guido van Rossumd724b232000-03-13 16:01:29 +00002397{
2398 while (_PyTrash_delete_later) {
Tim Peters803526b2002-07-07 05:13:56 +00002399 PyObject *op = _PyTrash_delete_later;
Christian Heimese93237d2007-12-19 02:37:44 +00002400 destructor dealloc = Py_TYPE(op)->tp_dealloc;
Neil Schemenauerf589c052002-03-29 03:05:54 +00002401
Neil Schemenauerf589c052002-03-29 03:05:54 +00002402 _PyTrash_delete_later =
Tim Peters803526b2002-07-07 05:13:56 +00002403 (PyObject*) _Py_AS_GC(op)->gc.gc_prev;
Neil Schemenauerf589c052002-03-29 03:05:54 +00002404
Tim Peters803526b2002-07-07 05:13:56 +00002405 /* Call the deallocator directly. This used to try to
2406 * fool Py_DECREF into calling it indirectly, but
2407 * Py_DECREF was already called on this object, and in
2408 * assorted non-release builds calling Py_DECREF again ends
2409 * up distorting allocation statistics.
2410 */
2411 assert(op->ob_refcnt == 0);
Guido van Rossumd724b232000-03-13 16:01:29 +00002412 ++_PyTrash_delete_nesting;
Tim Peters803526b2002-07-07 05:13:56 +00002413 (*dealloc)(op);
Guido van Rossumd724b232000-03-13 16:01:29 +00002414 --_PyTrash_delete_nesting;
2415 }
2416}
Anthony Baxterac6bd462006-04-13 02:06:09 +00002417
2418#ifdef __cplusplus
2419}
2420#endif