blob: 788e7320e3cb1a96b27443b2b8c4087692cdada9 [file] [log] [blame]
Guido van Rossumf70e43a1991-02-19 12:39:46 +00001
Guido van Rossum3f5da241990-12-20 15:06:42 +00002/* Generic object operations; and implementation of None (NoObject) */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00003
Guido van Rossumc0b618a1997-05-02 03:12:38 +00004#include "Python.h"
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00005
Anthony Baxterac6bd462006-04-13 02:06:09 +00006#ifdef __cplusplus
7extern "C" {
8#endif
9
Tim Peters34592512002-07-11 06:23:50 +000010#ifdef Py_REF_DEBUG
Neal Norwitz84632ee2006-03-04 20:00:59 +000011Py_ssize_t _Py_RefTotal;
Armin Rigoe1709372006-04-12 17:06:05 +000012
13Py_ssize_t
14_Py_GetRefTotal(void)
15{
16 PyObject *o;
17 Py_ssize_t total = _Py_RefTotal;
18 /* ignore the references to the dummy object of the dicts and sets
19 because they are not reliable and not useful (now that the
20 hash table code is well-tested) */
21 o = _PyDict_Dummy();
22 if (o != NULL)
23 total -= o->ob_refcnt;
24 o = _PySet_Dummy();
25 if (o != NULL)
26 total -= o->ob_refcnt;
27 return total;
28}
29#endif /* Py_REF_DEBUG */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000030
Mark Hammonda2905272002-07-29 13:42:14 +000031int Py_DivisionWarningFlag;
Neal Norwitz8b2bfbc2007-05-23 06:35:32 +000032int Py_Py3kWarningFlag;
Guido van Rossum393661d2001-08-31 17:40:15 +000033
Guido van Rossum3f5da241990-12-20 15:06:42 +000034/* Object allocation routines used by NEWOBJ and NEWVAROBJ macros.
35 These are used by the individual routines for object creation.
36 Do not call them otherwise, they do not initialize the object! */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000037
Tim Peters78be7992003-03-23 02:51:01 +000038#ifdef Py_TRACE_REFS
Tim Peters7571a0f2003-03-23 17:52:28 +000039/* Head of circular doubly-linked list of all objects. These are linked
40 * together via the _ob_prev and _ob_next members of a PyObject, which
41 * exist only in a Py_TRACE_REFS build.
42 */
Tim Peters78be7992003-03-23 02:51:01 +000043static PyObject refchain = {&refchain, &refchain};
Tim Peters36eb4df2003-03-23 03:33:13 +000044
Tim Peters7571a0f2003-03-23 17:52:28 +000045/* Insert op at the front of the list of all objects. If force is true,
46 * op is added even if _ob_prev and _ob_next are non-NULL already. If
47 * force is false amd _ob_prev or _ob_next are non-NULL, do nothing.
48 * force should be true if and only if op points to freshly allocated,
49 * uninitialized memory, or you've unlinked op from the list and are
Tim Peters51f8d382003-03-23 18:06:08 +000050 * relinking it into the front.
Tim Peters7571a0f2003-03-23 17:52:28 +000051 * Note that objects are normally added to the list via _Py_NewReference,
52 * which is called by PyObject_Init. Not all objects are initialized that
53 * way, though; exceptions include statically allocated type objects, and
54 * statically allocated singletons (like Py_True and Py_None).
55 */
Tim Peters36eb4df2003-03-23 03:33:13 +000056void
Tim Peters7571a0f2003-03-23 17:52:28 +000057_Py_AddToAllObjects(PyObject *op, int force)
Tim Peters36eb4df2003-03-23 03:33:13 +000058{
Tim Peters7571a0f2003-03-23 17:52:28 +000059#ifdef Py_DEBUG
60 if (!force) {
61 /* If it's initialized memory, op must be in or out of
62 * the list unambiguously.
63 */
64 assert((op->_ob_prev == NULL) == (op->_ob_next == NULL));
65 }
Tim Peters78be7992003-03-23 02:51:01 +000066#endif
Tim Peters7571a0f2003-03-23 17:52:28 +000067 if (force || op->_ob_prev == NULL) {
68 op->_ob_next = refchain._ob_next;
69 op->_ob_prev = &refchain;
70 refchain._ob_next->_ob_prev = op;
71 refchain._ob_next = op;
72 }
73}
74#endif /* Py_TRACE_REFS */
Tim Peters78be7992003-03-23 02:51:01 +000075
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +000076#ifdef COUNT_ALLOCS
Guido van Rossumc0b618a1997-05-02 03:12:38 +000077static PyTypeObject *type_list;
Andrew M. Kuchling2060d1b2006-04-18 11:49:53 +000078/* All types are added to type_list, at least when
Martin v. Löwis45294a92006-04-18 06:24:08 +000079 they get one object created. That makes them
80 immortal, which unfortunately contributes to
81 garbage itself. If unlist_types_without_objects
82 is set, they will be removed from the type_list
83 once the last object is deallocated. */
84int unlist_types_without_objects;
Sjoerd Mullender842d2cc1993-10-15 16:18:48 +000085extern int tuple_zero_allocs, fast_tuple_allocs;
86extern int quick_int_allocs, quick_neg_int_allocs;
Sjoerd Mullender3bb8a051993-10-22 12:04:32 +000087extern int null_strings, one_strings;
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +000088void
Martin v. Löwis45294a92006-04-18 06:24:08 +000089dump_counts(FILE* f)
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +000090{
Guido van Rossumc0b618a1997-05-02 03:12:38 +000091 PyTypeObject *tp;
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +000092
93 for (tp = type_list; tp; tp = tp->tp_next)
Martin v. Löwis45294a92006-04-18 06:24:08 +000094 fprintf(f, "%s alloc'd: %d, freed: %d, max in use: %d\n",
Tim Peters6d6c1a32001-08-02 04:15:00 +000095 tp->tp_name, tp->tp_allocs, tp->tp_frees,
Sjoerd Mullender52c1f511993-10-25 08:40:52 +000096 tp->tp_maxalloc);
Martin v. Löwis45294a92006-04-18 06:24:08 +000097 fprintf(f, "fast tuple allocs: %d, empty: %d\n",
Sjoerd Mullender52c1f511993-10-25 08:40:52 +000098 fast_tuple_allocs, tuple_zero_allocs);
Martin v. Löwis45294a92006-04-18 06:24:08 +000099 fprintf(f, "fast int allocs: pos: %d, neg: %d\n",
Sjoerd Mullender52c1f511993-10-25 08:40:52 +0000100 quick_int_allocs, quick_neg_int_allocs);
Martin v. Löwis45294a92006-04-18 06:24:08 +0000101 fprintf(f, "null strings: %d, 1-strings: %d\n",
Sjoerd Mullender52c1f511993-10-25 08:40:52 +0000102 null_strings, one_strings);
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +0000103}
104
Sjoerd Mullender6ec3c651995-08-29 09:18:14 +0000105PyObject *
Fred Drake100814d2000-07-09 15:48:49 +0000106get_counts(void)
Sjoerd Mullender6ec3c651995-08-29 09:18:14 +0000107{
108 PyTypeObject *tp;
109 PyObject *result;
110 PyObject *v;
111
112 result = PyList_New(0);
113 if (result == NULL)
114 return NULL;
115 for (tp = type_list; tp; tp = tp->tp_next) {
Georg Brandl2cfaa342006-05-29 19:39:45 +0000116 v = Py_BuildValue("(snnn)", tp->tp_name, tp->tp_allocs,
Tim Peters6d6c1a32001-08-02 04:15:00 +0000117 tp->tp_frees, tp->tp_maxalloc);
Sjoerd Mullender6ec3c651995-08-29 09:18:14 +0000118 if (v == NULL) {
119 Py_DECREF(result);
120 return NULL;
121 }
122 if (PyList_Append(result, v) < 0) {
123 Py_DECREF(v);
124 Py_DECREF(result);
125 return NULL;
126 }
127 Py_DECREF(v);
128 }
129 return result;
130}
131
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +0000132void
Fred Drake100814d2000-07-09 15:48:49 +0000133inc_count(PyTypeObject *tp)
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +0000134{
Martin v. Löwis45294a92006-04-18 06:24:08 +0000135 if (tp->tp_next == NULL && tp->tp_prev == NULL) {
Guido van Rossumd8953cb1995-04-06 14:46:26 +0000136 /* first time; insert in linked list */
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +0000137 if (tp->tp_next != NULL) /* sanity check */
Guido van Rossumc0b618a1997-05-02 03:12:38 +0000138 Py_FatalError("XXX inc_count sanity check");
Martin v. Löwis45294a92006-04-18 06:24:08 +0000139 if (type_list)
140 type_list->tp_prev = tp;
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +0000141 tp->tp_next = type_list;
Tim Petersc6a3ff62002-07-08 22:11:52 +0000142 /* Note that as of Python 2.2, heap-allocated type objects
143 * can go away, but this code requires that they stay alive
144 * until program exit. That's why we're careful with
145 * refcounts here. type_list gets a new reference to tp,
146 * while ownership of the reference type_list used to hold
147 * (if any) was transferred to tp->tp_next in the line above.
148 * tp is thus effectively immortal after this.
149 */
150 Py_INCREF(tp);
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +0000151 type_list = tp;
Tim Peters3e40c7f2003-03-23 03:04:32 +0000152#ifdef Py_TRACE_REFS
Tim Peters7571a0f2003-03-23 17:52:28 +0000153 /* Also insert in the doubly-linked list of all objects,
154 * if not already there.
155 */
156 _Py_AddToAllObjects((PyObject *)tp, 0);
Tim Peters78be7992003-03-23 02:51:01 +0000157#endif
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +0000158 }
Tim Peters6d6c1a32001-08-02 04:15:00 +0000159 tp->tp_allocs++;
160 if (tp->tp_allocs - tp->tp_frees > tp->tp_maxalloc)
161 tp->tp_maxalloc = tp->tp_allocs - tp->tp_frees;
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +0000162}
Martin v. Löwis45294a92006-04-18 06:24:08 +0000163
164void dec_count(PyTypeObject *tp)
165{
166 tp->tp_frees++;
167 if (unlist_types_without_objects &&
168 tp->tp_allocs == tp->tp_frees) {
169 /* unlink the type from type_list */
170 if (tp->tp_prev)
171 tp->tp_prev->tp_next = tp->tp_next;
172 else
173 type_list = tp->tp_next;
174 if (tp->tp_next)
175 tp->tp_next->tp_prev = tp->tp_prev;
176 tp->tp_next = tp->tp_prev = NULL;
177 Py_DECREF(tp);
178 }
179}
180
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +0000181#endif
182
Tim Peters7c321a82002-07-09 02:57:01 +0000183#ifdef Py_REF_DEBUG
184/* Log a fatal error; doesn't return. */
185void
186_Py_NegativeRefcount(const char *fname, int lineno, PyObject *op)
187{
188 char buf[300];
189
190 PyOS_snprintf(buf, sizeof(buf),
Tim Peters4d073bb2006-03-23 05:38:33 +0000191 "%s:%i object at %p has negative ref count "
192 "%" PY_FORMAT_SIZE_T "d",
Tim Peters8af92d12006-03-23 05:41:24 +0000193 fname, lineno, op, op->ob_refcnt);
Tim Peters7c321a82002-07-09 02:57:01 +0000194 Py_FatalError(buf);
195}
196
197#endif /* Py_REF_DEBUG */
198
Thomas Heller1328b522004-04-22 17:23:49 +0000199void
200Py_IncRef(PyObject *o)
201{
202 Py_XINCREF(o);
203}
204
205void
206Py_DecRef(PyObject *o)
207{
208 Py_XDECREF(o);
209}
210
Guido van Rossumc0b618a1997-05-02 03:12:38 +0000211PyObject *
Fred Drake100814d2000-07-09 15:48:49 +0000212PyObject_Init(PyObject *op, PyTypeObject *tp)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000213{
Guido van Rossum6e08c142002-10-11 20:37:24 +0000214 if (op == NULL)
215 return PyErr_NoMemory();
Guido van Rossumb18618d2000-05-03 23:44:39 +0000216 /* Any changes should be reflected in PyObject_INIT (objimpl.h) */
Christian Heimese93237d2007-12-19 02:37:44 +0000217 Py_TYPE(op) = tp;
Guido van Rossumc0b618a1997-05-02 03:12:38 +0000218 _Py_NewReference(op);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000219 return op;
220}
221
Guido van Rossumb18618d2000-05-03 23:44:39 +0000222PyVarObject *
Martin v. Löwis18e16552006-02-15 17:27:45 +0000223PyObject_InitVar(PyVarObject *op, PyTypeObject *tp, Py_ssize_t size)
Guido van Rossumb18618d2000-05-03 23:44:39 +0000224{
Guido van Rossum6e08c142002-10-11 20:37:24 +0000225 if (op == NULL)
226 return (PyVarObject *) PyErr_NoMemory();
Guido van Rossumb18618d2000-05-03 23:44:39 +0000227 /* Any changes should be reflected in PyObject_INIT_VAR */
228 op->ob_size = size;
Christian Heimese93237d2007-12-19 02:37:44 +0000229 Py_TYPE(op) = tp;
Guido van Rossumb18618d2000-05-03 23:44:39 +0000230 _Py_NewReference((PyObject *)op);
231 return op;
232}
233
234PyObject *
Fred Drake100814d2000-07-09 15:48:49 +0000235_PyObject_New(PyTypeObject *tp)
Guido van Rossumb18618d2000-05-03 23:44:39 +0000236{
237 PyObject *op;
238 op = (PyObject *) PyObject_MALLOC(_PyObject_SIZE(tp));
239 if (op == NULL)
240 return PyErr_NoMemory();
241 return PyObject_INIT(op, tp);
242}
243
Guido van Rossumd0c87ee1997-05-15 21:31:03 +0000244PyVarObject *
Martin v. Löwis18e16552006-02-15 17:27:45 +0000245_PyObject_NewVar(PyTypeObject *tp, Py_ssize_t nitems)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000246{
Guido van Rossumb18618d2000-05-03 23:44:39 +0000247 PyVarObject *op;
Tim Petersf2a67da2001-10-07 03:54:51 +0000248 const size_t size = _PyObject_VAR_SIZE(tp, nitems);
Tim Peters6d483d32001-10-06 21:27:34 +0000249 op = (PyVarObject *) PyObject_MALLOC(size);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000250 if (op == NULL)
Guido van Rossumd0c87ee1997-05-15 21:31:03 +0000251 return (PyVarObject *)PyErr_NoMemory();
Tim Peters6d483d32001-10-06 21:27:34 +0000252 return PyObject_INIT_VAR(op, tp, nitems);
Guido van Rossumb18618d2000-05-03 23:44:39 +0000253}
254
Neil Schemenauerbdf0eed2002-04-12 03:08:42 +0000255/* for binary compatibility with 2.2 */
256#undef _PyObject_Del
Guido van Rossumb18618d2000-05-03 23:44:39 +0000257void
Fred Drake100814d2000-07-09 15:48:49 +0000258_PyObject_Del(PyObject *op)
Guido van Rossumb18618d2000-05-03 23:44:39 +0000259{
Guido van Rossum4cc6ac72000-07-01 01:00:38 +0000260 PyObject_FREE(op);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000261}
262
Neal Norwitz1a997502003-01-13 20:13:12 +0000263/* Implementation of PyObject_Print with recursion checking */
264static int
265internal_print(PyObject *op, FILE *fp, int flags, int nesting)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000266{
Guido van Rossum278ef591991-07-27 21:40:24 +0000267 int ret = 0;
Neal Norwitz1a997502003-01-13 20:13:12 +0000268 if (nesting > 10) {
269 PyErr_SetString(PyExc_RuntimeError, "print recursion");
270 return -1;
271 }
Guido van Rossumc0b618a1997-05-02 03:12:38 +0000272 if (PyErr_CheckSignals())
Guido van Rossum90933611991-06-07 16:10:43 +0000273 return -1;
Guido van Rossum9b00dfa1998-04-28 16:06:54 +0000274#ifdef USE_STACKCHECK
275 if (PyOS_CheckStack()) {
Fred Drake661ea262000-10-24 19:57:45 +0000276 PyErr_SetString(PyExc_MemoryError, "stack overflow");
Guido van Rossum9b00dfa1998-04-28 16:06:54 +0000277 return -1;
278 }
279#endif
Guido van Rossum687ef6e2000-01-12 16:28:58 +0000280 clearerr(fp); /* Clear any previous error condition */
Guido van Rossum90933611991-06-07 16:10:43 +0000281 if (op == NULL) {
Brett Cannon01531592007-09-17 03:28:34 +0000282 Py_BEGIN_ALLOW_THREADS
Guido van Rossum90933611991-06-07 16:10:43 +0000283 fprintf(fp, "<nil>");
Brett Cannon01531592007-09-17 03:28:34 +0000284 Py_END_ALLOW_THREADS
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000285 }
Guido van Rossum90933611991-06-07 16:10:43 +0000286 else {
287 if (op->ob_refcnt <= 0)
Thomas Wouters8b87a0b2006-03-01 05:41:20 +0000288 /* XXX(twouters) cast refcount to long until %zd is
289 universally available */
Brett Cannon01531592007-09-17 03:28:34 +0000290 Py_BEGIN_ALLOW_THREADS
Thomas Wouters8b87a0b2006-03-01 05:41:20 +0000291 fprintf(fp, "<refcnt %ld at %p>",
292 (long)op->ob_refcnt, op);
Brett Cannon01531592007-09-17 03:28:34 +0000293 Py_END_ALLOW_THREADS
Christian Heimese93237d2007-12-19 02:37:44 +0000294 else if (Py_TYPE(op)->tp_print == NULL) {
Guido van Rossum4f288ab2001-05-01 16:53:37 +0000295 PyObject *s;
296 if (flags & Py_PRINT_RAW)
297 s = PyObject_Str(op);
298 else
299 s = PyObject_Repr(op);
300 if (s == NULL)
301 ret = -1;
Guido van Rossum2e8f6141992-09-03 20:32:55 +0000302 else {
Neal Norwitz1a997502003-01-13 20:13:12 +0000303 ret = internal_print(s, fp, Py_PRINT_RAW,
304 nesting+1);
Guido van Rossum2e8f6141992-09-03 20:32:55 +0000305 }
Guido van Rossum4f288ab2001-05-01 16:53:37 +0000306 Py_XDECREF(s);
Guido van Rossum2e8f6141992-09-03 20:32:55 +0000307 }
Guido van Rossum90933611991-06-07 16:10:43 +0000308 else
Christian Heimese93237d2007-12-19 02:37:44 +0000309 ret = (*Py_TYPE(op)->tp_print)(op, fp, flags);
Guido van Rossum90933611991-06-07 16:10:43 +0000310 }
Guido van Rossum278ef591991-07-27 21:40:24 +0000311 if (ret == 0) {
312 if (ferror(fp)) {
Guido van Rossumc0b618a1997-05-02 03:12:38 +0000313 PyErr_SetFromErrno(PyExc_IOError);
Guido van Rossum278ef591991-07-27 21:40:24 +0000314 clearerr(fp);
315 ret = -1;
316 }
317 }
318 return ret;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000319}
320
Neal Norwitz1a997502003-01-13 20:13:12 +0000321int
322PyObject_Print(PyObject *op, FILE *fp, int flags)
323{
324 return internal_print(op, fp, flags, 0);
325}
326
327
Barry Warsaw9bf16442001-01-23 16:24:35 +0000328/* For debugging convenience. See Misc/gdbinit for some useful gdb hooks */
Tim Peters803526b2002-07-07 05:13:56 +0000329void _PyObject_Dump(PyObject* op)
Barry Warsaw9bf16442001-01-23 16:24:35 +0000330{
Barry Warsaweefb1072001-02-22 22:39:18 +0000331 if (op == NULL)
332 fprintf(stderr, "NULL\n");
333 else {
Guido van Rossum5f5512d2001-09-14 15:50:08 +0000334 fprintf(stderr, "object : ");
Barry Warsaweefb1072001-02-22 22:39:18 +0000335 (void)PyObject_Print(op, stderr, 0);
Thomas Wouters8b87a0b2006-03-01 05:41:20 +0000336 /* XXX(twouters) cast refcount to long until %zd is
337 universally available */
Guido van Rossum5f5512d2001-09-14 15:50:08 +0000338 fprintf(stderr, "\n"
339 "type : %s\n"
Thomas Wouters8b87a0b2006-03-01 05:41:20 +0000340 "refcount: %ld\n"
Guido van Rossum5f5512d2001-09-14 15:50:08 +0000341 "address : %p\n",
Christian Heimese93237d2007-12-19 02:37:44 +0000342 Py_TYPE(op)==NULL ? "NULL" : Py_TYPE(op)->tp_name,
Thomas Wouters8b87a0b2006-03-01 05:41:20 +0000343 (long)op->ob_refcnt,
Guido van Rossum5f5512d2001-09-14 15:50:08 +0000344 op);
Barry Warsaweefb1072001-02-22 22:39:18 +0000345 }
Barry Warsaw9bf16442001-01-23 16:24:35 +0000346}
Barry Warsaw903138f2001-01-23 16:33:18 +0000347
Guido van Rossumc0b618a1997-05-02 03:12:38 +0000348PyObject *
Fred Drake100814d2000-07-09 15:48:49 +0000349PyObject_Repr(PyObject *v)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000350{
Guido van Rossumc0b618a1997-05-02 03:12:38 +0000351 if (PyErr_CheckSignals())
Guido van Rossum90933611991-06-07 16:10:43 +0000352 return NULL;
Guido van Rossum9b00dfa1998-04-28 16:06:54 +0000353#ifdef USE_STACKCHECK
354 if (PyOS_CheckStack()) {
Fred Drake661ea262000-10-24 19:57:45 +0000355 PyErr_SetString(PyExc_MemoryError, "stack overflow");
Guido van Rossum9b00dfa1998-04-28 16:06:54 +0000356 return NULL;
357 }
358#endif
Guido van Rossum90933611991-06-07 16:10:43 +0000359 if (v == NULL)
Guido van Rossumc0b618a1997-05-02 03:12:38 +0000360 return PyString_FromString("<NULL>");
Christian Heimese93237d2007-12-19 02:37:44 +0000361 else if (Py_TYPE(v)->tp_repr == NULL)
Guido van Rossum21922aa2001-08-30 20:26:05 +0000362 return PyString_FromFormat("<%s object at %p>",
Christian Heimese93237d2007-12-19 02:37:44 +0000363 Py_TYPE(v)->tp_name, v);
Guido van Rossum4c08d552000-03-10 22:55:18 +0000364 else {
365 PyObject *res;
Christian Heimese93237d2007-12-19 02:37:44 +0000366 res = (*Py_TYPE(v)->tp_repr)(v);
Guido van Rossum4c08d552000-03-10 22:55:18 +0000367 if (res == NULL)
368 return NULL;
Martin v. Löwis339d0f72001-08-17 18:39:25 +0000369#ifdef Py_USING_UNICODE
Fredrik Lundhefecc7d2000-07-01 14:31:09 +0000370 if (PyUnicode_Check(res)) {
371 PyObject* str;
Anthony Baxter262c00a2006-03-30 10:53:17 +0000372 str = PyUnicode_AsEncodedString(res, NULL, NULL);
Marc-André Lemburg891bc652000-07-03 09:57:53 +0000373 Py_DECREF(res);
374 if (str)
Fredrik Lundhefecc7d2000-07-01 14:31:09 +0000375 res = str;
Marc-André Lemburg891bc652000-07-03 09:57:53 +0000376 else
377 return NULL;
Fredrik Lundhefecc7d2000-07-01 14:31:09 +0000378 }
Martin v. Löwis339d0f72001-08-17 18:39:25 +0000379#endif
Guido van Rossum4c08d552000-03-10 22:55:18 +0000380 if (!PyString_Check(res)) {
381 PyErr_Format(PyExc_TypeError,
Guido van Rossum5db862d2000-04-10 12:46:51 +0000382 "__repr__ returned non-string (type %.200s)",
Christian Heimese93237d2007-12-19 02:37:44 +0000383 Py_TYPE(res)->tp_name);
Guido van Rossum4c08d552000-03-10 22:55:18 +0000384 Py_DECREF(res);
385 return NULL;
386 }
387 return res;
388 }
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000389}
390
Guido van Rossumc0b618a1997-05-02 03:12:38 +0000391PyObject *
Neil Schemenauercf52c072005-08-12 17:34:58 +0000392_PyObject_Str(PyObject *v)
Guido van Rossumc6004111993-11-05 10:22:19 +0000393{
Guido van Rossum4c08d552000-03-10 22:55:18 +0000394 PyObject *res;
Neil Schemenauercf52c072005-08-12 17:34:58 +0000395 int type_ok;
Guido van Rossumc6004111993-11-05 10:22:19 +0000396 if (v == NULL)
Guido van Rossumc0b618a1997-05-02 03:12:38 +0000397 return PyString_FromString("<NULL>");
Tim Peters5a49ade2001-09-11 01:41:59 +0000398 if (PyString_CheckExact(v)) {
Guido van Rossumc0b618a1997-05-02 03:12:38 +0000399 Py_INCREF(v);
Guido van Rossumc6004111993-11-05 10:22:19 +0000400 return v;
401 }
Neil Schemenauercf52c072005-08-12 17:34:58 +0000402#ifdef Py_USING_UNICODE
403 if (PyUnicode_CheckExact(v)) {
404 Py_INCREF(v);
405 return v;
406 }
407#endif
Christian Heimese93237d2007-12-19 02:37:44 +0000408 if (Py_TYPE(v)->tp_str == NULL)
Guido van Rossum4f288ab2001-05-01 16:53:37 +0000409 return PyObject_Repr(v);
410
Brett Cannon0b14f242007-09-30 19:45:10 +0000411 /* It is possible for a type to have a tp_str representation that loops
412 infinitely. */
413 if (Py_EnterRecursiveCall(" while getting the str of an object"))
414 return NULL;
Christian Heimese93237d2007-12-19 02:37:44 +0000415 res = (*Py_TYPE(v)->tp_str)(v);
Brett Cannon0b14f242007-09-30 19:45:10 +0000416 Py_LeaveRecursiveCall();
Guido van Rossum4c08d552000-03-10 22:55:18 +0000417 if (res == NULL)
418 return NULL;
Neil Schemenauercf52c072005-08-12 17:34:58 +0000419 type_ok = PyString_Check(res);
420#ifdef Py_USING_UNICODE
421 type_ok = type_ok || PyUnicode_Check(res);
422#endif
423 if (!type_ok) {
424 PyErr_Format(PyExc_TypeError,
425 "__str__ returned non-string (type %.200s)",
Christian Heimese93237d2007-12-19 02:37:44 +0000426 Py_TYPE(res)->tp_name);
Neil Schemenauercf52c072005-08-12 17:34:58 +0000427 Py_DECREF(res);
428 return NULL;
429 }
430 return res;
431}
432
433PyObject *
434PyObject_Str(PyObject *v)
435{
436 PyObject *res = _PyObject_Str(v);
437 if (res == NULL)
438 return NULL;
Martin v. Löwis339d0f72001-08-17 18:39:25 +0000439#ifdef Py_USING_UNICODE
Marc-André Lemburg891bc652000-07-03 09:57:53 +0000440 if (PyUnicode_Check(res)) {
441 PyObject* str;
442 str = PyUnicode_AsEncodedString(res, NULL, NULL);
443 Py_DECREF(res);
444 if (str)
445 res = str;
446 else
447 return NULL;
448 }
Martin v. Löwis339d0f72001-08-17 18:39:25 +0000449#endif
Neil Schemenauercf52c072005-08-12 17:34:58 +0000450 assert(PyString_Check(res));
Guido van Rossum4c08d552000-03-10 22:55:18 +0000451 return res;
Guido van Rossumc6004111993-11-05 10:22:19 +0000452}
453
Martin v. Löwis339d0f72001-08-17 18:39:25 +0000454#ifdef Py_USING_UNICODE
Guido van Rossuma3af41d2001-01-18 22:07:06 +0000455PyObject *
456PyObject_Unicode(PyObject *v)
457{
458 PyObject *res;
Brett Cannonc3647ac2005-04-26 03:45:26 +0000459 PyObject *func;
Neal Norwitz75801462006-03-14 06:02:16 +0000460 PyObject *str;
Brett Cannonc3647ac2005-04-26 03:45:26 +0000461 static PyObject *unicodestr;
Tim Peters803526b2002-07-07 05:13:56 +0000462
Georg Brandl3daf7582006-03-13 22:22:11 +0000463 if (v == NULL) {
Guido van Rossuma3af41d2001-01-18 22:07:06 +0000464 res = PyString_FromString("<NULL>");
Neal Norwitz75801462006-03-14 06:02:16 +0000465 if (res == NULL)
466 return NULL;
467 str = PyUnicode_FromEncodedObject(res, NULL, "strict");
468 Py_DECREF(res);
469 return str;
Georg Brandl3daf7582006-03-13 22:22:11 +0000470 } else if (PyUnicode_CheckExact(v)) {
Guido van Rossuma3af41d2001-01-18 22:07:06 +0000471 Py_INCREF(v);
472 return v;
473 }
Brett Cannonc3647ac2005-04-26 03:45:26 +0000474 /* XXX As soon as we have a tp_unicode slot, we should
475 check this before trying the __unicode__
476 method. */
477 if (unicodestr == NULL) {
478 unicodestr= PyString_InternFromString("__unicode__");
479 if (unicodestr == NULL)
480 return NULL;
Guido van Rossumb8c65bc2001-10-19 02:01:31 +0000481 }
Brett Cannonc3647ac2005-04-26 03:45:26 +0000482 func = PyObject_GetAttr(v, unicodestr);
483 if (func != NULL) {
484 res = PyEval_CallObject(func, (PyObject *)NULL);
485 Py_DECREF(func);
486 }
Guido van Rossuma3af41d2001-01-18 22:07:06 +0000487 else {
Brett Cannonc3647ac2005-04-26 03:45:26 +0000488 PyErr_Clear();
489 if (PyUnicode_Check(v)) {
490 /* For a Unicode subtype that's didn't overwrite __unicode__,
491 return a true Unicode object with the same data. */
492 return PyUnicode_FromUnicode(PyUnicode_AS_UNICODE(v),
493 PyUnicode_GET_SIZE(v));
Guido van Rossuma3af41d2001-01-18 22:07:06 +0000494 }
Brett Cannonc3647ac2005-04-26 03:45:26 +0000495 if (PyString_CheckExact(v)) {
496 Py_INCREF(v);
497 res = v;
Guido van Rossuma3af41d2001-01-18 22:07:06 +0000498 }
Guido van Rossumb8c65bc2001-10-19 02:01:31 +0000499 else {
Christian Heimese93237d2007-12-19 02:37:44 +0000500 if (Py_TYPE(v)->tp_str != NULL)
501 res = (*Py_TYPE(v)->tp_str)(v);
Guido van Rossumb8c65bc2001-10-19 02:01:31 +0000502 else
503 res = PyObject_Repr(v);
504 }
Guido van Rossuma3af41d2001-01-18 22:07:06 +0000505 }
506 if (res == NULL)
507 return NULL;
508 if (!PyUnicode_Check(res)) {
Guido van Rossumb8c65bc2001-10-19 02:01:31 +0000509 str = PyUnicode_FromEncodedObject(res, NULL, "strict");
Guido van Rossuma3af41d2001-01-18 22:07:06 +0000510 Py_DECREF(res);
Neal Norwitz75801462006-03-14 06:02:16 +0000511 res = str;
Guido van Rossuma3af41d2001-01-18 22:07:06 +0000512 }
513 return res;
514}
Martin v. Löwis339d0f72001-08-17 18:39:25 +0000515#endif
Guido van Rossuma3af41d2001-01-18 22:07:06 +0000516
517
Guido van Rossuma4073002002-05-31 20:03:54 +0000518/* Helper to warn about deprecated tp_compare return values. Return:
519 -2 for an exception;
520 -1 if v < w;
521 0 if v == w;
522 1 if v > w.
523 (This function cannot return 2.)
524*/
525static int
526adjust_tp_compare(int c)
527{
528 if (PyErr_Occurred()) {
529 if (c != -1 && c != -2) {
530 PyObject *t, *v, *tb;
531 PyErr_Fetch(&t, &v, &tb);
532 if (PyErr_Warn(PyExc_RuntimeWarning,
533 "tp_compare didn't return -1 or -2 "
534 "for exception") < 0) {
535 Py_XDECREF(t);
536 Py_XDECREF(v);
537 Py_XDECREF(tb);
538 }
539 else
540 PyErr_Restore(t, v, tb);
541 }
542 return -2;
543 }
544 else if (c < -1 || c > 1) {
545 if (PyErr_Warn(PyExc_RuntimeWarning,
546 "tp_compare didn't return -1, 0 or 1") < 0)
547 return -2;
548 else
549 return c < -1 ? -1 : 1;
550 }
551 else {
552 assert(c >= -1 && c <= 1);
553 return c;
554 }
555}
556
557
Guido van Rossumd1f06b92001-01-24 22:14:43 +0000558/* Macro to get the tp_richcompare field of a type if defined */
559#define RICHCOMPARE(t) (PyType_HasFeature((t), Py_TPFLAGS_HAVE_RICHCOMPARE) \
560 ? (t)->tp_richcompare : NULL)
561
Guido van Rossume797ec12001-01-17 15:24:28 +0000562/* Map rich comparison operators to their swapped version, e.g. LT --> GT */
Brett Cannona5ca2e72004-09-25 01:37:24 +0000563int _Py_SwappedOp[] = {Py_GT, Py_GE, Py_EQ, Py_NE, Py_LT, Py_LE};
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +0000564
Guido van Rossume797ec12001-01-17 15:24:28 +0000565/* Try a genuine rich comparison, returning an object. Return:
566 NULL for exception;
567 NotImplemented if this particular rich comparison is not implemented or
568 undefined;
569 some object not equal to NotImplemented if it is implemented
570 (this latter object may not be a Boolean).
571*/
572static PyObject *
573try_rich_compare(PyObject *v, PyObject *w, int op)
574{
575 richcmpfunc f;
576 PyObject *res;
577
Guido van Rossum2ed6bf82001-09-27 20:30:07 +0000578 if (v->ob_type != w->ob_type &&
579 PyType_IsSubtype(w->ob_type, v->ob_type) &&
580 (f = RICHCOMPARE(w->ob_type)) != NULL) {
Tim Petersf4aca752004-09-23 02:39:37 +0000581 res = (*f)(w, v, _Py_SwappedOp[op]);
Guido van Rossum2ed6bf82001-09-27 20:30:07 +0000582 if (res != Py_NotImplemented)
583 return res;
584 Py_DECREF(res);
585 }
Guido van Rossumd1f06b92001-01-24 22:14:43 +0000586 if ((f = RICHCOMPARE(v->ob_type)) != NULL) {
Guido van Rossume797ec12001-01-17 15:24:28 +0000587 res = (*f)(v, w, op);
588 if (res != Py_NotImplemented)
589 return res;
590 Py_DECREF(res);
591 }
Guido van Rossumd1f06b92001-01-24 22:14:43 +0000592 if ((f = RICHCOMPARE(w->ob_type)) != NULL) {
Tim Petersf4aca752004-09-23 02:39:37 +0000593 return (*f)(w, v, _Py_SwappedOp[op]);
Guido van Rossume797ec12001-01-17 15:24:28 +0000594 }
595 res = Py_NotImplemented;
596 Py_INCREF(res);
597 return res;
598}
599
600/* Try a genuine rich comparison, returning an int. Return:
601 -1 for exception (including the case where try_rich_compare() returns an
602 object that's not a Boolean);
Tim Petersc99213f2001-11-04 05:57:16 +0000603 0 if the outcome is false;
604 1 if the outcome is true;
605 2 if this particular rich comparison is not implemented or undefined.
Guido van Rossume797ec12001-01-17 15:24:28 +0000606*/
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +0000607static int
Guido van Rossume797ec12001-01-17 15:24:28 +0000608try_rich_compare_bool(PyObject *v, PyObject *w, int op)
609{
610 PyObject *res;
611 int ok;
612
Guido van Rossumd1f06b92001-01-24 22:14:43 +0000613 if (RICHCOMPARE(v->ob_type) == NULL && RICHCOMPARE(w->ob_type) == NULL)
Guido van Rossume797ec12001-01-17 15:24:28 +0000614 return 2; /* Shortcut, avoid INCREF+DECREF */
615 res = try_rich_compare(v, w, op);
616 if (res == NULL)
617 return -1;
618 if (res == Py_NotImplemented) {
619 Py_DECREF(res);
620 return 2;
621 }
622 ok = PyObject_IsTrue(res);
623 Py_DECREF(res);
624 return ok;
625}
626
627/* Try rich comparisons to determine a 3-way comparison. Return:
628 -2 for an exception;
Tim Petersc99213f2001-11-04 05:57:16 +0000629 -1 if v < w;
630 0 if v == w;
631 1 if v > w;
632 2 if this particular rich comparison is not implemented or undefined.
Guido van Rossume797ec12001-01-17 15:24:28 +0000633*/
634static int
635try_rich_to_3way_compare(PyObject *v, PyObject *w)
636{
Guido van Rossum2ffbf6b2001-01-17 21:27:02 +0000637 static struct { int op; int outcome; } tries[3] = {
638 /* Try this operator, and if it is true, use this outcome: */
639 {Py_EQ, 0},
640 {Py_LT, -1},
641 {Py_GT, 1},
642 };
643 int i;
644
Guido van Rossumd1f06b92001-01-24 22:14:43 +0000645 if (RICHCOMPARE(v->ob_type) == NULL && RICHCOMPARE(w->ob_type) == NULL)
Guido van Rossume797ec12001-01-17 15:24:28 +0000646 return 2; /* Shortcut */
Guido van Rossum2ffbf6b2001-01-17 21:27:02 +0000647
648 for (i = 0; i < 3; i++) {
649 switch (try_rich_compare_bool(v, w, tries[i].op)) {
650 case -1:
Tim Peters6d60b2e2001-05-07 20:53:51 +0000651 return -2;
Guido van Rossum2ffbf6b2001-01-17 21:27:02 +0000652 case 1:
653 return tries[i].outcome;
654 }
Guido van Rossume797ec12001-01-17 15:24:28 +0000655 }
Guido van Rossum2ffbf6b2001-01-17 21:27:02 +0000656
657 return 2;
Guido van Rossume797ec12001-01-17 15:24:28 +0000658}
659
660/* Try a 3-way comparison, returning an int. Return:
661 -2 for an exception;
Tim Petersc99213f2001-11-04 05:57:16 +0000662 -1 if v < w;
663 0 if v == w;
664 1 if v > w;
665 2 if this particular 3-way comparison is not implemented or undefined.
Guido van Rossume797ec12001-01-17 15:24:28 +0000666*/
667static int
668try_3way_compare(PyObject *v, PyObject *w)
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +0000669{
670 int c;
Guido van Rossume797ec12001-01-17 15:24:28 +0000671 cmpfunc f;
672
673 /* Comparisons involving instances are given to instance_compare,
674 which has the same return conventions as this function. */
675
Guido van Rossumab3b0342001-09-18 20:38:53 +0000676 f = v->ob_type->tp_compare;
Guido van Rossume797ec12001-01-17 15:24:28 +0000677 if (PyInstance_Check(v))
Guido van Rossumab3b0342001-09-18 20:38:53 +0000678 return (*f)(v, w);
Guido van Rossume797ec12001-01-17 15:24:28 +0000679 if (PyInstance_Check(w))
680 return (*w->ob_type->tp_compare)(v, w);
681
Guido van Rossumab3b0342001-09-18 20:38:53 +0000682 /* If both have the same (non-NULL) tp_compare, use it. */
683 if (f != NULL && f == w->ob_type->tp_compare) {
684 c = (*f)(v, w);
Guido van Rossuma4073002002-05-31 20:03:54 +0000685 return adjust_tp_compare(c);
Guido van Rossumab3b0342001-09-18 20:38:53 +0000686 }
687
688 /* If either tp_compare is _PyObject_SlotCompare, that's safe. */
689 if (f == _PyObject_SlotCompare ||
690 w->ob_type->tp_compare == _PyObject_SlotCompare)
691 return _PyObject_SlotCompare(v, w);
692
Armin Rigoa1748132004-12-23 22:13:13 +0000693 /* If we're here, v and w,
694 a) are not instances;
695 b) have different types or a type without tp_compare; and
696 c) don't have a user-defined tp_compare.
697 tp_compare implementations in C assume that both arguments
698 have their type, so we give up if the coercion fails or if
699 it yields types which are still incompatible (which can
700 happen with a user-defined nb_coerce).
701 */
Guido van Rossume797ec12001-01-17 15:24:28 +0000702 c = PyNumber_CoerceEx(&v, &w);
703 if (c < 0)
704 return -2;
705 if (c > 0)
706 return 2;
Armin Rigoa1748132004-12-23 22:13:13 +0000707 f = v->ob_type->tp_compare;
708 if (f != NULL && f == w->ob_type->tp_compare) {
Guido van Rossume797ec12001-01-17 15:24:28 +0000709 c = (*f)(v, w);
710 Py_DECREF(v);
711 Py_DECREF(w);
Guido van Rossuma4073002002-05-31 20:03:54 +0000712 return adjust_tp_compare(c);
Guido van Rossume797ec12001-01-17 15:24:28 +0000713 }
714
Guido van Rossume797ec12001-01-17 15:24:28 +0000715 /* No comparison defined */
716 Py_DECREF(v);
717 Py_DECREF(w);
718 return 2;
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +0000719}
720
Guido van Rossume797ec12001-01-17 15:24:28 +0000721/* Final fallback 3-way comparison, returning an int. Return:
722 -2 if an error occurred;
Tim Petersc99213f2001-11-04 05:57:16 +0000723 -1 if v < w;
724 0 if v == w;
725 1 if v > w.
Guido van Rossume797ec12001-01-17 15:24:28 +0000726*/
727static int
728default_3way_compare(PyObject *v, PyObject *w)
729{
730 int c;
Jeremy Hyltonaf68c872005-12-10 18:50:16 +0000731 const char *vname, *wname;
Guido van Rossume797ec12001-01-17 15:24:28 +0000732
733 if (v->ob_type == w->ob_type) {
Barry Warsawb0e754d2001-01-20 06:24:55 +0000734 /* When comparing these pointers, they must be cast to
735 * integer types (i.e. Py_uintptr_t, our spelling of C9X's
736 * uintptr_t). ANSI specifies that pointer compares other
737 * than == and != to non-related structures are undefined.
738 */
Barry Warsaw71ff8d52001-01-20 06:08:10 +0000739 Py_uintptr_t vv = (Py_uintptr_t)v;
740 Py_uintptr_t ww = (Py_uintptr_t)w;
Guido van Rossume797ec12001-01-17 15:24:28 +0000741 return (vv < ww) ? -1 : (vv > ww) ? 1 : 0;
742 }
743
Guido van Rossum0871e932001-01-22 19:28:09 +0000744 /* None is smaller than anything */
745 if (v == Py_None)
746 return -1;
747 if (w == Py_None)
748 return 1;
749
Guido van Rossumfb50d3f2003-02-18 16:40:09 +0000750 /* different type: compare type names; numbers are smaller */
751 if (PyNumber_Check(v))
Guido van Rossum8f9143d2001-01-22 15:59:32 +0000752 vname = "";
753 else
754 vname = v->ob_type->tp_name;
Guido van Rossumfb50d3f2003-02-18 16:40:09 +0000755 if (PyNumber_Check(w))
Guido van Rossum8f9143d2001-01-22 15:59:32 +0000756 wname = "";
757 else
758 wname = w->ob_type->tp_name;
759 c = strcmp(vname, wname);
760 if (c < 0)
761 return -1;
762 if (c > 0)
763 return 1;
764 /* Same type name, or (more likely) incomparable numeric types */
765 return ((Py_uintptr_t)(v->ob_type) < (
766 Py_uintptr_t)(w->ob_type)) ? -1 : 1;
Guido van Rossume797ec12001-01-17 15:24:28 +0000767}
768
Tim Peters6d60b2e2001-05-07 20:53:51 +0000769/* Do a 3-way comparison, by hook or by crook. Return:
Guido van Rossuma4073002002-05-31 20:03:54 +0000770 -2 for an exception (but see below);
Tim Petersc99213f2001-11-04 05:57:16 +0000771 -1 if v < w;
Tim Peters6d60b2e2001-05-07 20:53:51 +0000772 0 if v == w;
Tim Petersc99213f2001-11-04 05:57:16 +0000773 1 if v > w;
Guido van Rossuma4073002002-05-31 20:03:54 +0000774 BUT: if the object implements a tp_compare function, it returns
Martin v. Löwis0163d6d2001-06-09 07:34:05 +0000775 whatever this function returns (whether with an exception or not).
Tim Peters6d60b2e2001-05-07 20:53:51 +0000776*/
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +0000777static int
Fred Drake100814d2000-07-09 15:48:49 +0000778do_cmp(PyObject *v, PyObject *w)
Guido van Rossum20566841995-01-12 11:26:10 +0000779{
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +0000780 int c;
Martin v. Löwis0163d6d2001-06-09 07:34:05 +0000781 cmpfunc f;
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +0000782
Martin v. Löwis0163d6d2001-06-09 07:34:05 +0000783 if (v->ob_type == w->ob_type
Guido van Rossum82fc51c2001-08-16 08:02:45 +0000784 && (f = v->ob_type->tp_compare) != NULL) {
785 c = (*f)(v, w);
Guido van Rossuma4073002002-05-31 20:03:54 +0000786 if (PyInstance_Check(v)) {
787 /* Instance tp_compare has a different signature.
788 But if it returns undefined we fall through. */
789 if (c != 2)
790 return c;
Neal Norwitz3f8dae72002-05-31 20:23:33 +0000791 /* Else fall through to try_rich_to_3way_compare() */
Guido van Rossuma4073002002-05-31 20:03:54 +0000792 }
793 else
794 return adjust_tp_compare(c);
Guido van Rossum82fc51c2001-08-16 08:02:45 +0000795 }
Guido van Rossuma4073002002-05-31 20:03:54 +0000796 /* We only get here if one of the following is true:
797 a) v and w have different types
798 b) v and w have the same type, which doesn't have tp_compare
799 c) v and w are instances, and either __cmp__ is not defined or
800 __cmp__ returns NotImplemented
801 */
Guido van Rossume797ec12001-01-17 15:24:28 +0000802 c = try_rich_to_3way_compare(v, w);
803 if (c < 2)
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +0000804 return c;
Guido van Rossume797ec12001-01-17 15:24:28 +0000805 c = try_3way_compare(v, w);
806 if (c < 2)
807 return c;
808 return default_3way_compare(v, w);
Guido van Rossum20566841995-01-12 11:26:10 +0000809}
810
Tim Petersc99213f2001-11-04 05:57:16 +0000811/* Compare v to w. Return
812 -1 if v < w or exception (PyErr_Occurred() true in latter case).
813 0 if v == w.
814 1 if v > w.
815 XXX The docs (C API manual) say the return value is undefined in case
816 XXX of error.
817*/
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000818int
Fred Drake100814d2000-07-09 15:48:49 +0000819PyObject_Compare(PyObject *v, PyObject *w)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000820{
Jeremy Hylton4a3dd2d2000-04-14 19:13:24 +0000821 int result;
822
Guido van Rossumc8b6df91997-05-23 00:06:51 +0000823 if (v == NULL || w == NULL) {
824 PyErr_BadInternalCall();
825 return -1;
826 }
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000827 if (v == w)
828 return 0;
Armin Rigo2b3eb402003-10-28 12:05:48 +0000829 if (Py_EnterRecursiveCall(" in cmp"))
830 return -1;
831 result = do_cmp(v, w);
832 Py_LeaveRecursiveCall();
Guido van Rossume797ec12001-01-17 15:24:28 +0000833 return result < 0 ? -1 : result;
834}
835
Tim Petersc99213f2001-11-04 05:57:16 +0000836/* Return (new reference to) Py_True or Py_False. */
Guido van Rossume797ec12001-01-17 15:24:28 +0000837static PyObject *
Martin v. Löwis0163d6d2001-06-09 07:34:05 +0000838convert_3way_to_object(int op, int c)
Guido van Rossume797ec12001-01-17 15:24:28 +0000839{
Guido van Rossume797ec12001-01-17 15:24:28 +0000840 PyObject *result;
Guido van Rossume797ec12001-01-17 15:24:28 +0000841 switch (op) {
842 case Py_LT: c = c < 0; break;
843 case Py_LE: c = c <= 0; break;
844 case Py_EQ: c = c == 0; break;
845 case Py_NE: c = c != 0; break;
846 case Py_GT: c = c > 0; break;
847 case Py_GE: c = c >= 0; break;
848 }
849 result = c ? Py_True : Py_False;
850 Py_INCREF(result);
Jeremy Hylton4a3dd2d2000-04-14 19:13:24 +0000851 return result;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000852}
Tim Peters803526b2002-07-07 05:13:56 +0000853
Tim Petersc99213f2001-11-04 05:57:16 +0000854/* We want a rich comparison but don't have one. Try a 3-way cmp instead.
855 Return
856 NULL if error
857 Py_True if v op w
858 Py_False if not (v op w)
859*/
Martin v. Löwis0163d6d2001-06-09 07:34:05 +0000860static PyObject *
861try_3way_to_rich_compare(PyObject *v, PyObject *w, int op)
862{
863 int c;
864
865 c = try_3way_compare(v, w);
866 if (c >= 2)
867 c = default_3way_compare(v, w);
868 if (c <= -2)
869 return NULL;
870 return convert_3way_to_object(op, c);
871}
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000872
Tim Petersc99213f2001-11-04 05:57:16 +0000873/* Do rich comparison on v and w. Return
874 NULL if error
875 Else a new reference to an object other than Py_NotImplemented, usually(?):
876 Py_True if v op w
877 Py_False if not (v op w)
878*/
Neil Schemenauerd38855c2001-01-21 16:25:18 +0000879static PyObject *
Guido van Rossume797ec12001-01-17 15:24:28 +0000880do_richcmp(PyObject *v, PyObject *w, int op)
881{
882 PyObject *res;
883
884 res = try_rich_compare(v, w, op);
885 if (res != Py_NotImplemented)
886 return res;
887 Py_DECREF(res);
888
889 return try_3way_to_rich_compare(v, w, op);
890}
891
Tim Petersc99213f2001-11-04 05:57:16 +0000892/* Return:
893 NULL for exception;
Tim Petersc99213f2001-11-04 05:57:16 +0000894 some object not equal to NotImplemented if it is implemented
895 (this latter object may not be a Boolean).
896*/
Guido van Rossume797ec12001-01-17 15:24:28 +0000897PyObject *
898PyObject_RichCompare(PyObject *v, PyObject *w, int op)
899{
900 PyObject *res;
901
902 assert(Py_LT <= op && op <= Py_GE);
Armin Rigo2b3eb402003-10-28 12:05:48 +0000903 if (Py_EnterRecursiveCall(" in cmp"))
904 return NULL;
Guido van Rossume797ec12001-01-17 15:24:28 +0000905
Armin Rigo2b3eb402003-10-28 12:05:48 +0000906 /* If the types are equal, and not old-style instances, try to
Tim Peters67754e92001-11-04 07:29:31 +0000907 get out cheap (don't bother with coercions etc.). */
908 if (v->ob_type == w->ob_type && !PyInstance_Check(v)) {
909 cmpfunc fcmp;
910 richcmpfunc frich = RICHCOMPARE(v->ob_type);
911 /* If the type has richcmp, try it first. try_rich_compare
912 tries it two-sided, which is not needed since we've a
913 single type only. */
914 if (frich != NULL) {
915 res = (*frich)(v, w, op);
916 if (res != Py_NotImplemented)
917 goto Done;
918 Py_DECREF(res);
919 }
920 /* No richcmp, or this particular richmp not implemented.
921 Try 3-way cmp. */
922 fcmp = v->ob_type->tp_compare;
923 if (fcmp != NULL) {
924 int c = (*fcmp)(v, w);
Guido van Rossuma4073002002-05-31 20:03:54 +0000925 c = adjust_tp_compare(c);
926 if (c == -2) {
Tim Peters67754e92001-11-04 07:29:31 +0000927 res = NULL;
928 goto Done;
929 }
930 res = convert_3way_to_object(op, c);
931 goto Done;
932 }
Guido van Rossum2ffbf6b2001-01-17 21:27:02 +0000933 }
Tim Peters67754e92001-11-04 07:29:31 +0000934
935 /* Fast path not taken, or couldn't deliver a useful result. */
936 res = do_richcmp(v, w, op);
937Done:
Armin Rigo2b3eb402003-10-28 12:05:48 +0000938 Py_LeaveRecursiveCall();
Guido van Rossume797ec12001-01-17 15:24:28 +0000939 return res;
940}
941
Tim Petersde9725f2001-05-05 10:06:17 +0000942/* Return -1 if error; 1 if v op w; 0 if not (v op w). */
Guido van Rossume797ec12001-01-17 15:24:28 +0000943int
944PyObject_RichCompareBool(PyObject *v, PyObject *w, int op)
945{
Raymond Hettinger93d44812004-03-21 17:01:44 +0000946 PyObject *res;
Guido van Rossume797ec12001-01-17 15:24:28 +0000947 int ok;
948
Raymond Hettinger93d44812004-03-21 17:01:44 +0000949 /* Quick result when objects are the same.
950 Guarantees that identity implies equality. */
951 if (v == w) {
952 if (op == Py_EQ)
953 return 1;
954 else if (op == Py_NE)
955 return 0;
956 }
957
958 res = PyObject_RichCompare(v, w, op);
Guido van Rossume797ec12001-01-17 15:24:28 +0000959 if (res == NULL)
960 return -1;
Guido van Rossum81912d42002-08-24 05:33:28 +0000961 if (PyBool_Check(res))
962 ok = (res == Py_True);
963 else
964 ok = PyObject_IsTrue(res);
Guido van Rossume797ec12001-01-17 15:24:28 +0000965 Py_DECREF(res);
966 return ok;
967}
Fred Drake13634cf2000-06-29 19:17:04 +0000968
969/* Set of hash utility functions to help maintaining the invariant that
Raymond Hettinger8183fa42004-03-21 17:35:06 +0000970 if a==b then hash(a)==hash(b)
Fred Drake13634cf2000-06-29 19:17:04 +0000971
972 All the utility functions (_Py_Hash*()) return "-1" to signify an error.
973*/
974
975long
Fred Drake100814d2000-07-09 15:48:49 +0000976_Py_HashDouble(double v)
Fred Drake13634cf2000-06-29 19:17:04 +0000977{
Tim Peters39dce292000-08-15 03:34:48 +0000978 double intpart, fractpart;
979 int expo;
980 long hipart;
981 long x; /* the final hash value */
982 /* This is designed so that Python numbers of different types
983 * that compare equal hash to the same value; otherwise comparisons
984 * of mapping keys will turn out weird.
985 */
986
Tim Peters39dce292000-08-15 03:34:48 +0000987 fractpart = modf(v, &intpart);
Tim Peters39dce292000-08-15 03:34:48 +0000988 if (fractpart == 0.0) {
989 /* This must return the same hash as an equal int or long. */
990 if (intpart > LONG_MAX || -intpart > LONG_MAX) {
991 /* Convert to long and use its hash. */
992 PyObject *plong; /* converted to Python long */
993 if (Py_IS_INFINITY(intpart))
994 /* can't convert to long int -- arbitrary */
995 v = v < 0 ? -271828.0 : 314159.0;
996 plong = PyLong_FromDouble(v);
997 if (plong == NULL)
998 return -1;
999 x = PyObject_Hash(plong);
1000 Py_DECREF(plong);
1001 return x;
1002 }
1003 /* Fits in a C long == a Python int, so is its own hash. */
1004 x = (long)intpart;
1005 if (x == -1)
1006 x = -2;
1007 return x;
1008 }
1009 /* The fractional part is non-zero, so we don't have to worry about
1010 * making this match the hash of some other type.
1011 * Use frexp to get at the bits in the double.
Fred Drake13634cf2000-06-29 19:17:04 +00001012 * Since the VAX D double format has 56 mantissa bits, which is the
1013 * most of any double format in use, each of these parts may have as
1014 * many as (but no more than) 56 significant bits.
Tim Peters39dce292000-08-15 03:34:48 +00001015 * So, assuming sizeof(long) >= 4, each part can be broken into two
1016 * longs; frexp and multiplication are used to do that.
1017 * Also, since the Cray double format has 15 exponent bits, which is
1018 * the most of any double format in use, shifting the exponent field
1019 * left by 15 won't overflow a long (again assuming sizeof(long) >= 4).
Fred Drake13634cf2000-06-29 19:17:04 +00001020 */
Tim Peters39dce292000-08-15 03:34:48 +00001021 v = frexp(v, &expo);
1022 v *= 2147483648.0; /* 2**31 */
1023 hipart = (long)v; /* take the top 32 bits */
1024 v = (v - (double)hipart) * 2147483648.0; /* get the next 32 bits */
1025 x = hipart + (long)v + (expo << 15);
1026 if (x == -1)
1027 x = -2;
1028 return x;
Fred Drake13634cf2000-06-29 19:17:04 +00001029}
1030
1031long
Fred Drake100814d2000-07-09 15:48:49 +00001032_Py_HashPointer(void *p)
Fred Drake13634cf2000-06-29 19:17:04 +00001033{
1034#if SIZEOF_LONG >= SIZEOF_VOID_P
1035 return (long)p;
1036#else
1037 /* convert to a Python long and hash that */
1038 PyObject* longobj;
1039 long x;
Tim Peters803526b2002-07-07 05:13:56 +00001040
Fred Drake13634cf2000-06-29 19:17:04 +00001041 if ((longobj = PyLong_FromVoidPtr(p)) == NULL) {
1042 x = -1;
1043 goto finally;
1044 }
1045 x = PyObject_Hash(longobj);
Tim Peters803526b2002-07-07 05:13:56 +00001046
Fred Drake13634cf2000-06-29 19:17:04 +00001047finally:
1048 Py_XDECREF(longobj);
1049 return x;
1050#endif
1051}
1052
1053
Guido van Rossum9bfef441993-03-29 10:43:31 +00001054long
Fred Drake100814d2000-07-09 15:48:49 +00001055PyObject_Hash(PyObject *v)
Guido van Rossum9bfef441993-03-29 10:43:31 +00001056{
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001057 PyTypeObject *tp = v->ob_type;
Guido van Rossum9bfef441993-03-29 10:43:31 +00001058 if (tp->tp_hash != NULL)
1059 return (*tp->tp_hash)(v);
Guido van Rossumd1f06b92001-01-24 22:14:43 +00001060 if (tp->tp_compare == NULL && RICHCOMPARE(tp) == NULL) {
Fred Drake13634cf2000-06-29 19:17:04 +00001061 return _Py_HashPointer(v); /* Use address as hash value */
1062 }
Guido van Rossum9bfef441993-03-29 10:43:31 +00001063 /* If there's a cmp but no hash defined, the object can't be hashed */
Georg Brandlccff7852006-06-18 22:17:29 +00001064 PyErr_Format(PyExc_TypeError, "unhashable type: '%.200s'",
1065 v->ob_type->tp_name);
Guido van Rossum9bfef441993-03-29 10:43:31 +00001066 return -1;
1067}
1068
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001069PyObject *
Jeremy Hyltonaf68c872005-12-10 18:50:16 +00001070PyObject_GetAttrString(PyObject *v, const char *name)
Guido van Rossum3f5da241990-12-20 15:06:42 +00001071{
Tim Peters6d6c1a32001-08-02 04:15:00 +00001072 PyObject *w, *res;
Guido van Rossumd8eb1b31996-08-09 20:52:03 +00001073
Christian Heimese93237d2007-12-19 02:37:44 +00001074 if (Py_TYPE(v)->tp_getattr != NULL)
1075 return (*Py_TYPE(v)->tp_getattr)(v, (char*)name);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001076 w = PyString_InternFromString(name);
1077 if (w == NULL)
1078 return NULL;
1079 res = PyObject_GetAttr(v, w);
1080 Py_XDECREF(w);
1081 return res;
Guido van Rossum3f5da241990-12-20 15:06:42 +00001082}
1083
1084int
Jeremy Hyltonaf68c872005-12-10 18:50:16 +00001085PyObject_HasAttrString(PyObject *v, const char *name)
Guido van Rossumed18fdc1993-07-11 19:55:34 +00001086{
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001087 PyObject *res = PyObject_GetAttrString(v, name);
Guido van Rossumed18fdc1993-07-11 19:55:34 +00001088 if (res != NULL) {
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001089 Py_DECREF(res);
Guido van Rossumed18fdc1993-07-11 19:55:34 +00001090 return 1;
1091 }
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001092 PyErr_Clear();
Guido van Rossumed18fdc1993-07-11 19:55:34 +00001093 return 0;
1094}
1095
1096int
Jeremy Hyltonaf68c872005-12-10 18:50:16 +00001097PyObject_SetAttrString(PyObject *v, const char *name, PyObject *w)
Guido van Rossum3f5da241990-12-20 15:06:42 +00001098{
Tim Peters6d6c1a32001-08-02 04:15:00 +00001099 PyObject *s;
1100 int res;
Guido van Rossumd8eb1b31996-08-09 20:52:03 +00001101
Christian Heimese93237d2007-12-19 02:37:44 +00001102 if (Py_TYPE(v)->tp_setattr != NULL)
1103 return (*Py_TYPE(v)->tp_setattr)(v, (char*)name, w);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001104 s = PyString_InternFromString(name);
1105 if (s == NULL)
1106 return -1;
1107 res = PyObject_SetAttr(v, s, w);
1108 Py_XDECREF(s);
1109 return res;
Guido van Rossum3f5da241990-12-20 15:06:42 +00001110}
1111
Guido van Rossum98ff96a1997-05-20 18:34:44 +00001112PyObject *
Fred Drake100814d2000-07-09 15:48:49 +00001113PyObject_GetAttr(PyObject *v, PyObject *name)
Guido van Rossum98ff96a1997-05-20 18:34:44 +00001114{
Christian Heimese93237d2007-12-19 02:37:44 +00001115 PyTypeObject *tp = Py_TYPE(v);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001116
Jeremy Hylton99a8f902000-06-23 14:36:32 +00001117 if (!PyString_Check(name)) {
Martin v. Löwis0c160a02002-03-15 13:40:30 +00001118#ifdef Py_USING_UNICODE
1119 /* The Unicode to string conversion is done here because the
1120 existing tp_getattro slots expect a string object as name
1121 and we wouldn't want to break those. */
1122 if (PyUnicode_Check(name)) {
1123 name = _PyUnicode_AsDefaultEncodedString(name, NULL);
1124 if (name == NULL)
1125 return NULL;
1126 }
1127 else
1128#endif
1129 {
Georg Brandlccff7852006-06-18 22:17:29 +00001130 PyErr_Format(PyExc_TypeError,
1131 "attribute name must be string, not '%.200s'",
Christian Heimese93237d2007-12-19 02:37:44 +00001132 Py_TYPE(name)->tp_name);
Martin v. Löwis0c160a02002-03-15 13:40:30 +00001133 return NULL;
1134 }
Jeremy Hylton99a8f902000-06-23 14:36:32 +00001135 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00001136 if (tp->tp_getattro != NULL)
1137 return (*tp->tp_getattro)(v, name);
1138 if (tp->tp_getattr != NULL)
1139 return (*tp->tp_getattr)(v, PyString_AS_STRING(name));
1140 PyErr_Format(PyExc_AttributeError,
1141 "'%.50s' object has no attribute '%.400s'",
1142 tp->tp_name, PyString_AS_STRING(name));
1143 return NULL;
Guido van Rossum98ff96a1997-05-20 18:34:44 +00001144}
1145
1146int
Fred Drake100814d2000-07-09 15:48:49 +00001147PyObject_HasAttr(PyObject *v, PyObject *name)
Guido van Rossum98ff96a1997-05-20 18:34:44 +00001148{
1149 PyObject *res = PyObject_GetAttr(v, name);
1150 if (res != NULL) {
1151 Py_DECREF(res);
1152 return 1;
1153 }
1154 PyErr_Clear();
1155 return 0;
1156}
1157
1158int
Fred Drake100814d2000-07-09 15:48:49 +00001159PyObject_SetAttr(PyObject *v, PyObject *name, PyObject *value)
Guido van Rossum98ff96a1997-05-20 18:34:44 +00001160{
Christian Heimese93237d2007-12-19 02:37:44 +00001161 PyTypeObject *tp = Py_TYPE(v);
Guido van Rossum98ff96a1997-05-20 18:34:44 +00001162 int err;
Marc-André Lemburge44e5072000-09-18 16:20:57 +00001163
Martin v. Löwis339d0f72001-08-17 18:39:25 +00001164 if (!PyString_Check(name)){
Martin v. Löwis0c160a02002-03-15 13:40:30 +00001165#ifdef Py_USING_UNICODE
1166 /* The Unicode to string conversion is done here because the
1167 existing tp_setattro slots expect a string object as name
1168 and we wouldn't want to break those. */
1169 if (PyUnicode_Check(name)) {
1170 name = PyUnicode_AsEncodedString(name, NULL, NULL);
1171 if (name == NULL)
1172 return -1;
1173 }
Tim Peters803526b2002-07-07 05:13:56 +00001174 else
Martin v. Löwis0c160a02002-03-15 13:40:30 +00001175#endif
1176 {
Georg Brandlccff7852006-06-18 22:17:29 +00001177 PyErr_Format(PyExc_TypeError,
1178 "attribute name must be string, not '%.200s'",
Christian Heimese93237d2007-12-19 02:37:44 +00001179 Py_TYPE(name)->tp_name);
Martin v. Löwis0c160a02002-03-15 13:40:30 +00001180 return -1;
1181 }
Jeremy Hylton99a8f902000-06-23 14:36:32 +00001182 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00001183 else
1184 Py_INCREF(name);
1185
1186 PyString_InternInPlace(&name);
1187 if (tp->tp_setattro != NULL) {
1188 err = (*tp->tp_setattro)(v, name, value);
1189 Py_DECREF(name);
1190 return err;
Marc-André Lemburge44e5072000-09-18 16:20:57 +00001191 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00001192 if (tp->tp_setattr != NULL) {
1193 err = (*tp->tp_setattr)(v, PyString_AS_STRING(name), value);
1194 Py_DECREF(name);
1195 return err;
1196 }
Guido van Rossum98ff96a1997-05-20 18:34:44 +00001197 Py_DECREF(name);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001198 if (tp->tp_getattr == NULL && tp->tp_getattro == NULL)
1199 PyErr_Format(PyExc_TypeError,
1200 "'%.100s' object has no attributes "
1201 "(%s .%.100s)",
1202 tp->tp_name,
1203 value==NULL ? "del" : "assign to",
1204 PyString_AS_STRING(name));
1205 else
1206 PyErr_Format(PyExc_TypeError,
1207 "'%.100s' object has only read-only attributes "
1208 "(%s .%.100s)",
1209 tp->tp_name,
1210 value==NULL ? "del" : "assign to",
1211 PyString_AS_STRING(name));
1212 return -1;
1213}
1214
1215/* Helper to get a pointer to an object's __dict__ slot, if any */
1216
1217PyObject **
1218_PyObject_GetDictPtr(PyObject *obj)
1219{
Martin v. Löwis725507b2006-03-07 12:08:51 +00001220 Py_ssize_t dictoffset;
Christian Heimese93237d2007-12-19 02:37:44 +00001221 PyTypeObject *tp = Py_TYPE(obj);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001222
1223 if (!(tp->tp_flags & Py_TPFLAGS_HAVE_CLASS))
1224 return NULL;
1225 dictoffset = tp->tp_dictoffset;
1226 if (dictoffset == 0)
1227 return NULL;
1228 if (dictoffset < 0) {
Martin v. Löwis18e16552006-02-15 17:27:45 +00001229 Py_ssize_t tsize;
Guido van Rossum2eb0b872002-03-01 22:24:49 +00001230 size_t size;
1231
1232 tsize = ((PyVarObject *)obj)->ob_size;
1233 if (tsize < 0)
1234 tsize = -tsize;
1235 size = _PyObject_VAR_SIZE(tp, tsize);
1236
Tim Peters6d483d32001-10-06 21:27:34 +00001237 dictoffset += (long)size;
1238 assert(dictoffset > 0);
1239 assert(dictoffset % SIZEOF_VOID_P == 0);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001240 }
1241 return (PyObject **) ((char *)obj + dictoffset);
1242}
1243
Tim Peters6d6c1a32001-08-02 04:15:00 +00001244PyObject *
Raymond Hettinger1da1dbf2003-03-17 19:46:11 +00001245PyObject_SelfIter(PyObject *obj)
Raymond Hettinger01538262003-03-17 08:24:35 +00001246{
1247 Py_INCREF(obj);
1248 return obj;
1249}
1250
Michael W. Hudson1593f502004-09-14 17:09:47 +00001251/* Generic GetAttr functions - put these in your tp_[gs]etattro slot */
1252
Raymond Hettinger01538262003-03-17 08:24:35 +00001253PyObject *
Tim Peters6d6c1a32001-08-02 04:15:00 +00001254PyObject_GenericGetAttr(PyObject *obj, PyObject *name)
1255{
Christian Heimese93237d2007-12-19 02:37:44 +00001256 PyTypeObject *tp = Py_TYPE(obj);
Guido van Rossum056fbf42002-08-19 19:22:50 +00001257 PyObject *descr = NULL;
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001258 PyObject *res = NULL;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001259 descrgetfunc f;
Martin v. Löwis725507b2006-03-07 12:08:51 +00001260 Py_ssize_t dictoffset;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001261 PyObject **dictptr;
1262
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001263 if (!PyString_Check(name)){
Martin v. Löwis0c160a02002-03-15 13:40:30 +00001264#ifdef Py_USING_UNICODE
1265 /* The Unicode to string conversion is done here because the
1266 existing tp_setattro slots expect a string object as name
1267 and we wouldn't want to break those. */
1268 if (PyUnicode_Check(name)) {
1269 name = PyUnicode_AsEncodedString(name, NULL, NULL);
1270 if (name == NULL)
1271 return NULL;
1272 }
Tim Peters803526b2002-07-07 05:13:56 +00001273 else
Martin v. Löwis0c160a02002-03-15 13:40:30 +00001274#endif
1275 {
Georg Brandlccff7852006-06-18 22:17:29 +00001276 PyErr_Format(PyExc_TypeError,
1277 "attribute name must be string, not '%.200s'",
Christian Heimese93237d2007-12-19 02:37:44 +00001278 Py_TYPE(name)->tp_name);
Martin v. Löwis0c160a02002-03-15 13:40:30 +00001279 return NULL;
1280 }
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001281 }
1282 else
1283 Py_INCREF(name);
1284
Tim Peters6d6c1a32001-08-02 04:15:00 +00001285 if (tp->tp_dict == NULL) {
Guido van Rossum528b7eb2001-08-07 17:24:28 +00001286 if (PyType_Ready(tp) < 0)
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001287 goto done;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001288 }
1289
Guido van Rossum056fbf42002-08-19 19:22:50 +00001290 /* Inline _PyType_Lookup */
1291 {
Martin v. Löwis18e16552006-02-15 17:27:45 +00001292 Py_ssize_t i, n;
Guido van Rossum056fbf42002-08-19 19:22:50 +00001293 PyObject *mro, *base, *dict;
1294
1295 /* Look in tp_dict of types in MRO */
1296 mro = tp->tp_mro;
1297 assert(mro != NULL);
1298 assert(PyTuple_Check(mro));
1299 n = PyTuple_GET_SIZE(mro);
1300 for (i = 0; i < n; i++) {
1301 base = PyTuple_GET_ITEM(mro, i);
1302 if (PyClass_Check(base))
1303 dict = ((PyClassObject *)base)->cl_dict;
1304 else {
1305 assert(PyType_Check(base));
1306 dict = ((PyTypeObject *)base)->tp_dict;
1307 }
1308 assert(dict && PyDict_Check(dict));
1309 descr = PyDict_GetItem(dict, name);
1310 if (descr != NULL)
1311 break;
1312 }
1313 }
1314
Michael W. Hudsonb2c7de42003-08-15 13:07:47 +00001315 Py_XINCREF(descr);
1316
Tim Peters6d6c1a32001-08-02 04:15:00 +00001317 f = NULL;
Guido van Rossum90195e22003-02-19 03:19:29 +00001318 if (descr != NULL &&
1319 PyType_HasFeature(descr->ob_type, Py_TPFLAGS_HAVE_CLASS)) {
Tim Peters6d6c1a32001-08-02 04:15:00 +00001320 f = descr->ob_type->tp_descr_get;
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001321 if (f != NULL && PyDescr_IsData(descr)) {
1322 res = f(descr, obj, (PyObject *)obj->ob_type);
Michael W. Hudsonb2c7de42003-08-15 13:07:47 +00001323 Py_DECREF(descr);
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001324 goto done;
1325 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00001326 }
1327
Guido van Rossumc66ff442002-08-19 16:50:48 +00001328 /* Inline _PyObject_GetDictPtr */
1329 dictoffset = tp->tp_dictoffset;
1330 if (dictoffset != 0) {
1331 PyObject *dict;
1332 if (dictoffset < 0) {
Martin v. Löwis18e16552006-02-15 17:27:45 +00001333 Py_ssize_t tsize;
Guido van Rossumc66ff442002-08-19 16:50:48 +00001334 size_t size;
1335
1336 tsize = ((PyVarObject *)obj)->ob_size;
1337 if (tsize < 0)
1338 tsize = -tsize;
1339 size = _PyObject_VAR_SIZE(tp, tsize);
1340
1341 dictoffset += (long)size;
1342 assert(dictoffset > 0);
1343 assert(dictoffset % SIZEOF_VOID_P == 0);
1344 }
1345 dictptr = (PyObject **) ((char *)obj + dictoffset);
1346 dict = *dictptr;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001347 if (dict != NULL) {
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001348 res = PyDict_GetItem(dict, name);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001349 if (res != NULL) {
1350 Py_INCREF(res);
Michael W. Hudsonb2c7de42003-08-15 13:07:47 +00001351 Py_XDECREF(descr);
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001352 goto done;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001353 }
1354 }
1355 }
1356
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001357 if (f != NULL) {
Christian Heimese93237d2007-12-19 02:37:44 +00001358 res = f(descr, obj, (PyObject *)Py_TYPE(obj));
Michael W. Hudsonb2c7de42003-08-15 13:07:47 +00001359 Py_DECREF(descr);
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001360 goto done;
1361 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00001362
1363 if (descr != NULL) {
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001364 res = descr;
Michael W. Hudsonb2c7de42003-08-15 13:07:47 +00001365 /* descr was already increfed above */
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001366 goto done;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001367 }
1368
1369 PyErr_Format(PyExc_AttributeError,
1370 "'%.50s' object has no attribute '%.400s'",
1371 tp->tp_name, PyString_AS_STRING(name));
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001372 done:
1373 Py_DECREF(name);
1374 return res;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001375}
1376
1377int
1378PyObject_GenericSetAttr(PyObject *obj, PyObject *name, PyObject *value)
1379{
Christian Heimese93237d2007-12-19 02:37:44 +00001380 PyTypeObject *tp = Py_TYPE(obj);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001381 PyObject *descr;
1382 descrsetfunc f;
1383 PyObject **dictptr;
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001384 int res = -1;
1385
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001386 if (!PyString_Check(name)){
Martin v. Löwis0c160a02002-03-15 13:40:30 +00001387#ifdef Py_USING_UNICODE
1388 /* The Unicode to string conversion is done here because the
1389 existing tp_setattro slots expect a string object as name
1390 and we wouldn't want to break those. */
1391 if (PyUnicode_Check(name)) {
1392 name = PyUnicode_AsEncodedString(name, NULL, NULL);
1393 if (name == NULL)
1394 return -1;
1395 }
Tim Peters803526b2002-07-07 05:13:56 +00001396 else
Martin v. Löwis0c160a02002-03-15 13:40:30 +00001397#endif
1398 {
Georg Brandlccff7852006-06-18 22:17:29 +00001399 PyErr_Format(PyExc_TypeError,
1400 "attribute name must be string, not '%.200s'",
Christian Heimese93237d2007-12-19 02:37:44 +00001401 Py_TYPE(name)->tp_name);
Martin v. Löwis0c160a02002-03-15 13:40:30 +00001402 return -1;
1403 }
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001404 }
1405 else
1406 Py_INCREF(name);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001407
1408 if (tp->tp_dict == NULL) {
Guido van Rossum528b7eb2001-08-07 17:24:28 +00001409 if (PyType_Ready(tp) < 0)
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001410 goto done;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001411 }
1412
1413 descr = _PyType_Lookup(tp, name);
1414 f = NULL;
Guido van Rossum90195e22003-02-19 03:19:29 +00001415 if (descr != NULL &&
1416 PyType_HasFeature(descr->ob_type, Py_TPFLAGS_HAVE_CLASS)) {
Tim Peters6d6c1a32001-08-02 04:15:00 +00001417 f = descr->ob_type->tp_descr_set;
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001418 if (f != NULL && PyDescr_IsData(descr)) {
1419 res = f(descr, obj, value);
1420 goto done;
1421 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00001422 }
1423
1424 dictptr = _PyObject_GetDictPtr(obj);
1425 if (dictptr != NULL) {
1426 PyObject *dict = *dictptr;
1427 if (dict == NULL && value != NULL) {
1428 dict = PyDict_New();
1429 if (dict == NULL)
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001430 goto done;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001431 *dictptr = dict;
1432 }
1433 if (dict != NULL) {
Tim Peters6d6c1a32001-08-02 04:15:00 +00001434 if (value == NULL)
1435 res = PyDict_DelItem(dict, name);
1436 else
1437 res = PyDict_SetItem(dict, name, value);
1438 if (res < 0 && PyErr_ExceptionMatches(PyExc_KeyError))
1439 PyErr_SetObject(PyExc_AttributeError, name);
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001440 goto done;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001441 }
1442 }
1443
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001444 if (f != NULL) {
1445 res = f(descr, obj, value);
1446 goto done;
1447 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00001448
1449 if (descr == NULL) {
1450 PyErr_Format(PyExc_AttributeError,
Georg Brandlccff7852006-06-18 22:17:29 +00001451 "'%.100s' object has no attribute '%.200s'",
Tim Peters6d6c1a32001-08-02 04:15:00 +00001452 tp->tp_name, PyString_AS_STRING(name));
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001453 goto done;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001454 }
1455
1456 PyErr_Format(PyExc_AttributeError,
1457 "'%.50s' object attribute '%.400s' is read-only",
1458 tp->tp_name, PyString_AS_STRING(name));
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001459 done:
1460 Py_DECREF(name);
1461 return res;
Guido van Rossum98ff96a1997-05-20 18:34:44 +00001462}
1463
Guido van Rossum6ac258d1993-05-12 08:24:20 +00001464/* Test a value used as condition, e.g., in a for or if statement.
1465 Return -1 if an error occurred */
1466
1467int
Fred Drake100814d2000-07-09 15:48:49 +00001468PyObject_IsTrue(PyObject *v)
Guido van Rossum6ac258d1993-05-12 08:24:20 +00001469{
Martin v. Löwis18e16552006-02-15 17:27:45 +00001470 Py_ssize_t res;
Guido van Rossum6248f442002-08-24 06:31:34 +00001471 if (v == Py_True)
1472 return 1;
1473 if (v == Py_False)
1474 return 0;
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001475 if (v == Py_None)
Neal Norwitz51290d32002-06-13 21:32:44 +00001476 return 0;
Guido van Rossum1c4f4581998-05-22 00:53:24 +00001477 else if (v->ob_type->tp_as_number != NULL &&
1478 v->ob_type->tp_as_number->nb_nonzero != NULL)
Guido van Rossum6ac258d1993-05-12 08:24:20 +00001479 res = (*v->ob_type->tp_as_number->nb_nonzero)(v);
Guido van Rossum1c4f4581998-05-22 00:53:24 +00001480 else if (v->ob_type->tp_as_mapping != NULL &&
1481 v->ob_type->tp_as_mapping->mp_length != NULL)
Guido van Rossum6ac258d1993-05-12 08:24:20 +00001482 res = (*v->ob_type->tp_as_mapping->mp_length)(v);
Guido van Rossum1c4f4581998-05-22 00:53:24 +00001483 else if (v->ob_type->tp_as_sequence != NULL &&
1484 v->ob_type->tp_as_sequence->sq_length != NULL)
Guido van Rossum6ac258d1993-05-12 08:24:20 +00001485 res = (*v->ob_type->tp_as_sequence->sq_length)(v);
1486 else
Neal Norwitz51290d32002-06-13 21:32:44 +00001487 return 1;
Martin v. Löwis18e16552006-02-15 17:27:45 +00001488 /* if it is negative, it should be either -1 or -2 */
1489 return (res > 0) ? 1 : Py_SAFE_DOWNCAST(res, Py_ssize_t, int);
Guido van Rossum6ac258d1993-05-12 08:24:20 +00001490}
1491
Tim Peters803526b2002-07-07 05:13:56 +00001492/* equivalent of 'not v'
Guido van Rossumc3d3f961998-04-09 17:53:59 +00001493 Return -1 if an error occurred */
1494
1495int
Fred Drake100814d2000-07-09 15:48:49 +00001496PyObject_Not(PyObject *v)
Guido van Rossumc3d3f961998-04-09 17:53:59 +00001497{
1498 int res;
1499 res = PyObject_IsTrue(v);
1500 if (res < 0)
1501 return res;
1502 return res == 0;
1503}
1504
Guido van Rossum5524a591995-01-10 15:26:20 +00001505/* Coerce two numeric types to the "larger" one.
1506 Increment the reference count on each argument.
Guido van Rossume797ec12001-01-17 15:24:28 +00001507 Return value:
1508 -1 if an error occurred;
1509 0 if the coercion succeeded (and then the reference counts are increased);
1510 1 if no coercion is possible (and no error is raised).
Guido van Rossum5524a591995-01-10 15:26:20 +00001511*/
Guido van Rossum5524a591995-01-10 15:26:20 +00001512int
Fred Drake100814d2000-07-09 15:48:49 +00001513PyNumber_CoerceEx(PyObject **pv, PyObject **pw)
Guido van Rossum5524a591995-01-10 15:26:20 +00001514{
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001515 register PyObject *v = *pv;
1516 register PyObject *w = *pw;
Guido van Rossum5524a591995-01-10 15:26:20 +00001517 int res;
1518
Guido van Rossum517c7d42002-04-26 02:49:14 +00001519 /* Shortcut only for old-style types */
1520 if (v->ob_type == w->ob_type &&
1521 !PyType_HasFeature(v->ob_type, Py_TPFLAGS_CHECKTYPES))
1522 {
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001523 Py_INCREF(v);
1524 Py_INCREF(w);
Guido van Rossum5524a591995-01-10 15:26:20 +00001525 return 0;
1526 }
1527 if (v->ob_type->tp_as_number && v->ob_type->tp_as_number->nb_coerce) {
1528 res = (*v->ob_type->tp_as_number->nb_coerce)(pv, pw);
1529 if (res <= 0)
1530 return res;
1531 }
1532 if (w->ob_type->tp_as_number && w->ob_type->tp_as_number->nb_coerce) {
1533 res = (*w->ob_type->tp_as_number->nb_coerce)(pw, pv);
1534 if (res <= 0)
1535 return res;
1536 }
Guido van Rossum242c6421997-11-19 16:03:17 +00001537 return 1;
1538}
1539
Guido van Rossume797ec12001-01-17 15:24:28 +00001540/* Coerce two numeric types to the "larger" one.
1541 Increment the reference count on each argument.
1542 Return -1 and raise an exception if no coercion is possible
1543 (and then no reference count is incremented).
1544*/
Guido van Rossum242c6421997-11-19 16:03:17 +00001545int
Fred Drake100814d2000-07-09 15:48:49 +00001546PyNumber_Coerce(PyObject **pv, PyObject **pw)
Guido van Rossum242c6421997-11-19 16:03:17 +00001547{
1548 int err = PyNumber_CoerceEx(pv, pw);
1549 if (err <= 0)
1550 return err;
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001551 PyErr_SetString(PyExc_TypeError, "number coercion failed");
Guido van Rossum5524a591995-01-10 15:26:20 +00001552 return -1;
1553}
1554
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001555
Guido van Rossum49b11fe1995-01-26 00:38:22 +00001556/* Test whether an object can be called */
1557
1558int
Fred Drake100814d2000-07-09 15:48:49 +00001559PyCallable_Check(PyObject *x)
Guido van Rossum49b11fe1995-01-26 00:38:22 +00001560{
1561 if (x == NULL)
1562 return 0;
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001563 if (PyInstance_Check(x)) {
1564 PyObject *call = PyObject_GetAttrString(x, "__call__");
Guido van Rossum49b11fe1995-01-26 00:38:22 +00001565 if (call == NULL) {
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001566 PyErr_Clear();
Guido van Rossum49b11fe1995-01-26 00:38:22 +00001567 return 0;
1568 }
1569 /* Could test recursively but don't, for fear of endless
1570 recursion if some joker sets self.__call__ = self */
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001571 Py_DECREF(call);
Guido van Rossum49b11fe1995-01-26 00:38:22 +00001572 return 1;
1573 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00001574 else {
1575 return x->ob_type->tp_call != NULL;
1576 }
Guido van Rossum49b11fe1995-01-26 00:38:22 +00001577}
1578
Georg Brandl871f1bc2007-03-12 13:17:36 +00001579/* ------------------------- PyObject_Dir() helpers ------------------------- */
1580
Tim Peters7eea37e2001-09-04 22:08:56 +00001581/* Helper for PyObject_Dir.
1582 Merge the __dict__ of aclass into dict, and recursively also all
1583 the __dict__s of aclass's base classes. The order of merging isn't
1584 defined, as it's expected that only the final set of dict keys is
1585 interesting.
1586 Return 0 on success, -1 on error.
1587*/
1588
1589static int
1590merge_class_dict(PyObject* dict, PyObject* aclass)
1591{
1592 PyObject *classdict;
1593 PyObject *bases;
1594
1595 assert(PyDict_Check(dict));
1596 assert(aclass);
1597
1598 /* Merge in the type's dict (if any). */
1599 classdict = PyObject_GetAttrString(aclass, "__dict__");
1600 if (classdict == NULL)
1601 PyErr_Clear();
1602 else {
1603 int status = PyDict_Update(dict, classdict);
1604 Py_DECREF(classdict);
1605 if (status < 0)
1606 return -1;
1607 }
1608
1609 /* Recursively merge in the base types' (if any) dicts. */
1610 bases = PyObject_GetAttrString(aclass, "__bases__");
Tim Petersbc7e8632001-09-16 20:33:22 +00001611 if (bases == NULL)
1612 PyErr_Clear();
1613 else {
Guido van Rossum44022412002-05-13 18:29:46 +00001614 /* We have no guarantee that bases is a real tuple */
Martin v. Löwis18e16552006-02-15 17:27:45 +00001615 Py_ssize_t i, n;
Guido van Rossum44022412002-05-13 18:29:46 +00001616 n = PySequence_Size(bases); /* This better be right */
1617 if (n < 0)
1618 PyErr_Clear();
1619 else {
1620 for (i = 0; i < n; i++) {
Tim Peters18e70832003-02-05 19:35:19 +00001621 int status;
Guido van Rossum44022412002-05-13 18:29:46 +00001622 PyObject *base = PySequence_GetItem(bases, i);
1623 if (base == NULL) {
1624 Py_DECREF(bases);
1625 return -1;
1626 }
Tim Peters18e70832003-02-05 19:35:19 +00001627 status = merge_class_dict(dict, base);
1628 Py_DECREF(base);
1629 if (status < 0) {
Guido van Rossum44022412002-05-13 18:29:46 +00001630 Py_DECREF(bases);
1631 return -1;
1632 }
Tim Peters7eea37e2001-09-04 22:08:56 +00001633 }
1634 }
1635 Py_DECREF(bases);
1636 }
1637 return 0;
1638}
1639
Tim Peters305b5852001-09-17 02:38:46 +00001640/* Helper for PyObject_Dir.
1641 If obj has an attr named attrname that's a list, merge its string
1642 elements into keys of dict.
1643 Return 0 on success, -1 on error. Errors due to not finding the attr,
1644 or the attr not being a list, are suppressed.
1645*/
1646
1647static int
Jeremy Hyltonaf68c872005-12-10 18:50:16 +00001648merge_list_attr(PyObject* dict, PyObject* obj, const char *attrname)
Tim Peters305b5852001-09-17 02:38:46 +00001649{
1650 PyObject *list;
1651 int result = 0;
1652
1653 assert(PyDict_Check(dict));
1654 assert(obj);
1655 assert(attrname);
1656
1657 list = PyObject_GetAttrString(obj, attrname);
1658 if (list == NULL)
1659 PyErr_Clear();
1660
1661 else if (PyList_Check(list)) {
1662 int i;
1663 for (i = 0; i < PyList_GET_SIZE(list); ++i) {
1664 PyObject *item = PyList_GET_ITEM(list, i);
1665 if (PyString_Check(item)) {
1666 result = PyDict_SetItem(dict, item, Py_None);
1667 if (result < 0)
1668 break;
1669 }
1670 }
1671 }
1672
1673 Py_XDECREF(list);
1674 return result;
1675}
1676
Georg Brandl871f1bc2007-03-12 13:17:36 +00001677/* Helper for PyObject_Dir without arguments: returns the local scope. */
1678static PyObject *
Jeremy Hylton26ca9252007-03-16 14:49:11 +00001679_dir_locals(void)
Tim Peters7eea37e2001-09-04 22:08:56 +00001680{
Georg Brandl871f1bc2007-03-12 13:17:36 +00001681 PyObject *names;
1682 PyObject *locals = PyEval_GetLocals();
Tim Peters7eea37e2001-09-04 22:08:56 +00001683
Georg Brandl871f1bc2007-03-12 13:17:36 +00001684 if (locals == NULL) {
1685 PyErr_SetString(PyExc_SystemError, "frame does not exist");
1686 return NULL;
Tim Peters7eea37e2001-09-04 22:08:56 +00001687 }
1688
Georg Brandl871f1bc2007-03-12 13:17:36 +00001689 names = PyMapping_Keys(locals);
1690 if (!names)
1691 return NULL;
1692 if (!PyList_Check(names)) {
Georg Brandlccff7852006-06-18 22:17:29 +00001693 PyErr_Format(PyExc_TypeError,
Georg Brandl871f1bc2007-03-12 13:17:36 +00001694 "dir(): expected keys() of locals to be a list, "
Christian Heimese93237d2007-12-19 02:37:44 +00001695 "not '%.200s'", Py_TYPE(names)->tp_name);
Georg Brandl871f1bc2007-03-12 13:17:36 +00001696 Py_DECREF(names);
1697 return NULL;
Raymond Hettinger2a7dede2004-08-07 04:55:30 +00001698 }
Georg Brandl871f1bc2007-03-12 13:17:36 +00001699 /* the locals don't need to be DECREF'd */
1700 return names;
1701}
Tim Peters7eea37e2001-09-04 22:08:56 +00001702
Georg Brandl871f1bc2007-03-12 13:17:36 +00001703/* Helper for PyObject_Dir of type objects: returns __dict__ and __bases__.
1704 We deliberately don't suck up its __class__, as methods belonging to the
1705 metaclass would probably be more confusing than helpful.
1706*/
1707static PyObject *
1708_specialized_dir_type(PyObject *obj)
1709{
1710 PyObject *result = NULL;
1711 PyObject *dict = PyDict_New();
1712
1713 if (dict != NULL && merge_class_dict(dict, obj) == 0)
1714 result = PyDict_Keys(dict);
1715
1716 Py_XDECREF(dict);
1717 return result;
1718}
1719
1720/* Helper for PyObject_Dir of module objects: returns the module's __dict__. */
1721static PyObject *
1722_specialized_dir_module(PyObject *obj)
1723{
1724 PyObject *result = NULL;
1725 PyObject *dict = PyObject_GetAttrString(obj, "__dict__");
1726
1727 if (dict != NULL) {
1728 if (PyDict_Check(dict))
1729 result = PyDict_Keys(dict);
1730 else {
1731 PyErr_Format(PyExc_TypeError,
1732 "%.200s.__dict__ is not a dictionary",
1733 PyModule_GetName(obj));
1734 }
1735 }
1736
1737 Py_XDECREF(dict);
1738 return result;
1739}
1740
1741/* Helper for PyObject_Dir of generic objects: returns __dict__, __class__,
1742 and recursively up the __class__.__bases__ chain.
1743*/
1744static PyObject *
1745_generic_dir(PyObject *obj)
1746{
1747 PyObject *result = NULL;
1748 PyObject *dict = NULL;
1749 PyObject *itsclass = NULL;
1750
1751 /* Get __dict__ (which may or may not be a real dict...) */
1752 dict = PyObject_GetAttrString(obj, "__dict__");
1753 if (dict == NULL) {
1754 PyErr_Clear();
1755 dict = PyDict_New();
1756 }
1757 else if (!PyDict_Check(dict)) {
1758 Py_DECREF(dict);
1759 dict = PyDict_New();
1760 }
1761 else {
1762 /* Copy __dict__ to avoid mutating it. */
1763 PyObject *temp = PyDict_Copy(dict);
1764 Py_DECREF(dict);
1765 dict = temp;
1766 }
1767
1768 if (dict == NULL)
1769 goto error;
1770
1771 /* Merge in __members__ and __methods__ (if any).
1772 * This is removed in Python 3000. */
1773 if (merge_list_attr(dict, obj, "__members__") < 0)
1774 goto error;
1775 if (merge_list_attr(dict, obj, "__methods__") < 0)
1776 goto error;
1777
1778 /* Merge in attrs reachable from its class. */
1779 itsclass = PyObject_GetAttrString(obj, "__class__");
1780 if (itsclass == NULL)
1781 /* XXX(tomer): Perhaps fall back to obj->ob_type if no
1782 __class__ exists? */
1783 PyErr_Clear();
1784 else {
1785 if (merge_class_dict(dict, itsclass) != 0)
1786 goto error;
1787 }
1788
1789 result = PyDict_Keys(dict);
Tim Peters7eea37e2001-09-04 22:08:56 +00001790 /* fall through */
Georg Brandl871f1bc2007-03-12 13:17:36 +00001791error:
1792 Py_XDECREF(itsclass);
1793 Py_XDECREF(dict);
1794 return result;
1795}
1796
1797/* Helper for PyObject_Dir: object introspection.
1798 This calls one of the above specialized versions if no __dir__ method
1799 exists. */
1800static PyObject *
1801_dir_object(PyObject *obj)
1802{
Georg Brandl3bb15672007-03-13 07:23:16 +00001803 PyObject *result = NULL;
1804 PyObject *dirfunc = PyObject_GetAttrString((PyObject *)obj->ob_type,
1805 "__dir__");
Georg Brandl871f1bc2007-03-12 13:17:36 +00001806
1807 assert(obj);
1808 if (dirfunc == NULL) {
1809 /* use default implementation */
1810 PyErr_Clear();
1811 if (PyModule_Check(obj))
1812 result = _specialized_dir_module(obj);
1813 else if (PyType_Check(obj) || PyClass_Check(obj))
1814 result = _specialized_dir_type(obj);
1815 else
1816 result = _generic_dir(obj);
1817 }
1818 else {
1819 /* use __dir__ */
1820 result = PyObject_CallFunctionObjArgs(dirfunc, obj, NULL);
1821 Py_DECREF(dirfunc);
1822 if (result == NULL)
1823 return NULL;
1824
1825 /* result must be a list */
1826 /* XXX(gbrandl): could also check if all items are strings */
1827 if (!PyList_Check(result)) {
1828 PyErr_Format(PyExc_TypeError,
1829 "__dir__() must return a list, not %.200s",
Christian Heimese93237d2007-12-19 02:37:44 +00001830 Py_TYPE(result)->tp_name);
Georg Brandl871f1bc2007-03-12 13:17:36 +00001831 Py_DECREF(result);
1832 result = NULL;
1833 }
1834 }
1835
1836 return result;
1837}
1838
1839/* Implementation of dir() -- if obj is NULL, returns the names in the current
1840 (local) scope. Otherwise, performs introspection of the object: returns a
1841 sorted list of attribute names (supposedly) accessible from the object
1842*/
1843PyObject *
1844PyObject_Dir(PyObject *obj)
1845{
1846 PyObject * result;
1847
1848 if (obj == NULL)
1849 /* no object -- introspect the locals */
1850 result = _dir_locals();
1851 else
1852 /* object -- introspect the object */
1853 result = _dir_object(obj);
1854
1855 assert(result == NULL || PyList_Check(result));
1856
1857 if (result != NULL && PyList_Sort(result) != 0) {
1858 /* sorting the list failed */
1859 Py_DECREF(result);
1860 result = NULL;
1861 }
1862
Tim Peters7eea37e2001-09-04 22:08:56 +00001863 return result;
1864}
Guido van Rossum49b11fe1995-01-26 00:38:22 +00001865
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001866/*
1867NoObject is usable as a non-NULL undefined value, used by the macro None.
1868There is (and should be!) no way to create other objects of this type,
Guido van Rossum3f5da241990-12-20 15:06:42 +00001869so there is exactly one (which is indestructible, by the way).
Guido van Rossumba21a492001-08-16 08:17:26 +00001870(XXX This type and the type of NotImplemented below should be unified.)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001871*/
1872
Guido van Rossum0c182a11992-03-27 17:26:13 +00001873/* ARGSUSED */
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001874static PyObject *
Fred Drake100814d2000-07-09 15:48:49 +00001875none_repr(PyObject *op)
Guido van Rossum3f5da241990-12-20 15:06:42 +00001876{
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001877 return PyString_FromString("None");
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001878}
1879
Barry Warsaw9bf16442001-01-23 16:24:35 +00001880/* ARGUSED */
1881static void
Tim Peters803526b2002-07-07 05:13:56 +00001882none_dealloc(PyObject* ignore)
Barry Warsaw9bf16442001-01-23 16:24:35 +00001883{
1884 /* This should never get called, but we also don't want to SEGV if
1885 * we accidently decref None out of existance.
1886 */
Martin v. Löwis3f19b102002-08-07 16:21:51 +00001887 Py_FatalError("deallocating None");
Barry Warsaw9bf16442001-01-23 16:24:35 +00001888}
1889
1890
Guido van Rossumba21a492001-08-16 08:17:26 +00001891static PyTypeObject PyNone_Type = {
Martin v. Löwis68192102007-07-21 06:55:02 +00001892 PyVarObject_HEAD_INIT(&PyType_Type, 0)
Guido van Rossumba21a492001-08-16 08:17:26 +00001893 "NoneType",
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001894 0,
1895 0,
Georg Brandl347b3002006-03-30 11:57:00 +00001896 none_dealloc, /*tp_dealloc*/ /*never called*/
Guido van Rossum7066dd71992-09-17 17:54:56 +00001897 0, /*tp_print*/
Guido van Rossum3f5da241990-12-20 15:06:42 +00001898 0, /*tp_getattr*/
1899 0, /*tp_setattr*/
1900 0, /*tp_compare*/
Georg Brandl347b3002006-03-30 11:57:00 +00001901 none_repr, /*tp_repr*/
Guido van Rossum3f5da241990-12-20 15:06:42 +00001902 0, /*tp_as_number*/
1903 0, /*tp_as_sequence*/
1904 0, /*tp_as_mapping*/
Guido van Rossum64c06e32007-11-22 00:55:51 +00001905 (hashfunc)_Py_HashPointer, /*tp_hash */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001906};
1907
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001908PyObject _Py_NoneStruct = {
Martin v. Löwis68192102007-07-21 06:55:02 +00001909 _PyObject_EXTRA_INIT
1910 1, &PyNone_Type
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001911};
1912
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +00001913/* NotImplemented is an object that can be used to signal that an
1914 operation is not implemented for the given type combination. */
1915
1916static PyObject *
1917NotImplemented_repr(PyObject *op)
1918{
1919 return PyString_FromString("NotImplemented");
1920}
1921
1922static PyTypeObject PyNotImplemented_Type = {
Martin v. Löwis68192102007-07-21 06:55:02 +00001923 PyVarObject_HEAD_INIT(&PyType_Type, 0)
Guido van Rossumba21a492001-08-16 08:17:26 +00001924 "NotImplementedType",
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +00001925 0,
1926 0,
Georg Brandl347b3002006-03-30 11:57:00 +00001927 none_dealloc, /*tp_dealloc*/ /*never called*/
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +00001928 0, /*tp_print*/
1929 0, /*tp_getattr*/
1930 0, /*tp_setattr*/
1931 0, /*tp_compare*/
Georg Brandl347b3002006-03-30 11:57:00 +00001932 NotImplemented_repr, /*tp_repr*/
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +00001933 0, /*tp_as_number*/
1934 0, /*tp_as_sequence*/
1935 0, /*tp_as_mapping*/
1936 0, /*tp_hash */
1937};
1938
1939PyObject _Py_NotImplementedStruct = {
Martin v. Löwis68192102007-07-21 06:55:02 +00001940 _PyObject_EXTRA_INIT
1941 1, &PyNotImplemented_Type
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +00001942};
1943
Guido van Rossumba21a492001-08-16 08:17:26 +00001944void
1945_Py_ReadyTypes(void)
1946{
1947 if (PyType_Ready(&PyType_Type) < 0)
1948 Py_FatalError("Can't initialize 'type'");
1949
Fred Drake0a4dd392004-07-02 18:57:45 +00001950 if (PyType_Ready(&_PyWeakref_RefType) < 0)
1951 Py_FatalError("Can't initialize 'weakref'");
1952
Guido van Rossum77f6a652002-04-03 22:41:51 +00001953 if (PyType_Ready(&PyBool_Type) < 0)
1954 Py_FatalError("Can't initialize 'bool'");
1955
Guido van Rossumcacfc072002-05-24 19:01:59 +00001956 if (PyType_Ready(&PyString_Type) < 0)
1957 Py_FatalError("Can't initialize 'str'");
1958
Guido van Rossumba21a492001-08-16 08:17:26 +00001959 if (PyType_Ready(&PyList_Type) < 0)
1960 Py_FatalError("Can't initialize 'list'");
1961
1962 if (PyType_Ready(&PyNone_Type) < 0)
1963 Py_FatalError("Can't initialize type(None)");
1964
1965 if (PyType_Ready(&PyNotImplemented_Type) < 0)
1966 Py_FatalError("Can't initialize type(NotImplemented)");
1967}
1968
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001969
Guido van Rossum84a90321996-05-22 16:34:47 +00001970#ifdef Py_TRACE_REFS
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001971
Guido van Rossumaacdc9d1996-08-12 21:32:12 +00001972void
Fred Drake100814d2000-07-09 15:48:49 +00001973_Py_NewReference(PyObject *op)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001974{
Tim Peters34592512002-07-11 06:23:50 +00001975 _Py_INC_REFTOTAL;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001976 op->ob_refcnt = 1;
Tim Peters7571a0f2003-03-23 17:52:28 +00001977 _Py_AddToAllObjects(op, 1);
Tim Peters34592512002-07-11 06:23:50 +00001978 _Py_INC_TPALLOCS(op);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001979}
1980
Guido van Rossumaacdc9d1996-08-12 21:32:12 +00001981void
Fred Drake100814d2000-07-09 15:48:49 +00001982_Py_ForgetReference(register PyObject *op)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001983{
Guido van Rossumbffd6832000-01-20 22:32:56 +00001984#ifdef SLOW_UNREF_CHECK
Guido van Rossum4c08d552000-03-10 22:55:18 +00001985 register PyObject *p;
Guido van Rossumbffd6832000-01-20 22:32:56 +00001986#endif
Guido van Rossumd7047b31995-01-02 19:07:15 +00001987 if (op->ob_refcnt < 0)
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001988 Py_FatalError("UNREF negative refcnt");
Guido van Rossum2e8f6141992-09-03 20:32:55 +00001989 if (op == &refchain ||
Guido van Rossumd7047b31995-01-02 19:07:15 +00001990 op->_ob_prev->_ob_next != op || op->_ob_next->_ob_prev != op)
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001991 Py_FatalError("UNREF invalid object");
Guido van Rossum2e8f6141992-09-03 20:32:55 +00001992#ifdef SLOW_UNREF_CHECK
Guido van Rossum3f5da241990-12-20 15:06:42 +00001993 for (p = refchain._ob_next; p != &refchain; p = p->_ob_next) {
1994 if (p == op)
1995 break;
1996 }
Guido van Rossumd7047b31995-01-02 19:07:15 +00001997 if (p == &refchain) /* Not found */
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001998 Py_FatalError("UNREF unknown object");
Guido van Rossum2e8f6141992-09-03 20:32:55 +00001999#endif
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002000 op->_ob_next->_ob_prev = op->_ob_prev;
2001 op->_ob_prev->_ob_next = op->_ob_next;
Guido van Rossum2e8f6141992-09-03 20:32:55 +00002002 op->_ob_next = op->_ob_prev = NULL;
Tim Peters34592512002-07-11 06:23:50 +00002003 _Py_INC_TPFREES(op);
Guido van Rossum3f5da241990-12-20 15:06:42 +00002004}
2005
Guido van Rossumaacdc9d1996-08-12 21:32:12 +00002006void
Fred Drake100814d2000-07-09 15:48:49 +00002007_Py_Dealloc(PyObject *op)
Guido van Rossum3f5da241990-12-20 15:06:42 +00002008{
Christian Heimese93237d2007-12-19 02:37:44 +00002009 destructor dealloc = Py_TYPE(op)->tp_dealloc;
Guido van Rossumc0b618a1997-05-02 03:12:38 +00002010 _Py_ForgetReference(op);
Guido van Rossum9776adf1994-09-07 14:36:45 +00002011 (*dealloc)(op);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002012}
2013
Tim Peters269b2a62003-04-17 19:52:29 +00002014/* Print all live objects. Because PyObject_Print is called, the
2015 * interpreter must be in a healthy state.
2016 */
Guido van Rossumaacdc9d1996-08-12 21:32:12 +00002017void
Fred Drake100814d2000-07-09 15:48:49 +00002018_Py_PrintReferences(FILE *fp)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002019{
Guido van Rossumc0b618a1997-05-02 03:12:38 +00002020 PyObject *op;
Guido van Rossume09fb551997-08-05 02:04:34 +00002021 fprintf(fp, "Remaining objects:\n");
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002022 for (op = refchain._ob_next; op != &refchain; op = op->_ob_next) {
Tim Peterscbd6f182006-04-11 19:12:33 +00002023 fprintf(fp, "%p [%" PY_FORMAT_SIZE_T "d] ", op, op->ob_refcnt);
Guido van Rossumc0b618a1997-05-02 03:12:38 +00002024 if (PyObject_Print(op, fp, 0) != 0)
2025 PyErr_Clear();
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002026 putc('\n', fp);
2027 }
2028}
2029
Tim Peters269b2a62003-04-17 19:52:29 +00002030/* Print the addresses of all live objects. Unlike _Py_PrintReferences, this
2031 * doesn't make any calls to the Python C API, so is always safe to call.
2032 */
2033void
2034_Py_PrintReferenceAddresses(FILE *fp)
2035{
2036 PyObject *op;
2037 fprintf(fp, "Remaining object addresses:\n");
2038 for (op = refchain._ob_next; op != &refchain; op = op->_ob_next)
Tim Peterscbd6f182006-04-11 19:12:33 +00002039 fprintf(fp, "%p [%" PY_FORMAT_SIZE_T "d] %s\n", op,
Christian Heimese93237d2007-12-19 02:37:44 +00002040 op->ob_refcnt, Py_TYPE(op)->tp_name);
Tim Peters269b2a62003-04-17 19:52:29 +00002041}
2042
Sjoerd Mullender6ec3c651995-08-29 09:18:14 +00002043PyObject *
Fred Drake100814d2000-07-09 15:48:49 +00002044_Py_GetObjects(PyObject *self, PyObject *args)
Sjoerd Mullender6ec3c651995-08-29 09:18:14 +00002045{
2046 int i, n;
2047 PyObject *t = NULL;
2048 PyObject *res, *op;
2049
2050 if (!PyArg_ParseTuple(args, "i|O", &n, &t))
2051 return NULL;
2052 op = refchain._ob_next;
2053 res = PyList_New(0);
2054 if (res == NULL)
2055 return NULL;
2056 for (i = 0; (n == 0 || i < n) && op != &refchain; i++) {
2057 while (op == self || op == args || op == res || op == t ||
Christian Heimese93237d2007-12-19 02:37:44 +00002058 (t != NULL && Py_TYPE(op) != (PyTypeObject *) t)) {
Sjoerd Mullender6ec3c651995-08-29 09:18:14 +00002059 op = op->_ob_next;
2060 if (op == &refchain)
2061 return res;
2062 }
2063 if (PyList_Append(res, op) < 0) {
2064 Py_DECREF(res);
2065 return NULL;
2066 }
2067 op = op->_ob_next;
2068 }
2069 return res;
2070}
2071
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002072#endif
Guido van Rossum97ead3f1996-01-12 01:24:09 +00002073
2074
2075/* Hack to force loading of cobject.o */
Guido van Rossumda9c2711996-12-05 21:58:58 +00002076PyTypeObject *_Py_cobject_hack = &PyCObject_Type;
Guido van Rossum84a90321996-05-22 16:34:47 +00002077
2078
2079/* Hack to force loading of abstract.o */
Martin v. Löwis18e16552006-02-15 17:27:45 +00002080Py_ssize_t (*_Py_abstract_hack)(PyObject *) = PyObject_Size;
Guido van Rossume09fb551997-08-05 02:04:34 +00002081
2082
Andrew M. Kuchling1582a3a2000-08-16 12:27:23 +00002083/* Python's malloc wrappers (see pymem.h) */
Guido van Rossume09fb551997-08-05 02:04:34 +00002084
Thomas Wouters334fb892000-07-25 12:56:38 +00002085void *
Fred Drake100814d2000-07-09 15:48:49 +00002086PyMem_Malloc(size_t nbytes)
Guido van Rossume09fb551997-08-05 02:04:34 +00002087{
Guido van Rossumb18618d2000-05-03 23:44:39 +00002088 return PyMem_MALLOC(nbytes);
Guido van Rossume09fb551997-08-05 02:04:34 +00002089}
2090
Thomas Wouters334fb892000-07-25 12:56:38 +00002091void *
2092PyMem_Realloc(void *p, size_t nbytes)
Guido van Rossume09fb551997-08-05 02:04:34 +00002093{
Tim Petersaf3e8de2002-04-12 07:22:56 +00002094 return PyMem_REALLOC(p, nbytes);
Guido van Rossume09fb551997-08-05 02:04:34 +00002095}
2096
2097void
Thomas Wouters334fb892000-07-25 12:56:38 +00002098PyMem_Free(void *p)
Guido van Rossume09fb551997-08-05 02:04:34 +00002099{
Guido van Rossumb18618d2000-05-03 23:44:39 +00002100 PyMem_FREE(p);
2101}
2102
2103
Guido van Rossum86610361998-04-10 22:32:46 +00002104/* These methods are used to control infinite recursion in repr, str, print,
2105 etc. Container objects that may recursively contain themselves,
2106 e.g. builtin dictionaries and lists, should used Py_ReprEnter() and
2107 Py_ReprLeave() to avoid infinite recursion.
2108
2109 Py_ReprEnter() returns 0 the first time it is called for a particular
2110 object and 1 every time thereafter. It returns -1 if an exception
2111 occurred. Py_ReprLeave() has no return value.
2112
2113 See dictobject.c and listobject.c for examples of use.
2114*/
2115
2116#define KEY "Py_Repr"
2117
2118int
Fred Drake100814d2000-07-09 15:48:49 +00002119Py_ReprEnter(PyObject *obj)
Guido van Rossum86610361998-04-10 22:32:46 +00002120{
2121 PyObject *dict;
2122 PyObject *list;
Martin v. Löwis18e16552006-02-15 17:27:45 +00002123 Py_ssize_t i;
Guido van Rossum86610361998-04-10 22:32:46 +00002124
2125 dict = PyThreadState_GetDict();
2126 if (dict == NULL)
Guido van Rossum0fc8f002003-04-15 15:12:39 +00002127 return 0;
Guido van Rossum86610361998-04-10 22:32:46 +00002128 list = PyDict_GetItemString(dict, KEY);
2129 if (list == NULL) {
2130 list = PyList_New(0);
2131 if (list == NULL)
2132 return -1;
2133 if (PyDict_SetItemString(dict, KEY, list) < 0)
2134 return -1;
2135 Py_DECREF(list);
2136 }
2137 i = PyList_GET_SIZE(list);
2138 while (--i >= 0) {
2139 if (PyList_GET_ITEM(list, i) == obj)
2140 return 1;
2141 }
2142 PyList_Append(list, obj);
2143 return 0;
2144}
2145
2146void
Fred Drake100814d2000-07-09 15:48:49 +00002147Py_ReprLeave(PyObject *obj)
Guido van Rossum86610361998-04-10 22:32:46 +00002148{
2149 PyObject *dict;
2150 PyObject *list;
Martin v. Löwis18e16552006-02-15 17:27:45 +00002151 Py_ssize_t i;
Guido van Rossum86610361998-04-10 22:32:46 +00002152
2153 dict = PyThreadState_GetDict();
Guido van Rossumeb909461998-04-11 15:17:34 +00002154 if (dict == NULL)
2155 return;
Guido van Rossum86610361998-04-10 22:32:46 +00002156 list = PyDict_GetItemString(dict, KEY);
Guido van Rossumeb909461998-04-11 15:17:34 +00002157 if (list == NULL || !PyList_Check(list))
2158 return;
Guido van Rossum86610361998-04-10 22:32:46 +00002159 i = PyList_GET_SIZE(list);
2160 /* Count backwards because we always expect obj to be list[-1] */
2161 while (--i >= 0) {
2162 if (PyList_GET_ITEM(list, i) == obj) {
2163 PyList_SetSlice(list, i, i + 1, NULL);
2164 break;
2165 }
2166 }
2167}
Guido van Rossumd724b232000-03-13 16:01:29 +00002168
Tim Peters803526b2002-07-07 05:13:56 +00002169/* Trashcan support. */
Guido van Rossumd724b232000-03-13 16:01:29 +00002170
Tim Peters803526b2002-07-07 05:13:56 +00002171/* Current call-stack depth of tp_dealloc calls. */
Guido van Rossumd724b232000-03-13 16:01:29 +00002172int _PyTrash_delete_nesting = 0;
Guido van Rossume92e6102000-04-24 15:40:53 +00002173
Tim Peters803526b2002-07-07 05:13:56 +00002174/* List of objects that still need to be cleaned up, singly linked via their
2175 * gc headers' gc_prev pointers.
2176 */
2177PyObject *_PyTrash_delete_later = NULL;
Guido van Rossumd724b232000-03-13 16:01:29 +00002178
Tim Peters803526b2002-07-07 05:13:56 +00002179/* Add op to the _PyTrash_delete_later list. Called when the current
2180 * call-stack depth gets large. op must be a currently untracked gc'ed
2181 * object, with refcount 0. Py_DECREF must already have been called on it.
2182 */
Guido van Rossumd724b232000-03-13 16:01:29 +00002183void
Fred Drake100814d2000-07-09 15:48:49 +00002184_PyTrash_deposit_object(PyObject *op)
Guido van Rossumd724b232000-03-13 16:01:29 +00002185{
Tim Peters803526b2002-07-07 05:13:56 +00002186 assert(PyObject_IS_GC(op));
2187 assert(_Py_AS_GC(op)->gc.gc_refs == _PyGC_REFS_UNTRACKED);
2188 assert(op->ob_refcnt == 0);
Neil Schemenauerf589c052002-03-29 03:05:54 +00002189 _Py_AS_GC(op)->gc.gc_prev = (PyGC_Head *)_PyTrash_delete_later;
Guido van Rossume92e6102000-04-24 15:40:53 +00002190 _PyTrash_delete_later = op;
Guido van Rossumd724b232000-03-13 16:01:29 +00002191}
2192
Tim Peters803526b2002-07-07 05:13:56 +00002193/* Dealloccate all the objects in the _PyTrash_delete_later list. Called when
2194 * the call-stack unwinds again.
2195 */
Guido van Rossumd724b232000-03-13 16:01:29 +00002196void
Fred Drake100814d2000-07-09 15:48:49 +00002197_PyTrash_destroy_chain(void)
Guido van Rossumd724b232000-03-13 16:01:29 +00002198{
2199 while (_PyTrash_delete_later) {
Tim Peters803526b2002-07-07 05:13:56 +00002200 PyObject *op = _PyTrash_delete_later;
Christian Heimese93237d2007-12-19 02:37:44 +00002201 destructor dealloc = Py_TYPE(op)->tp_dealloc;
Neil Schemenauerf589c052002-03-29 03:05:54 +00002202
Neil Schemenauerf589c052002-03-29 03:05:54 +00002203 _PyTrash_delete_later =
Tim Peters803526b2002-07-07 05:13:56 +00002204 (PyObject*) _Py_AS_GC(op)->gc.gc_prev;
Neil Schemenauerf589c052002-03-29 03:05:54 +00002205
Tim Peters803526b2002-07-07 05:13:56 +00002206 /* Call the deallocator directly. This used to try to
2207 * fool Py_DECREF into calling it indirectly, but
2208 * Py_DECREF was already called on this object, and in
2209 * assorted non-release builds calling Py_DECREF again ends
2210 * up distorting allocation statistics.
2211 */
2212 assert(op->ob_refcnt == 0);
Guido van Rossumd724b232000-03-13 16:01:29 +00002213 ++_PyTrash_delete_nesting;
Tim Peters803526b2002-07-07 05:13:56 +00002214 (*dealloc)(op);
Guido van Rossumd724b232000-03-13 16:01:29 +00002215 --_PyTrash_delete_nesting;
2216 }
2217}
Anthony Baxterac6bd462006-04-13 02:06:09 +00002218
2219#ifdef __cplusplus
2220}
2221#endif