blob: 0651d6b6d87bc5df54d9ffccecdc1b2236b18a24 [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) */
Martin v. Löwis68192102007-07-21 06:55:02 +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;
Martin v. Löwis68192102007-07-21 06:55:02 +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
Martin v. Löwis68192102007-07-21 06:55:02 +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
Martin v. Löwis68192102007-07-21 06:55:02 +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",
Martin v. Löwis68192102007-07-21 06:55:02 +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>");
Martin v. Löwis68192102007-07-21 06:55:02 +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>",
Martin v. Löwis68192102007-07-21 06:55:02 +0000363 Py_Type(v)->tp_name, v);
Guido van Rossum4c08d552000-03-10 22:55:18 +0000364 else {
365 PyObject *res;
Martin v. Löwis68192102007-07-21 06:55:02 +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)",
Martin v. Löwis68192102007-07-21 06:55:02 +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
Martin v. Löwis68192102007-07-21 06:55:02 +0000408 if (Py_Type(v)->tp_str == NULL)
Guido van Rossum4f288ab2001-05-01 16:53:37 +0000409 return PyObject_Repr(v);
410
Martin v. Löwis68192102007-07-21 06:55:02 +0000411 res = (*Py_Type(v)->tp_str)(v);
Guido van Rossum4c08d552000-03-10 22:55:18 +0000412 if (res == NULL)
413 return NULL;
Neil Schemenauercf52c072005-08-12 17:34:58 +0000414 type_ok = PyString_Check(res);
415#ifdef Py_USING_UNICODE
416 type_ok = type_ok || PyUnicode_Check(res);
417#endif
418 if (!type_ok) {
419 PyErr_Format(PyExc_TypeError,
420 "__str__ returned non-string (type %.200s)",
Martin v. Löwis68192102007-07-21 06:55:02 +0000421 Py_Type(res)->tp_name);
Neil Schemenauercf52c072005-08-12 17:34:58 +0000422 Py_DECREF(res);
423 return NULL;
424 }
425 return res;
426}
427
428PyObject *
429PyObject_Str(PyObject *v)
430{
431 PyObject *res = _PyObject_Str(v);
432 if (res == NULL)
433 return NULL;
Martin v. Löwis339d0f72001-08-17 18:39:25 +0000434#ifdef Py_USING_UNICODE
Marc-André Lemburg891bc652000-07-03 09:57:53 +0000435 if (PyUnicode_Check(res)) {
436 PyObject* str;
437 str = PyUnicode_AsEncodedString(res, NULL, NULL);
438 Py_DECREF(res);
439 if (str)
440 res = str;
441 else
442 return NULL;
443 }
Martin v. Löwis339d0f72001-08-17 18:39:25 +0000444#endif
Neil Schemenauercf52c072005-08-12 17:34:58 +0000445 assert(PyString_Check(res));
Guido van Rossum4c08d552000-03-10 22:55:18 +0000446 return res;
Guido van Rossumc6004111993-11-05 10:22:19 +0000447}
448
Martin v. Löwis339d0f72001-08-17 18:39:25 +0000449#ifdef Py_USING_UNICODE
Guido van Rossuma3af41d2001-01-18 22:07:06 +0000450PyObject *
451PyObject_Unicode(PyObject *v)
452{
453 PyObject *res;
Brett Cannonc3647ac2005-04-26 03:45:26 +0000454 PyObject *func;
Neal Norwitz75801462006-03-14 06:02:16 +0000455 PyObject *str;
Brett Cannonc3647ac2005-04-26 03:45:26 +0000456 static PyObject *unicodestr;
Tim Peters803526b2002-07-07 05:13:56 +0000457
Georg Brandl3daf7582006-03-13 22:22:11 +0000458 if (v == NULL) {
Guido van Rossuma3af41d2001-01-18 22:07:06 +0000459 res = PyString_FromString("<NULL>");
Neal Norwitz75801462006-03-14 06:02:16 +0000460 if (res == NULL)
461 return NULL;
462 str = PyUnicode_FromEncodedObject(res, NULL, "strict");
463 Py_DECREF(res);
464 return str;
Georg Brandl3daf7582006-03-13 22:22:11 +0000465 } else if (PyUnicode_CheckExact(v)) {
Guido van Rossuma3af41d2001-01-18 22:07:06 +0000466 Py_INCREF(v);
467 return v;
468 }
Brett Cannonc3647ac2005-04-26 03:45:26 +0000469 /* XXX As soon as we have a tp_unicode slot, we should
470 check this before trying the __unicode__
471 method. */
472 if (unicodestr == NULL) {
473 unicodestr= PyString_InternFromString("__unicode__");
474 if (unicodestr == NULL)
475 return NULL;
Guido van Rossumb8c65bc2001-10-19 02:01:31 +0000476 }
Brett Cannonc3647ac2005-04-26 03:45:26 +0000477 func = PyObject_GetAttr(v, unicodestr);
478 if (func != NULL) {
479 res = PyEval_CallObject(func, (PyObject *)NULL);
480 Py_DECREF(func);
481 }
Guido van Rossuma3af41d2001-01-18 22:07:06 +0000482 else {
Brett Cannonc3647ac2005-04-26 03:45:26 +0000483 PyErr_Clear();
484 if (PyUnicode_Check(v)) {
485 /* For a Unicode subtype that's didn't overwrite __unicode__,
486 return a true Unicode object with the same data. */
487 return PyUnicode_FromUnicode(PyUnicode_AS_UNICODE(v),
488 PyUnicode_GET_SIZE(v));
Guido van Rossuma3af41d2001-01-18 22:07:06 +0000489 }
Brett Cannonc3647ac2005-04-26 03:45:26 +0000490 if (PyString_CheckExact(v)) {
491 Py_INCREF(v);
492 res = v;
Guido van Rossuma3af41d2001-01-18 22:07:06 +0000493 }
Guido van Rossumb8c65bc2001-10-19 02:01:31 +0000494 else {
Martin v. Löwis68192102007-07-21 06:55:02 +0000495 if (Py_Type(v)->tp_str != NULL)
496 res = (*Py_Type(v)->tp_str)(v);
Guido van Rossumb8c65bc2001-10-19 02:01:31 +0000497 else
498 res = PyObject_Repr(v);
499 }
Guido van Rossuma3af41d2001-01-18 22:07:06 +0000500 }
501 if (res == NULL)
502 return NULL;
503 if (!PyUnicode_Check(res)) {
Guido van Rossumb8c65bc2001-10-19 02:01:31 +0000504 str = PyUnicode_FromEncodedObject(res, NULL, "strict");
Guido van Rossuma3af41d2001-01-18 22:07:06 +0000505 Py_DECREF(res);
Neal Norwitz75801462006-03-14 06:02:16 +0000506 res = str;
Guido van Rossuma3af41d2001-01-18 22:07:06 +0000507 }
508 return res;
509}
Martin v. Löwis339d0f72001-08-17 18:39:25 +0000510#endif
Guido van Rossuma3af41d2001-01-18 22:07:06 +0000511
512
Guido van Rossuma4073002002-05-31 20:03:54 +0000513/* Helper to warn about deprecated tp_compare return values. Return:
514 -2 for an exception;
515 -1 if v < w;
516 0 if v == w;
517 1 if v > w.
518 (This function cannot return 2.)
519*/
520static int
521adjust_tp_compare(int c)
522{
523 if (PyErr_Occurred()) {
524 if (c != -1 && c != -2) {
525 PyObject *t, *v, *tb;
526 PyErr_Fetch(&t, &v, &tb);
527 if (PyErr_Warn(PyExc_RuntimeWarning,
528 "tp_compare didn't return -1 or -2 "
529 "for exception") < 0) {
530 Py_XDECREF(t);
531 Py_XDECREF(v);
532 Py_XDECREF(tb);
533 }
534 else
535 PyErr_Restore(t, v, tb);
536 }
537 return -2;
538 }
539 else if (c < -1 || c > 1) {
540 if (PyErr_Warn(PyExc_RuntimeWarning,
541 "tp_compare didn't return -1, 0 or 1") < 0)
542 return -2;
543 else
544 return c < -1 ? -1 : 1;
545 }
546 else {
547 assert(c >= -1 && c <= 1);
548 return c;
549 }
550}
551
552
Guido van Rossumd1f06b92001-01-24 22:14:43 +0000553/* Macro to get the tp_richcompare field of a type if defined */
554#define RICHCOMPARE(t) (PyType_HasFeature((t), Py_TPFLAGS_HAVE_RICHCOMPARE) \
555 ? (t)->tp_richcompare : NULL)
556
Guido van Rossume797ec12001-01-17 15:24:28 +0000557/* Map rich comparison operators to their swapped version, e.g. LT --> GT */
Brett Cannona5ca2e72004-09-25 01:37:24 +0000558int _Py_SwappedOp[] = {Py_GT, Py_GE, Py_EQ, Py_NE, Py_LT, Py_LE};
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +0000559
Guido van Rossume797ec12001-01-17 15:24:28 +0000560/* Try a genuine rich comparison, returning an object. Return:
561 NULL for exception;
562 NotImplemented if this particular rich comparison is not implemented or
563 undefined;
564 some object not equal to NotImplemented if it is implemented
565 (this latter object may not be a Boolean).
566*/
567static PyObject *
568try_rich_compare(PyObject *v, PyObject *w, int op)
569{
570 richcmpfunc f;
571 PyObject *res;
572
Guido van Rossum2ed6bf82001-09-27 20:30:07 +0000573 if (v->ob_type != w->ob_type &&
574 PyType_IsSubtype(w->ob_type, v->ob_type) &&
575 (f = RICHCOMPARE(w->ob_type)) != NULL) {
Tim Petersf4aca752004-09-23 02:39:37 +0000576 res = (*f)(w, v, _Py_SwappedOp[op]);
Guido van Rossum2ed6bf82001-09-27 20:30:07 +0000577 if (res != Py_NotImplemented)
578 return res;
579 Py_DECREF(res);
580 }
Guido van Rossumd1f06b92001-01-24 22:14:43 +0000581 if ((f = RICHCOMPARE(v->ob_type)) != NULL) {
Guido van Rossume797ec12001-01-17 15:24:28 +0000582 res = (*f)(v, w, op);
583 if (res != Py_NotImplemented)
584 return res;
585 Py_DECREF(res);
586 }
Guido van Rossumd1f06b92001-01-24 22:14:43 +0000587 if ((f = RICHCOMPARE(w->ob_type)) != NULL) {
Tim Petersf4aca752004-09-23 02:39:37 +0000588 return (*f)(w, v, _Py_SwappedOp[op]);
Guido van Rossume797ec12001-01-17 15:24:28 +0000589 }
590 res = Py_NotImplemented;
591 Py_INCREF(res);
592 return res;
593}
594
595/* Try a genuine rich comparison, returning an int. Return:
596 -1 for exception (including the case where try_rich_compare() returns an
597 object that's not a Boolean);
Tim Petersc99213f2001-11-04 05:57:16 +0000598 0 if the outcome is false;
599 1 if the outcome is true;
600 2 if this particular rich comparison is not implemented or undefined.
Guido van Rossume797ec12001-01-17 15:24:28 +0000601*/
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +0000602static int
Guido van Rossume797ec12001-01-17 15:24:28 +0000603try_rich_compare_bool(PyObject *v, PyObject *w, int op)
604{
605 PyObject *res;
606 int ok;
607
Guido van Rossumd1f06b92001-01-24 22:14:43 +0000608 if (RICHCOMPARE(v->ob_type) == NULL && RICHCOMPARE(w->ob_type) == NULL)
Guido van Rossume797ec12001-01-17 15:24:28 +0000609 return 2; /* Shortcut, avoid INCREF+DECREF */
610 res = try_rich_compare(v, w, op);
611 if (res == NULL)
612 return -1;
613 if (res == Py_NotImplemented) {
614 Py_DECREF(res);
615 return 2;
616 }
617 ok = PyObject_IsTrue(res);
618 Py_DECREF(res);
619 return ok;
620}
621
622/* Try rich comparisons to determine a 3-way comparison. Return:
623 -2 for an exception;
Tim Petersc99213f2001-11-04 05:57:16 +0000624 -1 if v < w;
625 0 if v == w;
626 1 if v > w;
627 2 if this particular rich comparison is not implemented or undefined.
Guido van Rossume797ec12001-01-17 15:24:28 +0000628*/
629static int
630try_rich_to_3way_compare(PyObject *v, PyObject *w)
631{
Guido van Rossum2ffbf6b2001-01-17 21:27:02 +0000632 static struct { int op; int outcome; } tries[3] = {
633 /* Try this operator, and if it is true, use this outcome: */
634 {Py_EQ, 0},
635 {Py_LT, -1},
636 {Py_GT, 1},
637 };
638 int i;
639
Guido van Rossumd1f06b92001-01-24 22:14:43 +0000640 if (RICHCOMPARE(v->ob_type) == NULL && RICHCOMPARE(w->ob_type) == NULL)
Guido van Rossume797ec12001-01-17 15:24:28 +0000641 return 2; /* Shortcut */
Guido van Rossum2ffbf6b2001-01-17 21:27:02 +0000642
643 for (i = 0; i < 3; i++) {
644 switch (try_rich_compare_bool(v, w, tries[i].op)) {
645 case -1:
Tim Peters6d60b2e2001-05-07 20:53:51 +0000646 return -2;
Guido van Rossum2ffbf6b2001-01-17 21:27:02 +0000647 case 1:
648 return tries[i].outcome;
649 }
Guido van Rossume797ec12001-01-17 15:24:28 +0000650 }
Guido van Rossum2ffbf6b2001-01-17 21:27:02 +0000651
652 return 2;
Guido van Rossume797ec12001-01-17 15:24:28 +0000653}
654
655/* Try a 3-way comparison, returning an int. Return:
656 -2 for an exception;
Tim Petersc99213f2001-11-04 05:57:16 +0000657 -1 if v < w;
658 0 if v == w;
659 1 if v > w;
660 2 if this particular 3-way comparison is not implemented or undefined.
Guido van Rossume797ec12001-01-17 15:24:28 +0000661*/
662static int
663try_3way_compare(PyObject *v, PyObject *w)
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +0000664{
665 int c;
Guido van Rossume797ec12001-01-17 15:24:28 +0000666 cmpfunc f;
667
668 /* Comparisons involving instances are given to instance_compare,
669 which has the same return conventions as this function. */
670
Guido van Rossumab3b0342001-09-18 20:38:53 +0000671 f = v->ob_type->tp_compare;
Guido van Rossume797ec12001-01-17 15:24:28 +0000672 if (PyInstance_Check(v))
Guido van Rossumab3b0342001-09-18 20:38:53 +0000673 return (*f)(v, w);
Guido van Rossume797ec12001-01-17 15:24:28 +0000674 if (PyInstance_Check(w))
675 return (*w->ob_type->tp_compare)(v, w);
676
Guido van Rossumab3b0342001-09-18 20:38:53 +0000677 /* If both have the same (non-NULL) tp_compare, use it. */
678 if (f != NULL && f == w->ob_type->tp_compare) {
679 c = (*f)(v, w);
Guido van Rossuma4073002002-05-31 20:03:54 +0000680 return adjust_tp_compare(c);
Guido van Rossumab3b0342001-09-18 20:38:53 +0000681 }
682
683 /* If either tp_compare is _PyObject_SlotCompare, that's safe. */
684 if (f == _PyObject_SlotCompare ||
685 w->ob_type->tp_compare == _PyObject_SlotCompare)
686 return _PyObject_SlotCompare(v, w);
687
Armin Rigoa1748132004-12-23 22:13:13 +0000688 /* If we're here, v and w,
689 a) are not instances;
690 b) have different types or a type without tp_compare; and
691 c) don't have a user-defined tp_compare.
692 tp_compare implementations in C assume that both arguments
693 have their type, so we give up if the coercion fails or if
694 it yields types which are still incompatible (which can
695 happen with a user-defined nb_coerce).
696 */
Guido van Rossume797ec12001-01-17 15:24:28 +0000697 c = PyNumber_CoerceEx(&v, &w);
698 if (c < 0)
699 return -2;
700 if (c > 0)
701 return 2;
Armin Rigoa1748132004-12-23 22:13:13 +0000702 f = v->ob_type->tp_compare;
703 if (f != NULL && f == w->ob_type->tp_compare) {
Guido van Rossume797ec12001-01-17 15:24:28 +0000704 c = (*f)(v, w);
705 Py_DECREF(v);
706 Py_DECREF(w);
Guido van Rossuma4073002002-05-31 20:03:54 +0000707 return adjust_tp_compare(c);
Guido van Rossume797ec12001-01-17 15:24:28 +0000708 }
709
Guido van Rossume797ec12001-01-17 15:24:28 +0000710 /* No comparison defined */
711 Py_DECREF(v);
712 Py_DECREF(w);
713 return 2;
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +0000714}
715
Guido van Rossume797ec12001-01-17 15:24:28 +0000716/* Final fallback 3-way comparison, returning an int. Return:
717 -2 if an error occurred;
Tim Petersc99213f2001-11-04 05:57:16 +0000718 -1 if v < w;
719 0 if v == w;
720 1 if v > w.
Guido van Rossume797ec12001-01-17 15:24:28 +0000721*/
722static int
723default_3way_compare(PyObject *v, PyObject *w)
724{
725 int c;
Jeremy Hyltonaf68c872005-12-10 18:50:16 +0000726 const char *vname, *wname;
Guido van Rossume797ec12001-01-17 15:24:28 +0000727
728 if (v->ob_type == w->ob_type) {
Barry Warsawb0e754d2001-01-20 06:24:55 +0000729 /* When comparing these pointers, they must be cast to
730 * integer types (i.e. Py_uintptr_t, our spelling of C9X's
731 * uintptr_t). ANSI specifies that pointer compares other
732 * than == and != to non-related structures are undefined.
733 */
Barry Warsaw71ff8d52001-01-20 06:08:10 +0000734 Py_uintptr_t vv = (Py_uintptr_t)v;
735 Py_uintptr_t ww = (Py_uintptr_t)w;
Guido van Rossume797ec12001-01-17 15:24:28 +0000736 return (vv < ww) ? -1 : (vv > ww) ? 1 : 0;
737 }
738
Guido van Rossum0871e932001-01-22 19:28:09 +0000739 /* None is smaller than anything */
740 if (v == Py_None)
741 return -1;
742 if (w == Py_None)
743 return 1;
744
Guido van Rossumfb50d3f2003-02-18 16:40:09 +0000745 /* different type: compare type names; numbers are smaller */
746 if (PyNumber_Check(v))
Guido van Rossum8f9143d2001-01-22 15:59:32 +0000747 vname = "";
748 else
749 vname = v->ob_type->tp_name;
Guido van Rossumfb50d3f2003-02-18 16:40:09 +0000750 if (PyNumber_Check(w))
Guido van Rossum8f9143d2001-01-22 15:59:32 +0000751 wname = "";
752 else
753 wname = w->ob_type->tp_name;
754 c = strcmp(vname, wname);
755 if (c < 0)
756 return -1;
757 if (c > 0)
758 return 1;
759 /* Same type name, or (more likely) incomparable numeric types */
760 return ((Py_uintptr_t)(v->ob_type) < (
761 Py_uintptr_t)(w->ob_type)) ? -1 : 1;
Guido van Rossume797ec12001-01-17 15:24:28 +0000762}
763
Tim Peters6d60b2e2001-05-07 20:53:51 +0000764/* Do a 3-way comparison, by hook or by crook. Return:
Guido van Rossuma4073002002-05-31 20:03:54 +0000765 -2 for an exception (but see below);
Tim Petersc99213f2001-11-04 05:57:16 +0000766 -1 if v < w;
Tim Peters6d60b2e2001-05-07 20:53:51 +0000767 0 if v == w;
Tim Petersc99213f2001-11-04 05:57:16 +0000768 1 if v > w;
Guido van Rossuma4073002002-05-31 20:03:54 +0000769 BUT: if the object implements a tp_compare function, it returns
Martin v. Löwis0163d6d2001-06-09 07:34:05 +0000770 whatever this function returns (whether with an exception or not).
Tim Peters6d60b2e2001-05-07 20:53:51 +0000771*/
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +0000772static int
Fred Drake100814d2000-07-09 15:48:49 +0000773do_cmp(PyObject *v, PyObject *w)
Guido van Rossum20566841995-01-12 11:26:10 +0000774{
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +0000775 int c;
Martin v. Löwis0163d6d2001-06-09 07:34:05 +0000776 cmpfunc f;
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +0000777
Martin v. Löwis0163d6d2001-06-09 07:34:05 +0000778 if (v->ob_type == w->ob_type
Guido van Rossum82fc51c12001-08-16 08:02:45 +0000779 && (f = v->ob_type->tp_compare) != NULL) {
780 c = (*f)(v, w);
Guido van Rossuma4073002002-05-31 20:03:54 +0000781 if (PyInstance_Check(v)) {
782 /* Instance tp_compare has a different signature.
783 But if it returns undefined we fall through. */
784 if (c != 2)
785 return c;
Neal Norwitz3f8dae72002-05-31 20:23:33 +0000786 /* Else fall through to try_rich_to_3way_compare() */
Guido van Rossuma4073002002-05-31 20:03:54 +0000787 }
788 else
789 return adjust_tp_compare(c);
Guido van Rossum82fc51c12001-08-16 08:02:45 +0000790 }
Guido van Rossuma4073002002-05-31 20:03:54 +0000791 /* We only get here if one of the following is true:
792 a) v and w have different types
793 b) v and w have the same type, which doesn't have tp_compare
794 c) v and w are instances, and either __cmp__ is not defined or
795 __cmp__ returns NotImplemented
796 */
Guido van Rossume797ec12001-01-17 15:24:28 +0000797 c = try_rich_to_3way_compare(v, w);
798 if (c < 2)
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +0000799 return c;
Guido van Rossume797ec12001-01-17 15:24:28 +0000800 c = try_3way_compare(v, w);
801 if (c < 2)
802 return c;
803 return default_3way_compare(v, w);
Guido van Rossum20566841995-01-12 11:26:10 +0000804}
805
Tim Petersc99213f2001-11-04 05:57:16 +0000806/* Compare v to w. Return
807 -1 if v < w or exception (PyErr_Occurred() true in latter case).
808 0 if v == w.
809 1 if v > w.
810 XXX The docs (C API manual) say the return value is undefined in case
811 XXX of error.
812*/
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000813int
Fred Drake100814d2000-07-09 15:48:49 +0000814PyObject_Compare(PyObject *v, PyObject *w)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000815{
Jeremy Hylton4a3dd2d2000-04-14 19:13:24 +0000816 int result;
817
Guido van Rossumc8b6df91997-05-23 00:06:51 +0000818 if (v == NULL || w == NULL) {
819 PyErr_BadInternalCall();
820 return -1;
821 }
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000822 if (v == w)
823 return 0;
Armin Rigo2b3eb402003-10-28 12:05:48 +0000824 if (Py_EnterRecursiveCall(" in cmp"))
825 return -1;
826 result = do_cmp(v, w);
827 Py_LeaveRecursiveCall();
Guido van Rossume797ec12001-01-17 15:24:28 +0000828 return result < 0 ? -1 : result;
829}
830
Tim Petersc99213f2001-11-04 05:57:16 +0000831/* Return (new reference to) Py_True or Py_False. */
Guido van Rossume797ec12001-01-17 15:24:28 +0000832static PyObject *
Martin v. Löwis0163d6d2001-06-09 07:34:05 +0000833convert_3way_to_object(int op, int c)
Guido van Rossume797ec12001-01-17 15:24:28 +0000834{
Guido van Rossume797ec12001-01-17 15:24:28 +0000835 PyObject *result;
Guido van Rossume797ec12001-01-17 15:24:28 +0000836 switch (op) {
837 case Py_LT: c = c < 0; break;
838 case Py_LE: c = c <= 0; break;
839 case Py_EQ: c = c == 0; break;
840 case Py_NE: c = c != 0; break;
841 case Py_GT: c = c > 0; break;
842 case Py_GE: c = c >= 0; break;
843 }
844 result = c ? Py_True : Py_False;
845 Py_INCREF(result);
Jeremy Hylton4a3dd2d2000-04-14 19:13:24 +0000846 return result;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000847}
Tim Peters803526b2002-07-07 05:13:56 +0000848
Tim Petersc99213f2001-11-04 05:57:16 +0000849/* We want a rich comparison but don't have one. Try a 3-way cmp instead.
850 Return
851 NULL if error
852 Py_True if v op w
853 Py_False if not (v op w)
854*/
Martin v. Löwis0163d6d2001-06-09 07:34:05 +0000855static PyObject *
856try_3way_to_rich_compare(PyObject *v, PyObject *w, int op)
857{
858 int c;
859
860 c = try_3way_compare(v, w);
861 if (c >= 2)
862 c = default_3way_compare(v, w);
863 if (c <= -2)
864 return NULL;
865 return convert_3way_to_object(op, c);
866}
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000867
Tim Petersc99213f2001-11-04 05:57:16 +0000868/* Do rich comparison on v and w. Return
869 NULL if error
870 Else a new reference to an object other than Py_NotImplemented, usually(?):
871 Py_True if v op w
872 Py_False if not (v op w)
873*/
Neil Schemenauerd38855c2001-01-21 16:25:18 +0000874static PyObject *
Guido van Rossume797ec12001-01-17 15:24:28 +0000875do_richcmp(PyObject *v, PyObject *w, int op)
876{
877 PyObject *res;
878
879 res = try_rich_compare(v, w, op);
880 if (res != Py_NotImplemented)
881 return res;
882 Py_DECREF(res);
883
884 return try_3way_to_rich_compare(v, w, op);
885}
886
Tim Petersc99213f2001-11-04 05:57:16 +0000887/* Return:
888 NULL for exception;
Tim Petersc99213f2001-11-04 05:57:16 +0000889 some object not equal to NotImplemented if it is implemented
890 (this latter object may not be a Boolean).
891*/
Guido van Rossume797ec12001-01-17 15:24:28 +0000892PyObject *
893PyObject_RichCompare(PyObject *v, PyObject *w, int op)
894{
895 PyObject *res;
896
897 assert(Py_LT <= op && op <= Py_GE);
Armin Rigo2b3eb402003-10-28 12:05:48 +0000898 if (Py_EnterRecursiveCall(" in cmp"))
899 return NULL;
Guido van Rossume797ec12001-01-17 15:24:28 +0000900
Armin Rigo2b3eb402003-10-28 12:05:48 +0000901 /* If the types are equal, and not old-style instances, try to
Tim Peters67754e92001-11-04 07:29:31 +0000902 get out cheap (don't bother with coercions etc.). */
903 if (v->ob_type == w->ob_type && !PyInstance_Check(v)) {
904 cmpfunc fcmp;
905 richcmpfunc frich = RICHCOMPARE(v->ob_type);
906 /* If the type has richcmp, try it first. try_rich_compare
907 tries it two-sided, which is not needed since we've a
908 single type only. */
909 if (frich != NULL) {
910 res = (*frich)(v, w, op);
911 if (res != Py_NotImplemented)
912 goto Done;
913 Py_DECREF(res);
914 }
915 /* No richcmp, or this particular richmp not implemented.
916 Try 3-way cmp. */
917 fcmp = v->ob_type->tp_compare;
918 if (fcmp != NULL) {
919 int c = (*fcmp)(v, w);
Guido van Rossuma4073002002-05-31 20:03:54 +0000920 c = adjust_tp_compare(c);
921 if (c == -2) {
Tim Peters67754e92001-11-04 07:29:31 +0000922 res = NULL;
923 goto Done;
924 }
925 res = convert_3way_to_object(op, c);
926 goto Done;
927 }
Guido van Rossum2ffbf6b2001-01-17 21:27:02 +0000928 }
Tim Peters67754e92001-11-04 07:29:31 +0000929
930 /* Fast path not taken, or couldn't deliver a useful result. */
931 res = do_richcmp(v, w, op);
932Done:
Armin Rigo2b3eb402003-10-28 12:05:48 +0000933 Py_LeaveRecursiveCall();
Guido van Rossume797ec12001-01-17 15:24:28 +0000934 return res;
935}
936
Tim Petersde9725f2001-05-05 10:06:17 +0000937/* Return -1 if error; 1 if v op w; 0 if not (v op w). */
Guido van Rossume797ec12001-01-17 15:24:28 +0000938int
939PyObject_RichCompareBool(PyObject *v, PyObject *w, int op)
940{
Raymond Hettinger93d44812004-03-21 17:01:44 +0000941 PyObject *res;
Guido van Rossume797ec12001-01-17 15:24:28 +0000942 int ok;
943
Raymond Hettinger93d44812004-03-21 17:01:44 +0000944 /* Quick result when objects are the same.
945 Guarantees that identity implies equality. */
946 if (v == w) {
947 if (op == Py_EQ)
948 return 1;
949 else if (op == Py_NE)
950 return 0;
951 }
952
953 res = PyObject_RichCompare(v, w, op);
Guido van Rossume797ec12001-01-17 15:24:28 +0000954 if (res == NULL)
955 return -1;
Guido van Rossum81912d42002-08-24 05:33:28 +0000956 if (PyBool_Check(res))
957 ok = (res == Py_True);
958 else
959 ok = PyObject_IsTrue(res);
Guido van Rossume797ec12001-01-17 15:24:28 +0000960 Py_DECREF(res);
961 return ok;
962}
Fred Drake13634cf2000-06-29 19:17:04 +0000963
964/* Set of hash utility functions to help maintaining the invariant that
Raymond Hettinger8183fa42004-03-21 17:35:06 +0000965 if a==b then hash(a)==hash(b)
Fred Drake13634cf2000-06-29 19:17:04 +0000966
967 All the utility functions (_Py_Hash*()) return "-1" to signify an error.
968*/
969
970long
Fred Drake100814d2000-07-09 15:48:49 +0000971_Py_HashDouble(double v)
Fred Drake13634cf2000-06-29 19:17:04 +0000972{
Tim Peters39dce292000-08-15 03:34:48 +0000973 double intpart, fractpart;
974 int expo;
975 long hipart;
976 long x; /* the final hash value */
977 /* This is designed so that Python numbers of different types
978 * that compare equal hash to the same value; otherwise comparisons
979 * of mapping keys will turn out weird.
980 */
981
Tim Peters39dce292000-08-15 03:34:48 +0000982 fractpart = modf(v, &intpart);
Tim Peters39dce292000-08-15 03:34:48 +0000983 if (fractpart == 0.0) {
984 /* This must return the same hash as an equal int or long. */
985 if (intpart > LONG_MAX || -intpart > LONG_MAX) {
986 /* Convert to long and use its hash. */
987 PyObject *plong; /* converted to Python long */
988 if (Py_IS_INFINITY(intpart))
989 /* can't convert to long int -- arbitrary */
990 v = v < 0 ? -271828.0 : 314159.0;
991 plong = PyLong_FromDouble(v);
992 if (plong == NULL)
993 return -1;
994 x = PyObject_Hash(plong);
995 Py_DECREF(plong);
996 return x;
997 }
998 /* Fits in a C long == a Python int, so is its own hash. */
999 x = (long)intpart;
1000 if (x == -1)
1001 x = -2;
1002 return x;
1003 }
1004 /* The fractional part is non-zero, so we don't have to worry about
1005 * making this match the hash of some other type.
1006 * Use frexp to get at the bits in the double.
Fred Drake13634cf2000-06-29 19:17:04 +00001007 * Since the VAX D double format has 56 mantissa bits, which is the
1008 * most of any double format in use, each of these parts may have as
1009 * many as (but no more than) 56 significant bits.
Tim Peters39dce292000-08-15 03:34:48 +00001010 * So, assuming sizeof(long) >= 4, each part can be broken into two
1011 * longs; frexp and multiplication are used to do that.
1012 * Also, since the Cray double format has 15 exponent bits, which is
1013 * the most of any double format in use, shifting the exponent field
1014 * left by 15 won't overflow a long (again assuming sizeof(long) >= 4).
Fred Drake13634cf2000-06-29 19:17:04 +00001015 */
Tim Peters39dce292000-08-15 03:34:48 +00001016 v = frexp(v, &expo);
1017 v *= 2147483648.0; /* 2**31 */
1018 hipart = (long)v; /* take the top 32 bits */
1019 v = (v - (double)hipart) * 2147483648.0; /* get the next 32 bits */
1020 x = hipart + (long)v + (expo << 15);
1021 if (x == -1)
1022 x = -2;
1023 return x;
Fred Drake13634cf2000-06-29 19:17:04 +00001024}
1025
1026long
Fred Drake100814d2000-07-09 15:48:49 +00001027_Py_HashPointer(void *p)
Fred Drake13634cf2000-06-29 19:17:04 +00001028{
1029#if SIZEOF_LONG >= SIZEOF_VOID_P
1030 return (long)p;
1031#else
1032 /* convert to a Python long and hash that */
1033 PyObject* longobj;
1034 long x;
Tim Peters803526b2002-07-07 05:13:56 +00001035
Fred Drake13634cf2000-06-29 19:17:04 +00001036 if ((longobj = PyLong_FromVoidPtr(p)) == NULL) {
1037 x = -1;
1038 goto finally;
1039 }
1040 x = PyObject_Hash(longobj);
Tim Peters803526b2002-07-07 05:13:56 +00001041
Fred Drake13634cf2000-06-29 19:17:04 +00001042finally:
1043 Py_XDECREF(longobj);
1044 return x;
1045#endif
1046}
1047
1048
Guido van Rossum9bfef441993-03-29 10:43:31 +00001049long
Fred Drake100814d2000-07-09 15:48:49 +00001050PyObject_Hash(PyObject *v)
Guido van Rossum9bfef441993-03-29 10:43:31 +00001051{
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001052 PyTypeObject *tp = v->ob_type;
Guido van Rossum9bfef441993-03-29 10:43:31 +00001053 if (tp->tp_hash != NULL)
1054 return (*tp->tp_hash)(v);
Guido van Rossumd1f06b92001-01-24 22:14:43 +00001055 if (tp->tp_compare == NULL && RICHCOMPARE(tp) == NULL) {
Fred Drake13634cf2000-06-29 19:17:04 +00001056 return _Py_HashPointer(v); /* Use address as hash value */
1057 }
Guido van Rossum9bfef441993-03-29 10:43:31 +00001058 /* If there's a cmp but no hash defined, the object can't be hashed */
Georg Brandlccff7852006-06-18 22:17:29 +00001059 PyErr_Format(PyExc_TypeError, "unhashable type: '%.200s'",
1060 v->ob_type->tp_name);
Guido van Rossum9bfef441993-03-29 10:43:31 +00001061 return -1;
1062}
1063
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001064PyObject *
Jeremy Hyltonaf68c872005-12-10 18:50:16 +00001065PyObject_GetAttrString(PyObject *v, const char *name)
Guido van Rossum3f5da241990-12-20 15:06:42 +00001066{
Tim Peters6d6c1a32001-08-02 04:15:00 +00001067 PyObject *w, *res;
Guido van Rossumd8eb1b31996-08-09 20:52:03 +00001068
Martin v. Löwis68192102007-07-21 06:55:02 +00001069 if (Py_Type(v)->tp_getattr != NULL)
1070 return (*Py_Type(v)->tp_getattr)(v, (char*)name);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001071 w = PyString_InternFromString(name);
1072 if (w == NULL)
1073 return NULL;
1074 res = PyObject_GetAttr(v, w);
1075 Py_XDECREF(w);
1076 return res;
Guido van Rossum3f5da241990-12-20 15:06:42 +00001077}
1078
1079int
Jeremy Hyltonaf68c872005-12-10 18:50:16 +00001080PyObject_HasAttrString(PyObject *v, const char *name)
Guido van Rossumed18fdc1993-07-11 19:55:34 +00001081{
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001082 PyObject *res = PyObject_GetAttrString(v, name);
Guido van Rossumed18fdc1993-07-11 19:55:34 +00001083 if (res != NULL) {
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001084 Py_DECREF(res);
Guido van Rossumed18fdc1993-07-11 19:55:34 +00001085 return 1;
1086 }
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001087 PyErr_Clear();
Guido van Rossumed18fdc1993-07-11 19:55:34 +00001088 return 0;
1089}
1090
1091int
Jeremy Hyltonaf68c872005-12-10 18:50:16 +00001092PyObject_SetAttrString(PyObject *v, const char *name, PyObject *w)
Guido van Rossum3f5da241990-12-20 15:06:42 +00001093{
Tim Peters6d6c1a32001-08-02 04:15:00 +00001094 PyObject *s;
1095 int res;
Guido van Rossumd8eb1b31996-08-09 20:52:03 +00001096
Martin v. Löwis68192102007-07-21 06:55:02 +00001097 if (Py_Type(v)->tp_setattr != NULL)
1098 return (*Py_Type(v)->tp_setattr)(v, (char*)name, w);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001099 s = PyString_InternFromString(name);
1100 if (s == NULL)
1101 return -1;
1102 res = PyObject_SetAttr(v, s, w);
1103 Py_XDECREF(s);
1104 return res;
Guido van Rossum3f5da241990-12-20 15:06:42 +00001105}
1106
Guido van Rossum98ff96a1997-05-20 18:34:44 +00001107PyObject *
Fred Drake100814d2000-07-09 15:48:49 +00001108PyObject_GetAttr(PyObject *v, PyObject *name)
Guido van Rossum98ff96a1997-05-20 18:34:44 +00001109{
Martin v. Löwis68192102007-07-21 06:55:02 +00001110 PyTypeObject *tp = Py_Type(v);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001111
Jeremy Hylton99a8f902000-06-23 14:36:32 +00001112 if (!PyString_Check(name)) {
Martin v. Löwis0c160a02002-03-15 13:40:30 +00001113#ifdef Py_USING_UNICODE
1114 /* The Unicode to string conversion is done here because the
1115 existing tp_getattro slots expect a string object as name
1116 and we wouldn't want to break those. */
1117 if (PyUnicode_Check(name)) {
1118 name = _PyUnicode_AsDefaultEncodedString(name, NULL);
1119 if (name == NULL)
1120 return NULL;
1121 }
1122 else
1123#endif
1124 {
Georg Brandlccff7852006-06-18 22:17:29 +00001125 PyErr_Format(PyExc_TypeError,
1126 "attribute name must be string, not '%.200s'",
Martin v. Löwis68192102007-07-21 06:55:02 +00001127 Py_Type(name)->tp_name);
Martin v. Löwis0c160a02002-03-15 13:40:30 +00001128 return NULL;
1129 }
Jeremy Hylton99a8f902000-06-23 14:36:32 +00001130 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00001131 if (tp->tp_getattro != NULL)
1132 return (*tp->tp_getattro)(v, name);
1133 if (tp->tp_getattr != NULL)
1134 return (*tp->tp_getattr)(v, PyString_AS_STRING(name));
1135 PyErr_Format(PyExc_AttributeError,
1136 "'%.50s' object has no attribute '%.400s'",
1137 tp->tp_name, PyString_AS_STRING(name));
1138 return NULL;
Guido van Rossum98ff96a1997-05-20 18:34:44 +00001139}
1140
1141int
Fred Drake100814d2000-07-09 15:48:49 +00001142PyObject_HasAttr(PyObject *v, PyObject *name)
Guido van Rossum98ff96a1997-05-20 18:34:44 +00001143{
1144 PyObject *res = PyObject_GetAttr(v, name);
1145 if (res != NULL) {
1146 Py_DECREF(res);
1147 return 1;
1148 }
1149 PyErr_Clear();
1150 return 0;
1151}
1152
1153int
Fred Drake100814d2000-07-09 15:48:49 +00001154PyObject_SetAttr(PyObject *v, PyObject *name, PyObject *value)
Guido van Rossum98ff96a1997-05-20 18:34:44 +00001155{
Martin v. Löwis68192102007-07-21 06:55:02 +00001156 PyTypeObject *tp = Py_Type(v);
Guido van Rossum98ff96a1997-05-20 18:34:44 +00001157 int err;
Marc-André Lemburge44e5072000-09-18 16:20:57 +00001158
Martin v. Löwis339d0f72001-08-17 18:39:25 +00001159 if (!PyString_Check(name)){
Martin v. Löwis0c160a02002-03-15 13:40:30 +00001160#ifdef Py_USING_UNICODE
1161 /* The Unicode to string conversion is done here because the
1162 existing tp_setattro slots expect a string object as name
1163 and we wouldn't want to break those. */
1164 if (PyUnicode_Check(name)) {
1165 name = PyUnicode_AsEncodedString(name, NULL, NULL);
1166 if (name == NULL)
1167 return -1;
1168 }
Tim Peters803526b2002-07-07 05:13:56 +00001169 else
Martin v. Löwis0c160a02002-03-15 13:40:30 +00001170#endif
1171 {
Georg Brandlccff7852006-06-18 22:17:29 +00001172 PyErr_Format(PyExc_TypeError,
1173 "attribute name must be string, not '%.200s'",
Martin v. Löwis68192102007-07-21 06:55:02 +00001174 Py_Type(name)->tp_name);
Martin v. Löwis0c160a02002-03-15 13:40:30 +00001175 return -1;
1176 }
Jeremy Hylton99a8f902000-06-23 14:36:32 +00001177 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00001178 else
1179 Py_INCREF(name);
1180
1181 PyString_InternInPlace(&name);
1182 if (tp->tp_setattro != NULL) {
1183 err = (*tp->tp_setattro)(v, name, value);
1184 Py_DECREF(name);
1185 return err;
Marc-André Lemburge44e5072000-09-18 16:20:57 +00001186 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00001187 if (tp->tp_setattr != NULL) {
1188 err = (*tp->tp_setattr)(v, PyString_AS_STRING(name), value);
1189 Py_DECREF(name);
1190 return err;
1191 }
Guido van Rossum98ff96a1997-05-20 18:34:44 +00001192 Py_DECREF(name);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001193 if (tp->tp_getattr == NULL && tp->tp_getattro == NULL)
1194 PyErr_Format(PyExc_TypeError,
1195 "'%.100s' object has no attributes "
1196 "(%s .%.100s)",
1197 tp->tp_name,
1198 value==NULL ? "del" : "assign to",
1199 PyString_AS_STRING(name));
1200 else
1201 PyErr_Format(PyExc_TypeError,
1202 "'%.100s' object has only read-only attributes "
1203 "(%s .%.100s)",
1204 tp->tp_name,
1205 value==NULL ? "del" : "assign to",
1206 PyString_AS_STRING(name));
1207 return -1;
1208}
1209
1210/* Helper to get a pointer to an object's __dict__ slot, if any */
1211
1212PyObject **
1213_PyObject_GetDictPtr(PyObject *obj)
1214{
Martin v. Löwis725507b2006-03-07 12:08:51 +00001215 Py_ssize_t dictoffset;
Martin v. Löwis68192102007-07-21 06:55:02 +00001216 PyTypeObject *tp = Py_Type(obj);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001217
1218 if (!(tp->tp_flags & Py_TPFLAGS_HAVE_CLASS))
1219 return NULL;
1220 dictoffset = tp->tp_dictoffset;
1221 if (dictoffset == 0)
1222 return NULL;
1223 if (dictoffset < 0) {
Martin v. Löwis18e16552006-02-15 17:27:45 +00001224 Py_ssize_t tsize;
Guido van Rossum2eb0b872002-03-01 22:24:49 +00001225 size_t size;
1226
1227 tsize = ((PyVarObject *)obj)->ob_size;
1228 if (tsize < 0)
1229 tsize = -tsize;
1230 size = _PyObject_VAR_SIZE(tp, tsize);
1231
Tim Peters6d483d32001-10-06 21:27:34 +00001232 dictoffset += (long)size;
1233 assert(dictoffset > 0);
1234 assert(dictoffset % SIZEOF_VOID_P == 0);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001235 }
1236 return (PyObject **) ((char *)obj + dictoffset);
1237}
1238
Tim Peters6d6c1a32001-08-02 04:15:00 +00001239PyObject *
Raymond Hettinger1da1dbf2003-03-17 19:46:11 +00001240PyObject_SelfIter(PyObject *obj)
Raymond Hettinger01538262003-03-17 08:24:35 +00001241{
1242 Py_INCREF(obj);
1243 return obj;
1244}
1245
Michael W. Hudson1593f502004-09-14 17:09:47 +00001246/* Generic GetAttr functions - put these in your tp_[gs]etattro slot */
1247
Raymond Hettinger01538262003-03-17 08:24:35 +00001248PyObject *
Tim Peters6d6c1a32001-08-02 04:15:00 +00001249PyObject_GenericGetAttr(PyObject *obj, PyObject *name)
1250{
Martin v. Löwis68192102007-07-21 06:55:02 +00001251 PyTypeObject *tp = Py_Type(obj);
Guido van Rossum056fbf42002-08-19 19:22:50 +00001252 PyObject *descr = NULL;
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001253 PyObject *res = NULL;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001254 descrgetfunc f;
Martin v. Löwis725507b2006-03-07 12:08:51 +00001255 Py_ssize_t dictoffset;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001256 PyObject **dictptr;
1257
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001258 if (!PyString_Check(name)){
Martin v. Löwis0c160a02002-03-15 13:40:30 +00001259#ifdef Py_USING_UNICODE
1260 /* The Unicode to string conversion is done here because the
1261 existing tp_setattro slots expect a string object as name
1262 and we wouldn't want to break those. */
1263 if (PyUnicode_Check(name)) {
1264 name = PyUnicode_AsEncodedString(name, NULL, NULL);
1265 if (name == NULL)
1266 return NULL;
1267 }
Tim Peters803526b2002-07-07 05:13:56 +00001268 else
Martin v. Löwis0c160a02002-03-15 13:40:30 +00001269#endif
1270 {
Georg Brandlccff7852006-06-18 22:17:29 +00001271 PyErr_Format(PyExc_TypeError,
1272 "attribute name must be string, not '%.200s'",
Martin v. Löwis68192102007-07-21 06:55:02 +00001273 Py_Type(name)->tp_name);
Martin v. Löwis0c160a02002-03-15 13:40:30 +00001274 return NULL;
1275 }
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001276 }
1277 else
1278 Py_INCREF(name);
1279
Tim Peters6d6c1a32001-08-02 04:15:00 +00001280 if (tp->tp_dict == NULL) {
Guido van Rossum528b7eb2001-08-07 17:24:28 +00001281 if (PyType_Ready(tp) < 0)
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001282 goto done;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001283 }
1284
Guido van Rossum056fbf42002-08-19 19:22:50 +00001285 /* Inline _PyType_Lookup */
1286 {
Martin v. Löwis18e16552006-02-15 17:27:45 +00001287 Py_ssize_t i, n;
Guido van Rossum056fbf42002-08-19 19:22:50 +00001288 PyObject *mro, *base, *dict;
1289
1290 /* Look in tp_dict of types in MRO */
1291 mro = tp->tp_mro;
1292 assert(mro != NULL);
1293 assert(PyTuple_Check(mro));
1294 n = PyTuple_GET_SIZE(mro);
1295 for (i = 0; i < n; i++) {
1296 base = PyTuple_GET_ITEM(mro, i);
1297 if (PyClass_Check(base))
1298 dict = ((PyClassObject *)base)->cl_dict;
1299 else {
1300 assert(PyType_Check(base));
1301 dict = ((PyTypeObject *)base)->tp_dict;
1302 }
1303 assert(dict && PyDict_Check(dict));
1304 descr = PyDict_GetItem(dict, name);
1305 if (descr != NULL)
1306 break;
1307 }
1308 }
1309
Michael W. Hudsonb2c7de42003-08-15 13:07:47 +00001310 Py_XINCREF(descr);
1311
Tim Peters6d6c1a32001-08-02 04:15:00 +00001312 f = NULL;
Guido van Rossum90195e22003-02-19 03:19:29 +00001313 if (descr != NULL &&
1314 PyType_HasFeature(descr->ob_type, Py_TPFLAGS_HAVE_CLASS)) {
Tim Peters6d6c1a32001-08-02 04:15:00 +00001315 f = descr->ob_type->tp_descr_get;
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001316 if (f != NULL && PyDescr_IsData(descr)) {
1317 res = f(descr, obj, (PyObject *)obj->ob_type);
Michael W. Hudsonb2c7de42003-08-15 13:07:47 +00001318 Py_DECREF(descr);
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001319 goto done;
1320 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00001321 }
1322
Guido van Rossumc66ff442002-08-19 16:50:48 +00001323 /* Inline _PyObject_GetDictPtr */
1324 dictoffset = tp->tp_dictoffset;
1325 if (dictoffset != 0) {
1326 PyObject *dict;
1327 if (dictoffset < 0) {
Martin v. Löwis18e16552006-02-15 17:27:45 +00001328 Py_ssize_t tsize;
Guido van Rossumc66ff442002-08-19 16:50:48 +00001329 size_t size;
1330
1331 tsize = ((PyVarObject *)obj)->ob_size;
1332 if (tsize < 0)
1333 tsize = -tsize;
1334 size = _PyObject_VAR_SIZE(tp, tsize);
1335
1336 dictoffset += (long)size;
1337 assert(dictoffset > 0);
1338 assert(dictoffset % SIZEOF_VOID_P == 0);
1339 }
1340 dictptr = (PyObject **) ((char *)obj + dictoffset);
1341 dict = *dictptr;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001342 if (dict != NULL) {
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001343 res = PyDict_GetItem(dict, name);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001344 if (res != NULL) {
1345 Py_INCREF(res);
Michael W. Hudsonb2c7de42003-08-15 13:07:47 +00001346 Py_XDECREF(descr);
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001347 goto done;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001348 }
1349 }
1350 }
1351
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001352 if (f != NULL) {
Martin v. Löwis68192102007-07-21 06:55:02 +00001353 res = f(descr, obj, (PyObject *)Py_Type(obj));
Michael W. Hudsonb2c7de42003-08-15 13:07:47 +00001354 Py_DECREF(descr);
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001355 goto done;
1356 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00001357
1358 if (descr != NULL) {
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001359 res = descr;
Michael W. Hudsonb2c7de42003-08-15 13:07:47 +00001360 /* descr was already increfed above */
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001361 goto done;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001362 }
1363
1364 PyErr_Format(PyExc_AttributeError,
1365 "'%.50s' object has no attribute '%.400s'",
1366 tp->tp_name, PyString_AS_STRING(name));
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001367 done:
1368 Py_DECREF(name);
1369 return res;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001370}
1371
1372int
1373PyObject_GenericSetAttr(PyObject *obj, PyObject *name, PyObject *value)
1374{
Martin v. Löwis68192102007-07-21 06:55:02 +00001375 PyTypeObject *tp = Py_Type(obj);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001376 PyObject *descr;
1377 descrsetfunc f;
1378 PyObject **dictptr;
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001379 int res = -1;
1380
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001381 if (!PyString_Check(name)){
Martin v. Löwis0c160a02002-03-15 13:40:30 +00001382#ifdef Py_USING_UNICODE
1383 /* The Unicode to string conversion is done here because the
1384 existing tp_setattro slots expect a string object as name
1385 and we wouldn't want to break those. */
1386 if (PyUnicode_Check(name)) {
1387 name = PyUnicode_AsEncodedString(name, NULL, NULL);
1388 if (name == NULL)
1389 return -1;
1390 }
Tim Peters803526b2002-07-07 05:13:56 +00001391 else
Martin v. Löwis0c160a02002-03-15 13:40:30 +00001392#endif
1393 {
Georg Brandlccff7852006-06-18 22:17:29 +00001394 PyErr_Format(PyExc_TypeError,
1395 "attribute name must be string, not '%.200s'",
Martin v. Löwis68192102007-07-21 06:55:02 +00001396 Py_Type(name)->tp_name);
Martin v. Löwis0c160a02002-03-15 13:40:30 +00001397 return -1;
1398 }
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001399 }
1400 else
1401 Py_INCREF(name);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001402
1403 if (tp->tp_dict == NULL) {
Guido van Rossum528b7eb2001-08-07 17:24:28 +00001404 if (PyType_Ready(tp) < 0)
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001405 goto done;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001406 }
1407
1408 descr = _PyType_Lookup(tp, name);
1409 f = NULL;
Guido van Rossum90195e22003-02-19 03:19:29 +00001410 if (descr != NULL &&
1411 PyType_HasFeature(descr->ob_type, Py_TPFLAGS_HAVE_CLASS)) {
Tim Peters6d6c1a32001-08-02 04:15:00 +00001412 f = descr->ob_type->tp_descr_set;
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001413 if (f != NULL && PyDescr_IsData(descr)) {
1414 res = f(descr, obj, value);
1415 goto done;
1416 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00001417 }
1418
1419 dictptr = _PyObject_GetDictPtr(obj);
1420 if (dictptr != NULL) {
1421 PyObject *dict = *dictptr;
1422 if (dict == NULL && value != NULL) {
1423 dict = PyDict_New();
1424 if (dict == NULL)
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001425 goto done;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001426 *dictptr = dict;
1427 }
1428 if (dict != NULL) {
Tim Peters6d6c1a32001-08-02 04:15:00 +00001429 if (value == NULL)
1430 res = PyDict_DelItem(dict, name);
1431 else
1432 res = PyDict_SetItem(dict, name, value);
1433 if (res < 0 && PyErr_ExceptionMatches(PyExc_KeyError))
1434 PyErr_SetObject(PyExc_AttributeError, name);
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001435 goto done;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001436 }
1437 }
1438
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001439 if (f != NULL) {
1440 res = f(descr, obj, value);
1441 goto done;
1442 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00001443
1444 if (descr == NULL) {
1445 PyErr_Format(PyExc_AttributeError,
Georg Brandlccff7852006-06-18 22:17:29 +00001446 "'%.100s' object has no attribute '%.200s'",
Tim Peters6d6c1a32001-08-02 04:15:00 +00001447 tp->tp_name, PyString_AS_STRING(name));
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001448 goto done;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001449 }
1450
1451 PyErr_Format(PyExc_AttributeError,
1452 "'%.50s' object attribute '%.400s' is read-only",
1453 tp->tp_name, PyString_AS_STRING(name));
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001454 done:
1455 Py_DECREF(name);
1456 return res;
Guido van Rossum98ff96a1997-05-20 18:34:44 +00001457}
1458
Guido van Rossum6ac258d1993-05-12 08:24:20 +00001459/* Test a value used as condition, e.g., in a for or if statement.
1460 Return -1 if an error occurred */
1461
1462int
Fred Drake100814d2000-07-09 15:48:49 +00001463PyObject_IsTrue(PyObject *v)
Guido van Rossum6ac258d1993-05-12 08:24:20 +00001464{
Martin v. Löwis18e16552006-02-15 17:27:45 +00001465 Py_ssize_t res;
Guido van Rossum6248f442002-08-24 06:31:34 +00001466 if (v == Py_True)
1467 return 1;
1468 if (v == Py_False)
1469 return 0;
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001470 if (v == Py_None)
Neal Norwitz51290d32002-06-13 21:32:44 +00001471 return 0;
Guido van Rossum1c4f4581998-05-22 00:53:24 +00001472 else if (v->ob_type->tp_as_number != NULL &&
1473 v->ob_type->tp_as_number->nb_nonzero != NULL)
Guido van Rossum6ac258d1993-05-12 08:24:20 +00001474 res = (*v->ob_type->tp_as_number->nb_nonzero)(v);
Guido van Rossum1c4f4581998-05-22 00:53:24 +00001475 else if (v->ob_type->tp_as_mapping != NULL &&
1476 v->ob_type->tp_as_mapping->mp_length != NULL)
Guido van Rossum6ac258d1993-05-12 08:24:20 +00001477 res = (*v->ob_type->tp_as_mapping->mp_length)(v);
Guido van Rossum1c4f4581998-05-22 00:53:24 +00001478 else if (v->ob_type->tp_as_sequence != NULL &&
1479 v->ob_type->tp_as_sequence->sq_length != NULL)
Guido van Rossum6ac258d1993-05-12 08:24:20 +00001480 res = (*v->ob_type->tp_as_sequence->sq_length)(v);
1481 else
Neal Norwitz51290d32002-06-13 21:32:44 +00001482 return 1;
Martin v. Löwis18e16552006-02-15 17:27:45 +00001483 /* if it is negative, it should be either -1 or -2 */
1484 return (res > 0) ? 1 : Py_SAFE_DOWNCAST(res, Py_ssize_t, int);
Guido van Rossum6ac258d1993-05-12 08:24:20 +00001485}
1486
Tim Peters803526b2002-07-07 05:13:56 +00001487/* equivalent of 'not v'
Guido van Rossumc3d3f961998-04-09 17:53:59 +00001488 Return -1 if an error occurred */
1489
1490int
Fred Drake100814d2000-07-09 15:48:49 +00001491PyObject_Not(PyObject *v)
Guido van Rossumc3d3f961998-04-09 17:53:59 +00001492{
1493 int res;
1494 res = PyObject_IsTrue(v);
1495 if (res < 0)
1496 return res;
1497 return res == 0;
1498}
1499
Guido van Rossum5524a591995-01-10 15:26:20 +00001500/* Coerce two numeric types to the "larger" one.
1501 Increment the reference count on each argument.
Guido van Rossume797ec12001-01-17 15:24:28 +00001502 Return value:
1503 -1 if an error occurred;
1504 0 if the coercion succeeded (and then the reference counts are increased);
1505 1 if no coercion is possible (and no error is raised).
Guido van Rossum5524a591995-01-10 15:26:20 +00001506*/
Guido van Rossum5524a591995-01-10 15:26:20 +00001507int
Fred Drake100814d2000-07-09 15:48:49 +00001508PyNumber_CoerceEx(PyObject **pv, PyObject **pw)
Guido van Rossum5524a591995-01-10 15:26:20 +00001509{
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001510 register PyObject *v = *pv;
1511 register PyObject *w = *pw;
Guido van Rossum5524a591995-01-10 15:26:20 +00001512 int res;
1513
Guido van Rossum517c7d42002-04-26 02:49:14 +00001514 /* Shortcut only for old-style types */
1515 if (v->ob_type == w->ob_type &&
1516 !PyType_HasFeature(v->ob_type, Py_TPFLAGS_CHECKTYPES))
1517 {
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001518 Py_INCREF(v);
1519 Py_INCREF(w);
Guido van Rossum5524a591995-01-10 15:26:20 +00001520 return 0;
1521 }
1522 if (v->ob_type->tp_as_number && v->ob_type->tp_as_number->nb_coerce) {
1523 res = (*v->ob_type->tp_as_number->nb_coerce)(pv, pw);
1524 if (res <= 0)
1525 return res;
1526 }
1527 if (w->ob_type->tp_as_number && w->ob_type->tp_as_number->nb_coerce) {
1528 res = (*w->ob_type->tp_as_number->nb_coerce)(pw, pv);
1529 if (res <= 0)
1530 return res;
1531 }
Guido van Rossum242c6421997-11-19 16:03:17 +00001532 return 1;
1533}
1534
Guido van Rossume797ec12001-01-17 15:24:28 +00001535/* Coerce two numeric types to the "larger" one.
1536 Increment the reference count on each argument.
1537 Return -1 and raise an exception if no coercion is possible
1538 (and then no reference count is incremented).
1539*/
Guido van Rossum242c6421997-11-19 16:03:17 +00001540int
Fred Drake100814d2000-07-09 15:48:49 +00001541PyNumber_Coerce(PyObject **pv, PyObject **pw)
Guido van Rossum242c6421997-11-19 16:03:17 +00001542{
1543 int err = PyNumber_CoerceEx(pv, pw);
1544 if (err <= 0)
1545 return err;
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001546 PyErr_SetString(PyExc_TypeError, "number coercion failed");
Guido van Rossum5524a591995-01-10 15:26:20 +00001547 return -1;
1548}
1549
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001550
Guido van Rossum49b11fe1995-01-26 00:38:22 +00001551/* Test whether an object can be called */
1552
1553int
Fred Drake100814d2000-07-09 15:48:49 +00001554PyCallable_Check(PyObject *x)
Guido van Rossum49b11fe1995-01-26 00:38:22 +00001555{
1556 if (x == NULL)
1557 return 0;
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001558 if (PyInstance_Check(x)) {
1559 PyObject *call = PyObject_GetAttrString(x, "__call__");
Guido van Rossum49b11fe1995-01-26 00:38:22 +00001560 if (call == NULL) {
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001561 PyErr_Clear();
Guido van Rossum49b11fe1995-01-26 00:38:22 +00001562 return 0;
1563 }
1564 /* Could test recursively but don't, for fear of endless
1565 recursion if some joker sets self.__call__ = self */
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001566 Py_DECREF(call);
Guido van Rossum49b11fe1995-01-26 00:38:22 +00001567 return 1;
1568 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00001569 else {
1570 return x->ob_type->tp_call != NULL;
1571 }
Guido van Rossum49b11fe1995-01-26 00:38:22 +00001572}
1573
Georg Brandl871f1bc2007-03-12 13:17:36 +00001574/* ------------------------- PyObject_Dir() helpers ------------------------- */
1575
Tim Peters7eea37e2001-09-04 22:08:56 +00001576/* Helper for PyObject_Dir.
1577 Merge the __dict__ of aclass into dict, and recursively also all
1578 the __dict__s of aclass's base classes. The order of merging isn't
1579 defined, as it's expected that only the final set of dict keys is
1580 interesting.
1581 Return 0 on success, -1 on error.
1582*/
1583
1584static int
1585merge_class_dict(PyObject* dict, PyObject* aclass)
1586{
1587 PyObject *classdict;
1588 PyObject *bases;
1589
1590 assert(PyDict_Check(dict));
1591 assert(aclass);
1592
1593 /* Merge in the type's dict (if any). */
1594 classdict = PyObject_GetAttrString(aclass, "__dict__");
1595 if (classdict == NULL)
1596 PyErr_Clear();
1597 else {
1598 int status = PyDict_Update(dict, classdict);
1599 Py_DECREF(classdict);
1600 if (status < 0)
1601 return -1;
1602 }
1603
1604 /* Recursively merge in the base types' (if any) dicts. */
1605 bases = PyObject_GetAttrString(aclass, "__bases__");
Tim Petersbc7e8632001-09-16 20:33:22 +00001606 if (bases == NULL)
1607 PyErr_Clear();
1608 else {
Guido van Rossum44022412002-05-13 18:29:46 +00001609 /* We have no guarantee that bases is a real tuple */
Martin v. Löwis18e16552006-02-15 17:27:45 +00001610 Py_ssize_t i, n;
Guido van Rossum44022412002-05-13 18:29:46 +00001611 n = PySequence_Size(bases); /* This better be right */
1612 if (n < 0)
1613 PyErr_Clear();
1614 else {
1615 for (i = 0; i < n; i++) {
Tim Peters18e70832003-02-05 19:35:19 +00001616 int status;
Guido van Rossum44022412002-05-13 18:29:46 +00001617 PyObject *base = PySequence_GetItem(bases, i);
1618 if (base == NULL) {
1619 Py_DECREF(bases);
1620 return -1;
1621 }
Tim Peters18e70832003-02-05 19:35:19 +00001622 status = merge_class_dict(dict, base);
1623 Py_DECREF(base);
1624 if (status < 0) {
Guido van Rossum44022412002-05-13 18:29:46 +00001625 Py_DECREF(bases);
1626 return -1;
1627 }
Tim Peters7eea37e2001-09-04 22:08:56 +00001628 }
1629 }
1630 Py_DECREF(bases);
1631 }
1632 return 0;
1633}
1634
Tim Peters305b5852001-09-17 02:38:46 +00001635/* Helper for PyObject_Dir.
1636 If obj has an attr named attrname that's a list, merge its string
1637 elements into keys of dict.
1638 Return 0 on success, -1 on error. Errors due to not finding the attr,
1639 or the attr not being a list, are suppressed.
1640*/
1641
1642static int
Jeremy Hyltonaf68c872005-12-10 18:50:16 +00001643merge_list_attr(PyObject* dict, PyObject* obj, const char *attrname)
Tim Peters305b5852001-09-17 02:38:46 +00001644{
1645 PyObject *list;
1646 int result = 0;
1647
1648 assert(PyDict_Check(dict));
1649 assert(obj);
1650 assert(attrname);
1651
1652 list = PyObject_GetAttrString(obj, attrname);
1653 if (list == NULL)
1654 PyErr_Clear();
1655
1656 else if (PyList_Check(list)) {
1657 int i;
1658 for (i = 0; i < PyList_GET_SIZE(list); ++i) {
1659 PyObject *item = PyList_GET_ITEM(list, i);
1660 if (PyString_Check(item)) {
1661 result = PyDict_SetItem(dict, item, Py_None);
1662 if (result < 0)
1663 break;
1664 }
1665 }
1666 }
1667
1668 Py_XDECREF(list);
1669 return result;
1670}
1671
Georg Brandl871f1bc2007-03-12 13:17:36 +00001672/* Helper for PyObject_Dir without arguments: returns the local scope. */
1673static PyObject *
Jeremy Hylton26ca9252007-03-16 14:49:11 +00001674_dir_locals(void)
Tim Peters7eea37e2001-09-04 22:08:56 +00001675{
Georg Brandl871f1bc2007-03-12 13:17:36 +00001676 PyObject *names;
1677 PyObject *locals = PyEval_GetLocals();
Tim Peters7eea37e2001-09-04 22:08:56 +00001678
Georg Brandl871f1bc2007-03-12 13:17:36 +00001679 if (locals == NULL) {
1680 PyErr_SetString(PyExc_SystemError, "frame does not exist");
1681 return NULL;
Tim Peters7eea37e2001-09-04 22:08:56 +00001682 }
1683
Georg Brandl871f1bc2007-03-12 13:17:36 +00001684 names = PyMapping_Keys(locals);
1685 if (!names)
1686 return NULL;
1687 if (!PyList_Check(names)) {
Georg Brandlccff7852006-06-18 22:17:29 +00001688 PyErr_Format(PyExc_TypeError,
Georg Brandl871f1bc2007-03-12 13:17:36 +00001689 "dir(): expected keys() of locals to be a list, "
Martin v. Löwis68192102007-07-21 06:55:02 +00001690 "not '%.200s'", Py_Type(names)->tp_name);
Georg Brandl871f1bc2007-03-12 13:17:36 +00001691 Py_DECREF(names);
1692 return NULL;
Raymond Hettinger2a7dede2004-08-07 04:55:30 +00001693 }
Georg Brandl871f1bc2007-03-12 13:17:36 +00001694 /* the locals don't need to be DECREF'd */
1695 return names;
1696}
Tim Peters7eea37e2001-09-04 22:08:56 +00001697
Georg Brandl871f1bc2007-03-12 13:17:36 +00001698/* Helper for PyObject_Dir of type objects: returns __dict__ and __bases__.
1699 We deliberately don't suck up its __class__, as methods belonging to the
1700 metaclass would probably be more confusing than helpful.
1701*/
1702static PyObject *
1703_specialized_dir_type(PyObject *obj)
1704{
1705 PyObject *result = NULL;
1706 PyObject *dict = PyDict_New();
1707
1708 if (dict != NULL && merge_class_dict(dict, obj) == 0)
1709 result = PyDict_Keys(dict);
1710
1711 Py_XDECREF(dict);
1712 return result;
1713}
1714
1715/* Helper for PyObject_Dir of module objects: returns the module's __dict__. */
1716static PyObject *
1717_specialized_dir_module(PyObject *obj)
1718{
1719 PyObject *result = NULL;
1720 PyObject *dict = PyObject_GetAttrString(obj, "__dict__");
1721
1722 if (dict != NULL) {
1723 if (PyDict_Check(dict))
1724 result = PyDict_Keys(dict);
1725 else {
1726 PyErr_Format(PyExc_TypeError,
1727 "%.200s.__dict__ is not a dictionary",
1728 PyModule_GetName(obj));
1729 }
1730 }
1731
1732 Py_XDECREF(dict);
1733 return result;
1734}
1735
1736/* Helper for PyObject_Dir of generic objects: returns __dict__, __class__,
1737 and recursively up the __class__.__bases__ chain.
1738*/
1739static PyObject *
1740_generic_dir(PyObject *obj)
1741{
1742 PyObject *result = NULL;
1743 PyObject *dict = NULL;
1744 PyObject *itsclass = NULL;
1745
1746 /* Get __dict__ (which may or may not be a real dict...) */
1747 dict = PyObject_GetAttrString(obj, "__dict__");
1748 if (dict == NULL) {
1749 PyErr_Clear();
1750 dict = PyDict_New();
1751 }
1752 else if (!PyDict_Check(dict)) {
1753 Py_DECREF(dict);
1754 dict = PyDict_New();
1755 }
1756 else {
1757 /* Copy __dict__ to avoid mutating it. */
1758 PyObject *temp = PyDict_Copy(dict);
1759 Py_DECREF(dict);
1760 dict = temp;
1761 }
1762
1763 if (dict == NULL)
1764 goto error;
1765
1766 /* Merge in __members__ and __methods__ (if any).
1767 * This is removed in Python 3000. */
1768 if (merge_list_attr(dict, obj, "__members__") < 0)
1769 goto error;
1770 if (merge_list_attr(dict, obj, "__methods__") < 0)
1771 goto error;
1772
1773 /* Merge in attrs reachable from its class. */
1774 itsclass = PyObject_GetAttrString(obj, "__class__");
1775 if (itsclass == NULL)
1776 /* XXX(tomer): Perhaps fall back to obj->ob_type if no
1777 __class__ exists? */
1778 PyErr_Clear();
1779 else {
1780 if (merge_class_dict(dict, itsclass) != 0)
1781 goto error;
1782 }
1783
1784 result = PyDict_Keys(dict);
Tim Peters7eea37e2001-09-04 22:08:56 +00001785 /* fall through */
Georg Brandl871f1bc2007-03-12 13:17:36 +00001786error:
1787 Py_XDECREF(itsclass);
1788 Py_XDECREF(dict);
1789 return result;
1790}
1791
1792/* Helper for PyObject_Dir: object introspection.
1793 This calls one of the above specialized versions if no __dir__ method
1794 exists. */
1795static PyObject *
1796_dir_object(PyObject *obj)
1797{
Georg Brandl3bb15672007-03-13 07:23:16 +00001798 PyObject *result = NULL;
1799 PyObject *dirfunc = PyObject_GetAttrString((PyObject *)obj->ob_type,
1800 "__dir__");
Georg Brandl871f1bc2007-03-12 13:17:36 +00001801
1802 assert(obj);
1803 if (dirfunc == NULL) {
1804 /* use default implementation */
1805 PyErr_Clear();
1806 if (PyModule_Check(obj))
1807 result = _specialized_dir_module(obj);
1808 else if (PyType_Check(obj) || PyClass_Check(obj))
1809 result = _specialized_dir_type(obj);
1810 else
1811 result = _generic_dir(obj);
1812 }
1813 else {
1814 /* use __dir__ */
1815 result = PyObject_CallFunctionObjArgs(dirfunc, obj, NULL);
1816 Py_DECREF(dirfunc);
1817 if (result == NULL)
1818 return NULL;
1819
1820 /* result must be a list */
1821 /* XXX(gbrandl): could also check if all items are strings */
1822 if (!PyList_Check(result)) {
1823 PyErr_Format(PyExc_TypeError,
1824 "__dir__() must return a list, not %.200s",
Martin v. Löwis68192102007-07-21 06:55:02 +00001825 Py_Type(result)->tp_name);
Georg Brandl871f1bc2007-03-12 13:17:36 +00001826 Py_DECREF(result);
1827 result = NULL;
1828 }
1829 }
1830
1831 return result;
1832}
1833
1834/* Implementation of dir() -- if obj is NULL, returns the names in the current
1835 (local) scope. Otherwise, performs introspection of the object: returns a
1836 sorted list of attribute names (supposedly) accessible from the object
1837*/
1838PyObject *
1839PyObject_Dir(PyObject *obj)
1840{
1841 PyObject * result;
1842
1843 if (obj == NULL)
1844 /* no object -- introspect the locals */
1845 result = _dir_locals();
1846 else
1847 /* object -- introspect the object */
1848 result = _dir_object(obj);
1849
1850 assert(result == NULL || PyList_Check(result));
1851
1852 if (result != NULL && PyList_Sort(result) != 0) {
1853 /* sorting the list failed */
1854 Py_DECREF(result);
1855 result = NULL;
1856 }
1857
Tim Peters7eea37e2001-09-04 22:08:56 +00001858 return result;
1859}
Guido van Rossum49b11fe1995-01-26 00:38:22 +00001860
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001861/*
1862NoObject is usable as a non-NULL undefined value, used by the macro None.
1863There is (and should be!) no way to create other objects of this type,
Guido van Rossum3f5da241990-12-20 15:06:42 +00001864so there is exactly one (which is indestructible, by the way).
Guido van Rossumba21a492001-08-16 08:17:26 +00001865(XXX This type and the type of NotImplemented below should be unified.)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001866*/
1867
Guido van Rossum0c182a11992-03-27 17:26:13 +00001868/* ARGSUSED */
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001869static PyObject *
Fred Drake100814d2000-07-09 15:48:49 +00001870none_repr(PyObject *op)
Guido van Rossum3f5da241990-12-20 15:06:42 +00001871{
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001872 return PyString_FromString("None");
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001873}
1874
Barry Warsaw9bf16442001-01-23 16:24:35 +00001875/* ARGUSED */
1876static void
Tim Peters803526b2002-07-07 05:13:56 +00001877none_dealloc(PyObject* ignore)
Barry Warsaw9bf16442001-01-23 16:24:35 +00001878{
1879 /* This should never get called, but we also don't want to SEGV if
1880 * we accidently decref None out of existance.
1881 */
Martin v. Löwis3f19b102002-08-07 16:21:51 +00001882 Py_FatalError("deallocating None");
Barry Warsaw9bf16442001-01-23 16:24:35 +00001883}
1884
1885
Guido van Rossumba21a492001-08-16 08:17:26 +00001886static PyTypeObject PyNone_Type = {
Martin v. Löwis68192102007-07-21 06:55:02 +00001887 PyVarObject_HEAD_INIT(&PyType_Type, 0)
Guido van Rossumba21a492001-08-16 08:17:26 +00001888 "NoneType",
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001889 0,
1890 0,
Georg Brandl347b3002006-03-30 11:57:00 +00001891 none_dealloc, /*tp_dealloc*/ /*never called*/
Guido van Rossum7066dd71992-09-17 17:54:56 +00001892 0, /*tp_print*/
Guido van Rossum3f5da241990-12-20 15:06:42 +00001893 0, /*tp_getattr*/
1894 0, /*tp_setattr*/
1895 0, /*tp_compare*/
Georg Brandl347b3002006-03-30 11:57:00 +00001896 none_repr, /*tp_repr*/
Guido van Rossum3f5da241990-12-20 15:06:42 +00001897 0, /*tp_as_number*/
1898 0, /*tp_as_sequence*/
1899 0, /*tp_as_mapping*/
Guido van Rossum9bfef441993-03-29 10:43:31 +00001900 0, /*tp_hash */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001901};
1902
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001903PyObject _Py_NoneStruct = {
Martin v. Löwis68192102007-07-21 06:55:02 +00001904 _PyObject_EXTRA_INIT
1905 1, &PyNone_Type
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001906};
1907
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +00001908/* NotImplemented is an object that can be used to signal that an
1909 operation is not implemented for the given type combination. */
1910
1911static PyObject *
1912NotImplemented_repr(PyObject *op)
1913{
1914 return PyString_FromString("NotImplemented");
1915}
1916
1917static PyTypeObject PyNotImplemented_Type = {
Martin v. Löwis68192102007-07-21 06:55:02 +00001918 PyVarObject_HEAD_INIT(&PyType_Type, 0)
Guido van Rossumba21a492001-08-16 08:17:26 +00001919 "NotImplementedType",
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +00001920 0,
1921 0,
Georg Brandl347b3002006-03-30 11:57:00 +00001922 none_dealloc, /*tp_dealloc*/ /*never called*/
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +00001923 0, /*tp_print*/
1924 0, /*tp_getattr*/
1925 0, /*tp_setattr*/
1926 0, /*tp_compare*/
Georg Brandl347b3002006-03-30 11:57:00 +00001927 NotImplemented_repr, /*tp_repr*/
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +00001928 0, /*tp_as_number*/
1929 0, /*tp_as_sequence*/
1930 0, /*tp_as_mapping*/
1931 0, /*tp_hash */
1932};
1933
1934PyObject _Py_NotImplementedStruct = {
Martin v. Löwis68192102007-07-21 06:55:02 +00001935 _PyObject_EXTRA_INIT
1936 1, &PyNotImplemented_Type
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +00001937};
1938
Guido van Rossumba21a492001-08-16 08:17:26 +00001939void
1940_Py_ReadyTypes(void)
1941{
1942 if (PyType_Ready(&PyType_Type) < 0)
1943 Py_FatalError("Can't initialize 'type'");
1944
Fred Drake0a4dd392004-07-02 18:57:45 +00001945 if (PyType_Ready(&_PyWeakref_RefType) < 0)
1946 Py_FatalError("Can't initialize 'weakref'");
1947
Guido van Rossum77f6a652002-04-03 22:41:51 +00001948 if (PyType_Ready(&PyBool_Type) < 0)
1949 Py_FatalError("Can't initialize 'bool'");
1950
Guido van Rossumcacfc072002-05-24 19:01:59 +00001951 if (PyType_Ready(&PyString_Type) < 0)
1952 Py_FatalError("Can't initialize 'str'");
1953
Guido van Rossumba21a492001-08-16 08:17:26 +00001954 if (PyType_Ready(&PyList_Type) < 0)
1955 Py_FatalError("Can't initialize 'list'");
1956
1957 if (PyType_Ready(&PyNone_Type) < 0)
1958 Py_FatalError("Can't initialize type(None)");
1959
1960 if (PyType_Ready(&PyNotImplemented_Type) < 0)
1961 Py_FatalError("Can't initialize type(NotImplemented)");
1962}
1963
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001964
Guido van Rossum84a90321996-05-22 16:34:47 +00001965#ifdef Py_TRACE_REFS
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001966
Guido van Rossumaacdc9d1996-08-12 21:32:12 +00001967void
Fred Drake100814d2000-07-09 15:48:49 +00001968_Py_NewReference(PyObject *op)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001969{
Tim Peters34592512002-07-11 06:23:50 +00001970 _Py_INC_REFTOTAL;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001971 op->ob_refcnt = 1;
Tim Peters7571a0f2003-03-23 17:52:28 +00001972 _Py_AddToAllObjects(op, 1);
Tim Peters34592512002-07-11 06:23:50 +00001973 _Py_INC_TPALLOCS(op);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001974}
1975
Guido van Rossumaacdc9d1996-08-12 21:32:12 +00001976void
Fred Drake100814d2000-07-09 15:48:49 +00001977_Py_ForgetReference(register PyObject *op)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001978{
Guido van Rossumbffd6832000-01-20 22:32:56 +00001979#ifdef SLOW_UNREF_CHECK
Guido van Rossum4c08d552000-03-10 22:55:18 +00001980 register PyObject *p;
Guido van Rossumbffd6832000-01-20 22:32:56 +00001981#endif
Guido van Rossumd7047b31995-01-02 19:07:15 +00001982 if (op->ob_refcnt < 0)
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001983 Py_FatalError("UNREF negative refcnt");
Guido van Rossum2e8f6141992-09-03 20:32:55 +00001984 if (op == &refchain ||
Guido van Rossumd7047b31995-01-02 19:07:15 +00001985 op->_ob_prev->_ob_next != op || op->_ob_next->_ob_prev != op)
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001986 Py_FatalError("UNREF invalid object");
Guido van Rossum2e8f6141992-09-03 20:32:55 +00001987#ifdef SLOW_UNREF_CHECK
Guido van Rossum3f5da241990-12-20 15:06:42 +00001988 for (p = refchain._ob_next; p != &refchain; p = p->_ob_next) {
1989 if (p == op)
1990 break;
1991 }
Guido van Rossumd7047b31995-01-02 19:07:15 +00001992 if (p == &refchain) /* Not found */
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001993 Py_FatalError("UNREF unknown object");
Guido van Rossum2e8f6141992-09-03 20:32:55 +00001994#endif
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001995 op->_ob_next->_ob_prev = op->_ob_prev;
1996 op->_ob_prev->_ob_next = op->_ob_next;
Guido van Rossum2e8f6141992-09-03 20:32:55 +00001997 op->_ob_next = op->_ob_prev = NULL;
Tim Peters34592512002-07-11 06:23:50 +00001998 _Py_INC_TPFREES(op);
Guido van Rossum3f5da241990-12-20 15:06:42 +00001999}
2000
Guido van Rossumaacdc9d1996-08-12 21:32:12 +00002001void
Fred Drake100814d2000-07-09 15:48:49 +00002002_Py_Dealloc(PyObject *op)
Guido van Rossum3f5da241990-12-20 15:06:42 +00002003{
Martin v. Löwis68192102007-07-21 06:55:02 +00002004 destructor dealloc = Py_Type(op)->tp_dealloc;
Guido van Rossumc0b618a1997-05-02 03:12:38 +00002005 _Py_ForgetReference(op);
Guido van Rossum9776adf1994-09-07 14:36:45 +00002006 (*dealloc)(op);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002007}
2008
Tim Peters269b2a62003-04-17 19:52:29 +00002009/* Print all live objects. Because PyObject_Print is called, the
2010 * interpreter must be in a healthy state.
2011 */
Guido van Rossumaacdc9d1996-08-12 21:32:12 +00002012void
Fred Drake100814d2000-07-09 15:48:49 +00002013_Py_PrintReferences(FILE *fp)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002014{
Guido van Rossumc0b618a1997-05-02 03:12:38 +00002015 PyObject *op;
Guido van Rossume09fb551997-08-05 02:04:34 +00002016 fprintf(fp, "Remaining objects:\n");
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002017 for (op = refchain._ob_next; op != &refchain; op = op->_ob_next) {
Tim Peterscbd6f182006-04-11 19:12:33 +00002018 fprintf(fp, "%p [%" PY_FORMAT_SIZE_T "d] ", op, op->ob_refcnt);
Guido van Rossumc0b618a1997-05-02 03:12:38 +00002019 if (PyObject_Print(op, fp, 0) != 0)
2020 PyErr_Clear();
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002021 putc('\n', fp);
2022 }
2023}
2024
Tim Peters269b2a62003-04-17 19:52:29 +00002025/* Print the addresses of all live objects. Unlike _Py_PrintReferences, this
2026 * doesn't make any calls to the Python C API, so is always safe to call.
2027 */
2028void
2029_Py_PrintReferenceAddresses(FILE *fp)
2030{
2031 PyObject *op;
2032 fprintf(fp, "Remaining object addresses:\n");
2033 for (op = refchain._ob_next; op != &refchain; op = op->_ob_next)
Tim Peterscbd6f182006-04-11 19:12:33 +00002034 fprintf(fp, "%p [%" PY_FORMAT_SIZE_T "d] %s\n", op,
Martin v. Löwis68192102007-07-21 06:55:02 +00002035 op->ob_refcnt, Py_Type(op)->tp_name);
Tim Peters269b2a62003-04-17 19:52:29 +00002036}
2037
Sjoerd Mullender6ec3c651995-08-29 09:18:14 +00002038PyObject *
Fred Drake100814d2000-07-09 15:48:49 +00002039_Py_GetObjects(PyObject *self, PyObject *args)
Sjoerd Mullender6ec3c651995-08-29 09:18:14 +00002040{
2041 int i, n;
2042 PyObject *t = NULL;
2043 PyObject *res, *op;
2044
2045 if (!PyArg_ParseTuple(args, "i|O", &n, &t))
2046 return NULL;
2047 op = refchain._ob_next;
2048 res = PyList_New(0);
2049 if (res == NULL)
2050 return NULL;
2051 for (i = 0; (n == 0 || i < n) && op != &refchain; i++) {
2052 while (op == self || op == args || op == res || op == t ||
Martin v. Löwis68192102007-07-21 06:55:02 +00002053 (t != NULL && Py_Type(op) != (PyTypeObject *) t)) {
Sjoerd Mullender6ec3c651995-08-29 09:18:14 +00002054 op = op->_ob_next;
2055 if (op == &refchain)
2056 return res;
2057 }
2058 if (PyList_Append(res, op) < 0) {
2059 Py_DECREF(res);
2060 return NULL;
2061 }
2062 op = op->_ob_next;
2063 }
2064 return res;
2065}
2066
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002067#endif
Guido van Rossum97ead3f1996-01-12 01:24:09 +00002068
2069
2070/* Hack to force loading of cobject.o */
Guido van Rossumda9c2711996-12-05 21:58:58 +00002071PyTypeObject *_Py_cobject_hack = &PyCObject_Type;
Guido van Rossum84a90321996-05-22 16:34:47 +00002072
2073
2074/* Hack to force loading of abstract.o */
Martin v. Löwis18e16552006-02-15 17:27:45 +00002075Py_ssize_t (*_Py_abstract_hack)(PyObject *) = PyObject_Size;
Guido van Rossume09fb551997-08-05 02:04:34 +00002076
2077
Andrew M. Kuchling1582a3a2000-08-16 12:27:23 +00002078/* Python's malloc wrappers (see pymem.h) */
Guido van Rossume09fb551997-08-05 02:04:34 +00002079
Thomas Wouters334fb892000-07-25 12:56:38 +00002080void *
Fred Drake100814d2000-07-09 15:48:49 +00002081PyMem_Malloc(size_t nbytes)
Guido van Rossume09fb551997-08-05 02:04:34 +00002082{
Guido van Rossumb18618d2000-05-03 23:44:39 +00002083 return PyMem_MALLOC(nbytes);
Guido van Rossume09fb551997-08-05 02:04:34 +00002084}
2085
Thomas Wouters334fb892000-07-25 12:56:38 +00002086void *
2087PyMem_Realloc(void *p, size_t nbytes)
Guido van Rossume09fb551997-08-05 02:04:34 +00002088{
Tim Petersaf3e8de2002-04-12 07:22:56 +00002089 return PyMem_REALLOC(p, nbytes);
Guido van Rossume09fb551997-08-05 02:04:34 +00002090}
2091
2092void
Thomas Wouters334fb892000-07-25 12:56:38 +00002093PyMem_Free(void *p)
Guido van Rossume09fb551997-08-05 02:04:34 +00002094{
Guido van Rossumb18618d2000-05-03 23:44:39 +00002095 PyMem_FREE(p);
2096}
2097
2098
Guido van Rossum86610361998-04-10 22:32:46 +00002099/* These methods are used to control infinite recursion in repr, str, print,
2100 etc. Container objects that may recursively contain themselves,
2101 e.g. builtin dictionaries and lists, should used Py_ReprEnter() and
2102 Py_ReprLeave() to avoid infinite recursion.
2103
2104 Py_ReprEnter() returns 0 the first time it is called for a particular
2105 object and 1 every time thereafter. It returns -1 if an exception
2106 occurred. Py_ReprLeave() has no return value.
2107
2108 See dictobject.c and listobject.c for examples of use.
2109*/
2110
2111#define KEY "Py_Repr"
2112
2113int
Fred Drake100814d2000-07-09 15:48:49 +00002114Py_ReprEnter(PyObject *obj)
Guido van Rossum86610361998-04-10 22:32:46 +00002115{
2116 PyObject *dict;
2117 PyObject *list;
Martin v. Löwis18e16552006-02-15 17:27:45 +00002118 Py_ssize_t i;
Guido van Rossum86610361998-04-10 22:32:46 +00002119
2120 dict = PyThreadState_GetDict();
2121 if (dict == NULL)
Guido van Rossum0fc8f002003-04-15 15:12:39 +00002122 return 0;
Guido van Rossum86610361998-04-10 22:32:46 +00002123 list = PyDict_GetItemString(dict, KEY);
2124 if (list == NULL) {
2125 list = PyList_New(0);
2126 if (list == NULL)
2127 return -1;
2128 if (PyDict_SetItemString(dict, KEY, list) < 0)
2129 return -1;
2130 Py_DECREF(list);
2131 }
2132 i = PyList_GET_SIZE(list);
2133 while (--i >= 0) {
2134 if (PyList_GET_ITEM(list, i) == obj)
2135 return 1;
2136 }
2137 PyList_Append(list, obj);
2138 return 0;
2139}
2140
2141void
Fred Drake100814d2000-07-09 15:48:49 +00002142Py_ReprLeave(PyObject *obj)
Guido van Rossum86610361998-04-10 22:32:46 +00002143{
2144 PyObject *dict;
2145 PyObject *list;
Martin v. Löwis18e16552006-02-15 17:27:45 +00002146 Py_ssize_t i;
Guido van Rossum86610361998-04-10 22:32:46 +00002147
2148 dict = PyThreadState_GetDict();
Guido van Rossumeb909461998-04-11 15:17:34 +00002149 if (dict == NULL)
2150 return;
Guido van Rossum86610361998-04-10 22:32:46 +00002151 list = PyDict_GetItemString(dict, KEY);
Guido van Rossumeb909461998-04-11 15:17:34 +00002152 if (list == NULL || !PyList_Check(list))
2153 return;
Guido van Rossum86610361998-04-10 22:32:46 +00002154 i = PyList_GET_SIZE(list);
2155 /* Count backwards because we always expect obj to be list[-1] */
2156 while (--i >= 0) {
2157 if (PyList_GET_ITEM(list, i) == obj) {
2158 PyList_SetSlice(list, i, i + 1, NULL);
2159 break;
2160 }
2161 }
2162}
Guido van Rossumd724b232000-03-13 16:01:29 +00002163
Tim Peters803526b2002-07-07 05:13:56 +00002164/* Trashcan support. */
Guido van Rossumd724b232000-03-13 16:01:29 +00002165
Tim Peters803526b2002-07-07 05:13:56 +00002166/* Current call-stack depth of tp_dealloc calls. */
Guido van Rossumd724b232000-03-13 16:01:29 +00002167int _PyTrash_delete_nesting = 0;
Guido van Rossume92e6102000-04-24 15:40:53 +00002168
Tim Peters803526b2002-07-07 05:13:56 +00002169/* List of objects that still need to be cleaned up, singly linked via their
2170 * gc headers' gc_prev pointers.
2171 */
2172PyObject *_PyTrash_delete_later = NULL;
Guido van Rossumd724b232000-03-13 16:01:29 +00002173
Tim Peters803526b2002-07-07 05:13:56 +00002174/* Add op to the _PyTrash_delete_later list. Called when the current
2175 * call-stack depth gets large. op must be a currently untracked gc'ed
2176 * object, with refcount 0. Py_DECREF must already have been called on it.
2177 */
Guido van Rossumd724b232000-03-13 16:01:29 +00002178void
Fred Drake100814d2000-07-09 15:48:49 +00002179_PyTrash_deposit_object(PyObject *op)
Guido van Rossumd724b232000-03-13 16:01:29 +00002180{
Tim Peters803526b2002-07-07 05:13:56 +00002181 assert(PyObject_IS_GC(op));
2182 assert(_Py_AS_GC(op)->gc.gc_refs == _PyGC_REFS_UNTRACKED);
2183 assert(op->ob_refcnt == 0);
Neil Schemenauerf589c052002-03-29 03:05:54 +00002184 _Py_AS_GC(op)->gc.gc_prev = (PyGC_Head *)_PyTrash_delete_later;
Guido van Rossume92e6102000-04-24 15:40:53 +00002185 _PyTrash_delete_later = op;
Guido van Rossumd724b232000-03-13 16:01:29 +00002186}
2187
Tim Peters803526b2002-07-07 05:13:56 +00002188/* Dealloccate all the objects in the _PyTrash_delete_later list. Called when
2189 * the call-stack unwinds again.
2190 */
Guido van Rossumd724b232000-03-13 16:01:29 +00002191void
Fred Drake100814d2000-07-09 15:48:49 +00002192_PyTrash_destroy_chain(void)
Guido van Rossumd724b232000-03-13 16:01:29 +00002193{
2194 while (_PyTrash_delete_later) {
Tim Peters803526b2002-07-07 05:13:56 +00002195 PyObject *op = _PyTrash_delete_later;
Martin v. Löwis68192102007-07-21 06:55:02 +00002196 destructor dealloc = Py_Type(op)->tp_dealloc;
Neil Schemenauerf589c052002-03-29 03:05:54 +00002197
Neil Schemenauerf589c052002-03-29 03:05:54 +00002198 _PyTrash_delete_later =
Tim Peters803526b2002-07-07 05:13:56 +00002199 (PyObject*) _Py_AS_GC(op)->gc.gc_prev;
Neil Schemenauerf589c052002-03-29 03:05:54 +00002200
Tim Peters803526b2002-07-07 05:13:56 +00002201 /* Call the deallocator directly. This used to try to
2202 * fool Py_DECREF into calling it indirectly, but
2203 * Py_DECREF was already called on this object, and in
2204 * assorted non-release builds calling Py_DECREF again ends
2205 * up distorting allocation statistics.
2206 */
2207 assert(op->ob_refcnt == 0);
Guido van Rossumd724b232000-03-13 16:01:29 +00002208 ++_PyTrash_delete_nesting;
Tim Peters803526b2002-07-07 05:13:56 +00002209 (*dealloc)(op);
Guido van Rossumd724b232000-03-13 16:01:29 +00002210 --_PyTrash_delete_nesting;
2211 }
2212}
Anthony Baxterac6bd462006-04-13 02:06:09 +00002213
2214#ifdef __cplusplus
2215}
2216#endif