blob: 8006fdab4d2be0737ad118d2719581a9136577b2 [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. */
Martin v. Löwisb90304a2009-01-07 18:40:40 +000084static int unlist_types_without_objects;
85extern Py_ssize_t tuple_zero_allocs, fast_tuple_allocs;
86extern Py_ssize_t quick_int_allocs, quick_neg_int_allocs;
87extern Py_ssize_t 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öwisb90304a2009-01-07 18:40:40 +000094 fprintf(f, "%s alloc'd: %" PY_FORMAT_SIZE_T "d, "
95 "freed: %" PY_FORMAT_SIZE_T "d, "
96 "max in use: %" PY_FORMAT_SIZE_T "d\n",
Tim Peters6d6c1a32001-08-02 04:15:00 +000097 tp->tp_name, tp->tp_allocs, tp->tp_frees,
Sjoerd Mullender52c1f511993-10-25 08:40:52 +000098 tp->tp_maxalloc);
Martin v. Löwisb90304a2009-01-07 18:40:40 +000099 fprintf(f, "fast tuple allocs: %" PY_FORMAT_SIZE_T "d, "
100 "empty: %" PY_FORMAT_SIZE_T "d\n",
Sjoerd Mullender52c1f511993-10-25 08:40:52 +0000101 fast_tuple_allocs, tuple_zero_allocs);
Martin v. Löwisb90304a2009-01-07 18:40:40 +0000102 fprintf(f, "fast int allocs: pos: %" PY_FORMAT_SIZE_T "d, "
103 "neg: %" PY_FORMAT_SIZE_T "d\n",
Sjoerd Mullender52c1f511993-10-25 08:40:52 +0000104 quick_int_allocs, quick_neg_int_allocs);
Martin v. Löwisb90304a2009-01-07 18:40:40 +0000105 fprintf(f, "null strings: %" PY_FORMAT_SIZE_T "d, "
106 "1-strings: %" PY_FORMAT_SIZE_T "d\n",
Sjoerd Mullender52c1f511993-10-25 08:40:52 +0000107 null_strings, one_strings);
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +0000108}
109
Sjoerd Mullender6ec3c651995-08-29 09:18:14 +0000110PyObject *
Fred Drake100814d2000-07-09 15:48:49 +0000111get_counts(void)
Sjoerd Mullender6ec3c651995-08-29 09:18:14 +0000112{
113 PyTypeObject *tp;
114 PyObject *result;
115 PyObject *v;
116
117 result = PyList_New(0);
118 if (result == NULL)
119 return NULL;
120 for (tp = type_list; tp; tp = tp->tp_next) {
Georg Brandl2cfaa342006-05-29 19:39:45 +0000121 v = Py_BuildValue("(snnn)", tp->tp_name, tp->tp_allocs,
Tim Peters6d6c1a32001-08-02 04:15:00 +0000122 tp->tp_frees, tp->tp_maxalloc);
Sjoerd Mullender6ec3c651995-08-29 09:18:14 +0000123 if (v == NULL) {
124 Py_DECREF(result);
125 return NULL;
126 }
127 if (PyList_Append(result, v) < 0) {
128 Py_DECREF(v);
129 Py_DECREF(result);
130 return NULL;
131 }
132 Py_DECREF(v);
133 }
134 return result;
135}
136
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +0000137void
Fred Drake100814d2000-07-09 15:48:49 +0000138inc_count(PyTypeObject *tp)
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +0000139{
Martin v. Löwis45294a92006-04-18 06:24:08 +0000140 if (tp->tp_next == NULL && tp->tp_prev == NULL) {
Guido van Rossumd8953cb1995-04-06 14:46:26 +0000141 /* first time; insert in linked list */
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +0000142 if (tp->tp_next != NULL) /* sanity check */
Guido van Rossumc0b618a1997-05-02 03:12:38 +0000143 Py_FatalError("XXX inc_count sanity check");
Martin v. Löwis45294a92006-04-18 06:24:08 +0000144 if (type_list)
145 type_list->tp_prev = tp;
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +0000146 tp->tp_next = type_list;
Tim Petersc6a3ff62002-07-08 22:11:52 +0000147 /* Note that as of Python 2.2, heap-allocated type objects
148 * can go away, but this code requires that they stay alive
149 * until program exit. That's why we're careful with
150 * refcounts here. type_list gets a new reference to tp,
151 * while ownership of the reference type_list used to hold
152 * (if any) was transferred to tp->tp_next in the line above.
153 * tp is thus effectively immortal after this.
154 */
155 Py_INCREF(tp);
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +0000156 type_list = tp;
Tim Peters3e40c7f2003-03-23 03:04:32 +0000157#ifdef Py_TRACE_REFS
Tim Peters7571a0f2003-03-23 17:52:28 +0000158 /* Also insert in the doubly-linked list of all objects,
159 * if not already there.
160 */
161 _Py_AddToAllObjects((PyObject *)tp, 0);
Tim Peters78be7992003-03-23 02:51:01 +0000162#endif
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +0000163 }
Tim Peters6d6c1a32001-08-02 04:15:00 +0000164 tp->tp_allocs++;
165 if (tp->tp_allocs - tp->tp_frees > tp->tp_maxalloc)
166 tp->tp_maxalloc = tp->tp_allocs - tp->tp_frees;
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +0000167}
Martin v. Löwis45294a92006-04-18 06:24:08 +0000168
169void dec_count(PyTypeObject *tp)
170{
171 tp->tp_frees++;
172 if (unlist_types_without_objects &&
173 tp->tp_allocs == tp->tp_frees) {
174 /* unlink the type from type_list */
175 if (tp->tp_prev)
176 tp->tp_prev->tp_next = tp->tp_next;
177 else
178 type_list = tp->tp_next;
179 if (tp->tp_next)
180 tp->tp_next->tp_prev = tp->tp_prev;
181 tp->tp_next = tp->tp_prev = NULL;
182 Py_DECREF(tp);
183 }
184}
185
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +0000186#endif
187
Tim Peters7c321a82002-07-09 02:57:01 +0000188#ifdef Py_REF_DEBUG
189/* Log a fatal error; doesn't return. */
190void
191_Py_NegativeRefcount(const char *fname, int lineno, PyObject *op)
192{
193 char buf[300];
194
195 PyOS_snprintf(buf, sizeof(buf),
Tim Peters4d073bb2006-03-23 05:38:33 +0000196 "%s:%i object at %p has negative ref count "
197 "%" PY_FORMAT_SIZE_T "d",
Tim Peters8af92d12006-03-23 05:41:24 +0000198 fname, lineno, op, op->ob_refcnt);
Tim Peters7c321a82002-07-09 02:57:01 +0000199 Py_FatalError(buf);
200}
201
202#endif /* Py_REF_DEBUG */
203
Thomas Heller1328b522004-04-22 17:23:49 +0000204void
205Py_IncRef(PyObject *o)
206{
207 Py_XINCREF(o);
208}
209
210void
211Py_DecRef(PyObject *o)
212{
213 Py_XDECREF(o);
214}
215
Guido van Rossumc0b618a1997-05-02 03:12:38 +0000216PyObject *
Fred Drake100814d2000-07-09 15:48:49 +0000217PyObject_Init(PyObject *op, PyTypeObject *tp)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000218{
Guido van Rossum6e08c142002-10-11 20:37:24 +0000219 if (op == NULL)
220 return PyErr_NoMemory();
Guido van Rossumb18618d2000-05-03 23:44:39 +0000221 /* Any changes should be reflected in PyObject_INIT (objimpl.h) */
Christian Heimese93237d2007-12-19 02:37:44 +0000222 Py_TYPE(op) = tp;
Guido van Rossumc0b618a1997-05-02 03:12:38 +0000223 _Py_NewReference(op);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000224 return op;
225}
226
Guido van Rossumb18618d2000-05-03 23:44:39 +0000227PyVarObject *
Martin v. Löwis18e16552006-02-15 17:27:45 +0000228PyObject_InitVar(PyVarObject *op, PyTypeObject *tp, Py_ssize_t size)
Guido van Rossumb18618d2000-05-03 23:44:39 +0000229{
Guido van Rossum6e08c142002-10-11 20:37:24 +0000230 if (op == NULL)
231 return (PyVarObject *) PyErr_NoMemory();
Guido van Rossumb18618d2000-05-03 23:44:39 +0000232 /* Any changes should be reflected in PyObject_INIT_VAR */
233 op->ob_size = size;
Christian Heimese93237d2007-12-19 02:37:44 +0000234 Py_TYPE(op) = tp;
Guido van Rossumb18618d2000-05-03 23:44:39 +0000235 _Py_NewReference((PyObject *)op);
236 return op;
237}
238
239PyObject *
Fred Drake100814d2000-07-09 15:48:49 +0000240_PyObject_New(PyTypeObject *tp)
Guido van Rossumb18618d2000-05-03 23:44:39 +0000241{
242 PyObject *op;
243 op = (PyObject *) PyObject_MALLOC(_PyObject_SIZE(tp));
244 if (op == NULL)
245 return PyErr_NoMemory();
246 return PyObject_INIT(op, tp);
247}
248
Guido van Rossumd0c87ee1997-05-15 21:31:03 +0000249PyVarObject *
Martin v. Löwis18e16552006-02-15 17:27:45 +0000250_PyObject_NewVar(PyTypeObject *tp, Py_ssize_t nitems)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000251{
Guido van Rossumb18618d2000-05-03 23:44:39 +0000252 PyVarObject *op;
Tim Petersf2a67da2001-10-07 03:54:51 +0000253 const size_t size = _PyObject_VAR_SIZE(tp, nitems);
Tim Peters6d483d32001-10-06 21:27:34 +0000254 op = (PyVarObject *) PyObject_MALLOC(size);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000255 if (op == NULL)
Guido van Rossumd0c87ee1997-05-15 21:31:03 +0000256 return (PyVarObject *)PyErr_NoMemory();
Tim Peters6d483d32001-10-06 21:27:34 +0000257 return PyObject_INIT_VAR(op, tp, nitems);
Guido van Rossumb18618d2000-05-03 23:44:39 +0000258}
259
Neil Schemenauerbdf0eed2002-04-12 03:08:42 +0000260/* for binary compatibility with 2.2 */
261#undef _PyObject_Del
Guido van Rossumb18618d2000-05-03 23:44:39 +0000262void
Fred Drake100814d2000-07-09 15:48:49 +0000263_PyObject_Del(PyObject *op)
Guido van Rossumb18618d2000-05-03 23:44:39 +0000264{
Guido van Rossum4cc6ac72000-07-01 01:00:38 +0000265 PyObject_FREE(op);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000266}
267
Neal Norwitz1a997502003-01-13 20:13:12 +0000268/* Implementation of PyObject_Print with recursion checking */
269static int
270internal_print(PyObject *op, FILE *fp, int flags, int nesting)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000271{
Guido van Rossum278ef591991-07-27 21:40:24 +0000272 int ret = 0;
Neal Norwitz1a997502003-01-13 20:13:12 +0000273 if (nesting > 10) {
274 PyErr_SetString(PyExc_RuntimeError, "print recursion");
275 return -1;
276 }
Guido van Rossumc0b618a1997-05-02 03:12:38 +0000277 if (PyErr_CheckSignals())
Guido van Rossum90933611991-06-07 16:10:43 +0000278 return -1;
Guido van Rossum9b00dfa1998-04-28 16:06:54 +0000279#ifdef USE_STACKCHECK
280 if (PyOS_CheckStack()) {
Fred Drake661ea262000-10-24 19:57:45 +0000281 PyErr_SetString(PyExc_MemoryError, "stack overflow");
Guido van Rossum9b00dfa1998-04-28 16:06:54 +0000282 return -1;
283 }
284#endif
Guido van Rossum687ef6e2000-01-12 16:28:58 +0000285 clearerr(fp); /* Clear any previous error condition */
Guido van Rossum90933611991-06-07 16:10:43 +0000286 if (op == NULL) {
Brett Cannon01531592007-09-17 03:28:34 +0000287 Py_BEGIN_ALLOW_THREADS
Guido van Rossum90933611991-06-07 16:10:43 +0000288 fprintf(fp, "<nil>");
Brett Cannon01531592007-09-17 03:28:34 +0000289 Py_END_ALLOW_THREADS
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000290 }
Guido van Rossum90933611991-06-07 16:10:43 +0000291 else {
292 if (op->ob_refcnt <= 0)
Thomas Wouters8b87a0b2006-03-01 05:41:20 +0000293 /* XXX(twouters) cast refcount to long until %zd is
294 universally available */
Brett Cannon01531592007-09-17 03:28:34 +0000295 Py_BEGIN_ALLOW_THREADS
Thomas Wouters8b87a0b2006-03-01 05:41:20 +0000296 fprintf(fp, "<refcnt %ld at %p>",
297 (long)op->ob_refcnt, op);
Brett Cannon01531592007-09-17 03:28:34 +0000298 Py_END_ALLOW_THREADS
Christian Heimese93237d2007-12-19 02:37:44 +0000299 else if (Py_TYPE(op)->tp_print == NULL) {
Guido van Rossum4f288ab2001-05-01 16:53:37 +0000300 PyObject *s;
301 if (flags & Py_PRINT_RAW)
302 s = PyObject_Str(op);
303 else
304 s = PyObject_Repr(op);
305 if (s == NULL)
306 ret = -1;
Guido van Rossum2e8f6141992-09-03 20:32:55 +0000307 else {
Neal Norwitz1a997502003-01-13 20:13:12 +0000308 ret = internal_print(s, fp, Py_PRINT_RAW,
309 nesting+1);
Guido van Rossum2e8f6141992-09-03 20:32:55 +0000310 }
Guido van Rossum4f288ab2001-05-01 16:53:37 +0000311 Py_XDECREF(s);
Guido van Rossum2e8f6141992-09-03 20:32:55 +0000312 }
Guido van Rossum90933611991-06-07 16:10:43 +0000313 else
Christian Heimese93237d2007-12-19 02:37:44 +0000314 ret = (*Py_TYPE(op)->tp_print)(op, fp, flags);
Guido van Rossum90933611991-06-07 16:10:43 +0000315 }
Guido van Rossum278ef591991-07-27 21:40:24 +0000316 if (ret == 0) {
317 if (ferror(fp)) {
Guido van Rossumc0b618a1997-05-02 03:12:38 +0000318 PyErr_SetFromErrno(PyExc_IOError);
Guido van Rossum278ef591991-07-27 21:40:24 +0000319 clearerr(fp);
320 ret = -1;
321 }
322 }
323 return ret;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000324}
325
Neal Norwitz1a997502003-01-13 20:13:12 +0000326int
327PyObject_Print(PyObject *op, FILE *fp, int flags)
328{
329 return internal_print(op, fp, flags, 0);
330}
331
332
Barry Warsaw9bf16442001-01-23 16:24:35 +0000333/* For debugging convenience. See Misc/gdbinit for some useful gdb hooks */
Tim Peters803526b2002-07-07 05:13:56 +0000334void _PyObject_Dump(PyObject* op)
Barry Warsaw9bf16442001-01-23 16:24:35 +0000335{
Barry Warsaweefb1072001-02-22 22:39:18 +0000336 if (op == NULL)
337 fprintf(stderr, "NULL\n");
338 else {
Amaury Forgeot d'Arc3538a312008-12-15 22:29:14 +0000339 PyGILState_STATE gil;
Guido van Rossum5f5512d2001-09-14 15:50:08 +0000340 fprintf(stderr, "object : ");
Amaury Forgeot d'Arc3538a312008-12-15 22:29:14 +0000341 gil = PyGILState_Ensure();
Barry Warsaweefb1072001-02-22 22:39:18 +0000342 (void)PyObject_Print(op, stderr, 0);
Amaury Forgeot d'Arc3538a312008-12-15 22:29:14 +0000343 PyGILState_Release(gil);
Thomas Wouters8b87a0b2006-03-01 05:41:20 +0000344 /* XXX(twouters) cast refcount to long until %zd is
345 universally available */
Guido van Rossum5f5512d2001-09-14 15:50:08 +0000346 fprintf(stderr, "\n"
347 "type : %s\n"
Thomas Wouters8b87a0b2006-03-01 05:41:20 +0000348 "refcount: %ld\n"
Guido van Rossum5f5512d2001-09-14 15:50:08 +0000349 "address : %p\n",
Christian Heimese93237d2007-12-19 02:37:44 +0000350 Py_TYPE(op)==NULL ? "NULL" : Py_TYPE(op)->tp_name,
Thomas Wouters8b87a0b2006-03-01 05:41:20 +0000351 (long)op->ob_refcnt,
Guido van Rossum5f5512d2001-09-14 15:50:08 +0000352 op);
Barry Warsaweefb1072001-02-22 22:39:18 +0000353 }
Barry Warsaw9bf16442001-01-23 16:24:35 +0000354}
Barry Warsaw903138f2001-01-23 16:33:18 +0000355
Guido van Rossumc0b618a1997-05-02 03:12:38 +0000356PyObject *
Fred Drake100814d2000-07-09 15:48:49 +0000357PyObject_Repr(PyObject *v)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000358{
Guido van Rossumc0b618a1997-05-02 03:12:38 +0000359 if (PyErr_CheckSignals())
Guido van Rossum90933611991-06-07 16:10:43 +0000360 return NULL;
Guido van Rossum9b00dfa1998-04-28 16:06:54 +0000361#ifdef USE_STACKCHECK
362 if (PyOS_CheckStack()) {
Fred Drake661ea262000-10-24 19:57:45 +0000363 PyErr_SetString(PyExc_MemoryError, "stack overflow");
Guido van Rossum9b00dfa1998-04-28 16:06:54 +0000364 return NULL;
365 }
366#endif
Guido van Rossum90933611991-06-07 16:10:43 +0000367 if (v == NULL)
Gregory P. Smithdd96db62008-06-09 04:58:54 +0000368 return PyString_FromString("<NULL>");
Christian Heimese93237d2007-12-19 02:37:44 +0000369 else if (Py_TYPE(v)->tp_repr == NULL)
Gregory P. Smithdd96db62008-06-09 04:58:54 +0000370 return PyString_FromFormat("<%s object at %p>",
Christian Heimese93237d2007-12-19 02:37:44 +0000371 Py_TYPE(v)->tp_name, v);
Guido van Rossum4c08d552000-03-10 22:55:18 +0000372 else {
373 PyObject *res;
Christian Heimese93237d2007-12-19 02:37:44 +0000374 res = (*Py_TYPE(v)->tp_repr)(v);
Guido van Rossum4c08d552000-03-10 22:55:18 +0000375 if (res == NULL)
376 return NULL;
Martin v. Löwis339d0f72001-08-17 18:39:25 +0000377#ifdef Py_USING_UNICODE
Fredrik Lundhefecc7d2000-07-01 14:31:09 +0000378 if (PyUnicode_Check(res)) {
379 PyObject* str;
Anthony Baxter262c00a2006-03-30 10:53:17 +0000380 str = PyUnicode_AsEncodedString(res, NULL, NULL);
Marc-André Lemburg891bc652000-07-03 09:57:53 +0000381 Py_DECREF(res);
382 if (str)
Fredrik Lundhefecc7d2000-07-01 14:31:09 +0000383 res = str;
Marc-André Lemburg891bc652000-07-03 09:57:53 +0000384 else
385 return NULL;
Fredrik Lundhefecc7d2000-07-01 14:31:09 +0000386 }
Martin v. Löwis339d0f72001-08-17 18:39:25 +0000387#endif
Gregory P. Smithdd96db62008-06-09 04:58:54 +0000388 if (!PyString_Check(res)) {
Guido van Rossum4c08d552000-03-10 22:55:18 +0000389 PyErr_Format(PyExc_TypeError,
Guido van Rossum5db862d2000-04-10 12:46:51 +0000390 "__repr__ returned non-string (type %.200s)",
Christian Heimese93237d2007-12-19 02:37:44 +0000391 Py_TYPE(res)->tp_name);
Guido van Rossum4c08d552000-03-10 22:55:18 +0000392 Py_DECREF(res);
393 return NULL;
394 }
395 return res;
396 }
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000397}
398
Guido van Rossumc0b618a1997-05-02 03:12:38 +0000399PyObject *
Neil Schemenauercf52c072005-08-12 17:34:58 +0000400_PyObject_Str(PyObject *v)
Guido van Rossumc6004111993-11-05 10:22:19 +0000401{
Guido van Rossum4c08d552000-03-10 22:55:18 +0000402 PyObject *res;
Neil Schemenauercf52c072005-08-12 17:34:58 +0000403 int type_ok;
Guido van Rossumc6004111993-11-05 10:22:19 +0000404 if (v == NULL)
Gregory P. Smithdd96db62008-06-09 04:58:54 +0000405 return PyString_FromString("<NULL>");
406 if (PyString_CheckExact(v)) {
Guido van Rossumc0b618a1997-05-02 03:12:38 +0000407 Py_INCREF(v);
Guido van Rossumc6004111993-11-05 10:22:19 +0000408 return v;
409 }
Neil Schemenauercf52c072005-08-12 17:34:58 +0000410#ifdef Py_USING_UNICODE
411 if (PyUnicode_CheckExact(v)) {
412 Py_INCREF(v);
413 return v;
414 }
415#endif
Christian Heimese93237d2007-12-19 02:37:44 +0000416 if (Py_TYPE(v)->tp_str == NULL)
Guido van Rossum4f288ab2001-05-01 16:53:37 +0000417 return PyObject_Repr(v);
418
Brett Cannon0b14f242007-09-30 19:45:10 +0000419 /* It is possible for a type to have a tp_str representation that loops
420 infinitely. */
421 if (Py_EnterRecursiveCall(" while getting the str of an object"))
422 return NULL;
Christian Heimese93237d2007-12-19 02:37:44 +0000423 res = (*Py_TYPE(v)->tp_str)(v);
Brett Cannon0b14f242007-09-30 19:45:10 +0000424 Py_LeaveRecursiveCall();
Guido van Rossum4c08d552000-03-10 22:55:18 +0000425 if (res == NULL)
426 return NULL;
Gregory P. Smithdd96db62008-06-09 04:58:54 +0000427 type_ok = PyString_Check(res);
Neil Schemenauercf52c072005-08-12 17:34:58 +0000428#ifdef Py_USING_UNICODE
429 type_ok = type_ok || PyUnicode_Check(res);
430#endif
431 if (!type_ok) {
432 PyErr_Format(PyExc_TypeError,
433 "__str__ returned non-string (type %.200s)",
Christian Heimese93237d2007-12-19 02:37:44 +0000434 Py_TYPE(res)->tp_name);
Neil Schemenauercf52c072005-08-12 17:34:58 +0000435 Py_DECREF(res);
436 return NULL;
437 }
438 return res;
439}
440
441PyObject *
442PyObject_Str(PyObject *v)
443{
444 PyObject *res = _PyObject_Str(v);
445 if (res == NULL)
446 return NULL;
Martin v. Löwis339d0f72001-08-17 18:39:25 +0000447#ifdef Py_USING_UNICODE
Marc-André Lemburg891bc652000-07-03 09:57:53 +0000448 if (PyUnicode_Check(res)) {
449 PyObject* str;
450 str = PyUnicode_AsEncodedString(res, NULL, NULL);
451 Py_DECREF(res);
452 if (str)
453 res = str;
454 else
455 return NULL;
456 }
Martin v. Löwis339d0f72001-08-17 18:39:25 +0000457#endif
Gregory P. Smithdd96db62008-06-09 04:58:54 +0000458 assert(PyString_Check(res));
Guido van Rossum4c08d552000-03-10 22:55:18 +0000459 return res;
Guido van Rossumc6004111993-11-05 10:22:19 +0000460}
461
Martin v. Löwis339d0f72001-08-17 18:39:25 +0000462#ifdef Py_USING_UNICODE
Guido van Rossuma3af41d2001-01-18 22:07:06 +0000463PyObject *
464PyObject_Unicode(PyObject *v)
465{
466 PyObject *res;
Brett Cannonc3647ac2005-04-26 03:45:26 +0000467 PyObject *func;
Neal Norwitz75801462006-03-14 06:02:16 +0000468 PyObject *str;
Nick Coghlan524b7772008-07-08 14:08:04 +0000469 int unicode_method_found = 0;
Brett Cannonc3647ac2005-04-26 03:45:26 +0000470 static PyObject *unicodestr;
Tim Peters803526b2002-07-07 05:13:56 +0000471
Georg Brandl3daf7582006-03-13 22:22:11 +0000472 if (v == NULL) {
Gregory P. Smithdd96db62008-06-09 04:58:54 +0000473 res = PyString_FromString("<NULL>");
Neal Norwitz75801462006-03-14 06:02:16 +0000474 if (res == NULL)
475 return NULL;
476 str = PyUnicode_FromEncodedObject(res, NULL, "strict");
477 Py_DECREF(res);
478 return str;
Georg Brandl3daf7582006-03-13 22:22:11 +0000479 } else if (PyUnicode_CheckExact(v)) {
Guido van Rossuma3af41d2001-01-18 22:07:06 +0000480 Py_INCREF(v);
481 return v;
482 }
Nick Coghlan524b7772008-07-08 14:08:04 +0000483
484 /* Try the __unicode__ method */
Brett Cannonc3647ac2005-04-26 03:45:26 +0000485 if (unicodestr == NULL) {
Gregory P. Smithdd96db62008-06-09 04:58:54 +0000486 unicodestr= PyString_InternFromString("__unicode__");
Brett Cannonc3647ac2005-04-26 03:45:26 +0000487 if (unicodestr == NULL)
488 return NULL;
Guido van Rossumb8c65bc2001-10-19 02:01:31 +0000489 }
Nick Coghlan524b7772008-07-08 14:08:04 +0000490 if (PyInstance_Check(v)) {
491 /* We're an instance of a classic class */
492 /* Try __unicode__ from the instance -- alas we have no type */
493 func = PyObject_GetAttr(v, unicodestr);
494 if (func != NULL) {
495 unicode_method_found = 1;
496 res = PyObject_CallFunctionObjArgs(func, NULL);
497 Py_DECREF(func);
498 }
499 else {
500 PyErr_Clear();
501 }
Brett Cannonc3647ac2005-04-26 03:45:26 +0000502 }
Guido van Rossuma3af41d2001-01-18 22:07:06 +0000503 else {
Nick Coghlan524b7772008-07-08 14:08:04 +0000504 /* Not a classic class instance, try __unicode__ from type */
505 /* _PyType_Lookup doesn't create a reference */
506 func = _PyType_Lookup(Py_TYPE(v), unicodestr);
507 if (func != NULL) {
508 unicode_method_found = 1;
509 res = PyObject_CallFunctionObjArgs(func, v, NULL);
510 }
511 else {
512 PyErr_Clear();
513 }
514 }
515
516 /* Didn't find __unicode__ */
517 if (!unicode_method_found) {
Brett Cannonc3647ac2005-04-26 03:45:26 +0000518 if (PyUnicode_Check(v)) {
519 /* For a Unicode subtype that's didn't overwrite __unicode__,
520 return a true Unicode object with the same data. */
521 return PyUnicode_FromUnicode(PyUnicode_AS_UNICODE(v),
Nick Coghlan524b7772008-07-08 14:08:04 +0000522 PyUnicode_GET_SIZE(v));
Guido van Rossuma3af41d2001-01-18 22:07:06 +0000523 }
Gregory P. Smithdd96db62008-06-09 04:58:54 +0000524 if (PyString_CheckExact(v)) {
Brett Cannonc3647ac2005-04-26 03:45:26 +0000525 Py_INCREF(v);
526 res = v;
Guido van Rossuma3af41d2001-01-18 22:07:06 +0000527 }
Guido van Rossumb8c65bc2001-10-19 02:01:31 +0000528 else {
Christian Heimese93237d2007-12-19 02:37:44 +0000529 if (Py_TYPE(v)->tp_str != NULL)
530 res = (*Py_TYPE(v)->tp_str)(v);
Guido van Rossumb8c65bc2001-10-19 02:01:31 +0000531 else
532 res = PyObject_Repr(v);
533 }
Guido van Rossuma3af41d2001-01-18 22:07:06 +0000534 }
Nick Coghlan524b7772008-07-08 14:08:04 +0000535
Guido van Rossuma3af41d2001-01-18 22:07:06 +0000536 if (res == NULL)
537 return NULL;
538 if (!PyUnicode_Check(res)) {
Guido van Rossumb8c65bc2001-10-19 02:01:31 +0000539 str = PyUnicode_FromEncodedObject(res, NULL, "strict");
Guido van Rossuma3af41d2001-01-18 22:07:06 +0000540 Py_DECREF(res);
Neal Norwitz75801462006-03-14 06:02:16 +0000541 res = str;
Guido van Rossuma3af41d2001-01-18 22:07:06 +0000542 }
543 return res;
544}
Martin v. Löwis339d0f72001-08-17 18:39:25 +0000545#endif
Guido van Rossuma3af41d2001-01-18 22:07:06 +0000546
547
Guido van Rossuma4073002002-05-31 20:03:54 +0000548/* Helper to warn about deprecated tp_compare return values. Return:
549 -2 for an exception;
550 -1 if v < w;
551 0 if v == w;
552 1 if v > w.
553 (This function cannot return 2.)
554*/
555static int
556adjust_tp_compare(int c)
557{
558 if (PyErr_Occurred()) {
559 if (c != -1 && c != -2) {
560 PyObject *t, *v, *tb;
561 PyErr_Fetch(&t, &v, &tb);
562 if (PyErr_Warn(PyExc_RuntimeWarning,
563 "tp_compare didn't return -1 or -2 "
564 "for exception") < 0) {
565 Py_XDECREF(t);
566 Py_XDECREF(v);
567 Py_XDECREF(tb);
568 }
569 else
570 PyErr_Restore(t, v, tb);
571 }
572 return -2;
573 }
574 else if (c < -1 || c > 1) {
575 if (PyErr_Warn(PyExc_RuntimeWarning,
576 "tp_compare didn't return -1, 0 or 1") < 0)
577 return -2;
578 else
579 return c < -1 ? -1 : 1;
580 }
581 else {
582 assert(c >= -1 && c <= 1);
583 return c;
584 }
585}
586
587
Guido van Rossumd1f06b92001-01-24 22:14:43 +0000588/* Macro to get the tp_richcompare field of a type if defined */
589#define RICHCOMPARE(t) (PyType_HasFeature((t), Py_TPFLAGS_HAVE_RICHCOMPARE) \
590 ? (t)->tp_richcompare : NULL)
591
Guido van Rossume797ec12001-01-17 15:24:28 +0000592/* Map rich comparison operators to their swapped version, e.g. LT --> GT */
Brett Cannona5ca2e72004-09-25 01:37:24 +0000593int _Py_SwappedOp[] = {Py_GT, Py_GE, Py_EQ, Py_NE, Py_LT, Py_LE};
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +0000594
Guido van Rossume797ec12001-01-17 15:24:28 +0000595/* Try a genuine rich comparison, returning an object. Return:
596 NULL for exception;
597 NotImplemented if this particular rich comparison is not implemented or
598 undefined;
599 some object not equal to NotImplemented if it is implemented
600 (this latter object may not be a Boolean).
601*/
602static PyObject *
603try_rich_compare(PyObject *v, PyObject *w, int op)
604{
605 richcmpfunc f;
606 PyObject *res;
607
Guido van Rossum2ed6bf82001-09-27 20:30:07 +0000608 if (v->ob_type != w->ob_type &&
609 PyType_IsSubtype(w->ob_type, v->ob_type) &&
610 (f = RICHCOMPARE(w->ob_type)) != NULL) {
Tim Petersf4aca752004-09-23 02:39:37 +0000611 res = (*f)(w, v, _Py_SwappedOp[op]);
Guido van Rossum2ed6bf82001-09-27 20:30:07 +0000612 if (res != Py_NotImplemented)
613 return res;
614 Py_DECREF(res);
615 }
Guido van Rossumd1f06b92001-01-24 22:14:43 +0000616 if ((f = RICHCOMPARE(v->ob_type)) != NULL) {
Guido van Rossume797ec12001-01-17 15:24:28 +0000617 res = (*f)(v, w, op);
618 if (res != Py_NotImplemented)
619 return res;
620 Py_DECREF(res);
621 }
Guido van Rossumd1f06b92001-01-24 22:14:43 +0000622 if ((f = RICHCOMPARE(w->ob_type)) != NULL) {
Tim Petersf4aca752004-09-23 02:39:37 +0000623 return (*f)(w, v, _Py_SwappedOp[op]);
Guido van Rossume797ec12001-01-17 15:24:28 +0000624 }
625 res = Py_NotImplemented;
626 Py_INCREF(res);
627 return res;
628}
629
630/* Try a genuine rich comparison, returning an int. Return:
631 -1 for exception (including the case where try_rich_compare() returns an
632 object that's not a Boolean);
Tim Petersc99213f2001-11-04 05:57:16 +0000633 0 if the outcome is false;
634 1 if the outcome is true;
635 2 if this particular rich comparison is not implemented or undefined.
Guido van Rossume797ec12001-01-17 15:24:28 +0000636*/
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +0000637static int
Guido van Rossume797ec12001-01-17 15:24:28 +0000638try_rich_compare_bool(PyObject *v, PyObject *w, int op)
639{
640 PyObject *res;
641 int ok;
642
Guido van Rossumd1f06b92001-01-24 22:14:43 +0000643 if (RICHCOMPARE(v->ob_type) == NULL && RICHCOMPARE(w->ob_type) == NULL)
Guido van Rossume797ec12001-01-17 15:24:28 +0000644 return 2; /* Shortcut, avoid INCREF+DECREF */
645 res = try_rich_compare(v, w, op);
646 if (res == NULL)
647 return -1;
648 if (res == Py_NotImplemented) {
649 Py_DECREF(res);
650 return 2;
651 }
652 ok = PyObject_IsTrue(res);
653 Py_DECREF(res);
654 return ok;
655}
656
657/* Try rich comparisons to determine a 3-way comparison. Return:
658 -2 for an exception;
Tim Petersc99213f2001-11-04 05:57:16 +0000659 -1 if v < w;
660 0 if v == w;
661 1 if v > w;
662 2 if this particular rich comparison is not implemented or undefined.
Guido van Rossume797ec12001-01-17 15:24:28 +0000663*/
664static int
665try_rich_to_3way_compare(PyObject *v, PyObject *w)
666{
Guido van Rossum2ffbf6b2001-01-17 21:27:02 +0000667 static struct { int op; int outcome; } tries[3] = {
668 /* Try this operator, and if it is true, use this outcome: */
669 {Py_EQ, 0},
670 {Py_LT, -1},
671 {Py_GT, 1},
672 };
673 int i;
674
Guido van Rossumd1f06b92001-01-24 22:14:43 +0000675 if (RICHCOMPARE(v->ob_type) == NULL && RICHCOMPARE(w->ob_type) == NULL)
Guido van Rossume797ec12001-01-17 15:24:28 +0000676 return 2; /* Shortcut */
Guido van Rossum2ffbf6b2001-01-17 21:27:02 +0000677
678 for (i = 0; i < 3; i++) {
679 switch (try_rich_compare_bool(v, w, tries[i].op)) {
680 case -1:
Tim Peters6d60b2e2001-05-07 20:53:51 +0000681 return -2;
Guido van Rossum2ffbf6b2001-01-17 21:27:02 +0000682 case 1:
683 return tries[i].outcome;
684 }
Guido van Rossume797ec12001-01-17 15:24:28 +0000685 }
Guido van Rossum2ffbf6b2001-01-17 21:27:02 +0000686
687 return 2;
Guido van Rossume797ec12001-01-17 15:24:28 +0000688}
689
690/* Try a 3-way comparison, returning an int. Return:
691 -2 for an exception;
Tim Petersc99213f2001-11-04 05:57:16 +0000692 -1 if v < w;
693 0 if v == w;
694 1 if v > w;
695 2 if this particular 3-way comparison is not implemented or undefined.
Guido van Rossume797ec12001-01-17 15:24:28 +0000696*/
697static int
698try_3way_compare(PyObject *v, PyObject *w)
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +0000699{
700 int c;
Guido van Rossume797ec12001-01-17 15:24:28 +0000701 cmpfunc f;
702
703 /* Comparisons involving instances are given to instance_compare,
704 which has the same return conventions as this function. */
705
Guido van Rossumab3b0342001-09-18 20:38:53 +0000706 f = v->ob_type->tp_compare;
Guido van Rossume797ec12001-01-17 15:24:28 +0000707 if (PyInstance_Check(v))
Guido van Rossumab3b0342001-09-18 20:38:53 +0000708 return (*f)(v, w);
Guido van Rossume797ec12001-01-17 15:24:28 +0000709 if (PyInstance_Check(w))
710 return (*w->ob_type->tp_compare)(v, w);
711
Guido van Rossumab3b0342001-09-18 20:38:53 +0000712 /* If both have the same (non-NULL) tp_compare, use it. */
713 if (f != NULL && f == w->ob_type->tp_compare) {
714 c = (*f)(v, w);
Guido van Rossuma4073002002-05-31 20:03:54 +0000715 return adjust_tp_compare(c);
Guido van Rossumab3b0342001-09-18 20:38:53 +0000716 }
717
718 /* If either tp_compare is _PyObject_SlotCompare, that's safe. */
719 if (f == _PyObject_SlotCompare ||
720 w->ob_type->tp_compare == _PyObject_SlotCompare)
721 return _PyObject_SlotCompare(v, w);
722
Armin Rigoa1748132004-12-23 22:13:13 +0000723 /* If we're here, v and w,
724 a) are not instances;
725 b) have different types or a type without tp_compare; and
726 c) don't have a user-defined tp_compare.
727 tp_compare implementations in C assume that both arguments
728 have their type, so we give up if the coercion fails or if
729 it yields types which are still incompatible (which can
730 happen with a user-defined nb_coerce).
731 */
Guido van Rossume797ec12001-01-17 15:24:28 +0000732 c = PyNumber_CoerceEx(&v, &w);
733 if (c < 0)
734 return -2;
735 if (c > 0)
736 return 2;
Armin Rigoa1748132004-12-23 22:13:13 +0000737 f = v->ob_type->tp_compare;
738 if (f != NULL && f == w->ob_type->tp_compare) {
Guido van Rossume797ec12001-01-17 15:24:28 +0000739 c = (*f)(v, w);
740 Py_DECREF(v);
741 Py_DECREF(w);
Guido van Rossuma4073002002-05-31 20:03:54 +0000742 return adjust_tp_compare(c);
Guido van Rossume797ec12001-01-17 15:24:28 +0000743 }
744
Guido van Rossume797ec12001-01-17 15:24:28 +0000745 /* No comparison defined */
746 Py_DECREF(v);
747 Py_DECREF(w);
748 return 2;
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +0000749}
750
Guido van Rossume797ec12001-01-17 15:24:28 +0000751/* Final fallback 3-way comparison, returning an int. Return:
752 -2 if an error occurred;
Tim Petersc99213f2001-11-04 05:57:16 +0000753 -1 if v < w;
754 0 if v == w;
755 1 if v > w.
Guido van Rossume797ec12001-01-17 15:24:28 +0000756*/
757static int
758default_3way_compare(PyObject *v, PyObject *w)
759{
760 int c;
Jeremy Hyltonaf68c872005-12-10 18:50:16 +0000761 const char *vname, *wname;
Guido van Rossume797ec12001-01-17 15:24:28 +0000762
763 if (v->ob_type == w->ob_type) {
Barry Warsawb0e754d2001-01-20 06:24:55 +0000764 /* When comparing these pointers, they must be cast to
765 * integer types (i.e. Py_uintptr_t, our spelling of C9X's
766 * uintptr_t). ANSI specifies that pointer compares other
767 * than == and != to non-related structures are undefined.
768 */
Barry Warsaw71ff8d52001-01-20 06:08:10 +0000769 Py_uintptr_t vv = (Py_uintptr_t)v;
770 Py_uintptr_t ww = (Py_uintptr_t)w;
Guido van Rossume797ec12001-01-17 15:24:28 +0000771 return (vv < ww) ? -1 : (vv > ww) ? 1 : 0;
772 }
773
Guido van Rossum0871e932001-01-22 19:28:09 +0000774 /* None is smaller than anything */
775 if (v == Py_None)
776 return -1;
777 if (w == Py_None)
778 return 1;
779
Guido van Rossumfb50d3f2003-02-18 16:40:09 +0000780 /* different type: compare type names; numbers are smaller */
781 if (PyNumber_Check(v))
Guido van Rossum8f9143d2001-01-22 15:59:32 +0000782 vname = "";
783 else
784 vname = v->ob_type->tp_name;
Guido van Rossumfb50d3f2003-02-18 16:40:09 +0000785 if (PyNumber_Check(w))
Guido van Rossum8f9143d2001-01-22 15:59:32 +0000786 wname = "";
787 else
788 wname = w->ob_type->tp_name;
789 c = strcmp(vname, wname);
790 if (c < 0)
791 return -1;
792 if (c > 0)
793 return 1;
794 /* Same type name, or (more likely) incomparable numeric types */
795 return ((Py_uintptr_t)(v->ob_type) < (
796 Py_uintptr_t)(w->ob_type)) ? -1 : 1;
Guido van Rossume797ec12001-01-17 15:24:28 +0000797}
798
Tim Peters6d60b2e2001-05-07 20:53:51 +0000799/* Do a 3-way comparison, by hook or by crook. Return:
Guido van Rossuma4073002002-05-31 20:03:54 +0000800 -2 for an exception (but see below);
Tim Petersc99213f2001-11-04 05:57:16 +0000801 -1 if v < w;
Tim Peters6d60b2e2001-05-07 20:53:51 +0000802 0 if v == w;
Tim Petersc99213f2001-11-04 05:57:16 +0000803 1 if v > w;
Guido van Rossuma4073002002-05-31 20:03:54 +0000804 BUT: if the object implements a tp_compare function, it returns
Martin v. Löwis0163d6d2001-06-09 07:34:05 +0000805 whatever this function returns (whether with an exception or not).
Tim Peters6d60b2e2001-05-07 20:53:51 +0000806*/
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +0000807static int
Fred Drake100814d2000-07-09 15:48:49 +0000808do_cmp(PyObject *v, PyObject *w)
Guido van Rossum20566841995-01-12 11:26:10 +0000809{
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +0000810 int c;
Martin v. Löwis0163d6d2001-06-09 07:34:05 +0000811 cmpfunc f;
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +0000812
Martin v. Löwis0163d6d2001-06-09 07:34:05 +0000813 if (v->ob_type == w->ob_type
Guido van Rossum82fc51c2001-08-16 08:02:45 +0000814 && (f = v->ob_type->tp_compare) != NULL) {
815 c = (*f)(v, w);
Guido van Rossuma4073002002-05-31 20:03:54 +0000816 if (PyInstance_Check(v)) {
817 /* Instance tp_compare has a different signature.
818 But if it returns undefined we fall through. */
819 if (c != 2)
820 return c;
Neal Norwitz3f8dae72002-05-31 20:23:33 +0000821 /* Else fall through to try_rich_to_3way_compare() */
Guido van Rossuma4073002002-05-31 20:03:54 +0000822 }
823 else
824 return adjust_tp_compare(c);
Guido van Rossum82fc51c2001-08-16 08:02:45 +0000825 }
Guido van Rossuma4073002002-05-31 20:03:54 +0000826 /* We only get here if one of the following is true:
827 a) v and w have different types
828 b) v and w have the same type, which doesn't have tp_compare
829 c) v and w are instances, and either __cmp__ is not defined or
830 __cmp__ returns NotImplemented
831 */
Guido van Rossume797ec12001-01-17 15:24:28 +0000832 c = try_rich_to_3way_compare(v, w);
833 if (c < 2)
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +0000834 return c;
Guido van Rossume797ec12001-01-17 15:24:28 +0000835 c = try_3way_compare(v, w);
836 if (c < 2)
837 return c;
838 return default_3way_compare(v, w);
Guido van Rossum20566841995-01-12 11:26:10 +0000839}
840
Tim Petersc99213f2001-11-04 05:57:16 +0000841/* Compare v to w. Return
842 -1 if v < w or exception (PyErr_Occurred() true in latter case).
843 0 if v == w.
844 1 if v > w.
845 XXX The docs (C API manual) say the return value is undefined in case
846 XXX of error.
847*/
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000848int
Fred Drake100814d2000-07-09 15:48:49 +0000849PyObject_Compare(PyObject *v, PyObject *w)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000850{
Jeremy Hylton4a3dd2d2000-04-14 19:13:24 +0000851 int result;
852
Guido van Rossumc8b6df91997-05-23 00:06:51 +0000853 if (v == NULL || w == NULL) {
854 PyErr_BadInternalCall();
855 return -1;
856 }
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000857 if (v == w)
858 return 0;
Armin Rigo2b3eb402003-10-28 12:05:48 +0000859 if (Py_EnterRecursiveCall(" in cmp"))
860 return -1;
861 result = do_cmp(v, w);
862 Py_LeaveRecursiveCall();
Guido van Rossume797ec12001-01-17 15:24:28 +0000863 return result < 0 ? -1 : result;
864}
865
Tim Petersc99213f2001-11-04 05:57:16 +0000866/* Return (new reference to) Py_True or Py_False. */
Guido van Rossume797ec12001-01-17 15:24:28 +0000867static PyObject *
Martin v. Löwis0163d6d2001-06-09 07:34:05 +0000868convert_3way_to_object(int op, int c)
Guido van Rossume797ec12001-01-17 15:24:28 +0000869{
Guido van Rossume797ec12001-01-17 15:24:28 +0000870 PyObject *result;
Guido van Rossume797ec12001-01-17 15:24:28 +0000871 switch (op) {
872 case Py_LT: c = c < 0; break;
873 case Py_LE: c = c <= 0; break;
874 case Py_EQ: c = c == 0; break;
875 case Py_NE: c = c != 0; break;
876 case Py_GT: c = c > 0; break;
877 case Py_GE: c = c >= 0; break;
878 }
879 result = c ? Py_True : Py_False;
880 Py_INCREF(result);
Jeremy Hylton4a3dd2d2000-04-14 19:13:24 +0000881 return result;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000882}
Tim Peters803526b2002-07-07 05:13:56 +0000883
Tim Petersc99213f2001-11-04 05:57:16 +0000884/* We want a rich comparison but don't have one. Try a 3-way cmp instead.
885 Return
886 NULL if error
887 Py_True if v op w
888 Py_False if not (v op w)
889*/
Martin v. Löwis0163d6d2001-06-09 07:34:05 +0000890static PyObject *
891try_3way_to_rich_compare(PyObject *v, PyObject *w, int op)
892{
893 int c;
894
895 c = try_3way_compare(v, w);
Steven Bethardae42f332008-03-18 17:26:10 +0000896 if (c >= 2) {
897
898 /* Py3K warning if types are not equal and comparison isn't == or != */
899 if (Py_Py3kWarningFlag &&
Georg Brandld5b635f2008-03-25 08:29:14 +0000900 v->ob_type != w->ob_type && op != Py_EQ && op != Py_NE &&
Benjamin Peterson9f4f4812008-04-27 03:01:45 +0000901 PyErr_WarnEx(PyExc_DeprecationWarning,
Georg Brandld5b635f2008-03-25 08:29:14 +0000902 "comparing unequal types not supported "
Benjamin Peterson9f4f4812008-04-27 03:01:45 +0000903 "in 3.x", 1) < 0) {
Steven Bethardae42f332008-03-18 17:26:10 +0000904 return NULL;
905 }
906
Martin v. Löwis0163d6d2001-06-09 07:34:05 +0000907 c = default_3way_compare(v, w);
Steven Bethardae42f332008-03-18 17:26:10 +0000908 }
Martin v. Löwis0163d6d2001-06-09 07:34:05 +0000909 if (c <= -2)
910 return NULL;
911 return convert_3way_to_object(op, c);
912}
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000913
Tim Petersc99213f2001-11-04 05:57:16 +0000914/* Do rich comparison on v and w. Return
915 NULL if error
916 Else a new reference to an object other than Py_NotImplemented, usually(?):
917 Py_True if v op w
918 Py_False if not (v op w)
919*/
Neil Schemenauerd38855c2001-01-21 16:25:18 +0000920static PyObject *
Guido van Rossume797ec12001-01-17 15:24:28 +0000921do_richcmp(PyObject *v, PyObject *w, int op)
922{
923 PyObject *res;
924
925 res = try_rich_compare(v, w, op);
926 if (res != Py_NotImplemented)
927 return res;
928 Py_DECREF(res);
929
930 return try_3way_to_rich_compare(v, w, op);
931}
932
Tim Petersc99213f2001-11-04 05:57:16 +0000933/* Return:
934 NULL for exception;
Tim Petersc99213f2001-11-04 05:57:16 +0000935 some object not equal to NotImplemented if it is implemented
936 (this latter object may not be a Boolean).
937*/
Guido van Rossume797ec12001-01-17 15:24:28 +0000938PyObject *
939PyObject_RichCompare(PyObject *v, PyObject *w, int op)
940{
941 PyObject *res;
942
943 assert(Py_LT <= op && op <= Py_GE);
Armin Rigo2b3eb402003-10-28 12:05:48 +0000944 if (Py_EnterRecursiveCall(" in cmp"))
945 return NULL;
Guido van Rossume797ec12001-01-17 15:24:28 +0000946
Armin Rigo2b3eb402003-10-28 12:05:48 +0000947 /* If the types are equal, and not old-style instances, try to
Tim Peters67754e92001-11-04 07:29:31 +0000948 get out cheap (don't bother with coercions etc.). */
949 if (v->ob_type == w->ob_type && !PyInstance_Check(v)) {
950 cmpfunc fcmp;
951 richcmpfunc frich = RICHCOMPARE(v->ob_type);
952 /* If the type has richcmp, try it first. try_rich_compare
953 tries it two-sided, which is not needed since we've a
954 single type only. */
955 if (frich != NULL) {
956 res = (*frich)(v, w, op);
957 if (res != Py_NotImplemented)
958 goto Done;
959 Py_DECREF(res);
960 }
961 /* No richcmp, or this particular richmp not implemented.
962 Try 3-way cmp. */
963 fcmp = v->ob_type->tp_compare;
964 if (fcmp != NULL) {
965 int c = (*fcmp)(v, w);
Guido van Rossuma4073002002-05-31 20:03:54 +0000966 c = adjust_tp_compare(c);
967 if (c == -2) {
Tim Peters67754e92001-11-04 07:29:31 +0000968 res = NULL;
969 goto Done;
970 }
971 res = convert_3way_to_object(op, c);
972 goto Done;
973 }
Guido van Rossum2ffbf6b2001-01-17 21:27:02 +0000974 }
Tim Peters67754e92001-11-04 07:29:31 +0000975
976 /* Fast path not taken, or couldn't deliver a useful result. */
977 res = do_richcmp(v, w, op);
978Done:
Armin Rigo2b3eb402003-10-28 12:05:48 +0000979 Py_LeaveRecursiveCall();
Guido van Rossume797ec12001-01-17 15:24:28 +0000980 return res;
981}
982
Tim Petersde9725f2001-05-05 10:06:17 +0000983/* Return -1 if error; 1 if v op w; 0 if not (v op w). */
Guido van Rossume797ec12001-01-17 15:24:28 +0000984int
985PyObject_RichCompareBool(PyObject *v, PyObject *w, int op)
986{
Raymond Hettinger93d44812004-03-21 17:01:44 +0000987 PyObject *res;
Guido van Rossume797ec12001-01-17 15:24:28 +0000988 int ok;
989
Raymond Hettinger93d44812004-03-21 17:01:44 +0000990 /* Quick result when objects are the same.
991 Guarantees that identity implies equality. */
992 if (v == w) {
993 if (op == Py_EQ)
994 return 1;
995 else if (op == Py_NE)
996 return 0;
997 }
998
999 res = PyObject_RichCompare(v, w, op);
Guido van Rossume797ec12001-01-17 15:24:28 +00001000 if (res == NULL)
1001 return -1;
Guido van Rossum81912d42002-08-24 05:33:28 +00001002 if (PyBool_Check(res))
1003 ok = (res == Py_True);
1004 else
1005 ok = PyObject_IsTrue(res);
Guido van Rossume797ec12001-01-17 15:24:28 +00001006 Py_DECREF(res);
1007 return ok;
1008}
Fred Drake13634cf2000-06-29 19:17:04 +00001009
1010/* Set of hash utility functions to help maintaining the invariant that
Raymond Hettinger8183fa42004-03-21 17:35:06 +00001011 if a==b then hash(a)==hash(b)
Fred Drake13634cf2000-06-29 19:17:04 +00001012
1013 All the utility functions (_Py_Hash*()) return "-1" to signify an error.
1014*/
1015
1016long
Fred Drake100814d2000-07-09 15:48:49 +00001017_Py_HashDouble(double v)
Fred Drake13634cf2000-06-29 19:17:04 +00001018{
Tim Peters39dce292000-08-15 03:34:48 +00001019 double intpart, fractpart;
1020 int expo;
1021 long hipart;
1022 long x; /* the final hash value */
1023 /* This is designed so that Python numbers of different types
1024 * that compare equal hash to the same value; otherwise comparisons
1025 * of mapping keys will turn out weird.
1026 */
1027
Tim Peters39dce292000-08-15 03:34:48 +00001028 fractpart = modf(v, &intpart);
Tim Peters39dce292000-08-15 03:34:48 +00001029 if (fractpart == 0.0) {
1030 /* This must return the same hash as an equal int or long. */
Mark Dickinson10fe8772009-02-08 14:42:28 +00001031 if (intpart > LONG_MAX/2 || -intpart > LONG_MAX/2) {
Tim Peters39dce292000-08-15 03:34:48 +00001032 /* Convert to long and use its hash. */
1033 PyObject *plong; /* converted to Python long */
1034 if (Py_IS_INFINITY(intpart))
1035 /* can't convert to long int -- arbitrary */
1036 v = v < 0 ? -271828.0 : 314159.0;
1037 plong = PyLong_FromDouble(v);
1038 if (plong == NULL)
1039 return -1;
1040 x = PyObject_Hash(plong);
1041 Py_DECREF(plong);
1042 return x;
1043 }
1044 /* Fits in a C long == a Python int, so is its own hash. */
1045 x = (long)intpart;
1046 if (x == -1)
1047 x = -2;
1048 return x;
1049 }
1050 /* The fractional part is non-zero, so we don't have to worry about
1051 * making this match the hash of some other type.
1052 * Use frexp to get at the bits in the double.
Fred Drake13634cf2000-06-29 19:17:04 +00001053 * Since the VAX D double format has 56 mantissa bits, which is the
1054 * most of any double format in use, each of these parts may have as
1055 * many as (but no more than) 56 significant bits.
Tim Peters39dce292000-08-15 03:34:48 +00001056 * So, assuming sizeof(long) >= 4, each part can be broken into two
1057 * longs; frexp and multiplication are used to do that.
1058 * Also, since the Cray double format has 15 exponent bits, which is
1059 * the most of any double format in use, shifting the exponent field
1060 * left by 15 won't overflow a long (again assuming sizeof(long) >= 4).
Fred Drake13634cf2000-06-29 19:17:04 +00001061 */
Tim Peters39dce292000-08-15 03:34:48 +00001062 v = frexp(v, &expo);
1063 v *= 2147483648.0; /* 2**31 */
1064 hipart = (long)v; /* take the top 32 bits */
1065 v = (v - (double)hipart) * 2147483648.0; /* get the next 32 bits */
1066 x = hipart + (long)v + (expo << 15);
1067 if (x == -1)
1068 x = -2;
1069 return x;
Fred Drake13634cf2000-06-29 19:17:04 +00001070}
1071
1072long
Fred Drake100814d2000-07-09 15:48:49 +00001073_Py_HashPointer(void *p)
Fred Drake13634cf2000-06-29 19:17:04 +00001074{
Fred Drake13634cf2000-06-29 19:17:04 +00001075 long x;
Antoine Pitrou76a4b892009-02-13 13:52:33 +00001076 size_t y = (size_t)p;
1077 /* bottom 3 or 4 bits are likely to be 0; rotate y by 4 to avoid
1078 excessive hash collisions for dicts and sets */
1079 y = (y >> 4) | (y << 8*SIZEOF_VOID_P - 4);
1080 x = (long)y;
1081 if (x == -1)
1082 x = -2;
Fred Drake13634cf2000-06-29 19:17:04 +00001083 return x;
Fred Drake13634cf2000-06-29 19:17:04 +00001084}
1085
Nick Coghlan53663a62008-07-15 14:27:37 +00001086long
1087PyObject_HashNotImplemented(PyObject *self)
1088{
1089 PyErr_Format(PyExc_TypeError, "unhashable type: '%.200s'",
1090 self->ob_type->tp_name);
1091 return -1;
1092}
Fred Drake13634cf2000-06-29 19:17:04 +00001093
Guido van Rossum9bfef441993-03-29 10:43:31 +00001094long
Fred Drake100814d2000-07-09 15:48:49 +00001095PyObject_Hash(PyObject *v)
Guido van Rossum9bfef441993-03-29 10:43:31 +00001096{
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001097 PyTypeObject *tp = v->ob_type;
Guido van Rossum9bfef441993-03-29 10:43:31 +00001098 if (tp->tp_hash != NULL)
1099 return (*tp->tp_hash)(v);
Nick Coghlan180e4002008-12-30 01:18:48 +00001100 /* To keep to the general practice that inheriting
1101 * solely from object in C code should work without
1102 * an explicit call to PyType_Ready, we implicitly call
1103 * PyType_Ready here and then check the tp_hash slot again
1104 */
1105 if (tp->tp_dict == NULL) {
1106 if (PyType_Ready(tp) < 0)
1107 return -1;
1108 if (tp->tp_hash != NULL)
1109 return (*tp->tp_hash)(v);
1110 }
Guido van Rossumd1f06b92001-01-24 22:14:43 +00001111 if (tp->tp_compare == NULL && RICHCOMPARE(tp) == NULL) {
Fred Drake13634cf2000-06-29 19:17:04 +00001112 return _Py_HashPointer(v); /* Use address as hash value */
1113 }
Guido van Rossum9bfef441993-03-29 10:43:31 +00001114 /* If there's a cmp but no hash defined, the object can't be hashed */
Nick Coghlan53663a62008-07-15 14:27:37 +00001115 return PyObject_HashNotImplemented(v);
Guido van Rossum9bfef441993-03-29 10:43:31 +00001116}
1117
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001118PyObject *
Jeremy Hyltonaf68c872005-12-10 18:50:16 +00001119PyObject_GetAttrString(PyObject *v, const char *name)
Guido van Rossum3f5da241990-12-20 15:06:42 +00001120{
Tim Peters6d6c1a32001-08-02 04:15:00 +00001121 PyObject *w, *res;
Guido van Rossumd8eb1b31996-08-09 20:52:03 +00001122
Christian Heimese93237d2007-12-19 02:37:44 +00001123 if (Py_TYPE(v)->tp_getattr != NULL)
1124 return (*Py_TYPE(v)->tp_getattr)(v, (char*)name);
Gregory P. Smithdd96db62008-06-09 04:58:54 +00001125 w = PyString_InternFromString(name);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001126 if (w == NULL)
1127 return NULL;
1128 res = PyObject_GetAttr(v, w);
1129 Py_XDECREF(w);
1130 return res;
Guido van Rossum3f5da241990-12-20 15:06:42 +00001131}
1132
1133int
Jeremy Hyltonaf68c872005-12-10 18:50:16 +00001134PyObject_HasAttrString(PyObject *v, const char *name)
Guido van Rossumed18fdc1993-07-11 19:55:34 +00001135{
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001136 PyObject *res = PyObject_GetAttrString(v, name);
Guido van Rossumed18fdc1993-07-11 19:55:34 +00001137 if (res != NULL) {
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001138 Py_DECREF(res);
Guido van Rossumed18fdc1993-07-11 19:55:34 +00001139 return 1;
1140 }
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001141 PyErr_Clear();
Guido van Rossumed18fdc1993-07-11 19:55:34 +00001142 return 0;
1143}
1144
1145int
Jeremy Hyltonaf68c872005-12-10 18:50:16 +00001146PyObject_SetAttrString(PyObject *v, const char *name, PyObject *w)
Guido van Rossum3f5da241990-12-20 15:06:42 +00001147{
Tim Peters6d6c1a32001-08-02 04:15:00 +00001148 PyObject *s;
1149 int res;
Guido van Rossumd8eb1b31996-08-09 20:52:03 +00001150
Christian Heimese93237d2007-12-19 02:37:44 +00001151 if (Py_TYPE(v)->tp_setattr != NULL)
1152 return (*Py_TYPE(v)->tp_setattr)(v, (char*)name, w);
Gregory P. Smithdd96db62008-06-09 04:58:54 +00001153 s = PyString_InternFromString(name);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001154 if (s == NULL)
1155 return -1;
1156 res = PyObject_SetAttr(v, s, w);
1157 Py_XDECREF(s);
1158 return res;
Guido van Rossum3f5da241990-12-20 15:06:42 +00001159}
1160
Guido van Rossum98ff96a1997-05-20 18:34:44 +00001161PyObject *
Fred Drake100814d2000-07-09 15:48:49 +00001162PyObject_GetAttr(PyObject *v, PyObject *name)
Guido van Rossum98ff96a1997-05-20 18:34:44 +00001163{
Christian Heimese93237d2007-12-19 02:37:44 +00001164 PyTypeObject *tp = Py_TYPE(v);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001165
Gregory P. Smithdd96db62008-06-09 04:58:54 +00001166 if (!PyString_Check(name)) {
Martin v. Löwis0c160a02002-03-15 13:40:30 +00001167#ifdef Py_USING_UNICODE
1168 /* The Unicode to string conversion is done here because the
1169 existing tp_getattro slots expect a string object as name
1170 and we wouldn't want to break those. */
1171 if (PyUnicode_Check(name)) {
1172 name = _PyUnicode_AsDefaultEncodedString(name, NULL);
1173 if (name == NULL)
1174 return NULL;
1175 }
1176 else
1177#endif
1178 {
Georg Brandlccff7852006-06-18 22:17:29 +00001179 PyErr_Format(PyExc_TypeError,
1180 "attribute name must be string, not '%.200s'",
Christian Heimese93237d2007-12-19 02:37:44 +00001181 Py_TYPE(name)->tp_name);
Martin v. Löwis0c160a02002-03-15 13:40:30 +00001182 return NULL;
1183 }
Jeremy Hylton99a8f902000-06-23 14:36:32 +00001184 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00001185 if (tp->tp_getattro != NULL)
1186 return (*tp->tp_getattro)(v, name);
1187 if (tp->tp_getattr != NULL)
Gregory P. Smithdd96db62008-06-09 04:58:54 +00001188 return (*tp->tp_getattr)(v, PyString_AS_STRING(name));
Tim Peters6d6c1a32001-08-02 04:15:00 +00001189 PyErr_Format(PyExc_AttributeError,
1190 "'%.50s' object has no attribute '%.400s'",
Gregory P. Smithdd96db62008-06-09 04:58:54 +00001191 tp->tp_name, PyString_AS_STRING(name));
Tim Peters6d6c1a32001-08-02 04:15:00 +00001192 return NULL;
Guido van Rossum98ff96a1997-05-20 18:34:44 +00001193}
1194
1195int
Fred Drake100814d2000-07-09 15:48:49 +00001196PyObject_HasAttr(PyObject *v, PyObject *name)
Guido van Rossum98ff96a1997-05-20 18:34:44 +00001197{
1198 PyObject *res = PyObject_GetAttr(v, name);
1199 if (res != NULL) {
1200 Py_DECREF(res);
1201 return 1;
1202 }
1203 PyErr_Clear();
1204 return 0;
1205}
1206
1207int
Fred Drake100814d2000-07-09 15:48:49 +00001208PyObject_SetAttr(PyObject *v, PyObject *name, PyObject *value)
Guido van Rossum98ff96a1997-05-20 18:34:44 +00001209{
Christian Heimese93237d2007-12-19 02:37:44 +00001210 PyTypeObject *tp = Py_TYPE(v);
Guido van Rossum98ff96a1997-05-20 18:34:44 +00001211 int err;
Marc-André Lemburge44e5072000-09-18 16:20:57 +00001212
Gregory P. Smithdd96db62008-06-09 04:58:54 +00001213 if (!PyString_Check(name)){
Martin v. Löwis0c160a02002-03-15 13:40:30 +00001214#ifdef Py_USING_UNICODE
1215 /* The Unicode to string conversion is done here because the
1216 existing tp_setattro slots expect a string object as name
1217 and we wouldn't want to break those. */
1218 if (PyUnicode_Check(name)) {
1219 name = PyUnicode_AsEncodedString(name, NULL, NULL);
1220 if (name == NULL)
1221 return -1;
1222 }
Tim Peters803526b2002-07-07 05:13:56 +00001223 else
Martin v. Löwis0c160a02002-03-15 13:40:30 +00001224#endif
1225 {
Georg Brandlccff7852006-06-18 22:17:29 +00001226 PyErr_Format(PyExc_TypeError,
1227 "attribute name must be string, not '%.200s'",
Christian Heimese93237d2007-12-19 02:37:44 +00001228 Py_TYPE(name)->tp_name);
Martin v. Löwis0c160a02002-03-15 13:40:30 +00001229 return -1;
1230 }
Jeremy Hylton99a8f902000-06-23 14:36:32 +00001231 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00001232 else
1233 Py_INCREF(name);
1234
Gregory P. Smithdd96db62008-06-09 04:58:54 +00001235 PyString_InternInPlace(&name);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001236 if (tp->tp_setattro != NULL) {
1237 err = (*tp->tp_setattro)(v, name, value);
1238 Py_DECREF(name);
1239 return err;
Marc-André Lemburge44e5072000-09-18 16:20:57 +00001240 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00001241 if (tp->tp_setattr != NULL) {
Gregory P. Smithdd96db62008-06-09 04:58:54 +00001242 err = (*tp->tp_setattr)(v, PyString_AS_STRING(name), value);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001243 Py_DECREF(name);
1244 return err;
1245 }
Guido van Rossum98ff96a1997-05-20 18:34:44 +00001246 Py_DECREF(name);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001247 if (tp->tp_getattr == NULL && tp->tp_getattro == NULL)
1248 PyErr_Format(PyExc_TypeError,
1249 "'%.100s' object has no attributes "
1250 "(%s .%.100s)",
1251 tp->tp_name,
1252 value==NULL ? "del" : "assign to",
Gregory P. Smithdd96db62008-06-09 04:58:54 +00001253 PyString_AS_STRING(name));
Tim Peters6d6c1a32001-08-02 04:15:00 +00001254 else
1255 PyErr_Format(PyExc_TypeError,
1256 "'%.100s' object has only read-only attributes "
1257 "(%s .%.100s)",
1258 tp->tp_name,
1259 value==NULL ? "del" : "assign to",
Gregory P. Smithdd96db62008-06-09 04:58:54 +00001260 PyString_AS_STRING(name));
Tim Peters6d6c1a32001-08-02 04:15:00 +00001261 return -1;
1262}
1263
1264/* Helper to get a pointer to an object's __dict__ slot, if any */
1265
1266PyObject **
1267_PyObject_GetDictPtr(PyObject *obj)
1268{
Martin v. Löwis725507b2006-03-07 12:08:51 +00001269 Py_ssize_t dictoffset;
Christian Heimese93237d2007-12-19 02:37:44 +00001270 PyTypeObject *tp = Py_TYPE(obj);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001271
1272 if (!(tp->tp_flags & Py_TPFLAGS_HAVE_CLASS))
1273 return NULL;
1274 dictoffset = tp->tp_dictoffset;
1275 if (dictoffset == 0)
1276 return NULL;
1277 if (dictoffset < 0) {
Martin v. Löwis18e16552006-02-15 17:27:45 +00001278 Py_ssize_t tsize;
Guido van Rossum2eb0b872002-03-01 22:24:49 +00001279 size_t size;
1280
1281 tsize = ((PyVarObject *)obj)->ob_size;
1282 if (tsize < 0)
1283 tsize = -tsize;
1284 size = _PyObject_VAR_SIZE(tp, tsize);
1285
Tim Peters6d483d32001-10-06 21:27:34 +00001286 dictoffset += (long)size;
1287 assert(dictoffset > 0);
1288 assert(dictoffset % SIZEOF_VOID_P == 0);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001289 }
1290 return (PyObject **) ((char *)obj + dictoffset);
1291}
1292
Tim Peters6d6c1a32001-08-02 04:15:00 +00001293PyObject *
Raymond Hettinger1da1dbf2003-03-17 19:46:11 +00001294PyObject_SelfIter(PyObject *obj)
Raymond Hettinger01538262003-03-17 08:24:35 +00001295{
1296 Py_INCREF(obj);
1297 return obj;
1298}
1299
Amaury Forgeot d'Arca40d5732009-01-12 23:36:55 +00001300/* Helper used when the __next__ method is removed from a type:
1301 tp_iternext is never NULL and can be safely called without checking
1302 on every iteration.
1303 */
1304
1305PyObject *
1306_PyObject_NextNotImplemented(PyObject *self)
1307{
1308 PyErr_Format(PyExc_TypeError,
1309 "'%.200s' object is not iterable",
1310 Py_TYPE(self)->tp_name);
1311 return NULL;
1312}
1313
Michael W. Hudson1593f502004-09-14 17:09:47 +00001314/* Generic GetAttr functions - put these in your tp_[gs]etattro slot */
1315
Raymond Hettinger01538262003-03-17 08:24:35 +00001316PyObject *
Tim Peters6d6c1a32001-08-02 04:15:00 +00001317PyObject_GenericGetAttr(PyObject *obj, PyObject *name)
1318{
Christian Heimese93237d2007-12-19 02:37:44 +00001319 PyTypeObject *tp = Py_TYPE(obj);
Guido van Rossum056fbf42002-08-19 19:22:50 +00001320 PyObject *descr = NULL;
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001321 PyObject *res = NULL;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001322 descrgetfunc f;
Martin v. Löwis725507b2006-03-07 12:08:51 +00001323 Py_ssize_t dictoffset;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001324 PyObject **dictptr;
1325
Gregory P. Smithdd96db62008-06-09 04:58:54 +00001326 if (!PyString_Check(name)){
Martin v. Löwis0c160a02002-03-15 13:40:30 +00001327#ifdef Py_USING_UNICODE
1328 /* The Unicode to string conversion is done here because the
1329 existing tp_setattro slots expect a string object as name
1330 and we wouldn't want to break those. */
1331 if (PyUnicode_Check(name)) {
1332 name = PyUnicode_AsEncodedString(name, NULL, NULL);
1333 if (name == NULL)
1334 return NULL;
1335 }
Tim Peters803526b2002-07-07 05:13:56 +00001336 else
Martin v. Löwis0c160a02002-03-15 13:40:30 +00001337#endif
1338 {
Georg Brandlccff7852006-06-18 22:17:29 +00001339 PyErr_Format(PyExc_TypeError,
1340 "attribute name must be string, not '%.200s'",
Christian Heimese93237d2007-12-19 02:37:44 +00001341 Py_TYPE(name)->tp_name);
Martin v. Löwis0c160a02002-03-15 13:40:30 +00001342 return NULL;
1343 }
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001344 }
1345 else
1346 Py_INCREF(name);
1347
Tim Peters6d6c1a32001-08-02 04:15:00 +00001348 if (tp->tp_dict == NULL) {
Guido van Rossum528b7eb2001-08-07 17:24:28 +00001349 if (PyType_Ready(tp) < 0)
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001350 goto done;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001351 }
1352
Amaury Forgeot d'Arce4c270c2008-01-14 00:29:41 +00001353#if 0 /* XXX this is not quite _PyType_Lookup anymore */
Guido van Rossum056fbf42002-08-19 19:22:50 +00001354 /* Inline _PyType_Lookup */
1355 {
Martin v. Löwis18e16552006-02-15 17:27:45 +00001356 Py_ssize_t i, n;
Guido van Rossum056fbf42002-08-19 19:22:50 +00001357 PyObject *mro, *base, *dict;
1358
1359 /* Look in tp_dict of types in MRO */
1360 mro = tp->tp_mro;
1361 assert(mro != NULL);
1362 assert(PyTuple_Check(mro));
1363 n = PyTuple_GET_SIZE(mro);
1364 for (i = 0; i < n; i++) {
1365 base = PyTuple_GET_ITEM(mro, i);
1366 if (PyClass_Check(base))
1367 dict = ((PyClassObject *)base)->cl_dict;
1368 else {
1369 assert(PyType_Check(base));
1370 dict = ((PyTypeObject *)base)->tp_dict;
1371 }
1372 assert(dict && PyDict_Check(dict));
1373 descr = PyDict_GetItem(dict, name);
1374 if (descr != NULL)
1375 break;
1376 }
1377 }
Amaury Forgeot d'Arce4c270c2008-01-14 00:29:41 +00001378#else
1379 descr = _PyType_Lookup(tp, name);
1380#endif
Guido van Rossum056fbf42002-08-19 19:22:50 +00001381
Michael W. Hudsonb2c7de42003-08-15 13:07:47 +00001382 Py_XINCREF(descr);
1383
Tim Peters6d6c1a32001-08-02 04:15:00 +00001384 f = NULL;
Guido van Rossum90195e22003-02-19 03:19:29 +00001385 if (descr != NULL &&
1386 PyType_HasFeature(descr->ob_type, Py_TPFLAGS_HAVE_CLASS)) {
Tim Peters6d6c1a32001-08-02 04:15:00 +00001387 f = descr->ob_type->tp_descr_get;
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001388 if (f != NULL && PyDescr_IsData(descr)) {
1389 res = f(descr, obj, (PyObject *)obj->ob_type);
Michael W. Hudsonb2c7de42003-08-15 13:07:47 +00001390 Py_DECREF(descr);
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001391 goto done;
1392 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00001393 }
1394
Guido van Rossumc66ff442002-08-19 16:50:48 +00001395 /* Inline _PyObject_GetDictPtr */
1396 dictoffset = tp->tp_dictoffset;
1397 if (dictoffset != 0) {
1398 PyObject *dict;
1399 if (dictoffset < 0) {
Martin v. Löwis18e16552006-02-15 17:27:45 +00001400 Py_ssize_t tsize;
Guido van Rossumc66ff442002-08-19 16:50:48 +00001401 size_t size;
1402
1403 tsize = ((PyVarObject *)obj)->ob_size;
1404 if (tsize < 0)
1405 tsize = -tsize;
1406 size = _PyObject_VAR_SIZE(tp, tsize);
1407
1408 dictoffset += (long)size;
1409 assert(dictoffset > 0);
1410 assert(dictoffset % SIZEOF_VOID_P == 0);
1411 }
1412 dictptr = (PyObject **) ((char *)obj + dictoffset);
1413 dict = *dictptr;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001414 if (dict != NULL) {
Guido van Rossum37edeab2008-01-24 17:58:05 +00001415 Py_INCREF(dict);
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001416 res = PyDict_GetItem(dict, name);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001417 if (res != NULL) {
1418 Py_INCREF(res);
Michael W. Hudsonb2c7de42003-08-15 13:07:47 +00001419 Py_XDECREF(descr);
Guido van Rossum37edeab2008-01-24 17:58:05 +00001420 Py_DECREF(dict);
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001421 goto done;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001422 }
Guido van Rossum37edeab2008-01-24 17:58:05 +00001423 Py_DECREF(dict);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001424 }
1425 }
1426
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001427 if (f != NULL) {
Christian Heimese93237d2007-12-19 02:37:44 +00001428 res = f(descr, obj, (PyObject *)Py_TYPE(obj));
Michael W. Hudsonb2c7de42003-08-15 13:07:47 +00001429 Py_DECREF(descr);
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001430 goto done;
1431 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00001432
1433 if (descr != NULL) {
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001434 res = descr;
Michael W. Hudsonb2c7de42003-08-15 13:07:47 +00001435 /* descr was already increfed above */
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001436 goto done;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001437 }
1438
1439 PyErr_Format(PyExc_AttributeError,
1440 "'%.50s' object has no attribute '%.400s'",
Gregory P. Smithdd96db62008-06-09 04:58:54 +00001441 tp->tp_name, PyString_AS_STRING(name));
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001442 done:
1443 Py_DECREF(name);
1444 return res;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001445}
1446
1447int
1448PyObject_GenericSetAttr(PyObject *obj, PyObject *name, PyObject *value)
1449{
Christian Heimese93237d2007-12-19 02:37:44 +00001450 PyTypeObject *tp = Py_TYPE(obj);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001451 PyObject *descr;
1452 descrsetfunc f;
1453 PyObject **dictptr;
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001454 int res = -1;
1455
Gregory P. Smithdd96db62008-06-09 04:58:54 +00001456 if (!PyString_Check(name)){
Martin v. Löwis0c160a02002-03-15 13:40:30 +00001457#ifdef Py_USING_UNICODE
1458 /* The Unicode to string conversion is done here because the
1459 existing tp_setattro slots expect a string object as name
1460 and we wouldn't want to break those. */
1461 if (PyUnicode_Check(name)) {
1462 name = PyUnicode_AsEncodedString(name, NULL, NULL);
1463 if (name == NULL)
1464 return -1;
1465 }
Tim Peters803526b2002-07-07 05:13:56 +00001466 else
Martin v. Löwis0c160a02002-03-15 13:40:30 +00001467#endif
1468 {
Georg Brandlccff7852006-06-18 22:17:29 +00001469 PyErr_Format(PyExc_TypeError,
1470 "attribute name must be string, not '%.200s'",
Christian Heimese93237d2007-12-19 02:37:44 +00001471 Py_TYPE(name)->tp_name);
Martin v. Löwis0c160a02002-03-15 13:40:30 +00001472 return -1;
1473 }
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001474 }
1475 else
1476 Py_INCREF(name);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001477
1478 if (tp->tp_dict == NULL) {
Guido van Rossum528b7eb2001-08-07 17:24:28 +00001479 if (PyType_Ready(tp) < 0)
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001480 goto done;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001481 }
1482
1483 descr = _PyType_Lookup(tp, name);
1484 f = NULL;
Guido van Rossum90195e22003-02-19 03:19:29 +00001485 if (descr != NULL &&
1486 PyType_HasFeature(descr->ob_type, Py_TPFLAGS_HAVE_CLASS)) {
Tim Peters6d6c1a32001-08-02 04:15:00 +00001487 f = descr->ob_type->tp_descr_set;
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001488 if (f != NULL && PyDescr_IsData(descr)) {
1489 res = f(descr, obj, value);
1490 goto done;
1491 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00001492 }
1493
1494 dictptr = _PyObject_GetDictPtr(obj);
1495 if (dictptr != NULL) {
1496 PyObject *dict = *dictptr;
1497 if (dict == NULL && value != NULL) {
1498 dict = PyDict_New();
1499 if (dict == NULL)
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001500 goto done;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001501 *dictptr = dict;
1502 }
1503 if (dict != NULL) {
Guido van Rossum37edeab2008-01-24 17:58:05 +00001504 Py_INCREF(dict);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001505 if (value == NULL)
1506 res = PyDict_DelItem(dict, name);
1507 else
1508 res = PyDict_SetItem(dict, name, value);
1509 if (res < 0 && PyErr_ExceptionMatches(PyExc_KeyError))
1510 PyErr_SetObject(PyExc_AttributeError, name);
Guido van Rossum37edeab2008-01-24 17:58:05 +00001511 Py_DECREF(dict);
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001512 goto done;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001513 }
1514 }
1515
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001516 if (f != NULL) {
1517 res = f(descr, obj, value);
1518 goto done;
1519 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00001520
1521 if (descr == NULL) {
1522 PyErr_Format(PyExc_AttributeError,
Georg Brandlccff7852006-06-18 22:17:29 +00001523 "'%.100s' object has no attribute '%.200s'",
Gregory P. Smithdd96db62008-06-09 04:58:54 +00001524 tp->tp_name, PyString_AS_STRING(name));
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001525 goto done;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001526 }
1527
1528 PyErr_Format(PyExc_AttributeError,
1529 "'%.50s' object attribute '%.400s' is read-only",
Gregory P. Smithdd96db62008-06-09 04:58:54 +00001530 tp->tp_name, PyString_AS_STRING(name));
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001531 done:
1532 Py_DECREF(name);
1533 return res;
Guido van Rossum98ff96a1997-05-20 18:34:44 +00001534}
1535
Guido van Rossum6ac258d1993-05-12 08:24:20 +00001536/* Test a value used as condition, e.g., in a for or if statement.
1537 Return -1 if an error occurred */
1538
1539int
Fred Drake100814d2000-07-09 15:48:49 +00001540PyObject_IsTrue(PyObject *v)
Guido van Rossum6ac258d1993-05-12 08:24:20 +00001541{
Martin v. Löwis18e16552006-02-15 17:27:45 +00001542 Py_ssize_t res;
Guido van Rossum6248f442002-08-24 06:31:34 +00001543 if (v == Py_True)
1544 return 1;
1545 if (v == Py_False)
1546 return 0;
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001547 if (v == Py_None)
Neal Norwitz51290d32002-06-13 21:32:44 +00001548 return 0;
Guido van Rossum1c4f4581998-05-22 00:53:24 +00001549 else if (v->ob_type->tp_as_number != NULL &&
1550 v->ob_type->tp_as_number->nb_nonzero != NULL)
Guido van Rossum6ac258d1993-05-12 08:24:20 +00001551 res = (*v->ob_type->tp_as_number->nb_nonzero)(v);
Guido van Rossum1c4f4581998-05-22 00:53:24 +00001552 else if (v->ob_type->tp_as_mapping != NULL &&
1553 v->ob_type->tp_as_mapping->mp_length != NULL)
Guido van Rossum6ac258d1993-05-12 08:24:20 +00001554 res = (*v->ob_type->tp_as_mapping->mp_length)(v);
Guido van Rossum1c4f4581998-05-22 00:53:24 +00001555 else if (v->ob_type->tp_as_sequence != NULL &&
1556 v->ob_type->tp_as_sequence->sq_length != NULL)
Guido van Rossum6ac258d1993-05-12 08:24:20 +00001557 res = (*v->ob_type->tp_as_sequence->sq_length)(v);
1558 else
Neal Norwitz51290d32002-06-13 21:32:44 +00001559 return 1;
Martin v. Löwis18e16552006-02-15 17:27:45 +00001560 /* if it is negative, it should be either -1 or -2 */
1561 return (res > 0) ? 1 : Py_SAFE_DOWNCAST(res, Py_ssize_t, int);
Guido van Rossum6ac258d1993-05-12 08:24:20 +00001562}
1563
Tim Peters803526b2002-07-07 05:13:56 +00001564/* equivalent of 'not v'
Guido van Rossumc3d3f961998-04-09 17:53:59 +00001565 Return -1 if an error occurred */
1566
1567int
Fred Drake100814d2000-07-09 15:48:49 +00001568PyObject_Not(PyObject *v)
Guido van Rossumc3d3f961998-04-09 17:53:59 +00001569{
1570 int res;
1571 res = PyObject_IsTrue(v);
1572 if (res < 0)
1573 return res;
1574 return res == 0;
1575}
1576
Guido van Rossum5524a591995-01-10 15:26:20 +00001577/* Coerce two numeric types to the "larger" one.
1578 Increment the reference count on each argument.
Guido van Rossume797ec12001-01-17 15:24:28 +00001579 Return value:
1580 -1 if an error occurred;
1581 0 if the coercion succeeded (and then the reference counts are increased);
1582 1 if no coercion is possible (and no error is raised).
Guido van Rossum5524a591995-01-10 15:26:20 +00001583*/
Guido van Rossum5524a591995-01-10 15:26:20 +00001584int
Fred Drake100814d2000-07-09 15:48:49 +00001585PyNumber_CoerceEx(PyObject **pv, PyObject **pw)
Guido van Rossum5524a591995-01-10 15:26:20 +00001586{
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001587 register PyObject *v = *pv;
1588 register PyObject *w = *pw;
Guido van Rossum5524a591995-01-10 15:26:20 +00001589 int res;
1590
Guido van Rossum517c7d42002-04-26 02:49:14 +00001591 /* Shortcut only for old-style types */
1592 if (v->ob_type == w->ob_type &&
1593 !PyType_HasFeature(v->ob_type, Py_TPFLAGS_CHECKTYPES))
1594 {
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001595 Py_INCREF(v);
1596 Py_INCREF(w);
Guido van Rossum5524a591995-01-10 15:26:20 +00001597 return 0;
1598 }
1599 if (v->ob_type->tp_as_number && v->ob_type->tp_as_number->nb_coerce) {
1600 res = (*v->ob_type->tp_as_number->nb_coerce)(pv, pw);
1601 if (res <= 0)
1602 return res;
1603 }
1604 if (w->ob_type->tp_as_number && w->ob_type->tp_as_number->nb_coerce) {
1605 res = (*w->ob_type->tp_as_number->nb_coerce)(pw, pv);
1606 if (res <= 0)
1607 return res;
1608 }
Guido van Rossum242c6421997-11-19 16:03:17 +00001609 return 1;
1610}
1611
Guido van Rossume797ec12001-01-17 15:24:28 +00001612/* Coerce two numeric types to the "larger" one.
1613 Increment the reference count on each argument.
1614 Return -1 and raise an exception if no coercion is possible
1615 (and then no reference count is incremented).
1616*/
Guido van Rossum242c6421997-11-19 16:03:17 +00001617int
Fred Drake100814d2000-07-09 15:48:49 +00001618PyNumber_Coerce(PyObject **pv, PyObject **pw)
Guido van Rossum242c6421997-11-19 16:03:17 +00001619{
1620 int err = PyNumber_CoerceEx(pv, pw);
1621 if (err <= 0)
1622 return err;
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001623 PyErr_SetString(PyExc_TypeError, "number coercion failed");
Guido van Rossum5524a591995-01-10 15:26:20 +00001624 return -1;
1625}
1626
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001627
Guido van Rossum49b11fe1995-01-26 00:38:22 +00001628/* Test whether an object can be called */
1629
1630int
Fred Drake100814d2000-07-09 15:48:49 +00001631PyCallable_Check(PyObject *x)
Guido van Rossum49b11fe1995-01-26 00:38:22 +00001632{
1633 if (x == NULL)
1634 return 0;
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001635 if (PyInstance_Check(x)) {
1636 PyObject *call = PyObject_GetAttrString(x, "__call__");
Guido van Rossum49b11fe1995-01-26 00:38:22 +00001637 if (call == NULL) {
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001638 PyErr_Clear();
Guido van Rossum49b11fe1995-01-26 00:38:22 +00001639 return 0;
1640 }
1641 /* Could test recursively but don't, for fear of endless
1642 recursion if some joker sets self.__call__ = self */
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001643 Py_DECREF(call);
Guido van Rossum49b11fe1995-01-26 00:38:22 +00001644 return 1;
1645 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00001646 else {
1647 return x->ob_type->tp_call != NULL;
1648 }
Guido van Rossum49b11fe1995-01-26 00:38:22 +00001649}
1650
Georg Brandl871f1bc2007-03-12 13:17:36 +00001651/* ------------------------- PyObject_Dir() helpers ------------------------- */
1652
Tim Peters7eea37e2001-09-04 22:08:56 +00001653/* Helper for PyObject_Dir.
1654 Merge the __dict__ of aclass into dict, and recursively also all
1655 the __dict__s of aclass's base classes. The order of merging isn't
1656 defined, as it's expected that only the final set of dict keys is
1657 interesting.
1658 Return 0 on success, -1 on error.
1659*/
1660
1661static int
1662merge_class_dict(PyObject* dict, PyObject* aclass)
1663{
1664 PyObject *classdict;
1665 PyObject *bases;
1666
1667 assert(PyDict_Check(dict));
1668 assert(aclass);
1669
1670 /* Merge in the type's dict (if any). */
1671 classdict = PyObject_GetAttrString(aclass, "__dict__");
1672 if (classdict == NULL)
1673 PyErr_Clear();
1674 else {
1675 int status = PyDict_Update(dict, classdict);
1676 Py_DECREF(classdict);
1677 if (status < 0)
1678 return -1;
1679 }
1680
1681 /* Recursively merge in the base types' (if any) dicts. */
1682 bases = PyObject_GetAttrString(aclass, "__bases__");
Tim Petersbc7e8632001-09-16 20:33:22 +00001683 if (bases == NULL)
1684 PyErr_Clear();
1685 else {
Guido van Rossum44022412002-05-13 18:29:46 +00001686 /* We have no guarantee that bases is a real tuple */
Martin v. Löwis18e16552006-02-15 17:27:45 +00001687 Py_ssize_t i, n;
Guido van Rossum44022412002-05-13 18:29:46 +00001688 n = PySequence_Size(bases); /* This better be right */
1689 if (n < 0)
1690 PyErr_Clear();
1691 else {
1692 for (i = 0; i < n; i++) {
Tim Peters18e70832003-02-05 19:35:19 +00001693 int status;
Guido van Rossum44022412002-05-13 18:29:46 +00001694 PyObject *base = PySequence_GetItem(bases, i);
1695 if (base == NULL) {
1696 Py_DECREF(bases);
1697 return -1;
1698 }
Tim Peters18e70832003-02-05 19:35:19 +00001699 status = merge_class_dict(dict, base);
1700 Py_DECREF(base);
1701 if (status < 0) {
Guido van Rossum44022412002-05-13 18:29:46 +00001702 Py_DECREF(bases);
1703 return -1;
1704 }
Tim Peters7eea37e2001-09-04 22:08:56 +00001705 }
1706 }
1707 Py_DECREF(bases);
1708 }
1709 return 0;
1710}
1711
Tim Peters305b5852001-09-17 02:38:46 +00001712/* Helper for PyObject_Dir.
1713 If obj has an attr named attrname that's a list, merge its string
1714 elements into keys of dict.
1715 Return 0 on success, -1 on error. Errors due to not finding the attr,
1716 or the attr not being a list, are suppressed.
1717*/
1718
1719static int
Jeremy Hyltonaf68c872005-12-10 18:50:16 +00001720merge_list_attr(PyObject* dict, PyObject* obj, const char *attrname)
Tim Peters305b5852001-09-17 02:38:46 +00001721{
1722 PyObject *list;
1723 int result = 0;
1724
1725 assert(PyDict_Check(dict));
1726 assert(obj);
1727 assert(attrname);
1728
1729 list = PyObject_GetAttrString(obj, attrname);
1730 if (list == NULL)
1731 PyErr_Clear();
1732
1733 else if (PyList_Check(list)) {
1734 int i;
1735 for (i = 0; i < PyList_GET_SIZE(list); ++i) {
1736 PyObject *item = PyList_GET_ITEM(list, i);
Gregory P. Smithdd96db62008-06-09 04:58:54 +00001737 if (PyString_Check(item)) {
Tim Peters305b5852001-09-17 02:38:46 +00001738 result = PyDict_SetItem(dict, item, Py_None);
1739 if (result < 0)
1740 break;
1741 }
1742 }
Georg Brandl07e56812008-03-21 20:21:46 +00001743 if (Py_Py3kWarningFlag &&
1744 (strcmp(attrname, "__members__") == 0 ||
1745 strcmp(attrname, "__methods__") == 0)) {
Benjamin Peterson9f4f4812008-04-27 03:01:45 +00001746 if (PyErr_WarnEx(PyExc_DeprecationWarning,
Georg Brandld5b635f2008-03-25 08:29:14 +00001747 "__members__ and __methods__ not "
Benjamin Peterson9f4f4812008-04-27 03:01:45 +00001748 "supported in 3.x", 1) < 0) {
Georg Brandl07e56812008-03-21 20:21:46 +00001749 Py_XDECREF(list);
1750 return -1;
1751 }
1752 }
Tim Peters305b5852001-09-17 02:38:46 +00001753 }
1754
1755 Py_XDECREF(list);
1756 return result;
1757}
1758
Georg Brandl871f1bc2007-03-12 13:17:36 +00001759/* Helper for PyObject_Dir without arguments: returns the local scope. */
1760static PyObject *
Jeremy Hylton26ca9252007-03-16 14:49:11 +00001761_dir_locals(void)
Tim Peters7eea37e2001-09-04 22:08:56 +00001762{
Georg Brandl871f1bc2007-03-12 13:17:36 +00001763 PyObject *names;
1764 PyObject *locals = PyEval_GetLocals();
Tim Peters7eea37e2001-09-04 22:08:56 +00001765
Georg Brandl871f1bc2007-03-12 13:17:36 +00001766 if (locals == NULL) {
1767 PyErr_SetString(PyExc_SystemError, "frame does not exist");
1768 return NULL;
Tim Peters7eea37e2001-09-04 22:08:56 +00001769 }
1770
Georg Brandl871f1bc2007-03-12 13:17:36 +00001771 names = PyMapping_Keys(locals);
1772 if (!names)
1773 return NULL;
1774 if (!PyList_Check(names)) {
Georg Brandlccff7852006-06-18 22:17:29 +00001775 PyErr_Format(PyExc_TypeError,
Georg Brandl871f1bc2007-03-12 13:17:36 +00001776 "dir(): expected keys() of locals to be a list, "
Christian Heimese93237d2007-12-19 02:37:44 +00001777 "not '%.200s'", Py_TYPE(names)->tp_name);
Georg Brandl871f1bc2007-03-12 13:17:36 +00001778 Py_DECREF(names);
1779 return NULL;
Raymond Hettinger2a7dede2004-08-07 04:55:30 +00001780 }
Georg Brandl871f1bc2007-03-12 13:17:36 +00001781 /* the locals don't need to be DECREF'd */
1782 return names;
1783}
Tim Peters7eea37e2001-09-04 22:08:56 +00001784
Georg Brandl871f1bc2007-03-12 13:17:36 +00001785/* Helper for PyObject_Dir of type objects: returns __dict__ and __bases__.
1786 We deliberately don't suck up its __class__, as methods belonging to the
1787 metaclass would probably be more confusing than helpful.
1788*/
1789static PyObject *
1790_specialized_dir_type(PyObject *obj)
1791{
1792 PyObject *result = NULL;
1793 PyObject *dict = PyDict_New();
1794
1795 if (dict != NULL && merge_class_dict(dict, obj) == 0)
1796 result = PyDict_Keys(dict);
1797
1798 Py_XDECREF(dict);
1799 return result;
1800}
1801
1802/* Helper for PyObject_Dir of module objects: returns the module's __dict__. */
1803static PyObject *
1804_specialized_dir_module(PyObject *obj)
1805{
1806 PyObject *result = NULL;
1807 PyObject *dict = PyObject_GetAttrString(obj, "__dict__");
1808
1809 if (dict != NULL) {
1810 if (PyDict_Check(dict))
1811 result = PyDict_Keys(dict);
1812 else {
1813 PyErr_Format(PyExc_TypeError,
1814 "%.200s.__dict__ is not a dictionary",
1815 PyModule_GetName(obj));
1816 }
1817 }
1818
1819 Py_XDECREF(dict);
1820 return result;
1821}
1822
1823/* Helper for PyObject_Dir of generic objects: returns __dict__, __class__,
1824 and recursively up the __class__.__bases__ chain.
1825*/
1826static PyObject *
1827_generic_dir(PyObject *obj)
1828{
1829 PyObject *result = NULL;
1830 PyObject *dict = NULL;
1831 PyObject *itsclass = NULL;
1832
1833 /* Get __dict__ (which may or may not be a real dict...) */
1834 dict = PyObject_GetAttrString(obj, "__dict__");
1835 if (dict == NULL) {
1836 PyErr_Clear();
1837 dict = PyDict_New();
1838 }
1839 else if (!PyDict_Check(dict)) {
1840 Py_DECREF(dict);
1841 dict = PyDict_New();
1842 }
1843 else {
1844 /* Copy __dict__ to avoid mutating it. */
1845 PyObject *temp = PyDict_Copy(dict);
1846 Py_DECREF(dict);
1847 dict = temp;
1848 }
1849
1850 if (dict == NULL)
1851 goto error;
1852
1853 /* Merge in __members__ and __methods__ (if any).
1854 * This is removed in Python 3000. */
1855 if (merge_list_attr(dict, obj, "__members__") < 0)
1856 goto error;
1857 if (merge_list_attr(dict, obj, "__methods__") < 0)
1858 goto error;
1859
1860 /* Merge in attrs reachable from its class. */
1861 itsclass = PyObject_GetAttrString(obj, "__class__");
1862 if (itsclass == NULL)
1863 /* XXX(tomer): Perhaps fall back to obj->ob_type if no
1864 __class__ exists? */
1865 PyErr_Clear();
1866 else {
1867 if (merge_class_dict(dict, itsclass) != 0)
1868 goto error;
1869 }
1870
1871 result = PyDict_Keys(dict);
Tim Peters7eea37e2001-09-04 22:08:56 +00001872 /* fall through */
Georg Brandl871f1bc2007-03-12 13:17:36 +00001873error:
1874 Py_XDECREF(itsclass);
1875 Py_XDECREF(dict);
1876 return result;
1877}
1878
1879/* Helper for PyObject_Dir: object introspection.
1880 This calls one of the above specialized versions if no __dir__ method
1881 exists. */
1882static PyObject *
1883_dir_object(PyObject *obj)
1884{
Georg Brandl3bb15672007-03-13 07:23:16 +00001885 PyObject *result = NULL;
1886 PyObject *dirfunc = PyObject_GetAttrString((PyObject *)obj->ob_type,
1887 "__dir__");
Georg Brandl871f1bc2007-03-12 13:17:36 +00001888
1889 assert(obj);
1890 if (dirfunc == NULL) {
1891 /* use default implementation */
1892 PyErr_Clear();
1893 if (PyModule_Check(obj))
1894 result = _specialized_dir_module(obj);
1895 else if (PyType_Check(obj) || PyClass_Check(obj))
1896 result = _specialized_dir_type(obj);
1897 else
1898 result = _generic_dir(obj);
1899 }
1900 else {
1901 /* use __dir__ */
1902 result = PyObject_CallFunctionObjArgs(dirfunc, obj, NULL);
1903 Py_DECREF(dirfunc);
1904 if (result == NULL)
1905 return NULL;
1906
1907 /* result must be a list */
1908 /* XXX(gbrandl): could also check if all items are strings */
1909 if (!PyList_Check(result)) {
1910 PyErr_Format(PyExc_TypeError,
1911 "__dir__() must return a list, not %.200s",
Christian Heimese93237d2007-12-19 02:37:44 +00001912 Py_TYPE(result)->tp_name);
Georg Brandl871f1bc2007-03-12 13:17:36 +00001913 Py_DECREF(result);
1914 result = NULL;
1915 }
1916 }
1917
1918 return result;
1919}
1920
1921/* Implementation of dir() -- if obj is NULL, returns the names in the current
1922 (local) scope. Otherwise, performs introspection of the object: returns a
1923 sorted list of attribute names (supposedly) accessible from the object
1924*/
1925PyObject *
1926PyObject_Dir(PyObject *obj)
1927{
1928 PyObject * result;
1929
1930 if (obj == NULL)
1931 /* no object -- introspect the locals */
1932 result = _dir_locals();
1933 else
1934 /* object -- introspect the object */
1935 result = _dir_object(obj);
1936
1937 assert(result == NULL || PyList_Check(result));
1938
1939 if (result != NULL && PyList_Sort(result) != 0) {
1940 /* sorting the list failed */
1941 Py_DECREF(result);
1942 result = NULL;
1943 }
1944
Tim Peters7eea37e2001-09-04 22:08:56 +00001945 return result;
1946}
Guido van Rossum49b11fe1995-01-26 00:38:22 +00001947
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001948/*
1949NoObject is usable as a non-NULL undefined value, used by the macro None.
1950There is (and should be!) no way to create other objects of this type,
Guido van Rossum3f5da241990-12-20 15:06:42 +00001951so there is exactly one (which is indestructible, by the way).
Guido van Rossumba21a492001-08-16 08:17:26 +00001952(XXX This type and the type of NotImplemented below should be unified.)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001953*/
1954
Guido van Rossum0c182a11992-03-27 17:26:13 +00001955/* ARGSUSED */
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001956static PyObject *
Fred Drake100814d2000-07-09 15:48:49 +00001957none_repr(PyObject *op)
Guido van Rossum3f5da241990-12-20 15:06:42 +00001958{
Gregory P. Smithdd96db62008-06-09 04:58:54 +00001959 return PyString_FromString("None");
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001960}
1961
Barry Warsaw9bf16442001-01-23 16:24:35 +00001962/* ARGUSED */
1963static void
Tim Peters803526b2002-07-07 05:13:56 +00001964none_dealloc(PyObject* ignore)
Barry Warsaw9bf16442001-01-23 16:24:35 +00001965{
1966 /* This should never get called, but we also don't want to SEGV if
1967 * we accidently decref None out of existance.
1968 */
Martin v. Löwis3f19b102002-08-07 16:21:51 +00001969 Py_FatalError("deallocating None");
Barry Warsaw9bf16442001-01-23 16:24:35 +00001970}
1971
1972
Guido van Rossumba21a492001-08-16 08:17:26 +00001973static PyTypeObject PyNone_Type = {
Martin v. Löwis68192102007-07-21 06:55:02 +00001974 PyVarObject_HEAD_INIT(&PyType_Type, 0)
Guido van Rossumba21a492001-08-16 08:17:26 +00001975 "NoneType",
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001976 0,
1977 0,
Georg Brandl347b3002006-03-30 11:57:00 +00001978 none_dealloc, /*tp_dealloc*/ /*never called*/
Guido van Rossum7066dd71992-09-17 17:54:56 +00001979 0, /*tp_print*/
Guido van Rossum3f5da241990-12-20 15:06:42 +00001980 0, /*tp_getattr*/
1981 0, /*tp_setattr*/
1982 0, /*tp_compare*/
Georg Brandl347b3002006-03-30 11:57:00 +00001983 none_repr, /*tp_repr*/
Guido van Rossum3f5da241990-12-20 15:06:42 +00001984 0, /*tp_as_number*/
1985 0, /*tp_as_sequence*/
1986 0, /*tp_as_mapping*/
Guido van Rossum64c06e32007-11-22 00:55:51 +00001987 (hashfunc)_Py_HashPointer, /*tp_hash */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001988};
1989
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001990PyObject _Py_NoneStruct = {
Martin v. Löwis68192102007-07-21 06:55:02 +00001991 _PyObject_EXTRA_INIT
1992 1, &PyNone_Type
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001993};
1994
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +00001995/* NotImplemented is an object that can be used to signal that an
1996 operation is not implemented for the given type combination. */
1997
1998static PyObject *
1999NotImplemented_repr(PyObject *op)
2000{
Gregory P. Smithdd96db62008-06-09 04:58:54 +00002001 return PyString_FromString("NotImplemented");
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +00002002}
2003
2004static PyTypeObject PyNotImplemented_Type = {
Martin v. Löwis68192102007-07-21 06:55:02 +00002005 PyVarObject_HEAD_INIT(&PyType_Type, 0)
Guido van Rossumba21a492001-08-16 08:17:26 +00002006 "NotImplementedType",
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +00002007 0,
2008 0,
Georg Brandl347b3002006-03-30 11:57:00 +00002009 none_dealloc, /*tp_dealloc*/ /*never called*/
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +00002010 0, /*tp_print*/
2011 0, /*tp_getattr*/
2012 0, /*tp_setattr*/
2013 0, /*tp_compare*/
Georg Brandl347b3002006-03-30 11:57:00 +00002014 NotImplemented_repr, /*tp_repr*/
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +00002015 0, /*tp_as_number*/
2016 0, /*tp_as_sequence*/
2017 0, /*tp_as_mapping*/
2018 0, /*tp_hash */
2019};
2020
2021PyObject _Py_NotImplementedStruct = {
Martin v. Löwis68192102007-07-21 06:55:02 +00002022 _PyObject_EXTRA_INIT
2023 1, &PyNotImplemented_Type
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +00002024};
2025
Guido van Rossumba21a492001-08-16 08:17:26 +00002026void
2027_Py_ReadyTypes(void)
2028{
2029 if (PyType_Ready(&PyType_Type) < 0)
2030 Py_FatalError("Can't initialize 'type'");
2031
Fred Drake0a4dd392004-07-02 18:57:45 +00002032 if (PyType_Ready(&_PyWeakref_RefType) < 0)
2033 Py_FatalError("Can't initialize 'weakref'");
2034
Guido van Rossum77f6a652002-04-03 22:41:51 +00002035 if (PyType_Ready(&PyBool_Type) < 0)
2036 Py_FatalError("Can't initialize 'bool'");
2037
Gregory P. Smithdd96db62008-06-09 04:58:54 +00002038 if (PyType_Ready(&PyString_Type) < 0)
Guido van Rossumcacfc072002-05-24 19:01:59 +00002039 Py_FatalError("Can't initialize 'str'");
2040
Christian Heimes3497f942008-05-26 12:29:14 +00002041 if (PyType_Ready(&PyByteArray_Type) < 0)
Christian Heimes1a6387e2008-03-26 12:49:49 +00002042 Py_FatalError("Can't initialize 'bytes'");
2043
Guido van Rossumba21a492001-08-16 08:17:26 +00002044 if (PyType_Ready(&PyList_Type) < 0)
2045 Py_FatalError("Can't initialize 'list'");
2046
2047 if (PyType_Ready(&PyNone_Type) < 0)
2048 Py_FatalError("Can't initialize type(None)");
2049
2050 if (PyType_Ready(&PyNotImplemented_Type) < 0)
2051 Py_FatalError("Can't initialize type(NotImplemented)");
2052}
2053
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002054
Guido van Rossum84a90321996-05-22 16:34:47 +00002055#ifdef Py_TRACE_REFS
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002056
Guido van Rossumaacdc9d1996-08-12 21:32:12 +00002057void
Fred Drake100814d2000-07-09 15:48:49 +00002058_Py_NewReference(PyObject *op)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002059{
Tim Peters34592512002-07-11 06:23:50 +00002060 _Py_INC_REFTOTAL;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002061 op->ob_refcnt = 1;
Tim Peters7571a0f2003-03-23 17:52:28 +00002062 _Py_AddToAllObjects(op, 1);
Tim Peters34592512002-07-11 06:23:50 +00002063 _Py_INC_TPALLOCS(op);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002064}
2065
Guido van Rossumaacdc9d1996-08-12 21:32:12 +00002066void
Fred Drake100814d2000-07-09 15:48:49 +00002067_Py_ForgetReference(register PyObject *op)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002068{
Guido van Rossumbffd6832000-01-20 22:32:56 +00002069#ifdef SLOW_UNREF_CHECK
Guido van Rossum4c08d552000-03-10 22:55:18 +00002070 register PyObject *p;
Guido van Rossumbffd6832000-01-20 22:32:56 +00002071#endif
Guido van Rossumd7047b31995-01-02 19:07:15 +00002072 if (op->ob_refcnt < 0)
Guido van Rossumc0b618a1997-05-02 03:12:38 +00002073 Py_FatalError("UNREF negative refcnt");
Guido van Rossum2e8f6141992-09-03 20:32:55 +00002074 if (op == &refchain ||
Guido van Rossumd7047b31995-01-02 19:07:15 +00002075 op->_ob_prev->_ob_next != op || op->_ob_next->_ob_prev != op)
Guido van Rossumc0b618a1997-05-02 03:12:38 +00002076 Py_FatalError("UNREF invalid object");
Guido van Rossum2e8f6141992-09-03 20:32:55 +00002077#ifdef SLOW_UNREF_CHECK
Guido van Rossum3f5da241990-12-20 15:06:42 +00002078 for (p = refchain._ob_next; p != &refchain; p = p->_ob_next) {
2079 if (p == op)
2080 break;
2081 }
Guido van Rossumd7047b31995-01-02 19:07:15 +00002082 if (p == &refchain) /* Not found */
Guido van Rossumc0b618a1997-05-02 03:12:38 +00002083 Py_FatalError("UNREF unknown object");
Guido van Rossum2e8f6141992-09-03 20:32:55 +00002084#endif
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002085 op->_ob_next->_ob_prev = op->_ob_prev;
2086 op->_ob_prev->_ob_next = op->_ob_next;
Guido van Rossum2e8f6141992-09-03 20:32:55 +00002087 op->_ob_next = op->_ob_prev = NULL;
Tim Peters34592512002-07-11 06:23:50 +00002088 _Py_INC_TPFREES(op);
Guido van Rossum3f5da241990-12-20 15:06:42 +00002089}
2090
Guido van Rossumaacdc9d1996-08-12 21:32:12 +00002091void
Fred Drake100814d2000-07-09 15:48:49 +00002092_Py_Dealloc(PyObject *op)
Guido van Rossum3f5da241990-12-20 15:06:42 +00002093{
Christian Heimese93237d2007-12-19 02:37:44 +00002094 destructor dealloc = Py_TYPE(op)->tp_dealloc;
Guido van Rossumc0b618a1997-05-02 03:12:38 +00002095 _Py_ForgetReference(op);
Guido van Rossum9776adf1994-09-07 14:36:45 +00002096 (*dealloc)(op);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002097}
2098
Tim Peters269b2a62003-04-17 19:52:29 +00002099/* Print all live objects. Because PyObject_Print is called, the
2100 * interpreter must be in a healthy state.
2101 */
Guido van Rossumaacdc9d1996-08-12 21:32:12 +00002102void
Fred Drake100814d2000-07-09 15:48:49 +00002103_Py_PrintReferences(FILE *fp)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002104{
Guido van Rossumc0b618a1997-05-02 03:12:38 +00002105 PyObject *op;
Guido van Rossume09fb551997-08-05 02:04:34 +00002106 fprintf(fp, "Remaining objects:\n");
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002107 for (op = refchain._ob_next; op != &refchain; op = op->_ob_next) {
Tim Peterscbd6f182006-04-11 19:12:33 +00002108 fprintf(fp, "%p [%" PY_FORMAT_SIZE_T "d] ", op, op->ob_refcnt);
Guido van Rossumc0b618a1997-05-02 03:12:38 +00002109 if (PyObject_Print(op, fp, 0) != 0)
2110 PyErr_Clear();
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002111 putc('\n', fp);
2112 }
2113}
2114
Tim Peters269b2a62003-04-17 19:52:29 +00002115/* Print the addresses of all live objects. Unlike _Py_PrintReferences, this
2116 * doesn't make any calls to the Python C API, so is always safe to call.
2117 */
2118void
2119_Py_PrintReferenceAddresses(FILE *fp)
2120{
2121 PyObject *op;
2122 fprintf(fp, "Remaining object addresses:\n");
2123 for (op = refchain._ob_next; op != &refchain; op = op->_ob_next)
Tim Peterscbd6f182006-04-11 19:12:33 +00002124 fprintf(fp, "%p [%" PY_FORMAT_SIZE_T "d] %s\n", op,
Christian Heimese93237d2007-12-19 02:37:44 +00002125 op->ob_refcnt, Py_TYPE(op)->tp_name);
Tim Peters269b2a62003-04-17 19:52:29 +00002126}
2127
Sjoerd Mullender6ec3c651995-08-29 09:18:14 +00002128PyObject *
Fred Drake100814d2000-07-09 15:48:49 +00002129_Py_GetObjects(PyObject *self, PyObject *args)
Sjoerd Mullender6ec3c651995-08-29 09:18:14 +00002130{
2131 int i, n;
2132 PyObject *t = NULL;
2133 PyObject *res, *op;
2134
2135 if (!PyArg_ParseTuple(args, "i|O", &n, &t))
2136 return NULL;
2137 op = refchain._ob_next;
2138 res = PyList_New(0);
2139 if (res == NULL)
2140 return NULL;
2141 for (i = 0; (n == 0 || i < n) && op != &refchain; i++) {
2142 while (op == self || op == args || op == res || op == t ||
Christian Heimese93237d2007-12-19 02:37:44 +00002143 (t != NULL && Py_TYPE(op) != (PyTypeObject *) t)) {
Sjoerd Mullender6ec3c651995-08-29 09:18:14 +00002144 op = op->_ob_next;
2145 if (op == &refchain)
2146 return res;
2147 }
2148 if (PyList_Append(res, op) < 0) {
2149 Py_DECREF(res);
2150 return NULL;
2151 }
2152 op = op->_ob_next;
2153 }
2154 return res;
2155}
2156
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002157#endif
Guido van Rossum97ead3f1996-01-12 01:24:09 +00002158
2159
2160/* Hack to force loading of cobject.o */
Guido van Rossumda9c2711996-12-05 21:58:58 +00002161PyTypeObject *_Py_cobject_hack = &PyCObject_Type;
Guido van Rossum84a90321996-05-22 16:34:47 +00002162
2163
2164/* Hack to force loading of abstract.o */
Martin v. Löwis18e16552006-02-15 17:27:45 +00002165Py_ssize_t (*_Py_abstract_hack)(PyObject *) = PyObject_Size;
Guido van Rossume09fb551997-08-05 02:04:34 +00002166
2167
Andrew M. Kuchling1582a3a2000-08-16 12:27:23 +00002168/* Python's malloc wrappers (see pymem.h) */
Guido van Rossume09fb551997-08-05 02:04:34 +00002169
Thomas Wouters334fb892000-07-25 12:56:38 +00002170void *
Fred Drake100814d2000-07-09 15:48:49 +00002171PyMem_Malloc(size_t nbytes)
Guido van Rossume09fb551997-08-05 02:04:34 +00002172{
Guido van Rossumb18618d2000-05-03 23:44:39 +00002173 return PyMem_MALLOC(nbytes);
Guido van Rossume09fb551997-08-05 02:04:34 +00002174}
2175
Thomas Wouters334fb892000-07-25 12:56:38 +00002176void *
2177PyMem_Realloc(void *p, size_t nbytes)
Guido van Rossume09fb551997-08-05 02:04:34 +00002178{
Tim Petersaf3e8de2002-04-12 07:22:56 +00002179 return PyMem_REALLOC(p, nbytes);
Guido van Rossume09fb551997-08-05 02:04:34 +00002180}
2181
2182void
Thomas Wouters334fb892000-07-25 12:56:38 +00002183PyMem_Free(void *p)
Guido van Rossume09fb551997-08-05 02:04:34 +00002184{
Guido van Rossumb18618d2000-05-03 23:44:39 +00002185 PyMem_FREE(p);
2186}
2187
2188
Guido van Rossum86610361998-04-10 22:32:46 +00002189/* These methods are used to control infinite recursion in repr, str, print,
2190 etc. Container objects that may recursively contain themselves,
2191 e.g. builtin dictionaries and lists, should used Py_ReprEnter() and
2192 Py_ReprLeave() to avoid infinite recursion.
2193
2194 Py_ReprEnter() returns 0 the first time it is called for a particular
2195 object and 1 every time thereafter. It returns -1 if an exception
2196 occurred. Py_ReprLeave() has no return value.
2197
2198 See dictobject.c and listobject.c for examples of use.
2199*/
2200
2201#define KEY "Py_Repr"
2202
2203int
Fred Drake100814d2000-07-09 15:48:49 +00002204Py_ReprEnter(PyObject *obj)
Guido van Rossum86610361998-04-10 22:32:46 +00002205{
2206 PyObject *dict;
2207 PyObject *list;
Martin v. Löwis18e16552006-02-15 17:27:45 +00002208 Py_ssize_t i;
Guido van Rossum86610361998-04-10 22:32:46 +00002209
2210 dict = PyThreadState_GetDict();
2211 if (dict == NULL)
Guido van Rossum0fc8f002003-04-15 15:12:39 +00002212 return 0;
Guido van Rossum86610361998-04-10 22:32:46 +00002213 list = PyDict_GetItemString(dict, KEY);
2214 if (list == NULL) {
2215 list = PyList_New(0);
2216 if (list == NULL)
2217 return -1;
2218 if (PyDict_SetItemString(dict, KEY, list) < 0)
2219 return -1;
2220 Py_DECREF(list);
2221 }
2222 i = PyList_GET_SIZE(list);
2223 while (--i >= 0) {
2224 if (PyList_GET_ITEM(list, i) == obj)
2225 return 1;
2226 }
2227 PyList_Append(list, obj);
2228 return 0;
2229}
2230
2231void
Fred Drake100814d2000-07-09 15:48:49 +00002232Py_ReprLeave(PyObject *obj)
Guido van Rossum86610361998-04-10 22:32:46 +00002233{
2234 PyObject *dict;
2235 PyObject *list;
Martin v. Löwis18e16552006-02-15 17:27:45 +00002236 Py_ssize_t i;
Guido van Rossum86610361998-04-10 22:32:46 +00002237
2238 dict = PyThreadState_GetDict();
Guido van Rossumeb909461998-04-11 15:17:34 +00002239 if (dict == NULL)
2240 return;
Guido van Rossum86610361998-04-10 22:32:46 +00002241 list = PyDict_GetItemString(dict, KEY);
Guido van Rossumeb909461998-04-11 15:17:34 +00002242 if (list == NULL || !PyList_Check(list))
2243 return;
Guido van Rossum86610361998-04-10 22:32:46 +00002244 i = PyList_GET_SIZE(list);
2245 /* Count backwards because we always expect obj to be list[-1] */
2246 while (--i >= 0) {
2247 if (PyList_GET_ITEM(list, i) == obj) {
2248 PyList_SetSlice(list, i, i + 1, NULL);
2249 break;
2250 }
2251 }
2252}
Guido van Rossumd724b232000-03-13 16:01:29 +00002253
Tim Peters803526b2002-07-07 05:13:56 +00002254/* Trashcan support. */
Guido van Rossumd724b232000-03-13 16:01:29 +00002255
Tim Peters803526b2002-07-07 05:13:56 +00002256/* Current call-stack depth of tp_dealloc calls. */
Guido van Rossumd724b232000-03-13 16:01:29 +00002257int _PyTrash_delete_nesting = 0;
Guido van Rossume92e6102000-04-24 15:40:53 +00002258
Tim Peters803526b2002-07-07 05:13:56 +00002259/* List of objects that still need to be cleaned up, singly linked via their
2260 * gc headers' gc_prev pointers.
2261 */
2262PyObject *_PyTrash_delete_later = NULL;
Guido van Rossumd724b232000-03-13 16:01:29 +00002263
Tim Peters803526b2002-07-07 05:13:56 +00002264/* Add op to the _PyTrash_delete_later list. Called when the current
2265 * call-stack depth gets large. op must be a currently untracked gc'ed
2266 * object, with refcount 0. Py_DECREF must already have been called on it.
2267 */
Guido van Rossumd724b232000-03-13 16:01:29 +00002268void
Fred Drake100814d2000-07-09 15:48:49 +00002269_PyTrash_deposit_object(PyObject *op)
Guido van Rossumd724b232000-03-13 16:01:29 +00002270{
Tim Peters803526b2002-07-07 05:13:56 +00002271 assert(PyObject_IS_GC(op));
2272 assert(_Py_AS_GC(op)->gc.gc_refs == _PyGC_REFS_UNTRACKED);
2273 assert(op->ob_refcnt == 0);
Neil Schemenauerf589c052002-03-29 03:05:54 +00002274 _Py_AS_GC(op)->gc.gc_prev = (PyGC_Head *)_PyTrash_delete_later;
Guido van Rossume92e6102000-04-24 15:40:53 +00002275 _PyTrash_delete_later = op;
Guido van Rossumd724b232000-03-13 16:01:29 +00002276}
2277
Tim Peters803526b2002-07-07 05:13:56 +00002278/* Dealloccate all the objects in the _PyTrash_delete_later list. Called when
2279 * the call-stack unwinds again.
2280 */
Guido van Rossumd724b232000-03-13 16:01:29 +00002281void
Fred Drake100814d2000-07-09 15:48:49 +00002282_PyTrash_destroy_chain(void)
Guido van Rossumd724b232000-03-13 16:01:29 +00002283{
2284 while (_PyTrash_delete_later) {
Tim Peters803526b2002-07-07 05:13:56 +00002285 PyObject *op = _PyTrash_delete_later;
Christian Heimese93237d2007-12-19 02:37:44 +00002286 destructor dealloc = Py_TYPE(op)->tp_dealloc;
Neil Schemenauerf589c052002-03-29 03:05:54 +00002287
Neil Schemenauerf589c052002-03-29 03:05:54 +00002288 _PyTrash_delete_later =
Tim Peters803526b2002-07-07 05:13:56 +00002289 (PyObject*) _Py_AS_GC(op)->gc.gc_prev;
Neil Schemenauerf589c052002-03-29 03:05:54 +00002290
Tim Peters803526b2002-07-07 05:13:56 +00002291 /* Call the deallocator directly. This used to try to
2292 * fool Py_DECREF into calling it indirectly, but
2293 * Py_DECREF was already called on this object, and in
2294 * assorted non-release builds calling Py_DECREF again ends
2295 * up distorting allocation statistics.
2296 */
2297 assert(op->ob_refcnt == 0);
Guido van Rossumd724b232000-03-13 16:01:29 +00002298 ++_PyTrash_delete_nesting;
Tim Peters803526b2002-07-07 05:13:56 +00002299 (*dealloc)(op);
Guido van Rossumd724b232000-03-13 16:01:29 +00002300 --_PyTrash_delete_nesting;
2301 }
2302}
Anthony Baxterac6bd462006-04-13 02:06:09 +00002303
2304#ifdef __cplusplus
2305}
2306#endif