blob: e2ec93b8c3b20595ec79dbfcacdd8465126b931d [file] [log] [blame]
Guido van Rossumf70e43a1991-02-19 12:39:46 +00001
Guido van Rossum3f5da241990-12-20 15:06:42 +00002/* Generic object operations; and implementation of None (NoObject) */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00003
Guido van Rossumc0b618a1997-05-02 03:12:38 +00004#include "Python.h"
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00005
Anthony Baxterac6bd462006-04-13 02:06:09 +00006#ifdef __cplusplus
7extern "C" {
8#endif
9
Tim Peters34592512002-07-11 06:23:50 +000010#ifdef Py_REF_DEBUG
Neal Norwitz84632ee2006-03-04 20:00:59 +000011Py_ssize_t _Py_RefTotal;
Armin Rigoe1709372006-04-12 17:06:05 +000012
13Py_ssize_t
14_Py_GetRefTotal(void)
15{
16 PyObject *o;
17 Py_ssize_t total = _Py_RefTotal;
18 /* ignore the references to the dummy object of the dicts and sets
19 because they are not reliable and not useful (now that the
20 hash table code is well-tested) */
21 o = _PyDict_Dummy();
22 if (o != NULL)
23 total -= o->ob_refcnt;
24 o = _PySet_Dummy();
25 if (o != NULL)
26 total -= o->ob_refcnt;
27 return total;
28}
29#endif /* Py_REF_DEBUG */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000030
Mark Hammonda2905272002-07-29 13:42:14 +000031int Py_DivisionWarningFlag;
Neal Norwitz8b2bfbc2007-05-23 06:35:32 +000032int Py_Py3kWarningFlag;
Guido van Rossum393661d2001-08-31 17:40:15 +000033
Guido van Rossum3f5da241990-12-20 15:06:42 +000034/* Object allocation routines used by NEWOBJ and NEWVAROBJ macros.
35 These are used by the individual routines for object creation.
36 Do not call them otherwise, they do not initialize the object! */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000037
Tim Peters78be7992003-03-23 02:51:01 +000038#ifdef Py_TRACE_REFS
Tim Peters7571a0f2003-03-23 17:52:28 +000039/* Head of circular doubly-linked list of all objects. These are linked
40 * together via the _ob_prev and _ob_next members of a PyObject, which
41 * exist only in a Py_TRACE_REFS build.
42 */
Tim Peters78be7992003-03-23 02:51:01 +000043static PyObject refchain = {&refchain, &refchain};
Tim Peters36eb4df2003-03-23 03:33:13 +000044
Tim Peters7571a0f2003-03-23 17:52:28 +000045/* Insert op at the front of the list of all objects. If force is true,
46 * op is added even if _ob_prev and _ob_next are non-NULL already. If
47 * force is false amd _ob_prev or _ob_next are non-NULL, do nothing.
48 * force should be true if and only if op points to freshly allocated,
49 * uninitialized memory, or you've unlinked op from the list and are
Tim Peters51f8d382003-03-23 18:06:08 +000050 * relinking it into the front.
Tim Peters7571a0f2003-03-23 17:52:28 +000051 * Note that objects are normally added to the list via _Py_NewReference,
52 * which is called by PyObject_Init. Not all objects are initialized that
53 * way, though; exceptions include statically allocated type objects, and
54 * statically allocated singletons (like Py_True and Py_None).
55 */
Tim Peters36eb4df2003-03-23 03:33:13 +000056void
Tim Peters7571a0f2003-03-23 17:52:28 +000057_Py_AddToAllObjects(PyObject *op, int force)
Tim Peters36eb4df2003-03-23 03:33:13 +000058{
Tim Peters7571a0f2003-03-23 17:52:28 +000059#ifdef Py_DEBUG
60 if (!force) {
61 /* If it's initialized memory, op must be in or out of
62 * the list unambiguously.
63 */
64 assert((op->_ob_prev == NULL) == (op->_ob_next == NULL));
65 }
Tim Peters78be7992003-03-23 02:51:01 +000066#endif
Tim Peters7571a0f2003-03-23 17:52:28 +000067 if (force || op->_ob_prev == NULL) {
68 op->_ob_next = refchain._ob_next;
69 op->_ob_prev = &refchain;
70 refchain._ob_next->_ob_prev = op;
71 refchain._ob_next = op;
72 }
73}
74#endif /* Py_TRACE_REFS */
Tim Peters78be7992003-03-23 02:51:01 +000075
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +000076#ifdef COUNT_ALLOCS
Guido van Rossumc0b618a1997-05-02 03:12:38 +000077static PyTypeObject *type_list;
Andrew M. Kuchling2060d1b2006-04-18 11:49:53 +000078/* All types are added to type_list, at least when
Martin v. Löwis45294a92006-04-18 06:24:08 +000079 they get one object created. That makes them
80 immortal, which unfortunately contributes to
81 garbage itself. If unlist_types_without_objects
82 is set, they will be removed from the type_list
83 once the last object is deallocated. */
84int unlist_types_without_objects;
Sjoerd Mullender842d2cc1993-10-15 16:18:48 +000085extern int tuple_zero_allocs, fast_tuple_allocs;
86extern int quick_int_allocs, quick_neg_int_allocs;
Sjoerd Mullender3bb8a051993-10-22 12:04:32 +000087extern int null_strings, one_strings;
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +000088void
Martin v. Löwis45294a92006-04-18 06:24:08 +000089dump_counts(FILE* f)
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +000090{
Guido van Rossumc0b618a1997-05-02 03:12:38 +000091 PyTypeObject *tp;
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +000092
93 for (tp = type_list; tp; tp = tp->tp_next)
Martin v. Löwis45294a92006-04-18 06:24:08 +000094 fprintf(f, "%s alloc'd: %d, freed: %d, max in use: %d\n",
Tim Peters6d6c1a32001-08-02 04:15:00 +000095 tp->tp_name, tp->tp_allocs, tp->tp_frees,
Sjoerd Mullender52c1f511993-10-25 08:40:52 +000096 tp->tp_maxalloc);
Martin v. Löwis45294a92006-04-18 06:24:08 +000097 fprintf(f, "fast tuple allocs: %d, empty: %d\n",
Sjoerd Mullender52c1f511993-10-25 08:40:52 +000098 fast_tuple_allocs, tuple_zero_allocs);
Martin v. Löwis45294a92006-04-18 06:24:08 +000099 fprintf(f, "fast int allocs: pos: %d, neg: %d\n",
Sjoerd Mullender52c1f511993-10-25 08:40:52 +0000100 quick_int_allocs, quick_neg_int_allocs);
Martin v. Löwis45294a92006-04-18 06:24:08 +0000101 fprintf(f, "null strings: %d, 1-strings: %d\n",
Sjoerd Mullender52c1f511993-10-25 08:40:52 +0000102 null_strings, one_strings);
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +0000103}
104
Sjoerd Mullender6ec3c651995-08-29 09:18:14 +0000105PyObject *
Fred Drake100814d2000-07-09 15:48:49 +0000106get_counts(void)
Sjoerd Mullender6ec3c651995-08-29 09:18:14 +0000107{
108 PyTypeObject *tp;
109 PyObject *result;
110 PyObject *v;
111
112 result = PyList_New(0);
113 if (result == NULL)
114 return NULL;
115 for (tp = type_list; tp; tp = tp->tp_next) {
Georg Brandl2cfaa342006-05-29 19:39:45 +0000116 v = Py_BuildValue("(snnn)", tp->tp_name, tp->tp_allocs,
Tim Peters6d6c1a32001-08-02 04:15:00 +0000117 tp->tp_frees, tp->tp_maxalloc);
Sjoerd Mullender6ec3c651995-08-29 09:18:14 +0000118 if (v == NULL) {
119 Py_DECREF(result);
120 return NULL;
121 }
122 if (PyList_Append(result, v) < 0) {
123 Py_DECREF(v);
124 Py_DECREF(result);
125 return NULL;
126 }
127 Py_DECREF(v);
128 }
129 return result;
130}
131
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +0000132void
Fred Drake100814d2000-07-09 15:48:49 +0000133inc_count(PyTypeObject *tp)
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +0000134{
Martin v. Löwis45294a92006-04-18 06:24:08 +0000135 if (tp->tp_next == NULL && tp->tp_prev == NULL) {
Guido van Rossumd8953cb1995-04-06 14:46:26 +0000136 /* first time; insert in linked list */
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +0000137 if (tp->tp_next != NULL) /* sanity check */
Guido van Rossumc0b618a1997-05-02 03:12:38 +0000138 Py_FatalError("XXX inc_count sanity check");
Martin v. Löwis45294a92006-04-18 06:24:08 +0000139 if (type_list)
140 type_list->tp_prev = tp;
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +0000141 tp->tp_next = type_list;
Tim Petersc6a3ff62002-07-08 22:11:52 +0000142 /* Note that as of Python 2.2, heap-allocated type objects
143 * can go away, but this code requires that they stay alive
144 * until program exit. That's why we're careful with
145 * refcounts here. type_list gets a new reference to tp,
146 * while ownership of the reference type_list used to hold
147 * (if any) was transferred to tp->tp_next in the line above.
148 * tp is thus effectively immortal after this.
149 */
150 Py_INCREF(tp);
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +0000151 type_list = tp;
Tim Peters3e40c7f2003-03-23 03:04:32 +0000152#ifdef Py_TRACE_REFS
Tim Peters7571a0f2003-03-23 17:52:28 +0000153 /* Also insert in the doubly-linked list of all objects,
154 * if not already there.
155 */
156 _Py_AddToAllObjects((PyObject *)tp, 0);
Tim Peters78be7992003-03-23 02:51:01 +0000157#endif
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +0000158 }
Tim Peters6d6c1a32001-08-02 04:15:00 +0000159 tp->tp_allocs++;
160 if (tp->tp_allocs - tp->tp_frees > tp->tp_maxalloc)
161 tp->tp_maxalloc = tp->tp_allocs - tp->tp_frees;
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +0000162}
Martin v. Löwis45294a92006-04-18 06:24:08 +0000163
164void dec_count(PyTypeObject *tp)
165{
166 tp->tp_frees++;
167 if (unlist_types_without_objects &&
168 tp->tp_allocs == tp->tp_frees) {
169 /* unlink the type from type_list */
170 if (tp->tp_prev)
171 tp->tp_prev->tp_next = tp->tp_next;
172 else
173 type_list = tp->tp_next;
174 if (tp->tp_next)
175 tp->tp_next->tp_prev = tp->tp_prev;
176 tp->tp_next = tp->tp_prev = NULL;
177 Py_DECREF(tp);
178 }
179}
180
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +0000181#endif
182
Tim Peters7c321a82002-07-09 02:57:01 +0000183#ifdef Py_REF_DEBUG
184/* Log a fatal error; doesn't return. */
185void
186_Py_NegativeRefcount(const char *fname, int lineno, PyObject *op)
187{
188 char buf[300];
189
190 PyOS_snprintf(buf, sizeof(buf),
Tim Peters4d073bb2006-03-23 05:38:33 +0000191 "%s:%i object at %p has negative ref count "
192 "%" PY_FORMAT_SIZE_T "d",
Tim Peters8af92d12006-03-23 05:41:24 +0000193 fname, lineno, op, op->ob_refcnt);
Tim Peters7c321a82002-07-09 02:57:01 +0000194 Py_FatalError(buf);
195}
196
197#endif /* Py_REF_DEBUG */
198
Thomas Heller1328b522004-04-22 17:23:49 +0000199void
200Py_IncRef(PyObject *o)
201{
202 Py_XINCREF(o);
203}
204
205void
206Py_DecRef(PyObject *o)
207{
208 Py_XDECREF(o);
209}
210
Guido van Rossumc0b618a1997-05-02 03:12:38 +0000211PyObject *
Fred Drake100814d2000-07-09 15:48:49 +0000212PyObject_Init(PyObject *op, PyTypeObject *tp)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000213{
Guido van Rossum6e08c142002-10-11 20:37:24 +0000214 if (op == NULL)
215 return PyErr_NoMemory();
Guido van Rossumb18618d2000-05-03 23:44:39 +0000216 /* Any changes should be reflected in PyObject_INIT (objimpl.h) */
Christian Heimese93237d2007-12-19 02:37:44 +0000217 Py_TYPE(op) = tp;
Guido van Rossumc0b618a1997-05-02 03:12:38 +0000218 _Py_NewReference(op);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000219 return op;
220}
221
Guido van Rossumb18618d2000-05-03 23:44:39 +0000222PyVarObject *
Martin v. Löwis18e16552006-02-15 17:27:45 +0000223PyObject_InitVar(PyVarObject *op, PyTypeObject *tp, Py_ssize_t size)
Guido van Rossumb18618d2000-05-03 23:44:39 +0000224{
Guido van Rossum6e08c142002-10-11 20:37:24 +0000225 if (op == NULL)
226 return (PyVarObject *) PyErr_NoMemory();
Guido van Rossumb18618d2000-05-03 23:44:39 +0000227 /* Any changes should be reflected in PyObject_INIT_VAR */
228 op->ob_size = size;
Christian Heimese93237d2007-12-19 02:37:44 +0000229 Py_TYPE(op) = tp;
Guido van Rossumb18618d2000-05-03 23:44:39 +0000230 _Py_NewReference((PyObject *)op);
231 return op;
232}
233
234PyObject *
Fred Drake100814d2000-07-09 15:48:49 +0000235_PyObject_New(PyTypeObject *tp)
Guido van Rossumb18618d2000-05-03 23:44:39 +0000236{
237 PyObject *op;
238 op = (PyObject *) PyObject_MALLOC(_PyObject_SIZE(tp));
239 if (op == NULL)
240 return PyErr_NoMemory();
241 return PyObject_INIT(op, tp);
242}
243
Guido van Rossumd0c87ee1997-05-15 21:31:03 +0000244PyVarObject *
Martin v. Löwis18e16552006-02-15 17:27:45 +0000245_PyObject_NewVar(PyTypeObject *tp, Py_ssize_t nitems)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000246{
Guido van Rossumb18618d2000-05-03 23:44:39 +0000247 PyVarObject *op;
Tim Petersf2a67da2001-10-07 03:54:51 +0000248 const size_t size = _PyObject_VAR_SIZE(tp, nitems);
Tim Peters6d483d32001-10-06 21:27:34 +0000249 op = (PyVarObject *) PyObject_MALLOC(size);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000250 if (op == NULL)
Guido van Rossumd0c87ee1997-05-15 21:31:03 +0000251 return (PyVarObject *)PyErr_NoMemory();
Tim Peters6d483d32001-10-06 21:27:34 +0000252 return PyObject_INIT_VAR(op, tp, nitems);
Guido van Rossumb18618d2000-05-03 23:44:39 +0000253}
254
Neil Schemenauerbdf0eed2002-04-12 03:08:42 +0000255/* for binary compatibility with 2.2 */
256#undef _PyObject_Del
Guido van Rossumb18618d2000-05-03 23:44:39 +0000257void
Fred Drake100814d2000-07-09 15:48:49 +0000258_PyObject_Del(PyObject *op)
Guido van Rossumb18618d2000-05-03 23:44:39 +0000259{
Guido van Rossum4cc6ac72000-07-01 01:00:38 +0000260 PyObject_FREE(op);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000261}
262
Neal Norwitz1a997502003-01-13 20:13:12 +0000263/* Implementation of PyObject_Print with recursion checking */
264static int
265internal_print(PyObject *op, FILE *fp, int flags, int nesting)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000266{
Guido van Rossum278ef591991-07-27 21:40:24 +0000267 int ret = 0;
Neal Norwitz1a997502003-01-13 20:13:12 +0000268 if (nesting > 10) {
269 PyErr_SetString(PyExc_RuntimeError, "print recursion");
270 return -1;
271 }
Guido van Rossumc0b618a1997-05-02 03:12:38 +0000272 if (PyErr_CheckSignals())
Guido van Rossum90933611991-06-07 16:10:43 +0000273 return -1;
Guido van Rossum9b00dfa1998-04-28 16:06:54 +0000274#ifdef USE_STACKCHECK
275 if (PyOS_CheckStack()) {
Fred Drake661ea262000-10-24 19:57:45 +0000276 PyErr_SetString(PyExc_MemoryError, "stack overflow");
Guido van Rossum9b00dfa1998-04-28 16:06:54 +0000277 return -1;
278 }
279#endif
Guido van Rossum687ef6e2000-01-12 16:28:58 +0000280 clearerr(fp); /* Clear any previous error condition */
Guido van Rossum90933611991-06-07 16:10:43 +0000281 if (op == NULL) {
Brett Cannon01531592007-09-17 03:28:34 +0000282 Py_BEGIN_ALLOW_THREADS
Guido van Rossum90933611991-06-07 16:10:43 +0000283 fprintf(fp, "<nil>");
Brett Cannon01531592007-09-17 03:28:34 +0000284 Py_END_ALLOW_THREADS
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000285 }
Guido van Rossum90933611991-06-07 16:10:43 +0000286 else {
287 if (op->ob_refcnt <= 0)
Thomas Wouters8b87a0b2006-03-01 05:41:20 +0000288 /* XXX(twouters) cast refcount to long until %zd is
289 universally available */
Brett Cannon01531592007-09-17 03:28:34 +0000290 Py_BEGIN_ALLOW_THREADS
Thomas Wouters8b87a0b2006-03-01 05:41:20 +0000291 fprintf(fp, "<refcnt %ld at %p>",
292 (long)op->ob_refcnt, op);
Brett Cannon01531592007-09-17 03:28:34 +0000293 Py_END_ALLOW_THREADS
Christian Heimese93237d2007-12-19 02:37:44 +0000294 else if (Py_TYPE(op)->tp_print == NULL) {
Guido van Rossum4f288ab2001-05-01 16:53:37 +0000295 PyObject *s;
296 if (flags & Py_PRINT_RAW)
297 s = PyObject_Str(op);
298 else
299 s = PyObject_Repr(op);
300 if (s == NULL)
301 ret = -1;
Guido van Rossum2e8f6141992-09-03 20:32:55 +0000302 else {
Neal Norwitz1a997502003-01-13 20:13:12 +0000303 ret = internal_print(s, fp, Py_PRINT_RAW,
304 nesting+1);
Guido van Rossum2e8f6141992-09-03 20:32:55 +0000305 }
Guido van Rossum4f288ab2001-05-01 16:53:37 +0000306 Py_XDECREF(s);
Guido van Rossum2e8f6141992-09-03 20:32:55 +0000307 }
Guido van Rossum90933611991-06-07 16:10:43 +0000308 else
Christian Heimese93237d2007-12-19 02:37:44 +0000309 ret = (*Py_TYPE(op)->tp_print)(op, fp, flags);
Guido van Rossum90933611991-06-07 16:10:43 +0000310 }
Guido van Rossum278ef591991-07-27 21:40:24 +0000311 if (ret == 0) {
312 if (ferror(fp)) {
Guido van Rossumc0b618a1997-05-02 03:12:38 +0000313 PyErr_SetFromErrno(PyExc_IOError);
Guido van Rossum278ef591991-07-27 21:40:24 +0000314 clearerr(fp);
315 ret = -1;
316 }
317 }
318 return ret;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000319}
320
Neal Norwitz1a997502003-01-13 20:13:12 +0000321int
322PyObject_Print(PyObject *op, FILE *fp, int flags)
323{
324 return internal_print(op, fp, flags, 0);
325}
326
327
Barry Warsaw9bf16442001-01-23 16:24:35 +0000328/* For debugging convenience. See Misc/gdbinit for some useful gdb hooks */
Tim Peters803526b2002-07-07 05:13:56 +0000329void _PyObject_Dump(PyObject* op)
Barry Warsaw9bf16442001-01-23 16:24:35 +0000330{
Barry Warsaweefb1072001-02-22 22:39:18 +0000331 if (op == NULL)
332 fprintf(stderr, "NULL\n");
333 else {
Georg Brandle9b91212009-04-05 21:26:31 +0000334#ifdef WITH_THREAD
Benjamin Petersonc6e80eb2008-12-21 17:01:26 +0000335 PyGILState_STATE gil;
Georg Brandle9b91212009-04-05 21:26:31 +0000336#endif
Guido van Rossum5f5512d2001-09-14 15:50:08 +0000337 fprintf(stderr, "object : ");
Georg Brandle9b91212009-04-05 21:26:31 +0000338#ifdef WITH_THREAD
Benjamin Petersonc6e80eb2008-12-21 17:01:26 +0000339 gil = PyGILState_Ensure();
Georg Brandle9b91212009-04-05 21:26:31 +0000340#endif
Barry Warsaweefb1072001-02-22 22:39:18 +0000341 (void)PyObject_Print(op, stderr, 0);
Georg Brandle9b91212009-04-05 21:26:31 +0000342#ifdef WITH_THREAD
Benjamin Petersonc6e80eb2008-12-21 17:01:26 +0000343 PyGILState_Release(gil);
Georg Brandle9b91212009-04-05 21:26:31 +0000344#endif
Thomas Wouters8b87a0b2006-03-01 05:41:20 +0000345 /* XXX(twouters) cast refcount to long until %zd is
346 universally available */
Guido van Rossum5f5512d2001-09-14 15:50:08 +0000347 fprintf(stderr, "\n"
348 "type : %s\n"
Thomas Wouters8b87a0b2006-03-01 05:41:20 +0000349 "refcount: %ld\n"
Guido van Rossum5f5512d2001-09-14 15:50:08 +0000350 "address : %p\n",
Christian Heimese93237d2007-12-19 02:37:44 +0000351 Py_TYPE(op)==NULL ? "NULL" : Py_TYPE(op)->tp_name,
Thomas Wouters8b87a0b2006-03-01 05:41:20 +0000352 (long)op->ob_refcnt,
Guido van Rossum5f5512d2001-09-14 15:50:08 +0000353 op);
Barry Warsaweefb1072001-02-22 22:39:18 +0000354 }
Barry Warsaw9bf16442001-01-23 16:24:35 +0000355}
Barry Warsaw903138f2001-01-23 16:33:18 +0000356
Guido van Rossumc0b618a1997-05-02 03:12:38 +0000357PyObject *
Fred Drake100814d2000-07-09 15:48:49 +0000358PyObject_Repr(PyObject *v)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000359{
Guido van Rossumc0b618a1997-05-02 03:12:38 +0000360 if (PyErr_CheckSignals())
Guido van Rossum90933611991-06-07 16:10:43 +0000361 return NULL;
Guido van Rossum9b00dfa1998-04-28 16:06:54 +0000362#ifdef USE_STACKCHECK
363 if (PyOS_CheckStack()) {
Fred Drake661ea262000-10-24 19:57:45 +0000364 PyErr_SetString(PyExc_MemoryError, "stack overflow");
Guido van Rossum9b00dfa1998-04-28 16:06:54 +0000365 return NULL;
366 }
367#endif
Guido van Rossum90933611991-06-07 16:10:43 +0000368 if (v == NULL)
Gregory P. Smithdd96db62008-06-09 04:58:54 +0000369 return PyString_FromString("<NULL>");
Christian Heimese93237d2007-12-19 02:37:44 +0000370 else if (Py_TYPE(v)->tp_repr == NULL)
Gregory P. Smithdd96db62008-06-09 04:58:54 +0000371 return PyString_FromFormat("<%s object at %p>",
Christian Heimese93237d2007-12-19 02:37:44 +0000372 Py_TYPE(v)->tp_name, v);
Guido van Rossum4c08d552000-03-10 22:55:18 +0000373 else {
374 PyObject *res;
Christian Heimese93237d2007-12-19 02:37:44 +0000375 res = (*Py_TYPE(v)->tp_repr)(v);
Guido van Rossum4c08d552000-03-10 22:55:18 +0000376 if (res == NULL)
377 return NULL;
Martin v. Löwis339d0f72001-08-17 18:39:25 +0000378#ifdef Py_USING_UNICODE
Fredrik Lundhefecc7d2000-07-01 14:31:09 +0000379 if (PyUnicode_Check(res)) {
380 PyObject* str;
Anthony Baxter262c00a2006-03-30 10:53:17 +0000381 str = PyUnicode_AsEncodedString(res, NULL, NULL);
Marc-André Lemburg891bc652000-07-03 09:57:53 +0000382 Py_DECREF(res);
383 if (str)
Fredrik Lundhefecc7d2000-07-01 14:31:09 +0000384 res = str;
Marc-André Lemburg891bc652000-07-03 09:57:53 +0000385 else
386 return NULL;
Fredrik Lundhefecc7d2000-07-01 14:31:09 +0000387 }
Martin v. Löwis339d0f72001-08-17 18:39:25 +0000388#endif
Gregory P. Smithdd96db62008-06-09 04:58:54 +0000389 if (!PyString_Check(res)) {
Guido van Rossum4c08d552000-03-10 22:55:18 +0000390 PyErr_Format(PyExc_TypeError,
Guido van Rossum5db862d2000-04-10 12:46:51 +0000391 "__repr__ returned non-string (type %.200s)",
Christian Heimese93237d2007-12-19 02:37:44 +0000392 Py_TYPE(res)->tp_name);
Guido van Rossum4c08d552000-03-10 22:55:18 +0000393 Py_DECREF(res);
394 return NULL;
395 }
396 return res;
397 }
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000398}
399
Guido van Rossumc0b618a1997-05-02 03:12:38 +0000400PyObject *
Neil Schemenauercf52c072005-08-12 17:34:58 +0000401_PyObject_Str(PyObject *v)
Guido van Rossumc6004111993-11-05 10:22:19 +0000402{
Guido van Rossum4c08d552000-03-10 22:55:18 +0000403 PyObject *res;
Neil Schemenauercf52c072005-08-12 17:34:58 +0000404 int type_ok;
Guido van Rossumc6004111993-11-05 10:22:19 +0000405 if (v == NULL)
Gregory P. Smithdd96db62008-06-09 04:58:54 +0000406 return PyString_FromString("<NULL>");
407 if (PyString_CheckExact(v)) {
Guido van Rossumc0b618a1997-05-02 03:12:38 +0000408 Py_INCREF(v);
Guido van Rossumc6004111993-11-05 10:22:19 +0000409 return v;
410 }
Neil Schemenauercf52c072005-08-12 17:34:58 +0000411#ifdef Py_USING_UNICODE
412 if (PyUnicode_CheckExact(v)) {
413 Py_INCREF(v);
414 return v;
415 }
416#endif
Christian Heimese93237d2007-12-19 02:37:44 +0000417 if (Py_TYPE(v)->tp_str == NULL)
Guido van Rossum4f288ab2001-05-01 16:53:37 +0000418 return PyObject_Repr(v);
419
Brett Cannon0b14f242007-09-30 19:45:10 +0000420 /* It is possible for a type to have a tp_str representation that loops
421 infinitely. */
422 if (Py_EnterRecursiveCall(" while getting the str of an object"))
423 return NULL;
Christian Heimese93237d2007-12-19 02:37:44 +0000424 res = (*Py_TYPE(v)->tp_str)(v);
Brett Cannon0b14f242007-09-30 19:45:10 +0000425 Py_LeaveRecursiveCall();
Guido van Rossum4c08d552000-03-10 22:55:18 +0000426 if (res == NULL)
427 return NULL;
Gregory P. Smithdd96db62008-06-09 04:58:54 +0000428 type_ok = PyString_Check(res);
Neil Schemenauercf52c072005-08-12 17:34:58 +0000429#ifdef Py_USING_UNICODE
430 type_ok = type_ok || PyUnicode_Check(res);
431#endif
432 if (!type_ok) {
433 PyErr_Format(PyExc_TypeError,
434 "__str__ returned non-string (type %.200s)",
Christian Heimese93237d2007-12-19 02:37:44 +0000435 Py_TYPE(res)->tp_name);
Neil Schemenauercf52c072005-08-12 17:34:58 +0000436 Py_DECREF(res);
437 return NULL;
438 }
439 return res;
440}
441
442PyObject *
443PyObject_Str(PyObject *v)
444{
445 PyObject *res = _PyObject_Str(v);
446 if (res == NULL)
447 return NULL;
Martin v. Löwis339d0f72001-08-17 18:39:25 +0000448#ifdef Py_USING_UNICODE
Marc-André Lemburg891bc652000-07-03 09:57:53 +0000449 if (PyUnicode_Check(res)) {
450 PyObject* str;
451 str = PyUnicode_AsEncodedString(res, NULL, NULL);
452 Py_DECREF(res);
453 if (str)
454 res = str;
455 else
456 return NULL;
457 }
Martin v. Löwis339d0f72001-08-17 18:39:25 +0000458#endif
Gregory P. Smithdd96db62008-06-09 04:58:54 +0000459 assert(PyString_Check(res));
Guido van Rossum4c08d552000-03-10 22:55:18 +0000460 return res;
Guido van Rossumc6004111993-11-05 10:22:19 +0000461}
462
Martin v. Löwis339d0f72001-08-17 18:39:25 +0000463#ifdef Py_USING_UNICODE
Guido van Rossuma3af41d2001-01-18 22:07:06 +0000464PyObject *
465PyObject_Unicode(PyObject *v)
466{
467 PyObject *res;
Brett Cannonc3647ac2005-04-26 03:45:26 +0000468 PyObject *func;
Neal Norwitz75801462006-03-14 06:02:16 +0000469 PyObject *str;
Nick Coghlan524b7772008-07-08 14:08:04 +0000470 int unicode_method_found = 0;
Brett Cannonc3647ac2005-04-26 03:45:26 +0000471 static PyObject *unicodestr;
Tim Peters803526b2002-07-07 05:13:56 +0000472
Georg Brandl3daf7582006-03-13 22:22:11 +0000473 if (v == NULL) {
Gregory P. Smithdd96db62008-06-09 04:58:54 +0000474 res = PyString_FromString("<NULL>");
Neal Norwitz75801462006-03-14 06:02:16 +0000475 if (res == NULL)
476 return NULL;
477 str = PyUnicode_FromEncodedObject(res, NULL, "strict");
478 Py_DECREF(res);
479 return str;
Georg Brandl3daf7582006-03-13 22:22:11 +0000480 } else if (PyUnicode_CheckExact(v)) {
Guido van Rossuma3af41d2001-01-18 22:07:06 +0000481 Py_INCREF(v);
482 return v;
483 }
Nick Coghlan524b7772008-07-08 14:08:04 +0000484
485 /* Try the __unicode__ method */
Brett Cannonc3647ac2005-04-26 03:45:26 +0000486 if (unicodestr == NULL) {
Gregory P. Smithdd96db62008-06-09 04:58:54 +0000487 unicodestr= PyString_InternFromString("__unicode__");
Brett Cannonc3647ac2005-04-26 03:45:26 +0000488 if (unicodestr == NULL)
489 return NULL;
Guido van Rossumb8c65bc2001-10-19 02:01:31 +0000490 }
Nick Coghlan524b7772008-07-08 14:08:04 +0000491 if (PyInstance_Check(v)) {
492 /* We're an instance of a classic class */
493 /* Try __unicode__ from the instance -- alas we have no type */
494 func = PyObject_GetAttr(v, unicodestr);
495 if (func != NULL) {
496 unicode_method_found = 1;
497 res = PyObject_CallFunctionObjArgs(func, NULL);
498 Py_DECREF(func);
499 }
500 else {
501 PyErr_Clear();
502 }
Brett Cannonc3647ac2005-04-26 03:45:26 +0000503 }
Guido van Rossuma3af41d2001-01-18 22:07:06 +0000504 else {
Nick Coghlan524b7772008-07-08 14:08:04 +0000505 /* Not a classic class instance, try __unicode__ from type */
506 /* _PyType_Lookup doesn't create a reference */
507 func = _PyType_Lookup(Py_TYPE(v), unicodestr);
508 if (func != NULL) {
509 unicode_method_found = 1;
510 res = PyObject_CallFunctionObjArgs(func, v, NULL);
511 }
512 else {
513 PyErr_Clear();
514 }
515 }
516
517 /* Didn't find __unicode__ */
518 if (!unicode_method_found) {
Brett Cannonc3647ac2005-04-26 03:45:26 +0000519 if (PyUnicode_Check(v)) {
520 /* For a Unicode subtype that's didn't overwrite __unicode__,
521 return a true Unicode object with the same data. */
522 return PyUnicode_FromUnicode(PyUnicode_AS_UNICODE(v),
Nick Coghlan524b7772008-07-08 14:08:04 +0000523 PyUnicode_GET_SIZE(v));
Guido van Rossuma3af41d2001-01-18 22:07:06 +0000524 }
Gregory P. Smithdd96db62008-06-09 04:58:54 +0000525 if (PyString_CheckExact(v)) {
Brett Cannonc3647ac2005-04-26 03:45:26 +0000526 Py_INCREF(v);
527 res = v;
Guido van Rossuma3af41d2001-01-18 22:07:06 +0000528 }
Guido van Rossumb8c65bc2001-10-19 02:01:31 +0000529 else {
Christian Heimese93237d2007-12-19 02:37:44 +0000530 if (Py_TYPE(v)->tp_str != NULL)
531 res = (*Py_TYPE(v)->tp_str)(v);
Guido van Rossumb8c65bc2001-10-19 02:01:31 +0000532 else
533 res = PyObject_Repr(v);
534 }
Guido van Rossuma3af41d2001-01-18 22:07:06 +0000535 }
Nick Coghlan524b7772008-07-08 14:08:04 +0000536
Guido van Rossuma3af41d2001-01-18 22:07:06 +0000537 if (res == NULL)
538 return NULL;
539 if (!PyUnicode_Check(res)) {
Guido van Rossumb8c65bc2001-10-19 02:01:31 +0000540 str = PyUnicode_FromEncodedObject(res, NULL, "strict");
Guido van Rossuma3af41d2001-01-18 22:07:06 +0000541 Py_DECREF(res);
Neal Norwitz75801462006-03-14 06:02:16 +0000542 res = str;
Guido van Rossuma3af41d2001-01-18 22:07:06 +0000543 }
544 return res;
545}
Martin v. Löwis339d0f72001-08-17 18:39:25 +0000546#endif
Guido van Rossuma3af41d2001-01-18 22:07:06 +0000547
548
Guido van Rossuma4073002002-05-31 20:03:54 +0000549/* Helper to warn about deprecated tp_compare return values. Return:
550 -2 for an exception;
551 -1 if v < w;
552 0 if v == w;
553 1 if v > w.
554 (This function cannot return 2.)
555*/
556static int
557adjust_tp_compare(int c)
558{
559 if (PyErr_Occurred()) {
560 if (c != -1 && c != -2) {
561 PyObject *t, *v, *tb;
562 PyErr_Fetch(&t, &v, &tb);
563 if (PyErr_Warn(PyExc_RuntimeWarning,
564 "tp_compare didn't return -1 or -2 "
565 "for exception") < 0) {
566 Py_XDECREF(t);
567 Py_XDECREF(v);
568 Py_XDECREF(tb);
569 }
570 else
571 PyErr_Restore(t, v, tb);
572 }
573 return -2;
574 }
575 else if (c < -1 || c > 1) {
576 if (PyErr_Warn(PyExc_RuntimeWarning,
577 "tp_compare didn't return -1, 0 or 1") < 0)
578 return -2;
579 else
580 return c < -1 ? -1 : 1;
581 }
582 else {
583 assert(c >= -1 && c <= 1);
584 return c;
585 }
586}
587
588
Guido van Rossumd1f06b92001-01-24 22:14:43 +0000589/* Macro to get the tp_richcompare field of a type if defined */
590#define RICHCOMPARE(t) (PyType_HasFeature((t), Py_TPFLAGS_HAVE_RICHCOMPARE) \
591 ? (t)->tp_richcompare : NULL)
592
Guido van Rossume797ec12001-01-17 15:24:28 +0000593/* Map rich comparison operators to their swapped version, e.g. LT --> GT */
Brett Cannona5ca2e72004-09-25 01:37:24 +0000594int _Py_SwappedOp[] = {Py_GT, Py_GE, Py_EQ, Py_NE, Py_LT, Py_LE};
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +0000595
Guido van Rossume797ec12001-01-17 15:24:28 +0000596/* Try a genuine rich comparison, returning an object. Return:
597 NULL for exception;
598 NotImplemented if this particular rich comparison is not implemented or
599 undefined;
600 some object not equal to NotImplemented if it is implemented
601 (this latter object may not be a Boolean).
602*/
603static PyObject *
604try_rich_compare(PyObject *v, PyObject *w, int op)
605{
606 richcmpfunc f;
607 PyObject *res;
608
Guido van Rossum2ed6bf82001-09-27 20:30:07 +0000609 if (v->ob_type != w->ob_type &&
610 PyType_IsSubtype(w->ob_type, v->ob_type) &&
611 (f = RICHCOMPARE(w->ob_type)) != NULL) {
Tim Petersf4aca752004-09-23 02:39:37 +0000612 res = (*f)(w, v, _Py_SwappedOp[op]);
Guido van Rossum2ed6bf82001-09-27 20:30:07 +0000613 if (res != Py_NotImplemented)
614 return res;
615 Py_DECREF(res);
616 }
Guido van Rossumd1f06b92001-01-24 22:14:43 +0000617 if ((f = RICHCOMPARE(v->ob_type)) != NULL) {
Guido van Rossume797ec12001-01-17 15:24:28 +0000618 res = (*f)(v, w, op);
619 if (res != Py_NotImplemented)
620 return res;
621 Py_DECREF(res);
622 }
Guido van Rossumd1f06b92001-01-24 22:14:43 +0000623 if ((f = RICHCOMPARE(w->ob_type)) != NULL) {
Tim Petersf4aca752004-09-23 02:39:37 +0000624 return (*f)(w, v, _Py_SwappedOp[op]);
Guido van Rossume797ec12001-01-17 15:24:28 +0000625 }
626 res = Py_NotImplemented;
627 Py_INCREF(res);
628 return res;
629}
630
631/* Try a genuine rich comparison, returning an int. Return:
632 -1 for exception (including the case where try_rich_compare() returns an
633 object that's not a Boolean);
Tim Petersc99213f2001-11-04 05:57:16 +0000634 0 if the outcome is false;
635 1 if the outcome is true;
636 2 if this particular rich comparison is not implemented or undefined.
Guido van Rossume797ec12001-01-17 15:24:28 +0000637*/
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +0000638static int
Guido van Rossume797ec12001-01-17 15:24:28 +0000639try_rich_compare_bool(PyObject *v, PyObject *w, int op)
640{
641 PyObject *res;
642 int ok;
643
Guido van Rossumd1f06b92001-01-24 22:14:43 +0000644 if (RICHCOMPARE(v->ob_type) == NULL && RICHCOMPARE(w->ob_type) == NULL)
Guido van Rossume797ec12001-01-17 15:24:28 +0000645 return 2; /* Shortcut, avoid INCREF+DECREF */
646 res = try_rich_compare(v, w, op);
647 if (res == NULL)
648 return -1;
649 if (res == Py_NotImplemented) {
650 Py_DECREF(res);
651 return 2;
652 }
653 ok = PyObject_IsTrue(res);
654 Py_DECREF(res);
655 return ok;
656}
657
658/* Try rich comparisons to determine a 3-way comparison. Return:
659 -2 for an exception;
Tim Petersc99213f2001-11-04 05:57:16 +0000660 -1 if v < w;
661 0 if v == w;
662 1 if v > w;
663 2 if this particular rich comparison is not implemented or undefined.
Guido van Rossume797ec12001-01-17 15:24:28 +0000664*/
665static int
666try_rich_to_3way_compare(PyObject *v, PyObject *w)
667{
Guido van Rossum2ffbf6b2001-01-17 21:27:02 +0000668 static struct { int op; int outcome; } tries[3] = {
669 /* Try this operator, and if it is true, use this outcome: */
670 {Py_EQ, 0},
671 {Py_LT, -1},
672 {Py_GT, 1},
673 };
674 int i;
675
Guido van Rossumd1f06b92001-01-24 22:14:43 +0000676 if (RICHCOMPARE(v->ob_type) == NULL && RICHCOMPARE(w->ob_type) == NULL)
Guido van Rossume797ec12001-01-17 15:24:28 +0000677 return 2; /* Shortcut */
Guido van Rossum2ffbf6b2001-01-17 21:27:02 +0000678
679 for (i = 0; i < 3; i++) {
680 switch (try_rich_compare_bool(v, w, tries[i].op)) {
681 case -1:
Tim Peters6d60b2e2001-05-07 20:53:51 +0000682 return -2;
Guido van Rossum2ffbf6b2001-01-17 21:27:02 +0000683 case 1:
684 return tries[i].outcome;
685 }
Guido van Rossume797ec12001-01-17 15:24:28 +0000686 }
Guido van Rossum2ffbf6b2001-01-17 21:27:02 +0000687
688 return 2;
Guido van Rossume797ec12001-01-17 15:24:28 +0000689}
690
691/* Try a 3-way comparison, returning an int. Return:
692 -2 for an exception;
Tim Petersc99213f2001-11-04 05:57:16 +0000693 -1 if v < w;
694 0 if v == w;
695 1 if v > w;
696 2 if this particular 3-way comparison is not implemented or undefined.
Guido van Rossume797ec12001-01-17 15:24:28 +0000697*/
698static int
699try_3way_compare(PyObject *v, PyObject *w)
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +0000700{
701 int c;
Guido van Rossume797ec12001-01-17 15:24:28 +0000702 cmpfunc f;
703
704 /* Comparisons involving instances are given to instance_compare,
705 which has the same return conventions as this function. */
706
Guido van Rossumab3b0342001-09-18 20:38:53 +0000707 f = v->ob_type->tp_compare;
Guido van Rossume797ec12001-01-17 15:24:28 +0000708 if (PyInstance_Check(v))
Guido van Rossumab3b0342001-09-18 20:38:53 +0000709 return (*f)(v, w);
Guido van Rossume797ec12001-01-17 15:24:28 +0000710 if (PyInstance_Check(w))
711 return (*w->ob_type->tp_compare)(v, w);
712
Guido van Rossumab3b0342001-09-18 20:38:53 +0000713 /* If both have the same (non-NULL) tp_compare, use it. */
714 if (f != NULL && f == w->ob_type->tp_compare) {
715 c = (*f)(v, w);
Guido van Rossuma4073002002-05-31 20:03:54 +0000716 return adjust_tp_compare(c);
Guido van Rossumab3b0342001-09-18 20:38:53 +0000717 }
718
719 /* If either tp_compare is _PyObject_SlotCompare, that's safe. */
720 if (f == _PyObject_SlotCompare ||
721 w->ob_type->tp_compare == _PyObject_SlotCompare)
722 return _PyObject_SlotCompare(v, w);
723
Armin Rigoa1748132004-12-23 22:13:13 +0000724 /* If we're here, v and w,
725 a) are not instances;
726 b) have different types or a type without tp_compare; and
727 c) don't have a user-defined tp_compare.
728 tp_compare implementations in C assume that both arguments
729 have their type, so we give up if the coercion fails or if
730 it yields types which are still incompatible (which can
731 happen with a user-defined nb_coerce).
732 */
Guido van Rossume797ec12001-01-17 15:24:28 +0000733 c = PyNumber_CoerceEx(&v, &w);
734 if (c < 0)
735 return -2;
736 if (c > 0)
737 return 2;
Armin Rigoa1748132004-12-23 22:13:13 +0000738 f = v->ob_type->tp_compare;
739 if (f != NULL && f == w->ob_type->tp_compare) {
Guido van Rossume797ec12001-01-17 15:24:28 +0000740 c = (*f)(v, w);
741 Py_DECREF(v);
742 Py_DECREF(w);
Guido van Rossuma4073002002-05-31 20:03:54 +0000743 return adjust_tp_compare(c);
Guido van Rossume797ec12001-01-17 15:24:28 +0000744 }
745
Guido van Rossume797ec12001-01-17 15:24:28 +0000746 /* No comparison defined */
747 Py_DECREF(v);
748 Py_DECREF(w);
749 return 2;
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +0000750}
751
Guido van Rossume797ec12001-01-17 15:24:28 +0000752/* Final fallback 3-way comparison, returning an int. Return:
753 -2 if an error occurred;
Tim Petersc99213f2001-11-04 05:57:16 +0000754 -1 if v < w;
755 0 if v == w;
756 1 if v > w.
Guido van Rossume797ec12001-01-17 15:24:28 +0000757*/
758static int
759default_3way_compare(PyObject *v, PyObject *w)
760{
761 int c;
Jeremy Hyltonaf68c872005-12-10 18:50:16 +0000762 const char *vname, *wname;
Guido van Rossume797ec12001-01-17 15:24:28 +0000763
764 if (v->ob_type == w->ob_type) {
Barry Warsawb0e754d2001-01-20 06:24:55 +0000765 /* When comparing these pointers, they must be cast to
766 * integer types (i.e. Py_uintptr_t, our spelling of C9X's
767 * uintptr_t). ANSI specifies that pointer compares other
768 * than == and != to non-related structures are undefined.
769 */
Barry Warsaw71ff8d52001-01-20 06:08:10 +0000770 Py_uintptr_t vv = (Py_uintptr_t)v;
771 Py_uintptr_t ww = (Py_uintptr_t)w;
Guido van Rossume797ec12001-01-17 15:24:28 +0000772 return (vv < ww) ? -1 : (vv > ww) ? 1 : 0;
773 }
774
Guido van Rossum0871e932001-01-22 19:28:09 +0000775 /* None is smaller than anything */
776 if (v == Py_None)
777 return -1;
778 if (w == Py_None)
779 return 1;
780
Guido van Rossumfb50d3f2003-02-18 16:40:09 +0000781 /* different type: compare type names; numbers are smaller */
782 if (PyNumber_Check(v))
Guido van Rossum8f9143d2001-01-22 15:59:32 +0000783 vname = "";
784 else
785 vname = v->ob_type->tp_name;
Guido van Rossumfb50d3f2003-02-18 16:40:09 +0000786 if (PyNumber_Check(w))
Guido van Rossum8f9143d2001-01-22 15:59:32 +0000787 wname = "";
788 else
789 wname = w->ob_type->tp_name;
790 c = strcmp(vname, wname);
791 if (c < 0)
792 return -1;
793 if (c > 0)
794 return 1;
795 /* Same type name, or (more likely) incomparable numeric types */
796 return ((Py_uintptr_t)(v->ob_type) < (
797 Py_uintptr_t)(w->ob_type)) ? -1 : 1;
Guido van Rossume797ec12001-01-17 15:24:28 +0000798}
799
Tim Peters6d60b2e2001-05-07 20:53:51 +0000800/* Do a 3-way comparison, by hook or by crook. Return:
Guido van Rossuma4073002002-05-31 20:03:54 +0000801 -2 for an exception (but see below);
Tim Petersc99213f2001-11-04 05:57:16 +0000802 -1 if v < w;
Tim Peters6d60b2e2001-05-07 20:53:51 +0000803 0 if v == w;
Tim Petersc99213f2001-11-04 05:57:16 +0000804 1 if v > w;
Guido van Rossuma4073002002-05-31 20:03:54 +0000805 BUT: if the object implements a tp_compare function, it returns
Martin v. Löwis0163d6d2001-06-09 07:34:05 +0000806 whatever this function returns (whether with an exception or not).
Tim Peters6d60b2e2001-05-07 20:53:51 +0000807*/
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +0000808static int
Fred Drake100814d2000-07-09 15:48:49 +0000809do_cmp(PyObject *v, PyObject *w)
Guido van Rossum20566841995-01-12 11:26:10 +0000810{
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +0000811 int c;
Martin v. Löwis0163d6d2001-06-09 07:34:05 +0000812 cmpfunc f;
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +0000813
Martin v. Löwis0163d6d2001-06-09 07:34:05 +0000814 if (v->ob_type == w->ob_type
Guido van Rossum82fc51c2001-08-16 08:02:45 +0000815 && (f = v->ob_type->tp_compare) != NULL) {
816 c = (*f)(v, w);
Guido van Rossuma4073002002-05-31 20:03:54 +0000817 if (PyInstance_Check(v)) {
818 /* Instance tp_compare has a different signature.
819 But if it returns undefined we fall through. */
820 if (c != 2)
821 return c;
Neal Norwitz3f8dae72002-05-31 20:23:33 +0000822 /* Else fall through to try_rich_to_3way_compare() */
Guido van Rossuma4073002002-05-31 20:03:54 +0000823 }
824 else
825 return adjust_tp_compare(c);
Guido van Rossum82fc51c2001-08-16 08:02:45 +0000826 }
Guido van Rossuma4073002002-05-31 20:03:54 +0000827 /* We only get here if one of the following is true:
828 a) v and w have different types
829 b) v and w have the same type, which doesn't have tp_compare
830 c) v and w are instances, and either __cmp__ is not defined or
831 __cmp__ returns NotImplemented
832 */
Guido van Rossume797ec12001-01-17 15:24:28 +0000833 c = try_rich_to_3way_compare(v, w);
834 if (c < 2)
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +0000835 return c;
Guido van Rossume797ec12001-01-17 15:24:28 +0000836 c = try_3way_compare(v, w);
837 if (c < 2)
838 return c;
839 return default_3way_compare(v, w);
Guido van Rossum20566841995-01-12 11:26:10 +0000840}
841
Tim Petersc99213f2001-11-04 05:57:16 +0000842/* Compare v to w. Return
843 -1 if v < w or exception (PyErr_Occurred() true in latter case).
844 0 if v == w.
845 1 if v > w.
846 XXX The docs (C API manual) say the return value is undefined in case
847 XXX of error.
848*/
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000849int
Fred Drake100814d2000-07-09 15:48:49 +0000850PyObject_Compare(PyObject *v, PyObject *w)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000851{
Jeremy Hylton4a3dd2d2000-04-14 19:13:24 +0000852 int result;
853
Guido van Rossumc8b6df91997-05-23 00:06:51 +0000854 if (v == NULL || w == NULL) {
855 PyErr_BadInternalCall();
856 return -1;
857 }
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000858 if (v == w)
859 return 0;
Armin Rigo2b3eb402003-10-28 12:05:48 +0000860 if (Py_EnterRecursiveCall(" in cmp"))
861 return -1;
862 result = do_cmp(v, w);
863 Py_LeaveRecursiveCall();
Guido van Rossume797ec12001-01-17 15:24:28 +0000864 return result < 0 ? -1 : result;
865}
866
Tim Petersc99213f2001-11-04 05:57:16 +0000867/* Return (new reference to) Py_True or Py_False. */
Guido van Rossume797ec12001-01-17 15:24:28 +0000868static PyObject *
Martin v. Löwis0163d6d2001-06-09 07:34:05 +0000869convert_3way_to_object(int op, int c)
Guido van Rossume797ec12001-01-17 15:24:28 +0000870{
Guido van Rossume797ec12001-01-17 15:24:28 +0000871 PyObject *result;
Guido van Rossume797ec12001-01-17 15:24:28 +0000872 switch (op) {
873 case Py_LT: c = c < 0; break;
874 case Py_LE: c = c <= 0; break;
875 case Py_EQ: c = c == 0; break;
876 case Py_NE: c = c != 0; break;
877 case Py_GT: c = c > 0; break;
878 case Py_GE: c = c >= 0; break;
879 }
880 result = c ? Py_True : Py_False;
881 Py_INCREF(result);
Jeremy Hylton4a3dd2d2000-04-14 19:13:24 +0000882 return result;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000883}
Tim Peters803526b2002-07-07 05:13:56 +0000884
Tim Petersc99213f2001-11-04 05:57:16 +0000885/* We want a rich comparison but don't have one. Try a 3-way cmp instead.
886 Return
887 NULL if error
888 Py_True if v op w
889 Py_False if not (v op w)
890*/
Martin v. Löwis0163d6d2001-06-09 07:34:05 +0000891static PyObject *
892try_3way_to_rich_compare(PyObject *v, PyObject *w, int op)
893{
894 int c;
895
896 c = try_3way_compare(v, w);
Steven Bethardae42f332008-03-18 17:26:10 +0000897 if (c >= 2) {
898
899 /* Py3K warning if types are not equal and comparison isn't == or != */
900 if (Py_Py3kWarningFlag &&
Georg Brandld5b635f2008-03-25 08:29:14 +0000901 v->ob_type != w->ob_type && op != Py_EQ && op != Py_NE &&
Benjamin Peterson9f4f4812008-04-27 03:01:45 +0000902 PyErr_WarnEx(PyExc_DeprecationWarning,
Georg Brandld5b635f2008-03-25 08:29:14 +0000903 "comparing unequal types not supported "
Benjamin Peterson9f4f4812008-04-27 03:01:45 +0000904 "in 3.x", 1) < 0) {
Steven Bethardae42f332008-03-18 17:26:10 +0000905 return NULL;
906 }
907
Martin v. Löwis0163d6d2001-06-09 07:34:05 +0000908 c = default_3way_compare(v, w);
Steven Bethardae42f332008-03-18 17:26:10 +0000909 }
Martin v. Löwis0163d6d2001-06-09 07:34:05 +0000910 if (c <= -2)
911 return NULL;
912 return convert_3way_to_object(op, c);
913}
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000914
Tim Petersc99213f2001-11-04 05:57:16 +0000915/* Do rich comparison on v and w. Return
916 NULL if error
917 Else a new reference to an object other than Py_NotImplemented, usually(?):
918 Py_True if v op w
919 Py_False if not (v op w)
920*/
Neil Schemenauerd38855c2001-01-21 16:25:18 +0000921static PyObject *
Guido van Rossume797ec12001-01-17 15:24:28 +0000922do_richcmp(PyObject *v, PyObject *w, int op)
923{
924 PyObject *res;
925
926 res = try_rich_compare(v, w, op);
927 if (res != Py_NotImplemented)
928 return res;
929 Py_DECREF(res);
930
931 return try_3way_to_rich_compare(v, w, op);
932}
933
Tim Petersc99213f2001-11-04 05:57:16 +0000934/* Return:
935 NULL for exception;
Tim Petersc99213f2001-11-04 05:57:16 +0000936 some object not equal to NotImplemented if it is implemented
937 (this latter object may not be a Boolean).
938*/
Guido van Rossume797ec12001-01-17 15:24:28 +0000939PyObject *
940PyObject_RichCompare(PyObject *v, PyObject *w, int op)
941{
942 PyObject *res;
943
944 assert(Py_LT <= op && op <= Py_GE);
Armin Rigo2b3eb402003-10-28 12:05:48 +0000945 if (Py_EnterRecursiveCall(" in cmp"))
946 return NULL;
Guido van Rossume797ec12001-01-17 15:24:28 +0000947
Armin Rigo2b3eb402003-10-28 12:05:48 +0000948 /* If the types are equal, and not old-style instances, try to
Tim Peters67754e92001-11-04 07:29:31 +0000949 get out cheap (don't bother with coercions etc.). */
950 if (v->ob_type == w->ob_type && !PyInstance_Check(v)) {
951 cmpfunc fcmp;
952 richcmpfunc frich = RICHCOMPARE(v->ob_type);
953 /* If the type has richcmp, try it first. try_rich_compare
954 tries it two-sided, which is not needed since we've a
955 single type only. */
956 if (frich != NULL) {
957 res = (*frich)(v, w, op);
958 if (res != Py_NotImplemented)
959 goto Done;
960 Py_DECREF(res);
961 }
962 /* No richcmp, or this particular richmp not implemented.
963 Try 3-way cmp. */
964 fcmp = v->ob_type->tp_compare;
965 if (fcmp != NULL) {
966 int c = (*fcmp)(v, w);
Guido van Rossuma4073002002-05-31 20:03:54 +0000967 c = adjust_tp_compare(c);
968 if (c == -2) {
Tim Peters67754e92001-11-04 07:29:31 +0000969 res = NULL;
970 goto Done;
971 }
972 res = convert_3way_to_object(op, c);
973 goto Done;
974 }
Guido van Rossum2ffbf6b2001-01-17 21:27:02 +0000975 }
Tim Peters67754e92001-11-04 07:29:31 +0000976
977 /* Fast path not taken, or couldn't deliver a useful result. */
978 res = do_richcmp(v, w, op);
979Done:
Armin Rigo2b3eb402003-10-28 12:05:48 +0000980 Py_LeaveRecursiveCall();
Guido van Rossume797ec12001-01-17 15:24:28 +0000981 return res;
982}
983
Tim Petersde9725f2001-05-05 10:06:17 +0000984/* Return -1 if error; 1 if v op w; 0 if not (v op w). */
Guido van Rossume797ec12001-01-17 15:24:28 +0000985int
986PyObject_RichCompareBool(PyObject *v, PyObject *w, int op)
987{
Raymond Hettinger93d44812004-03-21 17:01:44 +0000988 PyObject *res;
Guido van Rossume797ec12001-01-17 15:24:28 +0000989 int ok;
990
Raymond Hettinger93d44812004-03-21 17:01:44 +0000991 /* Quick result when objects are the same.
992 Guarantees that identity implies equality. */
993 if (v == w) {
994 if (op == Py_EQ)
995 return 1;
996 else if (op == Py_NE)
997 return 0;
998 }
999
1000 res = PyObject_RichCompare(v, w, op);
Guido van Rossume797ec12001-01-17 15:24:28 +00001001 if (res == NULL)
1002 return -1;
Guido van Rossum81912d42002-08-24 05:33:28 +00001003 if (PyBool_Check(res))
1004 ok = (res == Py_True);
1005 else
1006 ok = PyObject_IsTrue(res);
Guido van Rossume797ec12001-01-17 15:24:28 +00001007 Py_DECREF(res);
1008 return ok;
1009}
Fred Drake13634cf2000-06-29 19:17:04 +00001010
1011/* Set of hash utility functions to help maintaining the invariant that
Raymond Hettinger8183fa42004-03-21 17:35:06 +00001012 if a==b then hash(a)==hash(b)
Fred Drake13634cf2000-06-29 19:17:04 +00001013
1014 All the utility functions (_Py_Hash*()) return "-1" to signify an error.
1015*/
1016
1017long
Fred Drake100814d2000-07-09 15:48:49 +00001018_Py_HashDouble(double v)
Fred Drake13634cf2000-06-29 19:17:04 +00001019{
Tim Peters39dce292000-08-15 03:34:48 +00001020 double intpart, fractpart;
1021 int expo;
1022 long hipart;
1023 long x; /* the final hash value */
1024 /* This is designed so that Python numbers of different types
1025 * that compare equal hash to the same value; otherwise comparisons
1026 * of mapping keys will turn out weird.
1027 */
1028
Tim Peters39dce292000-08-15 03:34:48 +00001029 fractpart = modf(v, &intpart);
Tim Peters39dce292000-08-15 03:34:48 +00001030 if (fractpart == 0.0) {
1031 /* This must return the same hash as an equal int or long. */
Mark Dickinsondd0989e2009-02-08 14:56:08 +00001032 if (intpart > LONG_MAX/2 || -intpart > LONG_MAX/2) {
Tim Peters39dce292000-08-15 03:34:48 +00001033 /* Convert to long and use its hash. */
1034 PyObject *plong; /* converted to Python long */
1035 if (Py_IS_INFINITY(intpart))
1036 /* can't convert to long int -- arbitrary */
1037 v = v < 0 ? -271828.0 : 314159.0;
1038 plong = PyLong_FromDouble(v);
1039 if (plong == NULL)
1040 return -1;
1041 x = PyObject_Hash(plong);
1042 Py_DECREF(plong);
1043 return x;
1044 }
1045 /* Fits in a C long == a Python int, so is its own hash. */
1046 x = (long)intpart;
1047 if (x == -1)
1048 x = -2;
1049 return x;
1050 }
1051 /* The fractional part is non-zero, so we don't have to worry about
1052 * making this match the hash of some other type.
1053 * Use frexp to get at the bits in the double.
Fred Drake13634cf2000-06-29 19:17:04 +00001054 * Since the VAX D double format has 56 mantissa bits, which is the
1055 * most of any double format in use, each of these parts may have as
1056 * many as (but no more than) 56 significant bits.
Tim Peters39dce292000-08-15 03:34:48 +00001057 * So, assuming sizeof(long) >= 4, each part can be broken into two
1058 * longs; frexp and multiplication are used to do that.
1059 * Also, since the Cray double format has 15 exponent bits, which is
1060 * the most of any double format in use, shifting the exponent field
1061 * left by 15 won't overflow a long (again assuming sizeof(long) >= 4).
Fred Drake13634cf2000-06-29 19:17:04 +00001062 */
Tim Peters39dce292000-08-15 03:34:48 +00001063 v = frexp(v, &expo);
1064 v *= 2147483648.0; /* 2**31 */
1065 hipart = (long)v; /* take the top 32 bits */
1066 v = (v - (double)hipart) * 2147483648.0; /* get the next 32 bits */
1067 x = hipart + (long)v + (expo << 15);
1068 if (x == -1)
1069 x = -2;
1070 return x;
Fred Drake13634cf2000-06-29 19:17:04 +00001071}
1072
1073long
Fred Drake100814d2000-07-09 15:48:49 +00001074_Py_HashPointer(void *p)
Fred Drake13634cf2000-06-29 19:17:04 +00001075{
1076#if SIZEOF_LONG >= SIZEOF_VOID_P
1077 return (long)p;
1078#else
1079 /* convert to a Python long and hash that */
1080 PyObject* longobj;
1081 long x;
Tim Peters803526b2002-07-07 05:13:56 +00001082
Fred Drake13634cf2000-06-29 19:17:04 +00001083 if ((longobj = PyLong_FromVoidPtr(p)) == NULL) {
1084 x = -1;
1085 goto finally;
1086 }
1087 x = PyObject_Hash(longobj);
Tim Peters803526b2002-07-07 05:13:56 +00001088
Fred Drake13634cf2000-06-29 19:17:04 +00001089finally:
1090 Py_XDECREF(longobj);
1091 return x;
1092#endif
1093}
1094
Nick Coghlan53663a62008-07-15 14:27:37 +00001095long
1096PyObject_HashNotImplemented(PyObject *self)
1097{
1098 PyErr_Format(PyExc_TypeError, "unhashable type: '%.200s'",
1099 self->ob_type->tp_name);
1100 return -1;
1101}
Fred Drake13634cf2000-06-29 19:17:04 +00001102
Guido van Rossum9bfef441993-03-29 10:43:31 +00001103long
Fred Drake100814d2000-07-09 15:48:49 +00001104PyObject_Hash(PyObject *v)
Guido van Rossum9bfef441993-03-29 10:43:31 +00001105{
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001106 PyTypeObject *tp = v->ob_type;
Guido van Rossum9bfef441993-03-29 10:43:31 +00001107 if (tp->tp_hash != NULL)
1108 return (*tp->tp_hash)(v);
Nick Coghland4656402008-12-30 01:36:00 +00001109 /* To keep to the general practice that inheriting
1110 * solely from object in C code should work without
1111 * an explicit call to PyType_Ready, we implicitly call
1112 * PyType_Ready here and then check the tp_hash slot again
1113 */
1114 if (tp->tp_dict == NULL) {
1115 if (PyType_Ready(tp) < 0)
1116 return -1;
1117 if (tp->tp_hash != NULL)
1118 return (*tp->tp_hash)(v);
1119 }
Guido van Rossumd1f06b92001-01-24 22:14:43 +00001120 if (tp->tp_compare == NULL && RICHCOMPARE(tp) == NULL) {
Fred Drake13634cf2000-06-29 19:17:04 +00001121 return _Py_HashPointer(v); /* Use address as hash value */
1122 }
Guido van Rossum9bfef441993-03-29 10:43:31 +00001123 /* If there's a cmp but no hash defined, the object can't be hashed */
Nick Coghlan53663a62008-07-15 14:27:37 +00001124 return PyObject_HashNotImplemented(v);
Guido van Rossum9bfef441993-03-29 10:43:31 +00001125}
1126
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001127PyObject *
Jeremy Hyltonaf68c872005-12-10 18:50:16 +00001128PyObject_GetAttrString(PyObject *v, const char *name)
Guido van Rossum3f5da241990-12-20 15:06:42 +00001129{
Tim Peters6d6c1a32001-08-02 04:15:00 +00001130 PyObject *w, *res;
Guido van Rossumd8eb1b31996-08-09 20:52:03 +00001131
Christian Heimese93237d2007-12-19 02:37:44 +00001132 if (Py_TYPE(v)->tp_getattr != NULL)
1133 return (*Py_TYPE(v)->tp_getattr)(v, (char*)name);
Gregory P. Smithdd96db62008-06-09 04:58:54 +00001134 w = PyString_InternFromString(name);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001135 if (w == NULL)
1136 return NULL;
1137 res = PyObject_GetAttr(v, w);
1138 Py_XDECREF(w);
1139 return res;
Guido van Rossum3f5da241990-12-20 15:06:42 +00001140}
1141
1142int
Jeremy Hyltonaf68c872005-12-10 18:50:16 +00001143PyObject_HasAttrString(PyObject *v, const char *name)
Guido van Rossumed18fdc1993-07-11 19:55:34 +00001144{
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001145 PyObject *res = PyObject_GetAttrString(v, name);
Guido van Rossumed18fdc1993-07-11 19:55:34 +00001146 if (res != NULL) {
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001147 Py_DECREF(res);
Guido van Rossumed18fdc1993-07-11 19:55:34 +00001148 return 1;
1149 }
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001150 PyErr_Clear();
Guido van Rossumed18fdc1993-07-11 19:55:34 +00001151 return 0;
1152}
1153
1154int
Jeremy Hyltonaf68c872005-12-10 18:50:16 +00001155PyObject_SetAttrString(PyObject *v, const char *name, PyObject *w)
Guido van Rossum3f5da241990-12-20 15:06:42 +00001156{
Tim Peters6d6c1a32001-08-02 04:15:00 +00001157 PyObject *s;
1158 int res;
Guido van Rossumd8eb1b31996-08-09 20:52:03 +00001159
Christian Heimese93237d2007-12-19 02:37:44 +00001160 if (Py_TYPE(v)->tp_setattr != NULL)
1161 return (*Py_TYPE(v)->tp_setattr)(v, (char*)name, w);
Gregory P. Smithdd96db62008-06-09 04:58:54 +00001162 s = PyString_InternFromString(name);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001163 if (s == NULL)
1164 return -1;
1165 res = PyObject_SetAttr(v, s, w);
1166 Py_XDECREF(s);
1167 return res;
Guido van Rossum3f5da241990-12-20 15:06:42 +00001168}
1169
Guido van Rossum98ff96a1997-05-20 18:34:44 +00001170PyObject *
Fred Drake100814d2000-07-09 15:48:49 +00001171PyObject_GetAttr(PyObject *v, PyObject *name)
Guido van Rossum98ff96a1997-05-20 18:34:44 +00001172{
Christian Heimese93237d2007-12-19 02:37:44 +00001173 PyTypeObject *tp = Py_TYPE(v);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001174
Gregory P. Smithdd96db62008-06-09 04:58:54 +00001175 if (!PyString_Check(name)) {
Martin v. Löwis0c160a02002-03-15 13:40:30 +00001176#ifdef Py_USING_UNICODE
1177 /* The Unicode to string conversion is done here because the
1178 existing tp_getattro slots expect a string object as name
1179 and we wouldn't want to break those. */
1180 if (PyUnicode_Check(name)) {
1181 name = _PyUnicode_AsDefaultEncodedString(name, NULL);
1182 if (name == NULL)
1183 return NULL;
1184 }
1185 else
1186#endif
1187 {
Georg Brandlccff7852006-06-18 22:17:29 +00001188 PyErr_Format(PyExc_TypeError,
1189 "attribute name must be string, not '%.200s'",
Christian Heimese93237d2007-12-19 02:37:44 +00001190 Py_TYPE(name)->tp_name);
Martin v. Löwis0c160a02002-03-15 13:40:30 +00001191 return NULL;
1192 }
Jeremy Hylton99a8f902000-06-23 14:36:32 +00001193 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00001194 if (tp->tp_getattro != NULL)
1195 return (*tp->tp_getattro)(v, name);
1196 if (tp->tp_getattr != NULL)
Gregory P. Smithdd96db62008-06-09 04:58:54 +00001197 return (*tp->tp_getattr)(v, PyString_AS_STRING(name));
Tim Peters6d6c1a32001-08-02 04:15:00 +00001198 PyErr_Format(PyExc_AttributeError,
1199 "'%.50s' object has no attribute '%.400s'",
Gregory P. Smithdd96db62008-06-09 04:58:54 +00001200 tp->tp_name, PyString_AS_STRING(name));
Tim Peters6d6c1a32001-08-02 04:15:00 +00001201 return NULL;
Guido van Rossum98ff96a1997-05-20 18:34:44 +00001202}
1203
1204int
Fred Drake100814d2000-07-09 15:48:49 +00001205PyObject_HasAttr(PyObject *v, PyObject *name)
Guido van Rossum98ff96a1997-05-20 18:34:44 +00001206{
1207 PyObject *res = PyObject_GetAttr(v, name);
1208 if (res != NULL) {
1209 Py_DECREF(res);
1210 return 1;
1211 }
1212 PyErr_Clear();
1213 return 0;
1214}
1215
1216int
Fred Drake100814d2000-07-09 15:48:49 +00001217PyObject_SetAttr(PyObject *v, PyObject *name, PyObject *value)
Guido van Rossum98ff96a1997-05-20 18:34:44 +00001218{
Christian Heimese93237d2007-12-19 02:37:44 +00001219 PyTypeObject *tp = Py_TYPE(v);
Guido van Rossum98ff96a1997-05-20 18:34:44 +00001220 int err;
Marc-André Lemburge44e5072000-09-18 16:20:57 +00001221
Gregory P. Smithdd96db62008-06-09 04:58:54 +00001222 if (!PyString_Check(name)){
Martin v. Löwis0c160a02002-03-15 13:40:30 +00001223#ifdef Py_USING_UNICODE
1224 /* The Unicode to string conversion is done here because the
1225 existing tp_setattro slots expect a string object as name
1226 and we wouldn't want to break those. */
1227 if (PyUnicode_Check(name)) {
1228 name = PyUnicode_AsEncodedString(name, NULL, NULL);
1229 if (name == NULL)
1230 return -1;
1231 }
Tim Peters803526b2002-07-07 05:13:56 +00001232 else
Martin v. Löwis0c160a02002-03-15 13:40:30 +00001233#endif
1234 {
Georg Brandlccff7852006-06-18 22:17:29 +00001235 PyErr_Format(PyExc_TypeError,
1236 "attribute name must be string, not '%.200s'",
Christian Heimese93237d2007-12-19 02:37:44 +00001237 Py_TYPE(name)->tp_name);
Martin v. Löwis0c160a02002-03-15 13:40:30 +00001238 return -1;
1239 }
Jeremy Hylton99a8f902000-06-23 14:36:32 +00001240 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00001241 else
1242 Py_INCREF(name);
1243
Gregory P. Smithdd96db62008-06-09 04:58:54 +00001244 PyString_InternInPlace(&name);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001245 if (tp->tp_setattro != NULL) {
1246 err = (*tp->tp_setattro)(v, name, value);
1247 Py_DECREF(name);
1248 return err;
Marc-André Lemburge44e5072000-09-18 16:20:57 +00001249 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00001250 if (tp->tp_setattr != NULL) {
Gregory P. Smithdd96db62008-06-09 04:58:54 +00001251 err = (*tp->tp_setattr)(v, PyString_AS_STRING(name), value);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001252 Py_DECREF(name);
1253 return err;
1254 }
Guido van Rossum98ff96a1997-05-20 18:34:44 +00001255 Py_DECREF(name);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001256 if (tp->tp_getattr == NULL && tp->tp_getattro == NULL)
1257 PyErr_Format(PyExc_TypeError,
1258 "'%.100s' object has no attributes "
1259 "(%s .%.100s)",
1260 tp->tp_name,
1261 value==NULL ? "del" : "assign to",
Gregory P. Smithdd96db62008-06-09 04:58:54 +00001262 PyString_AS_STRING(name));
Tim Peters6d6c1a32001-08-02 04:15:00 +00001263 else
1264 PyErr_Format(PyExc_TypeError,
1265 "'%.100s' object has only read-only attributes "
1266 "(%s .%.100s)",
1267 tp->tp_name,
1268 value==NULL ? "del" : "assign to",
Gregory P. Smithdd96db62008-06-09 04:58:54 +00001269 PyString_AS_STRING(name));
Tim Peters6d6c1a32001-08-02 04:15:00 +00001270 return -1;
1271}
1272
1273/* Helper to get a pointer to an object's __dict__ slot, if any */
1274
1275PyObject **
1276_PyObject_GetDictPtr(PyObject *obj)
1277{
Martin v. Löwis725507b2006-03-07 12:08:51 +00001278 Py_ssize_t dictoffset;
Christian Heimese93237d2007-12-19 02:37:44 +00001279 PyTypeObject *tp = Py_TYPE(obj);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001280
1281 if (!(tp->tp_flags & Py_TPFLAGS_HAVE_CLASS))
1282 return NULL;
1283 dictoffset = tp->tp_dictoffset;
1284 if (dictoffset == 0)
1285 return NULL;
1286 if (dictoffset < 0) {
Martin v. Löwis18e16552006-02-15 17:27:45 +00001287 Py_ssize_t tsize;
Guido van Rossum2eb0b872002-03-01 22:24:49 +00001288 size_t size;
1289
1290 tsize = ((PyVarObject *)obj)->ob_size;
1291 if (tsize < 0)
1292 tsize = -tsize;
1293 size = _PyObject_VAR_SIZE(tp, tsize);
1294
Tim Peters6d483d32001-10-06 21:27:34 +00001295 dictoffset += (long)size;
1296 assert(dictoffset > 0);
1297 assert(dictoffset % SIZEOF_VOID_P == 0);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001298 }
1299 return (PyObject **) ((char *)obj + dictoffset);
1300}
1301
Tim Peters6d6c1a32001-08-02 04:15:00 +00001302PyObject *
Raymond Hettinger1da1dbf2003-03-17 19:46:11 +00001303PyObject_SelfIter(PyObject *obj)
Raymond Hettinger01538262003-03-17 08:24:35 +00001304{
1305 Py_INCREF(obj);
1306 return obj;
1307}
1308
Michael W. Hudson1593f502004-09-14 17:09:47 +00001309/* Generic GetAttr functions - put these in your tp_[gs]etattro slot */
1310
Raymond Hettinger01538262003-03-17 08:24:35 +00001311PyObject *
Tim Peters6d6c1a32001-08-02 04:15:00 +00001312PyObject_GenericGetAttr(PyObject *obj, PyObject *name)
1313{
Christian Heimese93237d2007-12-19 02:37:44 +00001314 PyTypeObject *tp = Py_TYPE(obj);
Guido van Rossum056fbf42002-08-19 19:22:50 +00001315 PyObject *descr = NULL;
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001316 PyObject *res = NULL;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001317 descrgetfunc f;
Martin v. Löwis725507b2006-03-07 12:08:51 +00001318 Py_ssize_t dictoffset;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001319 PyObject **dictptr;
1320
Gregory P. Smithdd96db62008-06-09 04:58:54 +00001321 if (!PyString_Check(name)){
Martin v. Löwis0c160a02002-03-15 13:40:30 +00001322#ifdef Py_USING_UNICODE
1323 /* The Unicode to string conversion is done here because the
1324 existing tp_setattro slots expect a string object as name
1325 and we wouldn't want to break those. */
1326 if (PyUnicode_Check(name)) {
1327 name = PyUnicode_AsEncodedString(name, NULL, NULL);
1328 if (name == NULL)
1329 return NULL;
1330 }
Tim Peters803526b2002-07-07 05:13:56 +00001331 else
Martin v. Löwis0c160a02002-03-15 13:40:30 +00001332#endif
1333 {
Georg Brandlccff7852006-06-18 22:17:29 +00001334 PyErr_Format(PyExc_TypeError,
1335 "attribute name must be string, not '%.200s'",
Christian Heimese93237d2007-12-19 02:37:44 +00001336 Py_TYPE(name)->tp_name);
Martin v. Löwis0c160a02002-03-15 13:40:30 +00001337 return NULL;
1338 }
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001339 }
1340 else
1341 Py_INCREF(name);
1342
Tim Peters6d6c1a32001-08-02 04:15:00 +00001343 if (tp->tp_dict == NULL) {
Guido van Rossum528b7eb2001-08-07 17:24:28 +00001344 if (PyType_Ready(tp) < 0)
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001345 goto done;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001346 }
1347
Amaury Forgeot d'Arce4c270c2008-01-14 00:29:41 +00001348#if 0 /* XXX this is not quite _PyType_Lookup anymore */
Guido van Rossum056fbf42002-08-19 19:22:50 +00001349 /* Inline _PyType_Lookup */
1350 {
Martin v. Löwis18e16552006-02-15 17:27:45 +00001351 Py_ssize_t i, n;
Guido van Rossum056fbf42002-08-19 19:22:50 +00001352 PyObject *mro, *base, *dict;
1353
1354 /* Look in tp_dict of types in MRO */
1355 mro = tp->tp_mro;
1356 assert(mro != NULL);
1357 assert(PyTuple_Check(mro));
1358 n = PyTuple_GET_SIZE(mro);
1359 for (i = 0; i < n; i++) {
1360 base = PyTuple_GET_ITEM(mro, i);
1361 if (PyClass_Check(base))
1362 dict = ((PyClassObject *)base)->cl_dict;
1363 else {
1364 assert(PyType_Check(base));
1365 dict = ((PyTypeObject *)base)->tp_dict;
1366 }
1367 assert(dict && PyDict_Check(dict));
1368 descr = PyDict_GetItem(dict, name);
1369 if (descr != NULL)
1370 break;
1371 }
1372 }
Amaury Forgeot d'Arce4c270c2008-01-14 00:29:41 +00001373#else
1374 descr = _PyType_Lookup(tp, name);
1375#endif
Guido van Rossum056fbf42002-08-19 19:22:50 +00001376
Michael W. Hudsonb2c7de42003-08-15 13:07:47 +00001377 Py_XINCREF(descr);
1378
Tim Peters6d6c1a32001-08-02 04:15:00 +00001379 f = NULL;
Guido van Rossum90195e22003-02-19 03:19:29 +00001380 if (descr != NULL &&
1381 PyType_HasFeature(descr->ob_type, Py_TPFLAGS_HAVE_CLASS)) {
Tim Peters6d6c1a32001-08-02 04:15:00 +00001382 f = descr->ob_type->tp_descr_get;
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001383 if (f != NULL && PyDescr_IsData(descr)) {
1384 res = f(descr, obj, (PyObject *)obj->ob_type);
Michael W. Hudsonb2c7de42003-08-15 13:07:47 +00001385 Py_DECREF(descr);
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001386 goto done;
1387 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00001388 }
1389
Guido van Rossumc66ff442002-08-19 16:50:48 +00001390 /* Inline _PyObject_GetDictPtr */
1391 dictoffset = tp->tp_dictoffset;
1392 if (dictoffset != 0) {
1393 PyObject *dict;
1394 if (dictoffset < 0) {
Martin v. Löwis18e16552006-02-15 17:27:45 +00001395 Py_ssize_t tsize;
Guido van Rossumc66ff442002-08-19 16:50:48 +00001396 size_t size;
1397
1398 tsize = ((PyVarObject *)obj)->ob_size;
1399 if (tsize < 0)
1400 tsize = -tsize;
1401 size = _PyObject_VAR_SIZE(tp, tsize);
1402
1403 dictoffset += (long)size;
1404 assert(dictoffset > 0);
1405 assert(dictoffset % SIZEOF_VOID_P == 0);
1406 }
1407 dictptr = (PyObject **) ((char *)obj + dictoffset);
1408 dict = *dictptr;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001409 if (dict != NULL) {
Guido van Rossum37edeab2008-01-24 17:58:05 +00001410 Py_INCREF(dict);
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001411 res = PyDict_GetItem(dict, name);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001412 if (res != NULL) {
1413 Py_INCREF(res);
Michael W. Hudsonb2c7de42003-08-15 13:07:47 +00001414 Py_XDECREF(descr);
Guido van Rossum37edeab2008-01-24 17:58:05 +00001415 Py_DECREF(dict);
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001416 goto done;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001417 }
Guido van Rossum37edeab2008-01-24 17:58:05 +00001418 Py_DECREF(dict);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001419 }
1420 }
1421
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001422 if (f != NULL) {
Christian Heimese93237d2007-12-19 02:37:44 +00001423 res = f(descr, obj, (PyObject *)Py_TYPE(obj));
Michael W. Hudsonb2c7de42003-08-15 13:07:47 +00001424 Py_DECREF(descr);
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001425 goto done;
1426 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00001427
1428 if (descr != NULL) {
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001429 res = descr;
Michael W. Hudsonb2c7de42003-08-15 13:07:47 +00001430 /* descr was already increfed above */
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001431 goto done;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001432 }
1433
1434 PyErr_Format(PyExc_AttributeError,
1435 "'%.50s' object has no attribute '%.400s'",
Gregory P. Smithdd96db62008-06-09 04:58:54 +00001436 tp->tp_name, PyString_AS_STRING(name));
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001437 done:
1438 Py_DECREF(name);
1439 return res;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001440}
1441
1442int
1443PyObject_GenericSetAttr(PyObject *obj, PyObject *name, PyObject *value)
1444{
Christian Heimese93237d2007-12-19 02:37:44 +00001445 PyTypeObject *tp = Py_TYPE(obj);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001446 PyObject *descr;
1447 descrsetfunc f;
1448 PyObject **dictptr;
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001449 int res = -1;
1450
Gregory P. Smithdd96db62008-06-09 04:58:54 +00001451 if (!PyString_Check(name)){
Martin v. Löwis0c160a02002-03-15 13:40:30 +00001452#ifdef Py_USING_UNICODE
1453 /* The Unicode to string conversion is done here because the
1454 existing tp_setattro slots expect a string object as name
1455 and we wouldn't want to break those. */
1456 if (PyUnicode_Check(name)) {
1457 name = PyUnicode_AsEncodedString(name, NULL, NULL);
1458 if (name == NULL)
1459 return -1;
1460 }
Tim Peters803526b2002-07-07 05:13:56 +00001461 else
Martin v. Löwis0c160a02002-03-15 13:40:30 +00001462#endif
1463 {
Georg Brandlccff7852006-06-18 22:17:29 +00001464 PyErr_Format(PyExc_TypeError,
1465 "attribute name must be string, not '%.200s'",
Christian Heimese93237d2007-12-19 02:37:44 +00001466 Py_TYPE(name)->tp_name);
Martin v. Löwis0c160a02002-03-15 13:40:30 +00001467 return -1;
1468 }
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001469 }
1470 else
1471 Py_INCREF(name);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001472
1473 if (tp->tp_dict == NULL) {
Guido van Rossum528b7eb2001-08-07 17:24:28 +00001474 if (PyType_Ready(tp) < 0)
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001475 goto done;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001476 }
1477
1478 descr = _PyType_Lookup(tp, name);
1479 f = NULL;
Guido van Rossum90195e22003-02-19 03:19:29 +00001480 if (descr != NULL &&
1481 PyType_HasFeature(descr->ob_type, Py_TPFLAGS_HAVE_CLASS)) {
Tim Peters6d6c1a32001-08-02 04:15:00 +00001482 f = descr->ob_type->tp_descr_set;
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001483 if (f != NULL && PyDescr_IsData(descr)) {
1484 res = f(descr, obj, value);
1485 goto done;
1486 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00001487 }
1488
1489 dictptr = _PyObject_GetDictPtr(obj);
1490 if (dictptr != NULL) {
1491 PyObject *dict = *dictptr;
1492 if (dict == NULL && value != NULL) {
1493 dict = PyDict_New();
1494 if (dict == NULL)
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001495 goto done;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001496 *dictptr = dict;
1497 }
1498 if (dict != NULL) {
Guido van Rossum37edeab2008-01-24 17:58:05 +00001499 Py_INCREF(dict);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001500 if (value == NULL)
1501 res = PyDict_DelItem(dict, name);
1502 else
1503 res = PyDict_SetItem(dict, name, value);
1504 if (res < 0 && PyErr_ExceptionMatches(PyExc_KeyError))
1505 PyErr_SetObject(PyExc_AttributeError, name);
Guido van Rossum37edeab2008-01-24 17:58:05 +00001506 Py_DECREF(dict);
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001507 goto done;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001508 }
1509 }
1510
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001511 if (f != NULL) {
1512 res = f(descr, obj, value);
1513 goto done;
1514 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00001515
1516 if (descr == NULL) {
1517 PyErr_Format(PyExc_AttributeError,
Georg Brandlccff7852006-06-18 22:17:29 +00001518 "'%.100s' object has no attribute '%.200s'",
Gregory P. Smithdd96db62008-06-09 04:58:54 +00001519 tp->tp_name, PyString_AS_STRING(name));
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001520 goto done;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001521 }
1522
1523 PyErr_Format(PyExc_AttributeError,
1524 "'%.50s' object attribute '%.400s' is read-only",
Gregory P. Smithdd96db62008-06-09 04:58:54 +00001525 tp->tp_name, PyString_AS_STRING(name));
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001526 done:
1527 Py_DECREF(name);
1528 return res;
Guido van Rossum98ff96a1997-05-20 18:34:44 +00001529}
1530
Guido van Rossum6ac258d1993-05-12 08:24:20 +00001531/* Test a value used as condition, e.g., in a for or if statement.
1532 Return -1 if an error occurred */
1533
1534int
Fred Drake100814d2000-07-09 15:48:49 +00001535PyObject_IsTrue(PyObject *v)
Guido van Rossum6ac258d1993-05-12 08:24:20 +00001536{
Martin v. Löwis18e16552006-02-15 17:27:45 +00001537 Py_ssize_t res;
Guido van Rossum6248f442002-08-24 06:31:34 +00001538 if (v == Py_True)
1539 return 1;
1540 if (v == Py_False)
1541 return 0;
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001542 if (v == Py_None)
Neal Norwitz51290d32002-06-13 21:32:44 +00001543 return 0;
Guido van Rossum1c4f4581998-05-22 00:53:24 +00001544 else if (v->ob_type->tp_as_number != NULL &&
1545 v->ob_type->tp_as_number->nb_nonzero != NULL)
Guido van Rossum6ac258d1993-05-12 08:24:20 +00001546 res = (*v->ob_type->tp_as_number->nb_nonzero)(v);
Guido van Rossum1c4f4581998-05-22 00:53:24 +00001547 else if (v->ob_type->tp_as_mapping != NULL &&
1548 v->ob_type->tp_as_mapping->mp_length != NULL)
Guido van Rossum6ac258d1993-05-12 08:24:20 +00001549 res = (*v->ob_type->tp_as_mapping->mp_length)(v);
Guido van Rossum1c4f4581998-05-22 00:53:24 +00001550 else if (v->ob_type->tp_as_sequence != NULL &&
1551 v->ob_type->tp_as_sequence->sq_length != NULL)
Guido van Rossum6ac258d1993-05-12 08:24:20 +00001552 res = (*v->ob_type->tp_as_sequence->sq_length)(v);
1553 else
Neal Norwitz51290d32002-06-13 21:32:44 +00001554 return 1;
Martin v. Löwis18e16552006-02-15 17:27:45 +00001555 /* if it is negative, it should be either -1 or -2 */
1556 return (res > 0) ? 1 : Py_SAFE_DOWNCAST(res, Py_ssize_t, int);
Guido van Rossum6ac258d1993-05-12 08:24:20 +00001557}
1558
Tim Peters803526b2002-07-07 05:13:56 +00001559/* equivalent of 'not v'
Guido van Rossumc3d3f961998-04-09 17:53:59 +00001560 Return -1 if an error occurred */
1561
1562int
Fred Drake100814d2000-07-09 15:48:49 +00001563PyObject_Not(PyObject *v)
Guido van Rossumc3d3f961998-04-09 17:53:59 +00001564{
1565 int res;
1566 res = PyObject_IsTrue(v);
1567 if (res < 0)
1568 return res;
1569 return res == 0;
1570}
1571
Guido van Rossum5524a591995-01-10 15:26:20 +00001572/* Coerce two numeric types to the "larger" one.
1573 Increment the reference count on each argument.
Guido van Rossume797ec12001-01-17 15:24:28 +00001574 Return value:
1575 -1 if an error occurred;
1576 0 if the coercion succeeded (and then the reference counts are increased);
1577 1 if no coercion is possible (and no error is raised).
Guido van Rossum5524a591995-01-10 15:26:20 +00001578*/
Guido van Rossum5524a591995-01-10 15:26:20 +00001579int
Fred Drake100814d2000-07-09 15:48:49 +00001580PyNumber_CoerceEx(PyObject **pv, PyObject **pw)
Guido van Rossum5524a591995-01-10 15:26:20 +00001581{
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001582 register PyObject *v = *pv;
1583 register PyObject *w = *pw;
Guido van Rossum5524a591995-01-10 15:26:20 +00001584 int res;
1585
Guido van Rossum517c7d42002-04-26 02:49:14 +00001586 /* Shortcut only for old-style types */
1587 if (v->ob_type == w->ob_type &&
1588 !PyType_HasFeature(v->ob_type, Py_TPFLAGS_CHECKTYPES))
1589 {
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001590 Py_INCREF(v);
1591 Py_INCREF(w);
Guido van Rossum5524a591995-01-10 15:26:20 +00001592 return 0;
1593 }
1594 if (v->ob_type->tp_as_number && v->ob_type->tp_as_number->nb_coerce) {
1595 res = (*v->ob_type->tp_as_number->nb_coerce)(pv, pw);
1596 if (res <= 0)
1597 return res;
1598 }
1599 if (w->ob_type->tp_as_number && w->ob_type->tp_as_number->nb_coerce) {
1600 res = (*w->ob_type->tp_as_number->nb_coerce)(pw, pv);
1601 if (res <= 0)
1602 return res;
1603 }
Guido van Rossum242c6421997-11-19 16:03:17 +00001604 return 1;
1605}
1606
Guido van Rossume797ec12001-01-17 15:24:28 +00001607/* Coerce two numeric types to the "larger" one.
1608 Increment the reference count on each argument.
1609 Return -1 and raise an exception if no coercion is possible
1610 (and then no reference count is incremented).
1611*/
Guido van Rossum242c6421997-11-19 16:03:17 +00001612int
Fred Drake100814d2000-07-09 15:48:49 +00001613PyNumber_Coerce(PyObject **pv, PyObject **pw)
Guido van Rossum242c6421997-11-19 16:03:17 +00001614{
1615 int err = PyNumber_CoerceEx(pv, pw);
1616 if (err <= 0)
1617 return err;
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001618 PyErr_SetString(PyExc_TypeError, "number coercion failed");
Guido van Rossum5524a591995-01-10 15:26:20 +00001619 return -1;
1620}
1621
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001622
Guido van Rossum49b11fe1995-01-26 00:38:22 +00001623/* Test whether an object can be called */
1624
1625int
Fred Drake100814d2000-07-09 15:48:49 +00001626PyCallable_Check(PyObject *x)
Guido van Rossum49b11fe1995-01-26 00:38:22 +00001627{
1628 if (x == NULL)
1629 return 0;
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001630 if (PyInstance_Check(x)) {
1631 PyObject *call = PyObject_GetAttrString(x, "__call__");
Guido van Rossum49b11fe1995-01-26 00:38:22 +00001632 if (call == NULL) {
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001633 PyErr_Clear();
Guido van Rossum49b11fe1995-01-26 00:38:22 +00001634 return 0;
1635 }
1636 /* Could test recursively but don't, for fear of endless
1637 recursion if some joker sets self.__call__ = self */
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001638 Py_DECREF(call);
Guido van Rossum49b11fe1995-01-26 00:38:22 +00001639 return 1;
1640 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00001641 else {
1642 return x->ob_type->tp_call != NULL;
1643 }
Guido van Rossum49b11fe1995-01-26 00:38:22 +00001644}
1645
Georg Brandl871f1bc2007-03-12 13:17:36 +00001646/* ------------------------- PyObject_Dir() helpers ------------------------- */
1647
Tim Peters7eea37e2001-09-04 22:08:56 +00001648/* Helper for PyObject_Dir.
1649 Merge the __dict__ of aclass into dict, and recursively also all
1650 the __dict__s of aclass's base classes. The order of merging isn't
1651 defined, as it's expected that only the final set of dict keys is
1652 interesting.
1653 Return 0 on success, -1 on error.
1654*/
1655
1656static int
1657merge_class_dict(PyObject* dict, PyObject* aclass)
1658{
1659 PyObject *classdict;
1660 PyObject *bases;
1661
1662 assert(PyDict_Check(dict));
1663 assert(aclass);
1664
1665 /* Merge in the type's dict (if any). */
1666 classdict = PyObject_GetAttrString(aclass, "__dict__");
1667 if (classdict == NULL)
1668 PyErr_Clear();
1669 else {
1670 int status = PyDict_Update(dict, classdict);
1671 Py_DECREF(classdict);
1672 if (status < 0)
1673 return -1;
1674 }
1675
1676 /* Recursively merge in the base types' (if any) dicts. */
1677 bases = PyObject_GetAttrString(aclass, "__bases__");
Tim Petersbc7e8632001-09-16 20:33:22 +00001678 if (bases == NULL)
1679 PyErr_Clear();
1680 else {
Guido van Rossum44022412002-05-13 18:29:46 +00001681 /* We have no guarantee that bases is a real tuple */
Martin v. Löwis18e16552006-02-15 17:27:45 +00001682 Py_ssize_t i, n;
Guido van Rossum44022412002-05-13 18:29:46 +00001683 n = PySequence_Size(bases); /* This better be right */
1684 if (n < 0)
1685 PyErr_Clear();
1686 else {
1687 for (i = 0; i < n; i++) {
Tim Peters18e70832003-02-05 19:35:19 +00001688 int status;
Guido van Rossum44022412002-05-13 18:29:46 +00001689 PyObject *base = PySequence_GetItem(bases, i);
1690 if (base == NULL) {
1691 Py_DECREF(bases);
1692 return -1;
1693 }
Tim Peters18e70832003-02-05 19:35:19 +00001694 status = merge_class_dict(dict, base);
1695 Py_DECREF(base);
1696 if (status < 0) {
Guido van Rossum44022412002-05-13 18:29:46 +00001697 Py_DECREF(bases);
1698 return -1;
1699 }
Tim Peters7eea37e2001-09-04 22:08:56 +00001700 }
1701 }
1702 Py_DECREF(bases);
1703 }
1704 return 0;
1705}
1706
Tim Peters305b5852001-09-17 02:38:46 +00001707/* Helper for PyObject_Dir.
1708 If obj has an attr named attrname that's a list, merge its string
1709 elements into keys of dict.
1710 Return 0 on success, -1 on error. Errors due to not finding the attr,
1711 or the attr not being a list, are suppressed.
1712*/
1713
1714static int
Jeremy Hyltonaf68c872005-12-10 18:50:16 +00001715merge_list_attr(PyObject* dict, PyObject* obj, const char *attrname)
Tim Peters305b5852001-09-17 02:38:46 +00001716{
1717 PyObject *list;
1718 int result = 0;
1719
1720 assert(PyDict_Check(dict));
1721 assert(obj);
1722 assert(attrname);
1723
1724 list = PyObject_GetAttrString(obj, attrname);
1725 if (list == NULL)
1726 PyErr_Clear();
1727
1728 else if (PyList_Check(list)) {
1729 int i;
1730 for (i = 0; i < PyList_GET_SIZE(list); ++i) {
1731 PyObject *item = PyList_GET_ITEM(list, i);
Gregory P. Smithdd96db62008-06-09 04:58:54 +00001732 if (PyString_Check(item)) {
Tim Peters305b5852001-09-17 02:38:46 +00001733 result = PyDict_SetItem(dict, item, Py_None);
1734 if (result < 0)
1735 break;
1736 }
1737 }
Georg Brandl07e56812008-03-21 20:21:46 +00001738 if (Py_Py3kWarningFlag &&
1739 (strcmp(attrname, "__members__") == 0 ||
1740 strcmp(attrname, "__methods__") == 0)) {
Benjamin Peterson9f4f4812008-04-27 03:01:45 +00001741 if (PyErr_WarnEx(PyExc_DeprecationWarning,
Georg Brandld5b635f2008-03-25 08:29:14 +00001742 "__members__ and __methods__ not "
Benjamin Peterson9f4f4812008-04-27 03:01:45 +00001743 "supported in 3.x", 1) < 0) {
Georg Brandl07e56812008-03-21 20:21:46 +00001744 Py_XDECREF(list);
1745 return -1;
1746 }
1747 }
Tim Peters305b5852001-09-17 02:38:46 +00001748 }
1749
1750 Py_XDECREF(list);
1751 return result;
1752}
1753
Georg Brandl871f1bc2007-03-12 13:17:36 +00001754/* Helper for PyObject_Dir without arguments: returns the local scope. */
1755static PyObject *
Jeremy Hylton26ca9252007-03-16 14:49:11 +00001756_dir_locals(void)
Tim Peters7eea37e2001-09-04 22:08:56 +00001757{
Georg Brandl871f1bc2007-03-12 13:17:36 +00001758 PyObject *names;
1759 PyObject *locals = PyEval_GetLocals();
Tim Peters7eea37e2001-09-04 22:08:56 +00001760
Georg Brandl871f1bc2007-03-12 13:17:36 +00001761 if (locals == NULL) {
1762 PyErr_SetString(PyExc_SystemError, "frame does not exist");
1763 return NULL;
Tim Peters7eea37e2001-09-04 22:08:56 +00001764 }
1765
Georg Brandl871f1bc2007-03-12 13:17:36 +00001766 names = PyMapping_Keys(locals);
1767 if (!names)
1768 return NULL;
1769 if (!PyList_Check(names)) {
Georg Brandlccff7852006-06-18 22:17:29 +00001770 PyErr_Format(PyExc_TypeError,
Georg Brandl871f1bc2007-03-12 13:17:36 +00001771 "dir(): expected keys() of locals to be a list, "
Christian Heimese93237d2007-12-19 02:37:44 +00001772 "not '%.200s'", Py_TYPE(names)->tp_name);
Georg Brandl871f1bc2007-03-12 13:17:36 +00001773 Py_DECREF(names);
1774 return NULL;
Raymond Hettinger2a7dede2004-08-07 04:55:30 +00001775 }
Georg Brandl871f1bc2007-03-12 13:17:36 +00001776 /* the locals don't need to be DECREF'd */
1777 return names;
1778}
Tim Peters7eea37e2001-09-04 22:08:56 +00001779
Georg Brandl871f1bc2007-03-12 13:17:36 +00001780/* Helper for PyObject_Dir of type objects: returns __dict__ and __bases__.
1781 We deliberately don't suck up its __class__, as methods belonging to the
1782 metaclass would probably be more confusing than helpful.
1783*/
1784static PyObject *
1785_specialized_dir_type(PyObject *obj)
1786{
1787 PyObject *result = NULL;
1788 PyObject *dict = PyDict_New();
1789
1790 if (dict != NULL && merge_class_dict(dict, obj) == 0)
1791 result = PyDict_Keys(dict);
1792
1793 Py_XDECREF(dict);
1794 return result;
1795}
1796
1797/* Helper for PyObject_Dir of module objects: returns the module's __dict__. */
1798static PyObject *
1799_specialized_dir_module(PyObject *obj)
1800{
1801 PyObject *result = NULL;
1802 PyObject *dict = PyObject_GetAttrString(obj, "__dict__");
1803
1804 if (dict != NULL) {
1805 if (PyDict_Check(dict))
1806 result = PyDict_Keys(dict);
1807 else {
1808 PyErr_Format(PyExc_TypeError,
1809 "%.200s.__dict__ is not a dictionary",
1810 PyModule_GetName(obj));
1811 }
1812 }
1813
1814 Py_XDECREF(dict);
1815 return result;
1816}
1817
1818/* Helper for PyObject_Dir of generic objects: returns __dict__, __class__,
1819 and recursively up the __class__.__bases__ chain.
1820*/
1821static PyObject *
1822_generic_dir(PyObject *obj)
1823{
1824 PyObject *result = NULL;
1825 PyObject *dict = NULL;
1826 PyObject *itsclass = NULL;
1827
1828 /* Get __dict__ (which may or may not be a real dict...) */
1829 dict = PyObject_GetAttrString(obj, "__dict__");
1830 if (dict == NULL) {
1831 PyErr_Clear();
1832 dict = PyDict_New();
1833 }
1834 else if (!PyDict_Check(dict)) {
1835 Py_DECREF(dict);
1836 dict = PyDict_New();
1837 }
1838 else {
1839 /* Copy __dict__ to avoid mutating it. */
1840 PyObject *temp = PyDict_Copy(dict);
1841 Py_DECREF(dict);
1842 dict = temp;
1843 }
1844
1845 if (dict == NULL)
1846 goto error;
1847
1848 /* Merge in __members__ and __methods__ (if any).
1849 * This is removed in Python 3000. */
1850 if (merge_list_attr(dict, obj, "__members__") < 0)
1851 goto error;
1852 if (merge_list_attr(dict, obj, "__methods__") < 0)
1853 goto error;
1854
1855 /* Merge in attrs reachable from its class. */
1856 itsclass = PyObject_GetAttrString(obj, "__class__");
1857 if (itsclass == NULL)
1858 /* XXX(tomer): Perhaps fall back to obj->ob_type if no
1859 __class__ exists? */
1860 PyErr_Clear();
1861 else {
1862 if (merge_class_dict(dict, itsclass) != 0)
1863 goto error;
1864 }
1865
1866 result = PyDict_Keys(dict);
Tim Peters7eea37e2001-09-04 22:08:56 +00001867 /* fall through */
Georg Brandl871f1bc2007-03-12 13:17:36 +00001868error:
1869 Py_XDECREF(itsclass);
1870 Py_XDECREF(dict);
1871 return result;
1872}
1873
1874/* Helper for PyObject_Dir: object introspection.
1875 This calls one of the above specialized versions if no __dir__ method
1876 exists. */
1877static PyObject *
1878_dir_object(PyObject *obj)
1879{
Georg Brandl3bb15672007-03-13 07:23:16 +00001880 PyObject *result = NULL;
1881 PyObject *dirfunc = PyObject_GetAttrString((PyObject *)obj->ob_type,
1882 "__dir__");
Georg Brandl871f1bc2007-03-12 13:17:36 +00001883
1884 assert(obj);
1885 if (dirfunc == NULL) {
1886 /* use default implementation */
1887 PyErr_Clear();
1888 if (PyModule_Check(obj))
1889 result = _specialized_dir_module(obj);
1890 else if (PyType_Check(obj) || PyClass_Check(obj))
1891 result = _specialized_dir_type(obj);
1892 else
1893 result = _generic_dir(obj);
1894 }
1895 else {
1896 /* use __dir__ */
1897 result = PyObject_CallFunctionObjArgs(dirfunc, obj, NULL);
1898 Py_DECREF(dirfunc);
1899 if (result == NULL)
1900 return NULL;
1901
1902 /* result must be a list */
1903 /* XXX(gbrandl): could also check if all items are strings */
1904 if (!PyList_Check(result)) {
1905 PyErr_Format(PyExc_TypeError,
1906 "__dir__() must return a list, not %.200s",
Christian Heimese93237d2007-12-19 02:37:44 +00001907 Py_TYPE(result)->tp_name);
Georg Brandl871f1bc2007-03-12 13:17:36 +00001908 Py_DECREF(result);
1909 result = NULL;
1910 }
1911 }
1912
1913 return result;
1914}
1915
1916/* Implementation of dir() -- if obj is NULL, returns the names in the current
1917 (local) scope. Otherwise, performs introspection of the object: returns a
1918 sorted list of attribute names (supposedly) accessible from the object
1919*/
1920PyObject *
1921PyObject_Dir(PyObject *obj)
1922{
1923 PyObject * result;
1924
1925 if (obj == NULL)
1926 /* no object -- introspect the locals */
1927 result = _dir_locals();
1928 else
1929 /* object -- introspect the object */
1930 result = _dir_object(obj);
1931
1932 assert(result == NULL || PyList_Check(result));
1933
1934 if (result != NULL && PyList_Sort(result) != 0) {
1935 /* sorting the list failed */
1936 Py_DECREF(result);
1937 result = NULL;
1938 }
1939
Tim Peters7eea37e2001-09-04 22:08:56 +00001940 return result;
1941}
Guido van Rossum49b11fe1995-01-26 00:38:22 +00001942
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001943/*
1944NoObject is usable as a non-NULL undefined value, used by the macro None.
1945There is (and should be!) no way to create other objects of this type,
Guido van Rossum3f5da241990-12-20 15:06:42 +00001946so there is exactly one (which is indestructible, by the way).
Guido van Rossumba21a492001-08-16 08:17:26 +00001947(XXX This type and the type of NotImplemented below should be unified.)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001948*/
1949
Guido van Rossum0c182a11992-03-27 17:26:13 +00001950/* ARGSUSED */
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001951static PyObject *
Fred Drake100814d2000-07-09 15:48:49 +00001952none_repr(PyObject *op)
Guido van Rossum3f5da241990-12-20 15:06:42 +00001953{
Gregory P. Smithdd96db62008-06-09 04:58:54 +00001954 return PyString_FromString("None");
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001955}
1956
Barry Warsaw9bf16442001-01-23 16:24:35 +00001957/* ARGUSED */
1958static void
Tim Peters803526b2002-07-07 05:13:56 +00001959none_dealloc(PyObject* ignore)
Barry Warsaw9bf16442001-01-23 16:24:35 +00001960{
1961 /* This should never get called, but we also don't want to SEGV if
1962 * we accidently decref None out of existance.
1963 */
Martin v. Löwis3f19b102002-08-07 16:21:51 +00001964 Py_FatalError("deallocating None");
Barry Warsaw9bf16442001-01-23 16:24:35 +00001965}
1966
1967
Guido van Rossumba21a492001-08-16 08:17:26 +00001968static PyTypeObject PyNone_Type = {
Martin v. Löwis68192102007-07-21 06:55:02 +00001969 PyVarObject_HEAD_INIT(&PyType_Type, 0)
Guido van Rossumba21a492001-08-16 08:17:26 +00001970 "NoneType",
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001971 0,
1972 0,
Georg Brandl347b3002006-03-30 11:57:00 +00001973 none_dealloc, /*tp_dealloc*/ /*never called*/
Guido van Rossum7066dd71992-09-17 17:54:56 +00001974 0, /*tp_print*/
Guido van Rossum3f5da241990-12-20 15:06:42 +00001975 0, /*tp_getattr*/
1976 0, /*tp_setattr*/
1977 0, /*tp_compare*/
Georg Brandl347b3002006-03-30 11:57:00 +00001978 none_repr, /*tp_repr*/
Guido van Rossum3f5da241990-12-20 15:06:42 +00001979 0, /*tp_as_number*/
1980 0, /*tp_as_sequence*/
1981 0, /*tp_as_mapping*/
Guido van Rossum64c06e32007-11-22 00:55:51 +00001982 (hashfunc)_Py_HashPointer, /*tp_hash */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001983};
1984
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001985PyObject _Py_NoneStruct = {
Martin v. Löwis68192102007-07-21 06:55:02 +00001986 _PyObject_EXTRA_INIT
1987 1, &PyNone_Type
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001988};
1989
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +00001990/* NotImplemented is an object that can be used to signal that an
1991 operation is not implemented for the given type combination. */
1992
1993static PyObject *
1994NotImplemented_repr(PyObject *op)
1995{
Gregory P. Smithdd96db62008-06-09 04:58:54 +00001996 return PyString_FromString("NotImplemented");
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +00001997}
1998
1999static PyTypeObject PyNotImplemented_Type = {
Martin v. Löwis68192102007-07-21 06:55:02 +00002000 PyVarObject_HEAD_INIT(&PyType_Type, 0)
Guido van Rossumba21a492001-08-16 08:17:26 +00002001 "NotImplementedType",
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +00002002 0,
2003 0,
Georg Brandl347b3002006-03-30 11:57:00 +00002004 none_dealloc, /*tp_dealloc*/ /*never called*/
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +00002005 0, /*tp_print*/
2006 0, /*tp_getattr*/
2007 0, /*tp_setattr*/
2008 0, /*tp_compare*/
Georg Brandl347b3002006-03-30 11:57:00 +00002009 NotImplemented_repr, /*tp_repr*/
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +00002010 0, /*tp_as_number*/
2011 0, /*tp_as_sequence*/
2012 0, /*tp_as_mapping*/
2013 0, /*tp_hash */
2014};
2015
2016PyObject _Py_NotImplementedStruct = {
Martin v. Löwis68192102007-07-21 06:55:02 +00002017 _PyObject_EXTRA_INIT
2018 1, &PyNotImplemented_Type
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +00002019};
2020
Guido van Rossumba21a492001-08-16 08:17:26 +00002021void
2022_Py_ReadyTypes(void)
2023{
2024 if (PyType_Ready(&PyType_Type) < 0)
2025 Py_FatalError("Can't initialize 'type'");
2026
Fred Drake0a4dd392004-07-02 18:57:45 +00002027 if (PyType_Ready(&_PyWeakref_RefType) < 0)
2028 Py_FatalError("Can't initialize 'weakref'");
2029
Guido van Rossum77f6a652002-04-03 22:41:51 +00002030 if (PyType_Ready(&PyBool_Type) < 0)
2031 Py_FatalError("Can't initialize 'bool'");
2032
Gregory P. Smithdd96db62008-06-09 04:58:54 +00002033 if (PyType_Ready(&PyString_Type) < 0)
Guido van Rossumcacfc072002-05-24 19:01:59 +00002034 Py_FatalError("Can't initialize 'str'");
2035
Christian Heimes3497f942008-05-26 12:29:14 +00002036 if (PyType_Ready(&PyByteArray_Type) < 0)
Christian Heimes1a6387e2008-03-26 12:49:49 +00002037 Py_FatalError("Can't initialize 'bytes'");
2038
Guido van Rossumba21a492001-08-16 08:17:26 +00002039 if (PyType_Ready(&PyList_Type) < 0)
2040 Py_FatalError("Can't initialize 'list'");
2041
2042 if (PyType_Ready(&PyNone_Type) < 0)
2043 Py_FatalError("Can't initialize type(None)");
2044
2045 if (PyType_Ready(&PyNotImplemented_Type) < 0)
2046 Py_FatalError("Can't initialize type(NotImplemented)");
2047}
2048
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002049
Guido van Rossum84a90321996-05-22 16:34:47 +00002050#ifdef Py_TRACE_REFS
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002051
Guido van Rossumaacdc9d1996-08-12 21:32:12 +00002052void
Fred Drake100814d2000-07-09 15:48:49 +00002053_Py_NewReference(PyObject *op)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002054{
Tim Peters34592512002-07-11 06:23:50 +00002055 _Py_INC_REFTOTAL;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002056 op->ob_refcnt = 1;
Tim Peters7571a0f2003-03-23 17:52:28 +00002057 _Py_AddToAllObjects(op, 1);
Tim Peters34592512002-07-11 06:23:50 +00002058 _Py_INC_TPALLOCS(op);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002059}
2060
Guido van Rossumaacdc9d1996-08-12 21:32:12 +00002061void
Fred Drake100814d2000-07-09 15:48:49 +00002062_Py_ForgetReference(register PyObject *op)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002063{
Guido van Rossumbffd6832000-01-20 22:32:56 +00002064#ifdef SLOW_UNREF_CHECK
Guido van Rossum4c08d552000-03-10 22:55:18 +00002065 register PyObject *p;
Guido van Rossumbffd6832000-01-20 22:32:56 +00002066#endif
Guido van Rossumd7047b31995-01-02 19:07:15 +00002067 if (op->ob_refcnt < 0)
Guido van Rossumc0b618a1997-05-02 03:12:38 +00002068 Py_FatalError("UNREF negative refcnt");
Guido van Rossum2e8f6141992-09-03 20:32:55 +00002069 if (op == &refchain ||
Guido van Rossumd7047b31995-01-02 19:07:15 +00002070 op->_ob_prev->_ob_next != op || op->_ob_next->_ob_prev != op)
Guido van Rossumc0b618a1997-05-02 03:12:38 +00002071 Py_FatalError("UNREF invalid object");
Guido van Rossum2e8f6141992-09-03 20:32:55 +00002072#ifdef SLOW_UNREF_CHECK
Guido van Rossum3f5da241990-12-20 15:06:42 +00002073 for (p = refchain._ob_next; p != &refchain; p = p->_ob_next) {
2074 if (p == op)
2075 break;
2076 }
Guido van Rossumd7047b31995-01-02 19:07:15 +00002077 if (p == &refchain) /* Not found */
Guido van Rossumc0b618a1997-05-02 03:12:38 +00002078 Py_FatalError("UNREF unknown object");
Guido van Rossum2e8f6141992-09-03 20:32:55 +00002079#endif
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002080 op->_ob_next->_ob_prev = op->_ob_prev;
2081 op->_ob_prev->_ob_next = op->_ob_next;
Guido van Rossum2e8f6141992-09-03 20:32:55 +00002082 op->_ob_next = op->_ob_prev = NULL;
Tim Peters34592512002-07-11 06:23:50 +00002083 _Py_INC_TPFREES(op);
Guido van Rossum3f5da241990-12-20 15:06:42 +00002084}
2085
Guido van Rossumaacdc9d1996-08-12 21:32:12 +00002086void
Fred Drake100814d2000-07-09 15:48:49 +00002087_Py_Dealloc(PyObject *op)
Guido van Rossum3f5da241990-12-20 15:06:42 +00002088{
Christian Heimese93237d2007-12-19 02:37:44 +00002089 destructor dealloc = Py_TYPE(op)->tp_dealloc;
Guido van Rossumc0b618a1997-05-02 03:12:38 +00002090 _Py_ForgetReference(op);
Guido van Rossum9776adf1994-09-07 14:36:45 +00002091 (*dealloc)(op);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002092}
2093
Tim Peters269b2a62003-04-17 19:52:29 +00002094/* Print all live objects. Because PyObject_Print is called, the
2095 * interpreter must be in a healthy state.
2096 */
Guido van Rossumaacdc9d1996-08-12 21:32:12 +00002097void
Fred Drake100814d2000-07-09 15:48:49 +00002098_Py_PrintReferences(FILE *fp)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002099{
Guido van Rossumc0b618a1997-05-02 03:12:38 +00002100 PyObject *op;
Guido van Rossume09fb551997-08-05 02:04:34 +00002101 fprintf(fp, "Remaining objects:\n");
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002102 for (op = refchain._ob_next; op != &refchain; op = op->_ob_next) {
Tim Peterscbd6f182006-04-11 19:12:33 +00002103 fprintf(fp, "%p [%" PY_FORMAT_SIZE_T "d] ", op, op->ob_refcnt);
Guido van Rossumc0b618a1997-05-02 03:12:38 +00002104 if (PyObject_Print(op, fp, 0) != 0)
2105 PyErr_Clear();
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002106 putc('\n', fp);
2107 }
2108}
2109
Tim Peters269b2a62003-04-17 19:52:29 +00002110/* Print the addresses of all live objects. Unlike _Py_PrintReferences, this
2111 * doesn't make any calls to the Python C API, so is always safe to call.
2112 */
2113void
2114_Py_PrintReferenceAddresses(FILE *fp)
2115{
2116 PyObject *op;
2117 fprintf(fp, "Remaining object addresses:\n");
2118 for (op = refchain._ob_next; op != &refchain; op = op->_ob_next)
Tim Peterscbd6f182006-04-11 19:12:33 +00002119 fprintf(fp, "%p [%" PY_FORMAT_SIZE_T "d] %s\n", op,
Christian Heimese93237d2007-12-19 02:37:44 +00002120 op->ob_refcnt, Py_TYPE(op)->tp_name);
Tim Peters269b2a62003-04-17 19:52:29 +00002121}
2122
Sjoerd Mullender6ec3c651995-08-29 09:18:14 +00002123PyObject *
Fred Drake100814d2000-07-09 15:48:49 +00002124_Py_GetObjects(PyObject *self, PyObject *args)
Sjoerd Mullender6ec3c651995-08-29 09:18:14 +00002125{
2126 int i, n;
2127 PyObject *t = NULL;
2128 PyObject *res, *op;
2129
2130 if (!PyArg_ParseTuple(args, "i|O", &n, &t))
2131 return NULL;
2132 op = refchain._ob_next;
2133 res = PyList_New(0);
2134 if (res == NULL)
2135 return NULL;
2136 for (i = 0; (n == 0 || i < n) && op != &refchain; i++) {
2137 while (op == self || op == args || op == res || op == t ||
Christian Heimese93237d2007-12-19 02:37:44 +00002138 (t != NULL && Py_TYPE(op) != (PyTypeObject *) t)) {
Sjoerd Mullender6ec3c651995-08-29 09:18:14 +00002139 op = op->_ob_next;
2140 if (op == &refchain)
2141 return res;
2142 }
2143 if (PyList_Append(res, op) < 0) {
2144 Py_DECREF(res);
2145 return NULL;
2146 }
2147 op = op->_ob_next;
2148 }
2149 return res;
2150}
2151
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002152#endif
Guido van Rossum97ead3f1996-01-12 01:24:09 +00002153
2154
2155/* Hack to force loading of cobject.o */
Guido van Rossumda9c2711996-12-05 21:58:58 +00002156PyTypeObject *_Py_cobject_hack = &PyCObject_Type;
Guido van Rossum84a90321996-05-22 16:34:47 +00002157
2158
2159/* Hack to force loading of abstract.o */
Martin v. Löwis18e16552006-02-15 17:27:45 +00002160Py_ssize_t (*_Py_abstract_hack)(PyObject *) = PyObject_Size;
Guido van Rossume09fb551997-08-05 02:04:34 +00002161
2162
Andrew M. Kuchling1582a3a2000-08-16 12:27:23 +00002163/* Python's malloc wrappers (see pymem.h) */
Guido van Rossume09fb551997-08-05 02:04:34 +00002164
Thomas Wouters334fb892000-07-25 12:56:38 +00002165void *
Fred Drake100814d2000-07-09 15:48:49 +00002166PyMem_Malloc(size_t nbytes)
Guido van Rossume09fb551997-08-05 02:04:34 +00002167{
Guido van Rossumb18618d2000-05-03 23:44:39 +00002168 return PyMem_MALLOC(nbytes);
Guido van Rossume09fb551997-08-05 02:04:34 +00002169}
2170
Thomas Wouters334fb892000-07-25 12:56:38 +00002171void *
2172PyMem_Realloc(void *p, size_t nbytes)
Guido van Rossume09fb551997-08-05 02:04:34 +00002173{
Tim Petersaf3e8de2002-04-12 07:22:56 +00002174 return PyMem_REALLOC(p, nbytes);
Guido van Rossume09fb551997-08-05 02:04:34 +00002175}
2176
2177void
Thomas Wouters334fb892000-07-25 12:56:38 +00002178PyMem_Free(void *p)
Guido van Rossume09fb551997-08-05 02:04:34 +00002179{
Guido van Rossumb18618d2000-05-03 23:44:39 +00002180 PyMem_FREE(p);
2181}
2182
2183
Guido van Rossum86610361998-04-10 22:32:46 +00002184/* These methods are used to control infinite recursion in repr, str, print,
2185 etc. Container objects that may recursively contain themselves,
2186 e.g. builtin dictionaries and lists, should used Py_ReprEnter() and
2187 Py_ReprLeave() to avoid infinite recursion.
2188
2189 Py_ReprEnter() returns 0 the first time it is called for a particular
2190 object and 1 every time thereafter. It returns -1 if an exception
2191 occurred. Py_ReprLeave() has no return value.
2192
2193 See dictobject.c and listobject.c for examples of use.
2194*/
2195
2196#define KEY "Py_Repr"
2197
2198int
Fred Drake100814d2000-07-09 15:48:49 +00002199Py_ReprEnter(PyObject *obj)
Guido van Rossum86610361998-04-10 22:32:46 +00002200{
2201 PyObject *dict;
2202 PyObject *list;
Martin v. Löwis18e16552006-02-15 17:27:45 +00002203 Py_ssize_t i;
Guido van Rossum86610361998-04-10 22:32:46 +00002204
2205 dict = PyThreadState_GetDict();
2206 if (dict == NULL)
Guido van Rossum0fc8f002003-04-15 15:12:39 +00002207 return 0;
Guido van Rossum86610361998-04-10 22:32:46 +00002208 list = PyDict_GetItemString(dict, KEY);
2209 if (list == NULL) {
2210 list = PyList_New(0);
2211 if (list == NULL)
2212 return -1;
2213 if (PyDict_SetItemString(dict, KEY, list) < 0)
2214 return -1;
2215 Py_DECREF(list);
2216 }
2217 i = PyList_GET_SIZE(list);
2218 while (--i >= 0) {
2219 if (PyList_GET_ITEM(list, i) == obj)
2220 return 1;
2221 }
2222 PyList_Append(list, obj);
2223 return 0;
2224}
2225
2226void
Fred Drake100814d2000-07-09 15:48:49 +00002227Py_ReprLeave(PyObject *obj)
Guido van Rossum86610361998-04-10 22:32:46 +00002228{
2229 PyObject *dict;
2230 PyObject *list;
Martin v. Löwis18e16552006-02-15 17:27:45 +00002231 Py_ssize_t i;
Guido van Rossum86610361998-04-10 22:32:46 +00002232
2233 dict = PyThreadState_GetDict();
Guido van Rossumeb909461998-04-11 15:17:34 +00002234 if (dict == NULL)
2235 return;
Guido van Rossum86610361998-04-10 22:32:46 +00002236 list = PyDict_GetItemString(dict, KEY);
Guido van Rossumeb909461998-04-11 15:17:34 +00002237 if (list == NULL || !PyList_Check(list))
2238 return;
Guido van Rossum86610361998-04-10 22:32:46 +00002239 i = PyList_GET_SIZE(list);
2240 /* Count backwards because we always expect obj to be list[-1] */
2241 while (--i >= 0) {
2242 if (PyList_GET_ITEM(list, i) == obj) {
2243 PyList_SetSlice(list, i, i + 1, NULL);
2244 break;
2245 }
2246 }
2247}
Guido van Rossumd724b232000-03-13 16:01:29 +00002248
Tim Peters803526b2002-07-07 05:13:56 +00002249/* Trashcan support. */
Guido van Rossumd724b232000-03-13 16:01:29 +00002250
Tim Peters803526b2002-07-07 05:13:56 +00002251/* Current call-stack depth of tp_dealloc calls. */
Guido van Rossumd724b232000-03-13 16:01:29 +00002252int _PyTrash_delete_nesting = 0;
Guido van Rossume92e6102000-04-24 15:40:53 +00002253
Tim Peters803526b2002-07-07 05:13:56 +00002254/* List of objects that still need to be cleaned up, singly linked via their
2255 * gc headers' gc_prev pointers.
2256 */
2257PyObject *_PyTrash_delete_later = NULL;
Guido van Rossumd724b232000-03-13 16:01:29 +00002258
Tim Peters803526b2002-07-07 05:13:56 +00002259/* Add op to the _PyTrash_delete_later list. Called when the current
2260 * call-stack depth gets large. op must be a currently untracked gc'ed
2261 * object, with refcount 0. Py_DECREF must already have been called on it.
2262 */
Guido van Rossumd724b232000-03-13 16:01:29 +00002263void
Fred Drake100814d2000-07-09 15:48:49 +00002264_PyTrash_deposit_object(PyObject *op)
Guido van Rossumd724b232000-03-13 16:01:29 +00002265{
Tim Peters803526b2002-07-07 05:13:56 +00002266 assert(PyObject_IS_GC(op));
2267 assert(_Py_AS_GC(op)->gc.gc_refs == _PyGC_REFS_UNTRACKED);
2268 assert(op->ob_refcnt == 0);
Neil Schemenauerf589c052002-03-29 03:05:54 +00002269 _Py_AS_GC(op)->gc.gc_prev = (PyGC_Head *)_PyTrash_delete_later;
Guido van Rossume92e6102000-04-24 15:40:53 +00002270 _PyTrash_delete_later = op;
Guido van Rossumd724b232000-03-13 16:01:29 +00002271}
2272
Tim Peters803526b2002-07-07 05:13:56 +00002273/* Dealloccate all the objects in the _PyTrash_delete_later list. Called when
2274 * the call-stack unwinds again.
2275 */
Guido van Rossumd724b232000-03-13 16:01:29 +00002276void
Fred Drake100814d2000-07-09 15:48:49 +00002277_PyTrash_destroy_chain(void)
Guido van Rossumd724b232000-03-13 16:01:29 +00002278{
2279 while (_PyTrash_delete_later) {
Tim Peters803526b2002-07-07 05:13:56 +00002280 PyObject *op = _PyTrash_delete_later;
Christian Heimese93237d2007-12-19 02:37:44 +00002281 destructor dealloc = Py_TYPE(op)->tp_dealloc;
Neil Schemenauerf589c052002-03-29 03:05:54 +00002282
Neil Schemenauerf589c052002-03-29 03:05:54 +00002283 _PyTrash_delete_later =
Tim Peters803526b2002-07-07 05:13:56 +00002284 (PyObject*) _Py_AS_GC(op)->gc.gc_prev;
Neil Schemenauerf589c052002-03-29 03:05:54 +00002285
Tim Peters803526b2002-07-07 05:13:56 +00002286 /* Call the deallocator directly. This used to try to
2287 * fool Py_DECREF into calling it indirectly, but
2288 * Py_DECREF was already called on this object, and in
2289 * assorted non-release builds calling Py_DECREF again ends
2290 * up distorting allocation statistics.
2291 */
2292 assert(op->ob_refcnt == 0);
Guido van Rossumd724b232000-03-13 16:01:29 +00002293 ++_PyTrash_delete_nesting;
Tim Peters803526b2002-07-07 05:13:56 +00002294 (*dealloc)(op);
Guido van Rossumd724b232000-03-13 16:01:29 +00002295 --_PyTrash_delete_nesting;
2296 }
2297}
Anthony Baxterac6bd462006-04-13 02:06:09 +00002298
2299#ifdef __cplusplus
2300}
2301#endif