blob: daee6fb339e3fcfbd8e5a506fc448f444eae97c5 [file] [log] [blame]
Guido van Rossumf70e43a1991-02-19 12:39:46 +00001
Guido van Rossum3f5da241990-12-20 15:06:42 +00002/* Generic object operations; and implementation of None (NoObject) */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00003
Guido van Rossumc0b618a1997-05-02 03:12:38 +00004#include "Python.h"
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00005
Anthony Baxterac6bd462006-04-13 02:06:09 +00006#ifdef __cplusplus
7extern "C" {
8#endif
9
Tim Peters34592512002-07-11 06:23:50 +000010#ifdef Py_REF_DEBUG
Neal Norwitz84632ee2006-03-04 20:00:59 +000011Py_ssize_t _Py_RefTotal;
Armin Rigoe1709372006-04-12 17:06:05 +000012
13Py_ssize_t
14_Py_GetRefTotal(void)
15{
16 PyObject *o;
17 Py_ssize_t total = _Py_RefTotal;
18 /* ignore the references to the dummy object of the dicts and sets
19 because they are not reliable and not useful (now that the
20 hash table code is well-tested) */
21 o = _PyDict_Dummy();
22 if (o != NULL)
23 total -= o->ob_refcnt;
24 o = _PySet_Dummy();
25 if (o != NULL)
26 total -= o->ob_refcnt;
27 return total;
28}
29#endif /* Py_REF_DEBUG */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000030
Mark Hammonda2905272002-07-29 13:42:14 +000031int Py_DivisionWarningFlag;
Neal Norwitz8b2bfbc2007-05-23 06:35:32 +000032int Py_Py3kWarningFlag;
Guido van Rossum393661d2001-08-31 17:40:15 +000033
Guido van Rossum3f5da241990-12-20 15:06:42 +000034/* Object allocation routines used by NEWOBJ and NEWVAROBJ macros.
35 These are used by the individual routines for object creation.
36 Do not call them otherwise, they do not initialize the object! */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000037
Tim Peters78be7992003-03-23 02:51:01 +000038#ifdef Py_TRACE_REFS
Tim Peters7571a0f2003-03-23 17:52:28 +000039/* Head of circular doubly-linked list of all objects. These are linked
40 * together via the _ob_prev and _ob_next members of a PyObject, which
41 * exist only in a Py_TRACE_REFS build.
42 */
Tim Peters78be7992003-03-23 02:51:01 +000043static PyObject refchain = {&refchain, &refchain};
Tim Peters36eb4df2003-03-23 03:33:13 +000044
Tim Peters7571a0f2003-03-23 17:52:28 +000045/* Insert op at the front of the list of all objects. If force is true,
46 * op is added even if _ob_prev and _ob_next are non-NULL already. If
47 * force is false amd _ob_prev or _ob_next are non-NULL, do nothing.
48 * force should be true if and only if op points to freshly allocated,
49 * uninitialized memory, or you've unlinked op from the list and are
Tim Peters51f8d382003-03-23 18:06:08 +000050 * relinking it into the front.
Tim Peters7571a0f2003-03-23 17:52:28 +000051 * Note that objects are normally added to the list via _Py_NewReference,
52 * which is called by PyObject_Init. Not all objects are initialized that
53 * way, though; exceptions include statically allocated type objects, and
54 * statically allocated singletons (like Py_True and Py_None).
55 */
Tim Peters36eb4df2003-03-23 03:33:13 +000056void
Tim Peters7571a0f2003-03-23 17:52:28 +000057_Py_AddToAllObjects(PyObject *op, int force)
Tim Peters36eb4df2003-03-23 03:33:13 +000058{
Tim Peters7571a0f2003-03-23 17:52:28 +000059#ifdef Py_DEBUG
60 if (!force) {
61 /* If it's initialized memory, op must be in or out of
62 * the list unambiguously.
63 */
64 assert((op->_ob_prev == NULL) == (op->_ob_next == NULL));
65 }
Tim Peters78be7992003-03-23 02:51:01 +000066#endif
Tim Peters7571a0f2003-03-23 17:52:28 +000067 if (force || op->_ob_prev == NULL) {
68 op->_ob_next = refchain._ob_next;
69 op->_ob_prev = &refchain;
70 refchain._ob_next->_ob_prev = op;
71 refchain._ob_next = op;
72 }
73}
74#endif /* Py_TRACE_REFS */
Tim Peters78be7992003-03-23 02:51:01 +000075
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +000076#ifdef COUNT_ALLOCS
Guido van Rossumc0b618a1997-05-02 03:12:38 +000077static PyTypeObject *type_list;
Andrew M. Kuchling2060d1b2006-04-18 11:49:53 +000078/* All types are added to type_list, at least when
Martin v. Löwis45294a92006-04-18 06:24:08 +000079 they get one object created. That makes them
80 immortal, which unfortunately contributes to
81 garbage itself. If unlist_types_without_objects
82 is set, they will be removed from the type_list
83 once the last object is deallocated. */
84int unlist_types_without_objects;
Sjoerd Mullender842d2cc1993-10-15 16:18:48 +000085extern int tuple_zero_allocs, fast_tuple_allocs;
86extern int quick_int_allocs, quick_neg_int_allocs;
Sjoerd Mullender3bb8a051993-10-22 12:04:32 +000087extern int null_strings, one_strings;
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +000088void
Martin v. Löwis45294a92006-04-18 06:24:08 +000089dump_counts(FILE* f)
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +000090{
Guido van Rossumc0b618a1997-05-02 03:12:38 +000091 PyTypeObject *tp;
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +000092
93 for (tp = type_list; tp; tp = tp->tp_next)
Martin v. Löwis45294a92006-04-18 06:24:08 +000094 fprintf(f, "%s alloc'd: %d, freed: %d, max in use: %d\n",
Tim Peters6d6c1a32001-08-02 04:15:00 +000095 tp->tp_name, tp->tp_allocs, tp->tp_frees,
Sjoerd Mullender52c1f511993-10-25 08:40:52 +000096 tp->tp_maxalloc);
Martin v. Löwis45294a92006-04-18 06:24:08 +000097 fprintf(f, "fast tuple allocs: %d, empty: %d\n",
Sjoerd Mullender52c1f511993-10-25 08:40:52 +000098 fast_tuple_allocs, tuple_zero_allocs);
Martin v. Löwis45294a92006-04-18 06:24:08 +000099 fprintf(f, "fast int allocs: pos: %d, neg: %d\n",
Sjoerd Mullender52c1f511993-10-25 08:40:52 +0000100 quick_int_allocs, quick_neg_int_allocs);
Martin v. Löwis45294a92006-04-18 06:24:08 +0000101 fprintf(f, "null strings: %d, 1-strings: %d\n",
Sjoerd Mullender52c1f511993-10-25 08:40:52 +0000102 null_strings, one_strings);
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +0000103}
104
Sjoerd Mullender6ec3c651995-08-29 09:18:14 +0000105PyObject *
Fred Drake100814d2000-07-09 15:48:49 +0000106get_counts(void)
Sjoerd Mullender6ec3c651995-08-29 09:18:14 +0000107{
108 PyTypeObject *tp;
109 PyObject *result;
110 PyObject *v;
111
112 result = PyList_New(0);
113 if (result == NULL)
114 return NULL;
115 for (tp = type_list; tp; tp = tp->tp_next) {
Georg Brandl2cfaa342006-05-29 19:39:45 +0000116 v = Py_BuildValue("(snnn)", tp->tp_name, tp->tp_allocs,
Tim Peters6d6c1a32001-08-02 04:15:00 +0000117 tp->tp_frees, tp->tp_maxalloc);
Sjoerd Mullender6ec3c651995-08-29 09:18:14 +0000118 if (v == NULL) {
119 Py_DECREF(result);
120 return NULL;
121 }
122 if (PyList_Append(result, v) < 0) {
123 Py_DECREF(v);
124 Py_DECREF(result);
125 return NULL;
126 }
127 Py_DECREF(v);
128 }
129 return result;
130}
131
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +0000132void
Fred Drake100814d2000-07-09 15:48:49 +0000133inc_count(PyTypeObject *tp)
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +0000134{
Martin v. Löwis45294a92006-04-18 06:24:08 +0000135 if (tp->tp_next == NULL && tp->tp_prev == NULL) {
Guido van Rossumd8953cb1995-04-06 14:46:26 +0000136 /* first time; insert in linked list */
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +0000137 if (tp->tp_next != NULL) /* sanity check */
Guido van Rossumc0b618a1997-05-02 03:12:38 +0000138 Py_FatalError("XXX inc_count sanity check");
Martin v. Löwis45294a92006-04-18 06:24:08 +0000139 if (type_list)
140 type_list->tp_prev = tp;
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +0000141 tp->tp_next = type_list;
Tim Petersc6a3ff62002-07-08 22:11:52 +0000142 /* Note that as of Python 2.2, heap-allocated type objects
143 * can go away, but this code requires that they stay alive
144 * until program exit. That's why we're careful with
145 * refcounts here. type_list gets a new reference to tp,
146 * while ownership of the reference type_list used to hold
147 * (if any) was transferred to tp->tp_next in the line above.
148 * tp is thus effectively immortal after this.
149 */
150 Py_INCREF(tp);
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +0000151 type_list = tp;
Tim Peters3e40c7f2003-03-23 03:04:32 +0000152#ifdef Py_TRACE_REFS
Tim Peters7571a0f2003-03-23 17:52:28 +0000153 /* Also insert in the doubly-linked list of all objects,
154 * if not already there.
155 */
156 _Py_AddToAllObjects((PyObject *)tp, 0);
Tim Peters78be7992003-03-23 02:51:01 +0000157#endif
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +0000158 }
Tim Peters6d6c1a32001-08-02 04:15:00 +0000159 tp->tp_allocs++;
160 if (tp->tp_allocs - tp->tp_frees > tp->tp_maxalloc)
161 tp->tp_maxalloc = tp->tp_allocs - tp->tp_frees;
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +0000162}
Martin v. Löwis45294a92006-04-18 06:24:08 +0000163
164void dec_count(PyTypeObject *tp)
165{
166 tp->tp_frees++;
167 if (unlist_types_without_objects &&
168 tp->tp_allocs == tp->tp_frees) {
169 /* unlink the type from type_list */
170 if (tp->tp_prev)
171 tp->tp_prev->tp_next = tp->tp_next;
172 else
173 type_list = tp->tp_next;
174 if (tp->tp_next)
175 tp->tp_next->tp_prev = tp->tp_prev;
176 tp->tp_next = tp->tp_prev = NULL;
177 Py_DECREF(tp);
178 }
179}
180
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +0000181#endif
182
Tim Peters7c321a82002-07-09 02:57:01 +0000183#ifdef Py_REF_DEBUG
184/* Log a fatal error; doesn't return. */
185void
186_Py_NegativeRefcount(const char *fname, int lineno, PyObject *op)
187{
188 char buf[300];
189
190 PyOS_snprintf(buf, sizeof(buf),
Tim Peters4d073bb2006-03-23 05:38:33 +0000191 "%s:%i object at %p has negative ref count "
192 "%" PY_FORMAT_SIZE_T "d",
Tim Peters8af92d12006-03-23 05:41:24 +0000193 fname, lineno, op, op->ob_refcnt);
Tim Peters7c321a82002-07-09 02:57:01 +0000194 Py_FatalError(buf);
195}
196
197#endif /* Py_REF_DEBUG */
198
Thomas Heller1328b522004-04-22 17:23:49 +0000199void
200Py_IncRef(PyObject *o)
201{
202 Py_XINCREF(o);
203}
204
205void
206Py_DecRef(PyObject *o)
207{
208 Py_XDECREF(o);
209}
210
Guido van Rossumc0b618a1997-05-02 03:12:38 +0000211PyObject *
Fred Drake100814d2000-07-09 15:48:49 +0000212PyObject_Init(PyObject *op, PyTypeObject *tp)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000213{
Guido van Rossum6e08c142002-10-11 20:37:24 +0000214 if (op == NULL)
215 return PyErr_NoMemory();
Guido van Rossumb18618d2000-05-03 23:44:39 +0000216 /* Any changes should be reflected in PyObject_INIT (objimpl.h) */
Christian Heimese93237d2007-12-19 02:37:44 +0000217 Py_TYPE(op) = tp;
Guido van Rossumc0b618a1997-05-02 03:12:38 +0000218 _Py_NewReference(op);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000219 return op;
220}
221
Guido van Rossumb18618d2000-05-03 23:44:39 +0000222PyVarObject *
Martin v. Löwis18e16552006-02-15 17:27:45 +0000223PyObject_InitVar(PyVarObject *op, PyTypeObject *tp, Py_ssize_t size)
Guido van Rossumb18618d2000-05-03 23:44:39 +0000224{
Guido van Rossum6e08c142002-10-11 20:37:24 +0000225 if (op == NULL)
226 return (PyVarObject *) PyErr_NoMemory();
Guido van Rossumb18618d2000-05-03 23:44:39 +0000227 /* Any changes should be reflected in PyObject_INIT_VAR */
228 op->ob_size = size;
Christian Heimese93237d2007-12-19 02:37:44 +0000229 Py_TYPE(op) = tp;
Guido van Rossumb18618d2000-05-03 23:44:39 +0000230 _Py_NewReference((PyObject *)op);
231 return op;
232}
233
234PyObject *
Fred Drake100814d2000-07-09 15:48:49 +0000235_PyObject_New(PyTypeObject *tp)
Guido van Rossumb18618d2000-05-03 23:44:39 +0000236{
237 PyObject *op;
238 op = (PyObject *) PyObject_MALLOC(_PyObject_SIZE(tp));
239 if (op == NULL)
240 return PyErr_NoMemory();
241 return PyObject_INIT(op, tp);
242}
243
Guido van Rossumd0c87ee1997-05-15 21:31:03 +0000244PyVarObject *
Martin v. Löwis18e16552006-02-15 17:27:45 +0000245_PyObject_NewVar(PyTypeObject *tp, Py_ssize_t nitems)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000246{
Guido van Rossumb18618d2000-05-03 23:44:39 +0000247 PyVarObject *op;
Tim Petersf2a67da2001-10-07 03:54:51 +0000248 const size_t size = _PyObject_VAR_SIZE(tp, nitems);
Tim Peters6d483d32001-10-06 21:27:34 +0000249 op = (PyVarObject *) PyObject_MALLOC(size);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000250 if (op == NULL)
Guido van Rossumd0c87ee1997-05-15 21:31:03 +0000251 return (PyVarObject *)PyErr_NoMemory();
Tim Peters6d483d32001-10-06 21:27:34 +0000252 return PyObject_INIT_VAR(op, tp, nitems);
Guido van Rossumb18618d2000-05-03 23:44:39 +0000253}
254
Neil Schemenauerbdf0eed2002-04-12 03:08:42 +0000255/* for binary compatibility with 2.2 */
256#undef _PyObject_Del
Guido van Rossumb18618d2000-05-03 23:44:39 +0000257void
Fred Drake100814d2000-07-09 15:48:49 +0000258_PyObject_Del(PyObject *op)
Guido van Rossumb18618d2000-05-03 23:44:39 +0000259{
Guido van Rossum4cc6ac72000-07-01 01:00:38 +0000260 PyObject_FREE(op);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000261}
262
Neal Norwitz1a997502003-01-13 20:13:12 +0000263/* Implementation of PyObject_Print with recursion checking */
264static int
265internal_print(PyObject *op, FILE *fp, int flags, int nesting)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000266{
Guido van Rossum278ef591991-07-27 21:40:24 +0000267 int ret = 0;
Neal Norwitz1a997502003-01-13 20:13:12 +0000268 if (nesting > 10) {
269 PyErr_SetString(PyExc_RuntimeError, "print recursion");
270 return -1;
271 }
Guido van Rossumc0b618a1997-05-02 03:12:38 +0000272 if (PyErr_CheckSignals())
Guido van Rossum90933611991-06-07 16:10:43 +0000273 return -1;
Guido van Rossum9b00dfa1998-04-28 16:06:54 +0000274#ifdef USE_STACKCHECK
275 if (PyOS_CheckStack()) {
Fred Drake661ea262000-10-24 19:57:45 +0000276 PyErr_SetString(PyExc_MemoryError, "stack overflow");
Guido van Rossum9b00dfa1998-04-28 16:06:54 +0000277 return -1;
278 }
279#endif
Guido van Rossum687ef6e2000-01-12 16:28:58 +0000280 clearerr(fp); /* Clear any previous error condition */
Guido van Rossum90933611991-06-07 16:10:43 +0000281 if (op == NULL) {
Brett Cannon01531592007-09-17 03:28:34 +0000282 Py_BEGIN_ALLOW_THREADS
Guido van Rossum90933611991-06-07 16:10:43 +0000283 fprintf(fp, "<nil>");
Brett Cannon01531592007-09-17 03:28:34 +0000284 Py_END_ALLOW_THREADS
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000285 }
Guido van Rossum90933611991-06-07 16:10:43 +0000286 else {
287 if (op->ob_refcnt <= 0)
Thomas Wouters8b87a0b2006-03-01 05:41:20 +0000288 /* XXX(twouters) cast refcount to long until %zd is
289 universally available */
Brett Cannon01531592007-09-17 03:28:34 +0000290 Py_BEGIN_ALLOW_THREADS
Thomas Wouters8b87a0b2006-03-01 05:41:20 +0000291 fprintf(fp, "<refcnt %ld at %p>",
292 (long)op->ob_refcnt, op);
Brett Cannon01531592007-09-17 03:28:34 +0000293 Py_END_ALLOW_THREADS
Christian Heimese93237d2007-12-19 02:37:44 +0000294 else if (Py_TYPE(op)->tp_print == NULL) {
Guido van Rossum4f288ab2001-05-01 16:53:37 +0000295 PyObject *s;
296 if (flags & Py_PRINT_RAW)
297 s = PyObject_Str(op);
298 else
299 s = PyObject_Repr(op);
300 if (s == NULL)
301 ret = -1;
Guido van Rossum2e8f6141992-09-03 20:32:55 +0000302 else {
Neal Norwitz1a997502003-01-13 20:13:12 +0000303 ret = internal_print(s, fp, Py_PRINT_RAW,
304 nesting+1);
Guido van Rossum2e8f6141992-09-03 20:32:55 +0000305 }
Guido van Rossum4f288ab2001-05-01 16:53:37 +0000306 Py_XDECREF(s);
Guido van Rossum2e8f6141992-09-03 20:32:55 +0000307 }
Guido van Rossum90933611991-06-07 16:10:43 +0000308 else
Christian Heimese93237d2007-12-19 02:37:44 +0000309 ret = (*Py_TYPE(op)->tp_print)(op, fp, flags);
Guido van Rossum90933611991-06-07 16:10:43 +0000310 }
Guido van Rossum278ef591991-07-27 21:40:24 +0000311 if (ret == 0) {
312 if (ferror(fp)) {
Guido van Rossumc0b618a1997-05-02 03:12:38 +0000313 PyErr_SetFromErrno(PyExc_IOError);
Guido van Rossum278ef591991-07-27 21:40:24 +0000314 clearerr(fp);
315 ret = -1;
316 }
317 }
318 return ret;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000319}
320
Neal Norwitz1a997502003-01-13 20:13:12 +0000321int
322PyObject_Print(PyObject *op, FILE *fp, int flags)
323{
324 return internal_print(op, fp, flags, 0);
325}
326
327
Barry Warsaw9bf16442001-01-23 16:24:35 +0000328/* For debugging convenience. See Misc/gdbinit for some useful gdb hooks */
Tim Peters803526b2002-07-07 05:13:56 +0000329void _PyObject_Dump(PyObject* op)
Barry Warsaw9bf16442001-01-23 16:24:35 +0000330{
Barry Warsaweefb1072001-02-22 22:39:18 +0000331 if (op == NULL)
332 fprintf(stderr, "NULL\n");
333 else {
Benjamin Petersonc6e80eb2008-12-21 17:01:26 +0000334 PyGILState_STATE gil;
Guido van Rossum5f5512d2001-09-14 15:50:08 +0000335 fprintf(stderr, "object : ");
Benjamin Petersonc6e80eb2008-12-21 17:01:26 +0000336 gil = PyGILState_Ensure();
Barry Warsaweefb1072001-02-22 22:39:18 +0000337 (void)PyObject_Print(op, stderr, 0);
Benjamin Petersonc6e80eb2008-12-21 17:01:26 +0000338 PyGILState_Release(gil);
Thomas Wouters8b87a0b2006-03-01 05:41:20 +0000339 /* XXX(twouters) cast refcount to long until %zd is
340 universally available */
Guido van Rossum5f5512d2001-09-14 15:50:08 +0000341 fprintf(stderr, "\n"
342 "type : %s\n"
Thomas Wouters8b87a0b2006-03-01 05:41:20 +0000343 "refcount: %ld\n"
Guido van Rossum5f5512d2001-09-14 15:50:08 +0000344 "address : %p\n",
Christian Heimese93237d2007-12-19 02:37:44 +0000345 Py_TYPE(op)==NULL ? "NULL" : Py_TYPE(op)->tp_name,
Thomas Wouters8b87a0b2006-03-01 05:41:20 +0000346 (long)op->ob_refcnt,
Guido van Rossum5f5512d2001-09-14 15:50:08 +0000347 op);
Barry Warsaweefb1072001-02-22 22:39:18 +0000348 }
Barry Warsaw9bf16442001-01-23 16:24:35 +0000349}
Barry Warsaw903138f2001-01-23 16:33:18 +0000350
Guido van Rossumc0b618a1997-05-02 03:12:38 +0000351PyObject *
Fred Drake100814d2000-07-09 15:48:49 +0000352PyObject_Repr(PyObject *v)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000353{
Guido van Rossumc0b618a1997-05-02 03:12:38 +0000354 if (PyErr_CheckSignals())
Guido van Rossum90933611991-06-07 16:10:43 +0000355 return NULL;
Guido van Rossum9b00dfa1998-04-28 16:06:54 +0000356#ifdef USE_STACKCHECK
357 if (PyOS_CheckStack()) {
Fred Drake661ea262000-10-24 19:57:45 +0000358 PyErr_SetString(PyExc_MemoryError, "stack overflow");
Guido van Rossum9b00dfa1998-04-28 16:06:54 +0000359 return NULL;
360 }
361#endif
Guido van Rossum90933611991-06-07 16:10:43 +0000362 if (v == NULL)
Gregory P. Smithdd96db62008-06-09 04:58:54 +0000363 return PyString_FromString("<NULL>");
Christian Heimese93237d2007-12-19 02:37:44 +0000364 else if (Py_TYPE(v)->tp_repr == NULL)
Gregory P. Smithdd96db62008-06-09 04:58:54 +0000365 return PyString_FromFormat("<%s object at %p>",
Christian Heimese93237d2007-12-19 02:37:44 +0000366 Py_TYPE(v)->tp_name, v);
Guido van Rossum4c08d552000-03-10 22:55:18 +0000367 else {
368 PyObject *res;
Christian Heimese93237d2007-12-19 02:37:44 +0000369 res = (*Py_TYPE(v)->tp_repr)(v);
Guido van Rossum4c08d552000-03-10 22:55:18 +0000370 if (res == NULL)
371 return NULL;
Martin v. Löwis339d0f72001-08-17 18:39:25 +0000372#ifdef Py_USING_UNICODE
Fredrik Lundhefecc7d2000-07-01 14:31:09 +0000373 if (PyUnicode_Check(res)) {
374 PyObject* str;
Anthony Baxter262c00a2006-03-30 10:53:17 +0000375 str = PyUnicode_AsEncodedString(res, NULL, NULL);
Marc-André Lemburg891bc652000-07-03 09:57:53 +0000376 Py_DECREF(res);
377 if (str)
Fredrik Lundhefecc7d2000-07-01 14:31:09 +0000378 res = str;
Marc-André Lemburg891bc652000-07-03 09:57:53 +0000379 else
380 return NULL;
Fredrik Lundhefecc7d2000-07-01 14:31:09 +0000381 }
Martin v. Löwis339d0f72001-08-17 18:39:25 +0000382#endif
Gregory P. Smithdd96db62008-06-09 04:58:54 +0000383 if (!PyString_Check(res)) {
Guido van Rossum4c08d552000-03-10 22:55:18 +0000384 PyErr_Format(PyExc_TypeError,
Guido van Rossum5db862d2000-04-10 12:46:51 +0000385 "__repr__ returned non-string (type %.200s)",
Christian Heimese93237d2007-12-19 02:37:44 +0000386 Py_TYPE(res)->tp_name);
Guido van Rossum4c08d552000-03-10 22:55:18 +0000387 Py_DECREF(res);
388 return NULL;
389 }
390 return res;
391 }
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000392}
393
Guido van Rossumc0b618a1997-05-02 03:12:38 +0000394PyObject *
Neil Schemenauercf52c072005-08-12 17:34:58 +0000395_PyObject_Str(PyObject *v)
Guido van Rossumc6004111993-11-05 10:22:19 +0000396{
Guido van Rossum4c08d552000-03-10 22:55:18 +0000397 PyObject *res;
Neil Schemenauercf52c072005-08-12 17:34:58 +0000398 int type_ok;
Guido van Rossumc6004111993-11-05 10:22:19 +0000399 if (v == NULL)
Gregory P. Smithdd96db62008-06-09 04:58:54 +0000400 return PyString_FromString("<NULL>");
401 if (PyString_CheckExact(v)) {
Guido van Rossumc0b618a1997-05-02 03:12:38 +0000402 Py_INCREF(v);
Guido van Rossumc6004111993-11-05 10:22:19 +0000403 return v;
404 }
Neil Schemenauercf52c072005-08-12 17:34:58 +0000405#ifdef Py_USING_UNICODE
406 if (PyUnicode_CheckExact(v)) {
407 Py_INCREF(v);
408 return v;
409 }
410#endif
Christian Heimese93237d2007-12-19 02:37:44 +0000411 if (Py_TYPE(v)->tp_str == NULL)
Guido van Rossum4f288ab2001-05-01 16:53:37 +0000412 return PyObject_Repr(v);
413
Brett Cannon0b14f242007-09-30 19:45:10 +0000414 /* It is possible for a type to have a tp_str representation that loops
415 infinitely. */
416 if (Py_EnterRecursiveCall(" while getting the str of an object"))
417 return NULL;
Christian Heimese93237d2007-12-19 02:37:44 +0000418 res = (*Py_TYPE(v)->tp_str)(v);
Brett Cannon0b14f242007-09-30 19:45:10 +0000419 Py_LeaveRecursiveCall();
Guido van Rossum4c08d552000-03-10 22:55:18 +0000420 if (res == NULL)
421 return NULL;
Gregory P. Smithdd96db62008-06-09 04:58:54 +0000422 type_ok = PyString_Check(res);
Neil Schemenauercf52c072005-08-12 17:34:58 +0000423#ifdef Py_USING_UNICODE
424 type_ok = type_ok || PyUnicode_Check(res);
425#endif
426 if (!type_ok) {
427 PyErr_Format(PyExc_TypeError,
428 "__str__ returned non-string (type %.200s)",
Christian Heimese93237d2007-12-19 02:37:44 +0000429 Py_TYPE(res)->tp_name);
Neil Schemenauercf52c072005-08-12 17:34:58 +0000430 Py_DECREF(res);
431 return NULL;
432 }
433 return res;
434}
435
436PyObject *
437PyObject_Str(PyObject *v)
438{
439 PyObject *res = _PyObject_Str(v);
440 if (res == NULL)
441 return NULL;
Martin v. Löwis339d0f72001-08-17 18:39:25 +0000442#ifdef Py_USING_UNICODE
Marc-André Lemburg891bc652000-07-03 09:57:53 +0000443 if (PyUnicode_Check(res)) {
444 PyObject* str;
445 str = PyUnicode_AsEncodedString(res, NULL, NULL);
446 Py_DECREF(res);
447 if (str)
448 res = str;
449 else
450 return NULL;
451 }
Martin v. Löwis339d0f72001-08-17 18:39:25 +0000452#endif
Gregory P. Smithdd96db62008-06-09 04:58:54 +0000453 assert(PyString_Check(res));
Guido van Rossum4c08d552000-03-10 22:55:18 +0000454 return res;
Guido van Rossumc6004111993-11-05 10:22:19 +0000455}
456
Martin v. Löwis339d0f72001-08-17 18:39:25 +0000457#ifdef Py_USING_UNICODE
Guido van Rossuma3af41d2001-01-18 22:07:06 +0000458PyObject *
459PyObject_Unicode(PyObject *v)
460{
461 PyObject *res;
Brett Cannonc3647ac2005-04-26 03:45:26 +0000462 PyObject *func;
Neal Norwitz75801462006-03-14 06:02:16 +0000463 PyObject *str;
Nick Coghlan524b7772008-07-08 14:08:04 +0000464 int unicode_method_found = 0;
Brett Cannonc3647ac2005-04-26 03:45:26 +0000465 static PyObject *unicodestr;
Tim Peters803526b2002-07-07 05:13:56 +0000466
Georg Brandl3daf7582006-03-13 22:22:11 +0000467 if (v == NULL) {
Gregory P. Smithdd96db62008-06-09 04:58:54 +0000468 res = PyString_FromString("<NULL>");
Neal Norwitz75801462006-03-14 06:02:16 +0000469 if (res == NULL)
470 return NULL;
471 str = PyUnicode_FromEncodedObject(res, NULL, "strict");
472 Py_DECREF(res);
473 return str;
Georg Brandl3daf7582006-03-13 22:22:11 +0000474 } else if (PyUnicode_CheckExact(v)) {
Guido van Rossuma3af41d2001-01-18 22:07:06 +0000475 Py_INCREF(v);
476 return v;
477 }
Nick Coghlan524b7772008-07-08 14:08:04 +0000478
479 /* Try the __unicode__ method */
Brett Cannonc3647ac2005-04-26 03:45:26 +0000480 if (unicodestr == NULL) {
Gregory P. Smithdd96db62008-06-09 04:58:54 +0000481 unicodestr= PyString_InternFromString("__unicode__");
Brett Cannonc3647ac2005-04-26 03:45:26 +0000482 if (unicodestr == NULL)
483 return NULL;
Guido van Rossumb8c65bc2001-10-19 02:01:31 +0000484 }
Nick Coghlan524b7772008-07-08 14:08:04 +0000485 if (PyInstance_Check(v)) {
486 /* We're an instance of a classic class */
487 /* Try __unicode__ from the instance -- alas we have no type */
488 func = PyObject_GetAttr(v, unicodestr);
489 if (func != NULL) {
490 unicode_method_found = 1;
491 res = PyObject_CallFunctionObjArgs(func, NULL);
492 Py_DECREF(func);
493 }
494 else {
495 PyErr_Clear();
496 }
Brett Cannonc3647ac2005-04-26 03:45:26 +0000497 }
Guido van Rossuma3af41d2001-01-18 22:07:06 +0000498 else {
Nick Coghlan524b7772008-07-08 14:08:04 +0000499 /* Not a classic class instance, try __unicode__ from type */
500 /* _PyType_Lookup doesn't create a reference */
501 func = _PyType_Lookup(Py_TYPE(v), unicodestr);
502 if (func != NULL) {
503 unicode_method_found = 1;
504 res = PyObject_CallFunctionObjArgs(func, v, NULL);
505 }
506 else {
507 PyErr_Clear();
508 }
509 }
510
511 /* Didn't find __unicode__ */
512 if (!unicode_method_found) {
Brett Cannonc3647ac2005-04-26 03:45:26 +0000513 if (PyUnicode_Check(v)) {
514 /* For a Unicode subtype that's didn't overwrite __unicode__,
515 return a true Unicode object with the same data. */
516 return PyUnicode_FromUnicode(PyUnicode_AS_UNICODE(v),
Nick Coghlan524b7772008-07-08 14:08:04 +0000517 PyUnicode_GET_SIZE(v));
Guido van Rossuma3af41d2001-01-18 22:07:06 +0000518 }
Gregory P. Smithdd96db62008-06-09 04:58:54 +0000519 if (PyString_CheckExact(v)) {
Brett Cannonc3647ac2005-04-26 03:45:26 +0000520 Py_INCREF(v);
521 res = v;
Guido van Rossuma3af41d2001-01-18 22:07:06 +0000522 }
Guido van Rossumb8c65bc2001-10-19 02:01:31 +0000523 else {
Christian Heimese93237d2007-12-19 02:37:44 +0000524 if (Py_TYPE(v)->tp_str != NULL)
525 res = (*Py_TYPE(v)->tp_str)(v);
Guido van Rossumb8c65bc2001-10-19 02:01:31 +0000526 else
527 res = PyObject_Repr(v);
528 }
Guido van Rossuma3af41d2001-01-18 22:07:06 +0000529 }
Nick Coghlan524b7772008-07-08 14:08:04 +0000530
Guido van Rossuma3af41d2001-01-18 22:07:06 +0000531 if (res == NULL)
532 return NULL;
533 if (!PyUnicode_Check(res)) {
Guido van Rossumb8c65bc2001-10-19 02:01:31 +0000534 str = PyUnicode_FromEncodedObject(res, NULL, "strict");
Guido van Rossuma3af41d2001-01-18 22:07:06 +0000535 Py_DECREF(res);
Neal Norwitz75801462006-03-14 06:02:16 +0000536 res = str;
Guido van Rossuma3af41d2001-01-18 22:07:06 +0000537 }
538 return res;
539}
Martin v. Löwis339d0f72001-08-17 18:39:25 +0000540#endif
Guido van Rossuma3af41d2001-01-18 22:07:06 +0000541
542
Guido van Rossuma4073002002-05-31 20:03:54 +0000543/* Helper to warn about deprecated tp_compare return values. Return:
544 -2 for an exception;
545 -1 if v < w;
546 0 if v == w;
547 1 if v > w.
548 (This function cannot return 2.)
549*/
550static int
551adjust_tp_compare(int c)
552{
553 if (PyErr_Occurred()) {
554 if (c != -1 && c != -2) {
555 PyObject *t, *v, *tb;
556 PyErr_Fetch(&t, &v, &tb);
557 if (PyErr_Warn(PyExc_RuntimeWarning,
558 "tp_compare didn't return -1 or -2 "
559 "for exception") < 0) {
560 Py_XDECREF(t);
561 Py_XDECREF(v);
562 Py_XDECREF(tb);
563 }
564 else
565 PyErr_Restore(t, v, tb);
566 }
567 return -2;
568 }
569 else if (c < -1 || c > 1) {
570 if (PyErr_Warn(PyExc_RuntimeWarning,
571 "tp_compare didn't return -1, 0 or 1") < 0)
572 return -2;
573 else
574 return c < -1 ? -1 : 1;
575 }
576 else {
577 assert(c >= -1 && c <= 1);
578 return c;
579 }
580}
581
582
Guido van Rossumd1f06b92001-01-24 22:14:43 +0000583/* Macro to get the tp_richcompare field of a type if defined */
584#define RICHCOMPARE(t) (PyType_HasFeature((t), Py_TPFLAGS_HAVE_RICHCOMPARE) \
585 ? (t)->tp_richcompare : NULL)
586
Guido van Rossume797ec12001-01-17 15:24:28 +0000587/* Map rich comparison operators to their swapped version, e.g. LT --> GT */
Brett Cannona5ca2e72004-09-25 01:37:24 +0000588int _Py_SwappedOp[] = {Py_GT, Py_GE, Py_EQ, Py_NE, Py_LT, Py_LE};
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +0000589
Guido van Rossume797ec12001-01-17 15:24:28 +0000590/* Try a genuine rich comparison, returning an object. Return:
591 NULL for exception;
592 NotImplemented if this particular rich comparison is not implemented or
593 undefined;
594 some object not equal to NotImplemented if it is implemented
595 (this latter object may not be a Boolean).
596*/
597static PyObject *
598try_rich_compare(PyObject *v, PyObject *w, int op)
599{
600 richcmpfunc f;
601 PyObject *res;
602
Guido van Rossum2ed6bf82001-09-27 20:30:07 +0000603 if (v->ob_type != w->ob_type &&
604 PyType_IsSubtype(w->ob_type, v->ob_type) &&
605 (f = RICHCOMPARE(w->ob_type)) != NULL) {
Tim Petersf4aca752004-09-23 02:39:37 +0000606 res = (*f)(w, v, _Py_SwappedOp[op]);
Guido van Rossum2ed6bf82001-09-27 20:30:07 +0000607 if (res != Py_NotImplemented)
608 return res;
609 Py_DECREF(res);
610 }
Guido van Rossumd1f06b92001-01-24 22:14:43 +0000611 if ((f = RICHCOMPARE(v->ob_type)) != NULL) {
Guido van Rossume797ec12001-01-17 15:24:28 +0000612 res = (*f)(v, w, op);
613 if (res != Py_NotImplemented)
614 return res;
615 Py_DECREF(res);
616 }
Guido van Rossumd1f06b92001-01-24 22:14:43 +0000617 if ((f = RICHCOMPARE(w->ob_type)) != NULL) {
Tim Petersf4aca752004-09-23 02:39:37 +0000618 return (*f)(w, v, _Py_SwappedOp[op]);
Guido van Rossume797ec12001-01-17 15:24:28 +0000619 }
620 res = Py_NotImplemented;
621 Py_INCREF(res);
622 return res;
623}
624
625/* Try a genuine rich comparison, returning an int. Return:
626 -1 for exception (including the case where try_rich_compare() returns an
627 object that's not a Boolean);
Tim Petersc99213f2001-11-04 05:57:16 +0000628 0 if the outcome is false;
629 1 if the outcome is true;
630 2 if this particular rich comparison is not implemented or undefined.
Guido van Rossume797ec12001-01-17 15:24:28 +0000631*/
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +0000632static int
Guido van Rossume797ec12001-01-17 15:24:28 +0000633try_rich_compare_bool(PyObject *v, PyObject *w, int op)
634{
635 PyObject *res;
636 int ok;
637
Guido van Rossumd1f06b92001-01-24 22:14:43 +0000638 if (RICHCOMPARE(v->ob_type) == NULL && RICHCOMPARE(w->ob_type) == NULL)
Guido van Rossume797ec12001-01-17 15:24:28 +0000639 return 2; /* Shortcut, avoid INCREF+DECREF */
640 res = try_rich_compare(v, w, op);
641 if (res == NULL)
642 return -1;
643 if (res == Py_NotImplemented) {
644 Py_DECREF(res);
645 return 2;
646 }
647 ok = PyObject_IsTrue(res);
648 Py_DECREF(res);
649 return ok;
650}
651
652/* Try rich comparisons to determine a 3-way comparison. Return:
653 -2 for an exception;
Tim Petersc99213f2001-11-04 05:57:16 +0000654 -1 if v < w;
655 0 if v == w;
656 1 if v > w;
657 2 if this particular rich comparison is not implemented or undefined.
Guido van Rossume797ec12001-01-17 15:24:28 +0000658*/
659static int
660try_rich_to_3way_compare(PyObject *v, PyObject *w)
661{
Guido van Rossum2ffbf6b2001-01-17 21:27:02 +0000662 static struct { int op; int outcome; } tries[3] = {
663 /* Try this operator, and if it is true, use this outcome: */
664 {Py_EQ, 0},
665 {Py_LT, -1},
666 {Py_GT, 1},
667 };
668 int i;
669
Guido van Rossumd1f06b92001-01-24 22:14:43 +0000670 if (RICHCOMPARE(v->ob_type) == NULL && RICHCOMPARE(w->ob_type) == NULL)
Guido van Rossume797ec12001-01-17 15:24:28 +0000671 return 2; /* Shortcut */
Guido van Rossum2ffbf6b2001-01-17 21:27:02 +0000672
673 for (i = 0; i < 3; i++) {
674 switch (try_rich_compare_bool(v, w, tries[i].op)) {
675 case -1:
Tim Peters6d60b2e2001-05-07 20:53:51 +0000676 return -2;
Guido van Rossum2ffbf6b2001-01-17 21:27:02 +0000677 case 1:
678 return tries[i].outcome;
679 }
Guido van Rossume797ec12001-01-17 15:24:28 +0000680 }
Guido van Rossum2ffbf6b2001-01-17 21:27:02 +0000681
682 return 2;
Guido van Rossume797ec12001-01-17 15:24:28 +0000683}
684
685/* Try a 3-way comparison, returning an int. Return:
686 -2 for an exception;
Tim Petersc99213f2001-11-04 05:57:16 +0000687 -1 if v < w;
688 0 if v == w;
689 1 if v > w;
690 2 if this particular 3-way comparison is not implemented or undefined.
Guido van Rossume797ec12001-01-17 15:24:28 +0000691*/
692static int
693try_3way_compare(PyObject *v, PyObject *w)
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +0000694{
695 int c;
Guido van Rossume797ec12001-01-17 15:24:28 +0000696 cmpfunc f;
697
698 /* Comparisons involving instances are given to instance_compare,
699 which has the same return conventions as this function. */
700
Guido van Rossumab3b0342001-09-18 20:38:53 +0000701 f = v->ob_type->tp_compare;
Guido van Rossume797ec12001-01-17 15:24:28 +0000702 if (PyInstance_Check(v))
Guido van Rossumab3b0342001-09-18 20:38:53 +0000703 return (*f)(v, w);
Guido van Rossume797ec12001-01-17 15:24:28 +0000704 if (PyInstance_Check(w))
705 return (*w->ob_type->tp_compare)(v, w);
706
Guido van Rossumab3b0342001-09-18 20:38:53 +0000707 /* If both have the same (non-NULL) tp_compare, use it. */
708 if (f != NULL && f == w->ob_type->tp_compare) {
709 c = (*f)(v, w);
Guido van Rossuma4073002002-05-31 20:03:54 +0000710 return adjust_tp_compare(c);
Guido van Rossumab3b0342001-09-18 20:38:53 +0000711 }
712
713 /* If either tp_compare is _PyObject_SlotCompare, that's safe. */
714 if (f == _PyObject_SlotCompare ||
715 w->ob_type->tp_compare == _PyObject_SlotCompare)
716 return _PyObject_SlotCompare(v, w);
717
Armin Rigoa1748132004-12-23 22:13:13 +0000718 /* If we're here, v and w,
719 a) are not instances;
720 b) have different types or a type without tp_compare; and
721 c) don't have a user-defined tp_compare.
722 tp_compare implementations in C assume that both arguments
723 have their type, so we give up if the coercion fails or if
724 it yields types which are still incompatible (which can
725 happen with a user-defined nb_coerce).
726 */
Guido van Rossume797ec12001-01-17 15:24:28 +0000727 c = PyNumber_CoerceEx(&v, &w);
728 if (c < 0)
729 return -2;
730 if (c > 0)
731 return 2;
Armin Rigoa1748132004-12-23 22:13:13 +0000732 f = v->ob_type->tp_compare;
733 if (f != NULL && f == w->ob_type->tp_compare) {
Guido van Rossume797ec12001-01-17 15:24:28 +0000734 c = (*f)(v, w);
735 Py_DECREF(v);
736 Py_DECREF(w);
Guido van Rossuma4073002002-05-31 20:03:54 +0000737 return adjust_tp_compare(c);
Guido van Rossume797ec12001-01-17 15:24:28 +0000738 }
739
Guido van Rossume797ec12001-01-17 15:24:28 +0000740 /* No comparison defined */
741 Py_DECREF(v);
742 Py_DECREF(w);
743 return 2;
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +0000744}
745
Guido van Rossume797ec12001-01-17 15:24:28 +0000746/* Final fallback 3-way comparison, returning an int. Return:
747 -2 if an error occurred;
Tim Petersc99213f2001-11-04 05:57:16 +0000748 -1 if v < w;
749 0 if v == w;
750 1 if v > w.
Guido van Rossume797ec12001-01-17 15:24:28 +0000751*/
752static int
753default_3way_compare(PyObject *v, PyObject *w)
754{
755 int c;
Jeremy Hyltonaf68c872005-12-10 18:50:16 +0000756 const char *vname, *wname;
Guido van Rossume797ec12001-01-17 15:24:28 +0000757
758 if (v->ob_type == w->ob_type) {
Barry Warsawb0e754d2001-01-20 06:24:55 +0000759 /* When comparing these pointers, they must be cast to
760 * integer types (i.e. Py_uintptr_t, our spelling of C9X's
761 * uintptr_t). ANSI specifies that pointer compares other
762 * than == and != to non-related structures are undefined.
763 */
Barry Warsaw71ff8d52001-01-20 06:08:10 +0000764 Py_uintptr_t vv = (Py_uintptr_t)v;
765 Py_uintptr_t ww = (Py_uintptr_t)w;
Guido van Rossume797ec12001-01-17 15:24:28 +0000766 return (vv < ww) ? -1 : (vv > ww) ? 1 : 0;
767 }
768
Guido van Rossum0871e932001-01-22 19:28:09 +0000769 /* None is smaller than anything */
770 if (v == Py_None)
771 return -1;
772 if (w == Py_None)
773 return 1;
774
Guido van Rossumfb50d3f2003-02-18 16:40:09 +0000775 /* different type: compare type names; numbers are smaller */
776 if (PyNumber_Check(v))
Guido van Rossum8f9143d2001-01-22 15:59:32 +0000777 vname = "";
778 else
779 vname = v->ob_type->tp_name;
Guido van Rossumfb50d3f2003-02-18 16:40:09 +0000780 if (PyNumber_Check(w))
Guido van Rossum8f9143d2001-01-22 15:59:32 +0000781 wname = "";
782 else
783 wname = w->ob_type->tp_name;
784 c = strcmp(vname, wname);
785 if (c < 0)
786 return -1;
787 if (c > 0)
788 return 1;
789 /* Same type name, or (more likely) incomparable numeric types */
790 return ((Py_uintptr_t)(v->ob_type) < (
791 Py_uintptr_t)(w->ob_type)) ? -1 : 1;
Guido van Rossume797ec12001-01-17 15:24:28 +0000792}
793
Tim Peters6d60b2e2001-05-07 20:53:51 +0000794/* Do a 3-way comparison, by hook or by crook. Return:
Guido van Rossuma4073002002-05-31 20:03:54 +0000795 -2 for an exception (but see below);
Tim Petersc99213f2001-11-04 05:57:16 +0000796 -1 if v < w;
Tim Peters6d60b2e2001-05-07 20:53:51 +0000797 0 if v == w;
Tim Petersc99213f2001-11-04 05:57:16 +0000798 1 if v > w;
Guido van Rossuma4073002002-05-31 20:03:54 +0000799 BUT: if the object implements a tp_compare function, it returns
Martin v. Löwis0163d6d2001-06-09 07:34:05 +0000800 whatever this function returns (whether with an exception or not).
Tim Peters6d60b2e2001-05-07 20:53:51 +0000801*/
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +0000802static int
Fred Drake100814d2000-07-09 15:48:49 +0000803do_cmp(PyObject *v, PyObject *w)
Guido van Rossum20566841995-01-12 11:26:10 +0000804{
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +0000805 int c;
Martin v. Löwis0163d6d2001-06-09 07:34:05 +0000806 cmpfunc f;
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +0000807
Martin v. Löwis0163d6d2001-06-09 07:34:05 +0000808 if (v->ob_type == w->ob_type
Guido van Rossum82fc51c2001-08-16 08:02:45 +0000809 && (f = v->ob_type->tp_compare) != NULL) {
810 c = (*f)(v, w);
Guido van Rossuma4073002002-05-31 20:03:54 +0000811 if (PyInstance_Check(v)) {
812 /* Instance tp_compare has a different signature.
813 But if it returns undefined we fall through. */
814 if (c != 2)
815 return c;
Neal Norwitz3f8dae72002-05-31 20:23:33 +0000816 /* Else fall through to try_rich_to_3way_compare() */
Guido van Rossuma4073002002-05-31 20:03:54 +0000817 }
818 else
819 return adjust_tp_compare(c);
Guido van Rossum82fc51c2001-08-16 08:02:45 +0000820 }
Guido van Rossuma4073002002-05-31 20:03:54 +0000821 /* We only get here if one of the following is true:
822 a) v and w have different types
823 b) v and w have the same type, which doesn't have tp_compare
824 c) v and w are instances, and either __cmp__ is not defined or
825 __cmp__ returns NotImplemented
826 */
Guido van Rossume797ec12001-01-17 15:24:28 +0000827 c = try_rich_to_3way_compare(v, w);
828 if (c < 2)
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +0000829 return c;
Guido van Rossume797ec12001-01-17 15:24:28 +0000830 c = try_3way_compare(v, w);
831 if (c < 2)
832 return c;
833 return default_3way_compare(v, w);
Guido van Rossum20566841995-01-12 11:26:10 +0000834}
835
Tim Petersc99213f2001-11-04 05:57:16 +0000836/* Compare v to w. Return
837 -1 if v < w or exception (PyErr_Occurred() true in latter case).
838 0 if v == w.
839 1 if v > w.
840 XXX The docs (C API manual) say the return value is undefined in case
841 XXX of error.
842*/
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000843int
Fred Drake100814d2000-07-09 15:48:49 +0000844PyObject_Compare(PyObject *v, PyObject *w)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000845{
Jeremy Hylton4a3dd2d2000-04-14 19:13:24 +0000846 int result;
847
Guido van Rossumc8b6df91997-05-23 00:06:51 +0000848 if (v == NULL || w == NULL) {
849 PyErr_BadInternalCall();
850 return -1;
851 }
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000852 if (v == w)
853 return 0;
Armin Rigo2b3eb402003-10-28 12:05:48 +0000854 if (Py_EnterRecursiveCall(" in cmp"))
855 return -1;
856 result = do_cmp(v, w);
857 Py_LeaveRecursiveCall();
Guido van Rossume797ec12001-01-17 15:24:28 +0000858 return result < 0 ? -1 : result;
859}
860
Tim Petersc99213f2001-11-04 05:57:16 +0000861/* Return (new reference to) Py_True or Py_False. */
Guido van Rossume797ec12001-01-17 15:24:28 +0000862static PyObject *
Martin v. Löwis0163d6d2001-06-09 07:34:05 +0000863convert_3way_to_object(int op, int c)
Guido van Rossume797ec12001-01-17 15:24:28 +0000864{
Guido van Rossume797ec12001-01-17 15:24:28 +0000865 PyObject *result;
Guido van Rossume797ec12001-01-17 15:24:28 +0000866 switch (op) {
867 case Py_LT: c = c < 0; break;
868 case Py_LE: c = c <= 0; break;
869 case Py_EQ: c = c == 0; break;
870 case Py_NE: c = c != 0; break;
871 case Py_GT: c = c > 0; break;
872 case Py_GE: c = c >= 0; break;
873 }
874 result = c ? Py_True : Py_False;
875 Py_INCREF(result);
Jeremy Hylton4a3dd2d2000-04-14 19:13:24 +0000876 return result;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000877}
Tim Peters803526b2002-07-07 05:13:56 +0000878
Tim Petersc99213f2001-11-04 05:57:16 +0000879/* We want a rich comparison but don't have one. Try a 3-way cmp instead.
880 Return
881 NULL if error
882 Py_True if v op w
883 Py_False if not (v op w)
884*/
Martin v. Löwis0163d6d2001-06-09 07:34:05 +0000885static PyObject *
886try_3way_to_rich_compare(PyObject *v, PyObject *w, int op)
887{
888 int c;
889
890 c = try_3way_compare(v, w);
Steven Bethardae42f332008-03-18 17:26:10 +0000891 if (c >= 2) {
892
893 /* Py3K warning if types are not equal and comparison isn't == or != */
894 if (Py_Py3kWarningFlag &&
Georg Brandld5b635f2008-03-25 08:29:14 +0000895 v->ob_type != w->ob_type && op != Py_EQ && op != Py_NE &&
Benjamin Peterson9f4f4812008-04-27 03:01:45 +0000896 PyErr_WarnEx(PyExc_DeprecationWarning,
Georg Brandld5b635f2008-03-25 08:29:14 +0000897 "comparing unequal types not supported "
Benjamin Peterson9f4f4812008-04-27 03:01:45 +0000898 "in 3.x", 1) < 0) {
Steven Bethardae42f332008-03-18 17:26:10 +0000899 return NULL;
900 }
901
Martin v. Löwis0163d6d2001-06-09 07:34:05 +0000902 c = default_3way_compare(v, w);
Steven Bethardae42f332008-03-18 17:26:10 +0000903 }
Martin v. Löwis0163d6d2001-06-09 07:34:05 +0000904 if (c <= -2)
905 return NULL;
906 return convert_3way_to_object(op, c);
907}
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000908
Tim Petersc99213f2001-11-04 05:57:16 +0000909/* Do rich comparison on v and w. Return
910 NULL if error
911 Else a new reference to an object other than Py_NotImplemented, usually(?):
912 Py_True if v op w
913 Py_False if not (v op w)
914*/
Neil Schemenauerd38855c2001-01-21 16:25:18 +0000915static PyObject *
Guido van Rossume797ec12001-01-17 15:24:28 +0000916do_richcmp(PyObject *v, PyObject *w, int op)
917{
918 PyObject *res;
919
920 res = try_rich_compare(v, w, op);
921 if (res != Py_NotImplemented)
922 return res;
923 Py_DECREF(res);
924
925 return try_3way_to_rich_compare(v, w, op);
926}
927
Tim Petersc99213f2001-11-04 05:57:16 +0000928/* Return:
929 NULL for exception;
Tim Petersc99213f2001-11-04 05:57:16 +0000930 some object not equal to NotImplemented if it is implemented
931 (this latter object may not be a Boolean).
932*/
Guido van Rossume797ec12001-01-17 15:24:28 +0000933PyObject *
934PyObject_RichCompare(PyObject *v, PyObject *w, int op)
935{
936 PyObject *res;
937
938 assert(Py_LT <= op && op <= Py_GE);
Armin Rigo2b3eb402003-10-28 12:05:48 +0000939 if (Py_EnterRecursiveCall(" in cmp"))
940 return NULL;
Guido van Rossume797ec12001-01-17 15:24:28 +0000941
Armin Rigo2b3eb402003-10-28 12:05:48 +0000942 /* If the types are equal, and not old-style instances, try to
Tim Peters67754e92001-11-04 07:29:31 +0000943 get out cheap (don't bother with coercions etc.). */
944 if (v->ob_type == w->ob_type && !PyInstance_Check(v)) {
945 cmpfunc fcmp;
946 richcmpfunc frich = RICHCOMPARE(v->ob_type);
947 /* If the type has richcmp, try it first. try_rich_compare
948 tries it two-sided, which is not needed since we've a
949 single type only. */
950 if (frich != NULL) {
951 res = (*frich)(v, w, op);
952 if (res != Py_NotImplemented)
953 goto Done;
954 Py_DECREF(res);
955 }
956 /* No richcmp, or this particular richmp not implemented.
957 Try 3-way cmp. */
958 fcmp = v->ob_type->tp_compare;
959 if (fcmp != NULL) {
960 int c = (*fcmp)(v, w);
Guido van Rossuma4073002002-05-31 20:03:54 +0000961 c = adjust_tp_compare(c);
962 if (c == -2) {
Tim Peters67754e92001-11-04 07:29:31 +0000963 res = NULL;
964 goto Done;
965 }
966 res = convert_3way_to_object(op, c);
967 goto Done;
968 }
Guido van Rossum2ffbf6b2001-01-17 21:27:02 +0000969 }
Tim Peters67754e92001-11-04 07:29:31 +0000970
971 /* Fast path not taken, or couldn't deliver a useful result. */
972 res = do_richcmp(v, w, op);
973Done:
Armin Rigo2b3eb402003-10-28 12:05:48 +0000974 Py_LeaveRecursiveCall();
Guido van Rossume797ec12001-01-17 15:24:28 +0000975 return res;
976}
977
Tim Petersde9725f2001-05-05 10:06:17 +0000978/* Return -1 if error; 1 if v op w; 0 if not (v op w). */
Guido van Rossume797ec12001-01-17 15:24:28 +0000979int
980PyObject_RichCompareBool(PyObject *v, PyObject *w, int op)
981{
Raymond Hettinger93d44812004-03-21 17:01:44 +0000982 PyObject *res;
Guido van Rossume797ec12001-01-17 15:24:28 +0000983 int ok;
984
Raymond Hettinger93d44812004-03-21 17:01:44 +0000985 /* Quick result when objects are the same.
986 Guarantees that identity implies equality. */
987 if (v == w) {
988 if (op == Py_EQ)
989 return 1;
990 else if (op == Py_NE)
991 return 0;
992 }
993
994 res = PyObject_RichCompare(v, w, op);
Guido van Rossume797ec12001-01-17 15:24:28 +0000995 if (res == NULL)
996 return -1;
Guido van Rossum81912d42002-08-24 05:33:28 +0000997 if (PyBool_Check(res))
998 ok = (res == Py_True);
999 else
1000 ok = PyObject_IsTrue(res);
Guido van Rossume797ec12001-01-17 15:24:28 +00001001 Py_DECREF(res);
1002 return ok;
1003}
Fred Drake13634cf2000-06-29 19:17:04 +00001004
1005/* Set of hash utility functions to help maintaining the invariant that
Raymond Hettinger8183fa42004-03-21 17:35:06 +00001006 if a==b then hash(a)==hash(b)
Fred Drake13634cf2000-06-29 19:17:04 +00001007
1008 All the utility functions (_Py_Hash*()) return "-1" to signify an error.
1009*/
1010
1011long
Fred Drake100814d2000-07-09 15:48:49 +00001012_Py_HashDouble(double v)
Fred Drake13634cf2000-06-29 19:17:04 +00001013{
Tim Peters39dce292000-08-15 03:34:48 +00001014 double intpart, fractpart;
1015 int expo;
1016 long hipart;
1017 long x; /* the final hash value */
1018 /* This is designed so that Python numbers of different types
1019 * that compare equal hash to the same value; otherwise comparisons
1020 * of mapping keys will turn out weird.
1021 */
1022
Tim Peters39dce292000-08-15 03:34:48 +00001023 fractpart = modf(v, &intpart);
Tim Peters39dce292000-08-15 03:34:48 +00001024 if (fractpart == 0.0) {
1025 /* This must return the same hash as an equal int or long. */
Mark Dickinsondd0989e2009-02-08 14:56:08 +00001026 if (intpart > LONG_MAX/2 || -intpart > LONG_MAX/2) {
Tim Peters39dce292000-08-15 03:34:48 +00001027 /* Convert to long and use its hash. */
1028 PyObject *plong; /* converted to Python long */
1029 if (Py_IS_INFINITY(intpart))
1030 /* can't convert to long int -- arbitrary */
1031 v = v < 0 ? -271828.0 : 314159.0;
1032 plong = PyLong_FromDouble(v);
1033 if (plong == NULL)
1034 return -1;
1035 x = PyObject_Hash(plong);
1036 Py_DECREF(plong);
1037 return x;
1038 }
1039 /* Fits in a C long == a Python int, so is its own hash. */
1040 x = (long)intpart;
1041 if (x == -1)
1042 x = -2;
1043 return x;
1044 }
1045 /* The fractional part is non-zero, so we don't have to worry about
1046 * making this match the hash of some other type.
1047 * Use frexp to get at the bits in the double.
Fred Drake13634cf2000-06-29 19:17:04 +00001048 * Since the VAX D double format has 56 mantissa bits, which is the
1049 * most of any double format in use, each of these parts may have as
1050 * many as (but no more than) 56 significant bits.
Tim Peters39dce292000-08-15 03:34:48 +00001051 * So, assuming sizeof(long) >= 4, each part can be broken into two
1052 * longs; frexp and multiplication are used to do that.
1053 * Also, since the Cray double format has 15 exponent bits, which is
1054 * the most of any double format in use, shifting the exponent field
1055 * left by 15 won't overflow a long (again assuming sizeof(long) >= 4).
Fred Drake13634cf2000-06-29 19:17:04 +00001056 */
Tim Peters39dce292000-08-15 03:34:48 +00001057 v = frexp(v, &expo);
1058 v *= 2147483648.0; /* 2**31 */
1059 hipart = (long)v; /* take the top 32 bits */
1060 v = (v - (double)hipart) * 2147483648.0; /* get the next 32 bits */
1061 x = hipart + (long)v + (expo << 15);
1062 if (x == -1)
1063 x = -2;
1064 return x;
Fred Drake13634cf2000-06-29 19:17:04 +00001065}
1066
1067long
Fred Drake100814d2000-07-09 15:48:49 +00001068_Py_HashPointer(void *p)
Fred Drake13634cf2000-06-29 19:17:04 +00001069{
1070#if SIZEOF_LONG >= SIZEOF_VOID_P
1071 return (long)p;
1072#else
1073 /* convert to a Python long and hash that */
1074 PyObject* longobj;
1075 long x;
Tim Peters803526b2002-07-07 05:13:56 +00001076
Fred Drake13634cf2000-06-29 19:17:04 +00001077 if ((longobj = PyLong_FromVoidPtr(p)) == NULL) {
1078 x = -1;
1079 goto finally;
1080 }
1081 x = PyObject_Hash(longobj);
Tim Peters803526b2002-07-07 05:13:56 +00001082
Fred Drake13634cf2000-06-29 19:17:04 +00001083finally:
1084 Py_XDECREF(longobj);
1085 return x;
1086#endif
1087}
1088
Nick Coghlan53663a62008-07-15 14:27:37 +00001089long
1090PyObject_HashNotImplemented(PyObject *self)
1091{
1092 PyErr_Format(PyExc_TypeError, "unhashable type: '%.200s'",
1093 self->ob_type->tp_name);
1094 return -1;
1095}
Fred Drake13634cf2000-06-29 19:17:04 +00001096
Guido van Rossum9bfef441993-03-29 10:43:31 +00001097long
Fred Drake100814d2000-07-09 15:48:49 +00001098PyObject_Hash(PyObject *v)
Guido van Rossum9bfef441993-03-29 10:43:31 +00001099{
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001100 PyTypeObject *tp = v->ob_type;
Guido van Rossum9bfef441993-03-29 10:43:31 +00001101 if (tp->tp_hash != NULL)
1102 return (*tp->tp_hash)(v);
Nick Coghland4656402008-12-30 01:36:00 +00001103 /* To keep to the general practice that inheriting
1104 * solely from object in C code should work without
1105 * an explicit call to PyType_Ready, we implicitly call
1106 * PyType_Ready here and then check the tp_hash slot again
1107 */
1108 if (tp->tp_dict == NULL) {
1109 if (PyType_Ready(tp) < 0)
1110 return -1;
1111 if (tp->tp_hash != NULL)
1112 return (*tp->tp_hash)(v);
1113 }
Guido van Rossumd1f06b92001-01-24 22:14:43 +00001114 if (tp->tp_compare == NULL && RICHCOMPARE(tp) == NULL) {
Fred Drake13634cf2000-06-29 19:17:04 +00001115 return _Py_HashPointer(v); /* Use address as hash value */
1116 }
Guido van Rossum9bfef441993-03-29 10:43:31 +00001117 /* If there's a cmp but no hash defined, the object can't be hashed */
Nick Coghlan53663a62008-07-15 14:27:37 +00001118 return PyObject_HashNotImplemented(v);
Guido van Rossum9bfef441993-03-29 10:43:31 +00001119}
1120
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001121PyObject *
Jeremy Hyltonaf68c872005-12-10 18:50:16 +00001122PyObject_GetAttrString(PyObject *v, const char *name)
Guido van Rossum3f5da241990-12-20 15:06:42 +00001123{
Tim Peters6d6c1a32001-08-02 04:15:00 +00001124 PyObject *w, *res;
Guido van Rossumd8eb1b31996-08-09 20:52:03 +00001125
Christian Heimese93237d2007-12-19 02:37:44 +00001126 if (Py_TYPE(v)->tp_getattr != NULL)
1127 return (*Py_TYPE(v)->tp_getattr)(v, (char*)name);
Gregory P. Smithdd96db62008-06-09 04:58:54 +00001128 w = PyString_InternFromString(name);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001129 if (w == NULL)
1130 return NULL;
1131 res = PyObject_GetAttr(v, w);
1132 Py_XDECREF(w);
1133 return res;
Guido van Rossum3f5da241990-12-20 15:06:42 +00001134}
1135
1136int
Jeremy Hyltonaf68c872005-12-10 18:50:16 +00001137PyObject_HasAttrString(PyObject *v, const char *name)
Guido van Rossumed18fdc1993-07-11 19:55:34 +00001138{
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001139 PyObject *res = PyObject_GetAttrString(v, name);
Guido van Rossumed18fdc1993-07-11 19:55:34 +00001140 if (res != NULL) {
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001141 Py_DECREF(res);
Guido van Rossumed18fdc1993-07-11 19:55:34 +00001142 return 1;
1143 }
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001144 PyErr_Clear();
Guido van Rossumed18fdc1993-07-11 19:55:34 +00001145 return 0;
1146}
1147
1148int
Jeremy Hyltonaf68c872005-12-10 18:50:16 +00001149PyObject_SetAttrString(PyObject *v, const char *name, PyObject *w)
Guido van Rossum3f5da241990-12-20 15:06:42 +00001150{
Tim Peters6d6c1a32001-08-02 04:15:00 +00001151 PyObject *s;
1152 int res;
Guido van Rossumd8eb1b31996-08-09 20:52:03 +00001153
Christian Heimese93237d2007-12-19 02:37:44 +00001154 if (Py_TYPE(v)->tp_setattr != NULL)
1155 return (*Py_TYPE(v)->tp_setattr)(v, (char*)name, w);
Gregory P. Smithdd96db62008-06-09 04:58:54 +00001156 s = PyString_InternFromString(name);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001157 if (s == NULL)
1158 return -1;
1159 res = PyObject_SetAttr(v, s, w);
1160 Py_XDECREF(s);
1161 return res;
Guido van Rossum3f5da241990-12-20 15:06:42 +00001162}
1163
Guido van Rossum98ff96a1997-05-20 18:34:44 +00001164PyObject *
Fred Drake100814d2000-07-09 15:48:49 +00001165PyObject_GetAttr(PyObject *v, PyObject *name)
Guido van Rossum98ff96a1997-05-20 18:34:44 +00001166{
Christian Heimese93237d2007-12-19 02:37:44 +00001167 PyTypeObject *tp = Py_TYPE(v);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001168
Gregory P. Smithdd96db62008-06-09 04:58:54 +00001169 if (!PyString_Check(name)) {
Martin v. Löwis0c160a02002-03-15 13:40:30 +00001170#ifdef Py_USING_UNICODE
1171 /* The Unicode to string conversion is done here because the
1172 existing tp_getattro slots expect a string object as name
1173 and we wouldn't want to break those. */
1174 if (PyUnicode_Check(name)) {
1175 name = _PyUnicode_AsDefaultEncodedString(name, NULL);
1176 if (name == NULL)
1177 return NULL;
1178 }
1179 else
1180#endif
1181 {
Georg Brandlccff7852006-06-18 22:17:29 +00001182 PyErr_Format(PyExc_TypeError,
1183 "attribute name must be string, not '%.200s'",
Christian Heimese93237d2007-12-19 02:37:44 +00001184 Py_TYPE(name)->tp_name);
Martin v. Löwis0c160a02002-03-15 13:40:30 +00001185 return NULL;
1186 }
Jeremy Hylton99a8f902000-06-23 14:36:32 +00001187 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00001188 if (tp->tp_getattro != NULL)
1189 return (*tp->tp_getattro)(v, name);
1190 if (tp->tp_getattr != NULL)
Gregory P. Smithdd96db62008-06-09 04:58:54 +00001191 return (*tp->tp_getattr)(v, PyString_AS_STRING(name));
Tim Peters6d6c1a32001-08-02 04:15:00 +00001192 PyErr_Format(PyExc_AttributeError,
1193 "'%.50s' object has no attribute '%.400s'",
Gregory P. Smithdd96db62008-06-09 04:58:54 +00001194 tp->tp_name, PyString_AS_STRING(name));
Tim Peters6d6c1a32001-08-02 04:15:00 +00001195 return NULL;
Guido van Rossum98ff96a1997-05-20 18:34:44 +00001196}
1197
1198int
Fred Drake100814d2000-07-09 15:48:49 +00001199PyObject_HasAttr(PyObject *v, PyObject *name)
Guido van Rossum98ff96a1997-05-20 18:34:44 +00001200{
1201 PyObject *res = PyObject_GetAttr(v, name);
1202 if (res != NULL) {
1203 Py_DECREF(res);
1204 return 1;
1205 }
1206 PyErr_Clear();
1207 return 0;
1208}
1209
1210int
Fred Drake100814d2000-07-09 15:48:49 +00001211PyObject_SetAttr(PyObject *v, PyObject *name, PyObject *value)
Guido van Rossum98ff96a1997-05-20 18:34:44 +00001212{
Christian Heimese93237d2007-12-19 02:37:44 +00001213 PyTypeObject *tp = Py_TYPE(v);
Guido van Rossum98ff96a1997-05-20 18:34:44 +00001214 int err;
Marc-André Lemburge44e5072000-09-18 16:20:57 +00001215
Gregory P. Smithdd96db62008-06-09 04:58:54 +00001216 if (!PyString_Check(name)){
Martin v. Löwis0c160a02002-03-15 13:40:30 +00001217#ifdef Py_USING_UNICODE
1218 /* The Unicode to string conversion is done here because the
1219 existing tp_setattro slots expect a string object as name
1220 and we wouldn't want to break those. */
1221 if (PyUnicode_Check(name)) {
1222 name = PyUnicode_AsEncodedString(name, NULL, NULL);
1223 if (name == NULL)
1224 return -1;
1225 }
Tim Peters803526b2002-07-07 05:13:56 +00001226 else
Martin v. Löwis0c160a02002-03-15 13:40:30 +00001227#endif
1228 {
Georg Brandlccff7852006-06-18 22:17:29 +00001229 PyErr_Format(PyExc_TypeError,
1230 "attribute name must be string, not '%.200s'",
Christian Heimese93237d2007-12-19 02:37:44 +00001231 Py_TYPE(name)->tp_name);
Martin v. Löwis0c160a02002-03-15 13:40:30 +00001232 return -1;
1233 }
Jeremy Hylton99a8f902000-06-23 14:36:32 +00001234 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00001235 else
1236 Py_INCREF(name);
1237
Gregory P. Smithdd96db62008-06-09 04:58:54 +00001238 PyString_InternInPlace(&name);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001239 if (tp->tp_setattro != NULL) {
1240 err = (*tp->tp_setattro)(v, name, value);
1241 Py_DECREF(name);
1242 return err;
Marc-André Lemburge44e5072000-09-18 16:20:57 +00001243 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00001244 if (tp->tp_setattr != NULL) {
Gregory P. Smithdd96db62008-06-09 04:58:54 +00001245 err = (*tp->tp_setattr)(v, PyString_AS_STRING(name), value);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001246 Py_DECREF(name);
1247 return err;
1248 }
Guido van Rossum98ff96a1997-05-20 18:34:44 +00001249 Py_DECREF(name);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001250 if (tp->tp_getattr == NULL && tp->tp_getattro == NULL)
1251 PyErr_Format(PyExc_TypeError,
1252 "'%.100s' object has no attributes "
1253 "(%s .%.100s)",
1254 tp->tp_name,
1255 value==NULL ? "del" : "assign to",
Gregory P. Smithdd96db62008-06-09 04:58:54 +00001256 PyString_AS_STRING(name));
Tim Peters6d6c1a32001-08-02 04:15:00 +00001257 else
1258 PyErr_Format(PyExc_TypeError,
1259 "'%.100s' object has only read-only attributes "
1260 "(%s .%.100s)",
1261 tp->tp_name,
1262 value==NULL ? "del" : "assign to",
Gregory P. Smithdd96db62008-06-09 04:58:54 +00001263 PyString_AS_STRING(name));
Tim Peters6d6c1a32001-08-02 04:15:00 +00001264 return -1;
1265}
1266
1267/* Helper to get a pointer to an object's __dict__ slot, if any */
1268
1269PyObject **
1270_PyObject_GetDictPtr(PyObject *obj)
1271{
Martin v. Löwis725507b2006-03-07 12:08:51 +00001272 Py_ssize_t dictoffset;
Christian Heimese93237d2007-12-19 02:37:44 +00001273 PyTypeObject *tp = Py_TYPE(obj);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001274
1275 if (!(tp->tp_flags & Py_TPFLAGS_HAVE_CLASS))
1276 return NULL;
1277 dictoffset = tp->tp_dictoffset;
1278 if (dictoffset == 0)
1279 return NULL;
1280 if (dictoffset < 0) {
Martin v. Löwis18e16552006-02-15 17:27:45 +00001281 Py_ssize_t tsize;
Guido van Rossum2eb0b872002-03-01 22:24:49 +00001282 size_t size;
1283
1284 tsize = ((PyVarObject *)obj)->ob_size;
1285 if (tsize < 0)
1286 tsize = -tsize;
1287 size = _PyObject_VAR_SIZE(tp, tsize);
1288
Tim Peters6d483d32001-10-06 21:27:34 +00001289 dictoffset += (long)size;
1290 assert(dictoffset > 0);
1291 assert(dictoffset % SIZEOF_VOID_P == 0);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001292 }
1293 return (PyObject **) ((char *)obj + dictoffset);
1294}
1295
Tim Peters6d6c1a32001-08-02 04:15:00 +00001296PyObject *
Raymond Hettinger1da1dbf2003-03-17 19:46:11 +00001297PyObject_SelfIter(PyObject *obj)
Raymond Hettinger01538262003-03-17 08:24:35 +00001298{
1299 Py_INCREF(obj);
1300 return obj;
1301}
1302
Michael W. Hudson1593f502004-09-14 17:09:47 +00001303/* Generic GetAttr functions - put these in your tp_[gs]etattro slot */
1304
Raymond Hettinger01538262003-03-17 08:24:35 +00001305PyObject *
Tim Peters6d6c1a32001-08-02 04:15:00 +00001306PyObject_GenericGetAttr(PyObject *obj, PyObject *name)
1307{
Christian Heimese93237d2007-12-19 02:37:44 +00001308 PyTypeObject *tp = Py_TYPE(obj);
Guido van Rossum056fbf42002-08-19 19:22:50 +00001309 PyObject *descr = NULL;
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001310 PyObject *res = NULL;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001311 descrgetfunc f;
Martin v. Löwis725507b2006-03-07 12:08:51 +00001312 Py_ssize_t dictoffset;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001313 PyObject **dictptr;
1314
Gregory P. Smithdd96db62008-06-09 04:58:54 +00001315 if (!PyString_Check(name)){
Martin v. Löwis0c160a02002-03-15 13:40:30 +00001316#ifdef Py_USING_UNICODE
1317 /* The Unicode to string conversion is done here because the
1318 existing tp_setattro slots expect a string object as name
1319 and we wouldn't want to break those. */
1320 if (PyUnicode_Check(name)) {
1321 name = PyUnicode_AsEncodedString(name, NULL, NULL);
1322 if (name == NULL)
1323 return NULL;
1324 }
Tim Peters803526b2002-07-07 05:13:56 +00001325 else
Martin v. Löwis0c160a02002-03-15 13:40:30 +00001326#endif
1327 {
Georg Brandlccff7852006-06-18 22:17:29 +00001328 PyErr_Format(PyExc_TypeError,
1329 "attribute name must be string, not '%.200s'",
Christian Heimese93237d2007-12-19 02:37:44 +00001330 Py_TYPE(name)->tp_name);
Martin v. Löwis0c160a02002-03-15 13:40:30 +00001331 return NULL;
1332 }
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001333 }
1334 else
1335 Py_INCREF(name);
1336
Tim Peters6d6c1a32001-08-02 04:15:00 +00001337 if (tp->tp_dict == NULL) {
Guido van Rossum528b7eb2001-08-07 17:24:28 +00001338 if (PyType_Ready(tp) < 0)
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001339 goto done;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001340 }
1341
Amaury Forgeot d'Arce4c270c2008-01-14 00:29:41 +00001342#if 0 /* XXX this is not quite _PyType_Lookup anymore */
Guido van Rossum056fbf42002-08-19 19:22:50 +00001343 /* Inline _PyType_Lookup */
1344 {
Martin v. Löwis18e16552006-02-15 17:27:45 +00001345 Py_ssize_t i, n;
Guido van Rossum056fbf42002-08-19 19:22:50 +00001346 PyObject *mro, *base, *dict;
1347
1348 /* Look in tp_dict of types in MRO */
1349 mro = tp->tp_mro;
1350 assert(mro != NULL);
1351 assert(PyTuple_Check(mro));
1352 n = PyTuple_GET_SIZE(mro);
1353 for (i = 0; i < n; i++) {
1354 base = PyTuple_GET_ITEM(mro, i);
1355 if (PyClass_Check(base))
1356 dict = ((PyClassObject *)base)->cl_dict;
1357 else {
1358 assert(PyType_Check(base));
1359 dict = ((PyTypeObject *)base)->tp_dict;
1360 }
1361 assert(dict && PyDict_Check(dict));
1362 descr = PyDict_GetItem(dict, name);
1363 if (descr != NULL)
1364 break;
1365 }
1366 }
Amaury Forgeot d'Arce4c270c2008-01-14 00:29:41 +00001367#else
1368 descr = _PyType_Lookup(tp, name);
1369#endif
Guido van Rossum056fbf42002-08-19 19:22:50 +00001370
Michael W. Hudsonb2c7de42003-08-15 13:07:47 +00001371 Py_XINCREF(descr);
1372
Tim Peters6d6c1a32001-08-02 04:15:00 +00001373 f = NULL;
Guido van Rossum90195e22003-02-19 03:19:29 +00001374 if (descr != NULL &&
1375 PyType_HasFeature(descr->ob_type, Py_TPFLAGS_HAVE_CLASS)) {
Tim Peters6d6c1a32001-08-02 04:15:00 +00001376 f = descr->ob_type->tp_descr_get;
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001377 if (f != NULL && PyDescr_IsData(descr)) {
1378 res = f(descr, obj, (PyObject *)obj->ob_type);
Michael W. Hudsonb2c7de42003-08-15 13:07:47 +00001379 Py_DECREF(descr);
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001380 goto done;
1381 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00001382 }
1383
Guido van Rossumc66ff442002-08-19 16:50:48 +00001384 /* Inline _PyObject_GetDictPtr */
1385 dictoffset = tp->tp_dictoffset;
1386 if (dictoffset != 0) {
1387 PyObject *dict;
1388 if (dictoffset < 0) {
Martin v. Löwis18e16552006-02-15 17:27:45 +00001389 Py_ssize_t tsize;
Guido van Rossumc66ff442002-08-19 16:50:48 +00001390 size_t size;
1391
1392 tsize = ((PyVarObject *)obj)->ob_size;
1393 if (tsize < 0)
1394 tsize = -tsize;
1395 size = _PyObject_VAR_SIZE(tp, tsize);
1396
1397 dictoffset += (long)size;
1398 assert(dictoffset > 0);
1399 assert(dictoffset % SIZEOF_VOID_P == 0);
1400 }
1401 dictptr = (PyObject **) ((char *)obj + dictoffset);
1402 dict = *dictptr;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001403 if (dict != NULL) {
Guido van Rossum37edeab2008-01-24 17:58:05 +00001404 Py_INCREF(dict);
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001405 res = PyDict_GetItem(dict, name);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001406 if (res != NULL) {
1407 Py_INCREF(res);
Michael W. Hudsonb2c7de42003-08-15 13:07:47 +00001408 Py_XDECREF(descr);
Guido van Rossum37edeab2008-01-24 17:58:05 +00001409 Py_DECREF(dict);
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001410 goto done;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001411 }
Guido van Rossum37edeab2008-01-24 17:58:05 +00001412 Py_DECREF(dict);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001413 }
1414 }
1415
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001416 if (f != NULL) {
Christian Heimese93237d2007-12-19 02:37:44 +00001417 res = f(descr, obj, (PyObject *)Py_TYPE(obj));
Michael W. Hudsonb2c7de42003-08-15 13:07:47 +00001418 Py_DECREF(descr);
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001419 goto done;
1420 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00001421
1422 if (descr != NULL) {
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001423 res = descr;
Michael W. Hudsonb2c7de42003-08-15 13:07:47 +00001424 /* descr was already increfed above */
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001425 goto done;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001426 }
1427
1428 PyErr_Format(PyExc_AttributeError,
1429 "'%.50s' object has no attribute '%.400s'",
Gregory P. Smithdd96db62008-06-09 04:58:54 +00001430 tp->tp_name, PyString_AS_STRING(name));
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001431 done:
1432 Py_DECREF(name);
1433 return res;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001434}
1435
1436int
1437PyObject_GenericSetAttr(PyObject *obj, PyObject *name, PyObject *value)
1438{
Christian Heimese93237d2007-12-19 02:37:44 +00001439 PyTypeObject *tp = Py_TYPE(obj);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001440 PyObject *descr;
1441 descrsetfunc f;
1442 PyObject **dictptr;
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001443 int res = -1;
1444
Gregory P. Smithdd96db62008-06-09 04:58:54 +00001445 if (!PyString_Check(name)){
Martin v. Löwis0c160a02002-03-15 13:40:30 +00001446#ifdef Py_USING_UNICODE
1447 /* The Unicode to string conversion is done here because the
1448 existing tp_setattro slots expect a string object as name
1449 and we wouldn't want to break those. */
1450 if (PyUnicode_Check(name)) {
1451 name = PyUnicode_AsEncodedString(name, NULL, NULL);
1452 if (name == NULL)
1453 return -1;
1454 }
Tim Peters803526b2002-07-07 05:13:56 +00001455 else
Martin v. Löwis0c160a02002-03-15 13:40:30 +00001456#endif
1457 {
Georg Brandlccff7852006-06-18 22:17:29 +00001458 PyErr_Format(PyExc_TypeError,
1459 "attribute name must be string, not '%.200s'",
Christian Heimese93237d2007-12-19 02:37:44 +00001460 Py_TYPE(name)->tp_name);
Martin v. Löwis0c160a02002-03-15 13:40:30 +00001461 return -1;
1462 }
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001463 }
1464 else
1465 Py_INCREF(name);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001466
1467 if (tp->tp_dict == NULL) {
Guido van Rossum528b7eb2001-08-07 17:24:28 +00001468 if (PyType_Ready(tp) < 0)
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001469 goto done;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001470 }
1471
1472 descr = _PyType_Lookup(tp, name);
1473 f = NULL;
Guido van Rossum90195e22003-02-19 03:19:29 +00001474 if (descr != NULL &&
1475 PyType_HasFeature(descr->ob_type, Py_TPFLAGS_HAVE_CLASS)) {
Tim Peters6d6c1a32001-08-02 04:15:00 +00001476 f = descr->ob_type->tp_descr_set;
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001477 if (f != NULL && PyDescr_IsData(descr)) {
1478 res = f(descr, obj, value);
1479 goto done;
1480 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00001481 }
1482
1483 dictptr = _PyObject_GetDictPtr(obj);
1484 if (dictptr != NULL) {
1485 PyObject *dict = *dictptr;
1486 if (dict == NULL && value != NULL) {
1487 dict = PyDict_New();
1488 if (dict == NULL)
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001489 goto done;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001490 *dictptr = dict;
1491 }
1492 if (dict != NULL) {
Guido van Rossum37edeab2008-01-24 17:58:05 +00001493 Py_INCREF(dict);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001494 if (value == NULL)
1495 res = PyDict_DelItem(dict, name);
1496 else
1497 res = PyDict_SetItem(dict, name, value);
1498 if (res < 0 && PyErr_ExceptionMatches(PyExc_KeyError))
1499 PyErr_SetObject(PyExc_AttributeError, name);
Guido van Rossum37edeab2008-01-24 17:58:05 +00001500 Py_DECREF(dict);
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001501 goto done;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001502 }
1503 }
1504
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001505 if (f != NULL) {
1506 res = f(descr, obj, value);
1507 goto done;
1508 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00001509
1510 if (descr == NULL) {
1511 PyErr_Format(PyExc_AttributeError,
Georg Brandlccff7852006-06-18 22:17:29 +00001512 "'%.100s' object has no attribute '%.200s'",
Gregory P. Smithdd96db62008-06-09 04:58:54 +00001513 tp->tp_name, PyString_AS_STRING(name));
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001514 goto done;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001515 }
1516
1517 PyErr_Format(PyExc_AttributeError,
1518 "'%.50s' object attribute '%.400s' is read-only",
Gregory P. Smithdd96db62008-06-09 04:58:54 +00001519 tp->tp_name, PyString_AS_STRING(name));
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001520 done:
1521 Py_DECREF(name);
1522 return res;
Guido van Rossum98ff96a1997-05-20 18:34:44 +00001523}
1524
Guido van Rossum6ac258d1993-05-12 08:24:20 +00001525/* Test a value used as condition, e.g., in a for or if statement.
1526 Return -1 if an error occurred */
1527
1528int
Fred Drake100814d2000-07-09 15:48:49 +00001529PyObject_IsTrue(PyObject *v)
Guido van Rossum6ac258d1993-05-12 08:24:20 +00001530{
Martin v. Löwis18e16552006-02-15 17:27:45 +00001531 Py_ssize_t res;
Guido van Rossum6248f442002-08-24 06:31:34 +00001532 if (v == Py_True)
1533 return 1;
1534 if (v == Py_False)
1535 return 0;
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001536 if (v == Py_None)
Neal Norwitz51290d32002-06-13 21:32:44 +00001537 return 0;
Guido van Rossum1c4f4581998-05-22 00:53:24 +00001538 else if (v->ob_type->tp_as_number != NULL &&
1539 v->ob_type->tp_as_number->nb_nonzero != NULL)
Guido van Rossum6ac258d1993-05-12 08:24:20 +00001540 res = (*v->ob_type->tp_as_number->nb_nonzero)(v);
Guido van Rossum1c4f4581998-05-22 00:53:24 +00001541 else if (v->ob_type->tp_as_mapping != NULL &&
1542 v->ob_type->tp_as_mapping->mp_length != NULL)
Guido van Rossum6ac258d1993-05-12 08:24:20 +00001543 res = (*v->ob_type->tp_as_mapping->mp_length)(v);
Guido van Rossum1c4f4581998-05-22 00:53:24 +00001544 else if (v->ob_type->tp_as_sequence != NULL &&
1545 v->ob_type->tp_as_sequence->sq_length != NULL)
Guido van Rossum6ac258d1993-05-12 08:24:20 +00001546 res = (*v->ob_type->tp_as_sequence->sq_length)(v);
1547 else
Neal Norwitz51290d32002-06-13 21:32:44 +00001548 return 1;
Martin v. Löwis18e16552006-02-15 17:27:45 +00001549 /* if it is negative, it should be either -1 or -2 */
1550 return (res > 0) ? 1 : Py_SAFE_DOWNCAST(res, Py_ssize_t, int);
Guido van Rossum6ac258d1993-05-12 08:24:20 +00001551}
1552
Tim Peters803526b2002-07-07 05:13:56 +00001553/* equivalent of 'not v'
Guido van Rossumc3d3f961998-04-09 17:53:59 +00001554 Return -1 if an error occurred */
1555
1556int
Fred Drake100814d2000-07-09 15:48:49 +00001557PyObject_Not(PyObject *v)
Guido van Rossumc3d3f961998-04-09 17:53:59 +00001558{
1559 int res;
1560 res = PyObject_IsTrue(v);
1561 if (res < 0)
1562 return res;
1563 return res == 0;
1564}
1565
Guido van Rossum5524a591995-01-10 15:26:20 +00001566/* Coerce two numeric types to the "larger" one.
1567 Increment the reference count on each argument.
Guido van Rossume797ec12001-01-17 15:24:28 +00001568 Return value:
1569 -1 if an error occurred;
1570 0 if the coercion succeeded (and then the reference counts are increased);
1571 1 if no coercion is possible (and no error is raised).
Guido van Rossum5524a591995-01-10 15:26:20 +00001572*/
Guido van Rossum5524a591995-01-10 15:26:20 +00001573int
Fred Drake100814d2000-07-09 15:48:49 +00001574PyNumber_CoerceEx(PyObject **pv, PyObject **pw)
Guido van Rossum5524a591995-01-10 15:26:20 +00001575{
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001576 register PyObject *v = *pv;
1577 register PyObject *w = *pw;
Guido van Rossum5524a591995-01-10 15:26:20 +00001578 int res;
1579
Guido van Rossum517c7d42002-04-26 02:49:14 +00001580 /* Shortcut only for old-style types */
1581 if (v->ob_type == w->ob_type &&
1582 !PyType_HasFeature(v->ob_type, Py_TPFLAGS_CHECKTYPES))
1583 {
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001584 Py_INCREF(v);
1585 Py_INCREF(w);
Guido van Rossum5524a591995-01-10 15:26:20 +00001586 return 0;
1587 }
1588 if (v->ob_type->tp_as_number && v->ob_type->tp_as_number->nb_coerce) {
1589 res = (*v->ob_type->tp_as_number->nb_coerce)(pv, pw);
1590 if (res <= 0)
1591 return res;
1592 }
1593 if (w->ob_type->tp_as_number && w->ob_type->tp_as_number->nb_coerce) {
1594 res = (*w->ob_type->tp_as_number->nb_coerce)(pw, pv);
1595 if (res <= 0)
1596 return res;
1597 }
Guido van Rossum242c6421997-11-19 16:03:17 +00001598 return 1;
1599}
1600
Guido van Rossume797ec12001-01-17 15:24:28 +00001601/* Coerce two numeric types to the "larger" one.
1602 Increment the reference count on each argument.
1603 Return -1 and raise an exception if no coercion is possible
1604 (and then no reference count is incremented).
1605*/
Guido van Rossum242c6421997-11-19 16:03:17 +00001606int
Fred Drake100814d2000-07-09 15:48:49 +00001607PyNumber_Coerce(PyObject **pv, PyObject **pw)
Guido van Rossum242c6421997-11-19 16:03:17 +00001608{
1609 int err = PyNumber_CoerceEx(pv, pw);
1610 if (err <= 0)
1611 return err;
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001612 PyErr_SetString(PyExc_TypeError, "number coercion failed");
Guido van Rossum5524a591995-01-10 15:26:20 +00001613 return -1;
1614}
1615
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001616
Guido van Rossum49b11fe1995-01-26 00:38:22 +00001617/* Test whether an object can be called */
1618
1619int
Fred Drake100814d2000-07-09 15:48:49 +00001620PyCallable_Check(PyObject *x)
Guido van Rossum49b11fe1995-01-26 00:38:22 +00001621{
1622 if (x == NULL)
1623 return 0;
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001624 if (PyInstance_Check(x)) {
1625 PyObject *call = PyObject_GetAttrString(x, "__call__");
Guido van Rossum49b11fe1995-01-26 00:38:22 +00001626 if (call == NULL) {
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001627 PyErr_Clear();
Guido van Rossum49b11fe1995-01-26 00:38:22 +00001628 return 0;
1629 }
1630 /* Could test recursively but don't, for fear of endless
1631 recursion if some joker sets self.__call__ = self */
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001632 Py_DECREF(call);
Guido van Rossum49b11fe1995-01-26 00:38:22 +00001633 return 1;
1634 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00001635 else {
1636 return x->ob_type->tp_call != NULL;
1637 }
Guido van Rossum49b11fe1995-01-26 00:38:22 +00001638}
1639
Georg Brandl871f1bc2007-03-12 13:17:36 +00001640/* ------------------------- PyObject_Dir() helpers ------------------------- */
1641
Tim Peters7eea37e2001-09-04 22:08:56 +00001642/* Helper for PyObject_Dir.
1643 Merge the __dict__ of aclass into dict, and recursively also all
1644 the __dict__s of aclass's base classes. The order of merging isn't
1645 defined, as it's expected that only the final set of dict keys is
1646 interesting.
1647 Return 0 on success, -1 on error.
1648*/
1649
1650static int
1651merge_class_dict(PyObject* dict, PyObject* aclass)
1652{
1653 PyObject *classdict;
1654 PyObject *bases;
1655
1656 assert(PyDict_Check(dict));
1657 assert(aclass);
1658
1659 /* Merge in the type's dict (if any). */
1660 classdict = PyObject_GetAttrString(aclass, "__dict__");
1661 if (classdict == NULL)
1662 PyErr_Clear();
1663 else {
1664 int status = PyDict_Update(dict, classdict);
1665 Py_DECREF(classdict);
1666 if (status < 0)
1667 return -1;
1668 }
1669
1670 /* Recursively merge in the base types' (if any) dicts. */
1671 bases = PyObject_GetAttrString(aclass, "__bases__");
Tim Petersbc7e8632001-09-16 20:33:22 +00001672 if (bases == NULL)
1673 PyErr_Clear();
1674 else {
Guido van Rossum44022412002-05-13 18:29:46 +00001675 /* We have no guarantee that bases is a real tuple */
Martin v. Löwis18e16552006-02-15 17:27:45 +00001676 Py_ssize_t i, n;
Guido van Rossum44022412002-05-13 18:29:46 +00001677 n = PySequence_Size(bases); /* This better be right */
1678 if (n < 0)
1679 PyErr_Clear();
1680 else {
1681 for (i = 0; i < n; i++) {
Tim Peters18e70832003-02-05 19:35:19 +00001682 int status;
Guido van Rossum44022412002-05-13 18:29:46 +00001683 PyObject *base = PySequence_GetItem(bases, i);
1684 if (base == NULL) {
1685 Py_DECREF(bases);
1686 return -1;
1687 }
Tim Peters18e70832003-02-05 19:35:19 +00001688 status = merge_class_dict(dict, base);
1689 Py_DECREF(base);
1690 if (status < 0) {
Guido van Rossum44022412002-05-13 18:29:46 +00001691 Py_DECREF(bases);
1692 return -1;
1693 }
Tim Peters7eea37e2001-09-04 22:08:56 +00001694 }
1695 }
1696 Py_DECREF(bases);
1697 }
1698 return 0;
1699}
1700
Tim Peters305b5852001-09-17 02:38:46 +00001701/* Helper for PyObject_Dir.
1702 If obj has an attr named attrname that's a list, merge its string
1703 elements into keys of dict.
1704 Return 0 on success, -1 on error. Errors due to not finding the attr,
1705 or the attr not being a list, are suppressed.
1706*/
1707
1708static int
Jeremy Hyltonaf68c872005-12-10 18:50:16 +00001709merge_list_attr(PyObject* dict, PyObject* obj, const char *attrname)
Tim Peters305b5852001-09-17 02:38:46 +00001710{
1711 PyObject *list;
1712 int result = 0;
1713
1714 assert(PyDict_Check(dict));
1715 assert(obj);
1716 assert(attrname);
1717
1718 list = PyObject_GetAttrString(obj, attrname);
1719 if (list == NULL)
1720 PyErr_Clear();
1721
1722 else if (PyList_Check(list)) {
1723 int i;
1724 for (i = 0; i < PyList_GET_SIZE(list); ++i) {
1725 PyObject *item = PyList_GET_ITEM(list, i);
Gregory P. Smithdd96db62008-06-09 04:58:54 +00001726 if (PyString_Check(item)) {
Tim Peters305b5852001-09-17 02:38:46 +00001727 result = PyDict_SetItem(dict, item, Py_None);
1728 if (result < 0)
1729 break;
1730 }
1731 }
Georg Brandl07e56812008-03-21 20:21:46 +00001732 if (Py_Py3kWarningFlag &&
1733 (strcmp(attrname, "__members__") == 0 ||
1734 strcmp(attrname, "__methods__") == 0)) {
Benjamin Peterson9f4f4812008-04-27 03:01:45 +00001735 if (PyErr_WarnEx(PyExc_DeprecationWarning,
Georg Brandld5b635f2008-03-25 08:29:14 +00001736 "__members__ and __methods__ not "
Benjamin Peterson9f4f4812008-04-27 03:01:45 +00001737 "supported in 3.x", 1) < 0) {
Georg Brandl07e56812008-03-21 20:21:46 +00001738 Py_XDECREF(list);
1739 return -1;
1740 }
1741 }
Tim Peters305b5852001-09-17 02:38:46 +00001742 }
1743
1744 Py_XDECREF(list);
1745 return result;
1746}
1747
Georg Brandl871f1bc2007-03-12 13:17:36 +00001748/* Helper for PyObject_Dir without arguments: returns the local scope. */
1749static PyObject *
Jeremy Hylton26ca9252007-03-16 14:49:11 +00001750_dir_locals(void)
Tim Peters7eea37e2001-09-04 22:08:56 +00001751{
Georg Brandl871f1bc2007-03-12 13:17:36 +00001752 PyObject *names;
1753 PyObject *locals = PyEval_GetLocals();
Tim Peters7eea37e2001-09-04 22:08:56 +00001754
Georg Brandl871f1bc2007-03-12 13:17:36 +00001755 if (locals == NULL) {
1756 PyErr_SetString(PyExc_SystemError, "frame does not exist");
1757 return NULL;
Tim Peters7eea37e2001-09-04 22:08:56 +00001758 }
1759
Georg Brandl871f1bc2007-03-12 13:17:36 +00001760 names = PyMapping_Keys(locals);
1761 if (!names)
1762 return NULL;
1763 if (!PyList_Check(names)) {
Georg Brandlccff7852006-06-18 22:17:29 +00001764 PyErr_Format(PyExc_TypeError,
Georg Brandl871f1bc2007-03-12 13:17:36 +00001765 "dir(): expected keys() of locals to be a list, "
Christian Heimese93237d2007-12-19 02:37:44 +00001766 "not '%.200s'", Py_TYPE(names)->tp_name);
Georg Brandl871f1bc2007-03-12 13:17:36 +00001767 Py_DECREF(names);
1768 return NULL;
Raymond Hettinger2a7dede2004-08-07 04:55:30 +00001769 }
Georg Brandl871f1bc2007-03-12 13:17:36 +00001770 /* the locals don't need to be DECREF'd */
1771 return names;
1772}
Tim Peters7eea37e2001-09-04 22:08:56 +00001773
Georg Brandl871f1bc2007-03-12 13:17:36 +00001774/* Helper for PyObject_Dir of type objects: returns __dict__ and __bases__.
1775 We deliberately don't suck up its __class__, as methods belonging to the
1776 metaclass would probably be more confusing than helpful.
1777*/
1778static PyObject *
1779_specialized_dir_type(PyObject *obj)
1780{
1781 PyObject *result = NULL;
1782 PyObject *dict = PyDict_New();
1783
1784 if (dict != NULL && merge_class_dict(dict, obj) == 0)
1785 result = PyDict_Keys(dict);
1786
1787 Py_XDECREF(dict);
1788 return result;
1789}
1790
1791/* Helper for PyObject_Dir of module objects: returns the module's __dict__. */
1792static PyObject *
1793_specialized_dir_module(PyObject *obj)
1794{
1795 PyObject *result = NULL;
1796 PyObject *dict = PyObject_GetAttrString(obj, "__dict__");
1797
1798 if (dict != NULL) {
1799 if (PyDict_Check(dict))
1800 result = PyDict_Keys(dict);
1801 else {
1802 PyErr_Format(PyExc_TypeError,
1803 "%.200s.__dict__ is not a dictionary",
1804 PyModule_GetName(obj));
1805 }
1806 }
1807
1808 Py_XDECREF(dict);
1809 return result;
1810}
1811
1812/* Helper for PyObject_Dir of generic objects: returns __dict__, __class__,
1813 and recursively up the __class__.__bases__ chain.
1814*/
1815static PyObject *
1816_generic_dir(PyObject *obj)
1817{
1818 PyObject *result = NULL;
1819 PyObject *dict = NULL;
1820 PyObject *itsclass = NULL;
1821
1822 /* Get __dict__ (which may or may not be a real dict...) */
1823 dict = PyObject_GetAttrString(obj, "__dict__");
1824 if (dict == NULL) {
1825 PyErr_Clear();
1826 dict = PyDict_New();
1827 }
1828 else if (!PyDict_Check(dict)) {
1829 Py_DECREF(dict);
1830 dict = PyDict_New();
1831 }
1832 else {
1833 /* Copy __dict__ to avoid mutating it. */
1834 PyObject *temp = PyDict_Copy(dict);
1835 Py_DECREF(dict);
1836 dict = temp;
1837 }
1838
1839 if (dict == NULL)
1840 goto error;
1841
1842 /* Merge in __members__ and __methods__ (if any).
1843 * This is removed in Python 3000. */
1844 if (merge_list_attr(dict, obj, "__members__") < 0)
1845 goto error;
1846 if (merge_list_attr(dict, obj, "__methods__") < 0)
1847 goto error;
1848
1849 /* Merge in attrs reachable from its class. */
1850 itsclass = PyObject_GetAttrString(obj, "__class__");
1851 if (itsclass == NULL)
1852 /* XXX(tomer): Perhaps fall back to obj->ob_type if no
1853 __class__ exists? */
1854 PyErr_Clear();
1855 else {
1856 if (merge_class_dict(dict, itsclass) != 0)
1857 goto error;
1858 }
1859
1860 result = PyDict_Keys(dict);
Tim Peters7eea37e2001-09-04 22:08:56 +00001861 /* fall through */
Georg Brandl871f1bc2007-03-12 13:17:36 +00001862error:
1863 Py_XDECREF(itsclass);
1864 Py_XDECREF(dict);
1865 return result;
1866}
1867
1868/* Helper for PyObject_Dir: object introspection.
1869 This calls one of the above specialized versions if no __dir__ method
1870 exists. */
1871static PyObject *
1872_dir_object(PyObject *obj)
1873{
Georg Brandl3bb15672007-03-13 07:23:16 +00001874 PyObject *result = NULL;
1875 PyObject *dirfunc = PyObject_GetAttrString((PyObject *)obj->ob_type,
1876 "__dir__");
Georg Brandl871f1bc2007-03-12 13:17:36 +00001877
1878 assert(obj);
1879 if (dirfunc == NULL) {
1880 /* use default implementation */
1881 PyErr_Clear();
1882 if (PyModule_Check(obj))
1883 result = _specialized_dir_module(obj);
1884 else if (PyType_Check(obj) || PyClass_Check(obj))
1885 result = _specialized_dir_type(obj);
1886 else
1887 result = _generic_dir(obj);
1888 }
1889 else {
1890 /* use __dir__ */
1891 result = PyObject_CallFunctionObjArgs(dirfunc, obj, NULL);
1892 Py_DECREF(dirfunc);
1893 if (result == NULL)
1894 return NULL;
1895
1896 /* result must be a list */
1897 /* XXX(gbrandl): could also check if all items are strings */
1898 if (!PyList_Check(result)) {
1899 PyErr_Format(PyExc_TypeError,
1900 "__dir__() must return a list, not %.200s",
Christian Heimese93237d2007-12-19 02:37:44 +00001901 Py_TYPE(result)->tp_name);
Georg Brandl871f1bc2007-03-12 13:17:36 +00001902 Py_DECREF(result);
1903 result = NULL;
1904 }
1905 }
1906
1907 return result;
1908}
1909
1910/* Implementation of dir() -- if obj is NULL, returns the names in the current
1911 (local) scope. Otherwise, performs introspection of the object: returns a
1912 sorted list of attribute names (supposedly) accessible from the object
1913*/
1914PyObject *
1915PyObject_Dir(PyObject *obj)
1916{
1917 PyObject * result;
1918
1919 if (obj == NULL)
1920 /* no object -- introspect the locals */
1921 result = _dir_locals();
1922 else
1923 /* object -- introspect the object */
1924 result = _dir_object(obj);
1925
1926 assert(result == NULL || PyList_Check(result));
1927
1928 if (result != NULL && PyList_Sort(result) != 0) {
1929 /* sorting the list failed */
1930 Py_DECREF(result);
1931 result = NULL;
1932 }
1933
Tim Peters7eea37e2001-09-04 22:08:56 +00001934 return result;
1935}
Guido van Rossum49b11fe1995-01-26 00:38:22 +00001936
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001937/*
1938NoObject is usable as a non-NULL undefined value, used by the macro None.
1939There is (and should be!) no way to create other objects of this type,
Guido van Rossum3f5da241990-12-20 15:06:42 +00001940so there is exactly one (which is indestructible, by the way).
Guido van Rossumba21a492001-08-16 08:17:26 +00001941(XXX This type and the type of NotImplemented below should be unified.)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001942*/
1943
Guido van Rossum0c182a11992-03-27 17:26:13 +00001944/* ARGSUSED */
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001945static PyObject *
Fred Drake100814d2000-07-09 15:48:49 +00001946none_repr(PyObject *op)
Guido van Rossum3f5da241990-12-20 15:06:42 +00001947{
Gregory P. Smithdd96db62008-06-09 04:58:54 +00001948 return PyString_FromString("None");
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001949}
1950
Barry Warsaw9bf16442001-01-23 16:24:35 +00001951/* ARGUSED */
1952static void
Tim Peters803526b2002-07-07 05:13:56 +00001953none_dealloc(PyObject* ignore)
Barry Warsaw9bf16442001-01-23 16:24:35 +00001954{
1955 /* This should never get called, but we also don't want to SEGV if
1956 * we accidently decref None out of existance.
1957 */
Martin v. Löwis3f19b102002-08-07 16:21:51 +00001958 Py_FatalError("deallocating None");
Barry Warsaw9bf16442001-01-23 16:24:35 +00001959}
1960
1961
Guido van Rossumba21a492001-08-16 08:17:26 +00001962static PyTypeObject PyNone_Type = {
Martin v. Löwis68192102007-07-21 06:55:02 +00001963 PyVarObject_HEAD_INIT(&PyType_Type, 0)
Guido van Rossumba21a492001-08-16 08:17:26 +00001964 "NoneType",
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001965 0,
1966 0,
Georg Brandl347b3002006-03-30 11:57:00 +00001967 none_dealloc, /*tp_dealloc*/ /*never called*/
Guido van Rossum7066dd71992-09-17 17:54:56 +00001968 0, /*tp_print*/
Guido van Rossum3f5da241990-12-20 15:06:42 +00001969 0, /*tp_getattr*/
1970 0, /*tp_setattr*/
1971 0, /*tp_compare*/
Georg Brandl347b3002006-03-30 11:57:00 +00001972 none_repr, /*tp_repr*/
Guido van Rossum3f5da241990-12-20 15:06:42 +00001973 0, /*tp_as_number*/
1974 0, /*tp_as_sequence*/
1975 0, /*tp_as_mapping*/
Guido van Rossum64c06e32007-11-22 00:55:51 +00001976 (hashfunc)_Py_HashPointer, /*tp_hash */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001977};
1978
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001979PyObject _Py_NoneStruct = {
Martin v. Löwis68192102007-07-21 06:55:02 +00001980 _PyObject_EXTRA_INIT
1981 1, &PyNone_Type
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001982};
1983
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +00001984/* NotImplemented is an object that can be used to signal that an
1985 operation is not implemented for the given type combination. */
1986
1987static PyObject *
1988NotImplemented_repr(PyObject *op)
1989{
Gregory P. Smithdd96db62008-06-09 04:58:54 +00001990 return PyString_FromString("NotImplemented");
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +00001991}
1992
1993static PyTypeObject PyNotImplemented_Type = {
Martin v. Löwis68192102007-07-21 06:55:02 +00001994 PyVarObject_HEAD_INIT(&PyType_Type, 0)
Guido van Rossumba21a492001-08-16 08:17:26 +00001995 "NotImplementedType",
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +00001996 0,
1997 0,
Georg Brandl347b3002006-03-30 11:57:00 +00001998 none_dealloc, /*tp_dealloc*/ /*never called*/
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +00001999 0, /*tp_print*/
2000 0, /*tp_getattr*/
2001 0, /*tp_setattr*/
2002 0, /*tp_compare*/
Georg Brandl347b3002006-03-30 11:57:00 +00002003 NotImplemented_repr, /*tp_repr*/
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +00002004 0, /*tp_as_number*/
2005 0, /*tp_as_sequence*/
2006 0, /*tp_as_mapping*/
2007 0, /*tp_hash */
2008};
2009
2010PyObject _Py_NotImplementedStruct = {
Martin v. Löwis68192102007-07-21 06:55:02 +00002011 _PyObject_EXTRA_INIT
2012 1, &PyNotImplemented_Type
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +00002013};
2014
Guido van Rossumba21a492001-08-16 08:17:26 +00002015void
2016_Py_ReadyTypes(void)
2017{
2018 if (PyType_Ready(&PyType_Type) < 0)
2019 Py_FatalError("Can't initialize 'type'");
2020
Fred Drake0a4dd392004-07-02 18:57:45 +00002021 if (PyType_Ready(&_PyWeakref_RefType) < 0)
2022 Py_FatalError("Can't initialize 'weakref'");
2023
Guido van Rossum77f6a652002-04-03 22:41:51 +00002024 if (PyType_Ready(&PyBool_Type) < 0)
2025 Py_FatalError("Can't initialize 'bool'");
2026
Gregory P. Smithdd96db62008-06-09 04:58:54 +00002027 if (PyType_Ready(&PyString_Type) < 0)
Guido van Rossumcacfc072002-05-24 19:01:59 +00002028 Py_FatalError("Can't initialize 'str'");
2029
Christian Heimes3497f942008-05-26 12:29:14 +00002030 if (PyType_Ready(&PyByteArray_Type) < 0)
Christian Heimes1a6387e2008-03-26 12:49:49 +00002031 Py_FatalError("Can't initialize 'bytes'");
2032
Guido van Rossumba21a492001-08-16 08:17:26 +00002033 if (PyType_Ready(&PyList_Type) < 0)
2034 Py_FatalError("Can't initialize 'list'");
2035
2036 if (PyType_Ready(&PyNone_Type) < 0)
2037 Py_FatalError("Can't initialize type(None)");
2038
2039 if (PyType_Ready(&PyNotImplemented_Type) < 0)
2040 Py_FatalError("Can't initialize type(NotImplemented)");
2041}
2042
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002043
Guido van Rossum84a90321996-05-22 16:34:47 +00002044#ifdef Py_TRACE_REFS
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002045
Guido van Rossumaacdc9d1996-08-12 21:32:12 +00002046void
Fred Drake100814d2000-07-09 15:48:49 +00002047_Py_NewReference(PyObject *op)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002048{
Tim Peters34592512002-07-11 06:23:50 +00002049 _Py_INC_REFTOTAL;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002050 op->ob_refcnt = 1;
Tim Peters7571a0f2003-03-23 17:52:28 +00002051 _Py_AddToAllObjects(op, 1);
Tim Peters34592512002-07-11 06:23:50 +00002052 _Py_INC_TPALLOCS(op);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002053}
2054
Guido van Rossumaacdc9d1996-08-12 21:32:12 +00002055void
Fred Drake100814d2000-07-09 15:48:49 +00002056_Py_ForgetReference(register PyObject *op)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002057{
Guido van Rossumbffd6832000-01-20 22:32:56 +00002058#ifdef SLOW_UNREF_CHECK
Guido van Rossum4c08d552000-03-10 22:55:18 +00002059 register PyObject *p;
Guido van Rossumbffd6832000-01-20 22:32:56 +00002060#endif
Guido van Rossumd7047b31995-01-02 19:07:15 +00002061 if (op->ob_refcnt < 0)
Guido van Rossumc0b618a1997-05-02 03:12:38 +00002062 Py_FatalError("UNREF negative refcnt");
Guido van Rossum2e8f6141992-09-03 20:32:55 +00002063 if (op == &refchain ||
Guido van Rossumd7047b31995-01-02 19:07:15 +00002064 op->_ob_prev->_ob_next != op || op->_ob_next->_ob_prev != op)
Guido van Rossumc0b618a1997-05-02 03:12:38 +00002065 Py_FatalError("UNREF invalid object");
Guido van Rossum2e8f6141992-09-03 20:32:55 +00002066#ifdef SLOW_UNREF_CHECK
Guido van Rossum3f5da241990-12-20 15:06:42 +00002067 for (p = refchain._ob_next; p != &refchain; p = p->_ob_next) {
2068 if (p == op)
2069 break;
2070 }
Guido van Rossumd7047b31995-01-02 19:07:15 +00002071 if (p == &refchain) /* Not found */
Guido van Rossumc0b618a1997-05-02 03:12:38 +00002072 Py_FatalError("UNREF unknown object");
Guido van Rossum2e8f6141992-09-03 20:32:55 +00002073#endif
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002074 op->_ob_next->_ob_prev = op->_ob_prev;
2075 op->_ob_prev->_ob_next = op->_ob_next;
Guido van Rossum2e8f6141992-09-03 20:32:55 +00002076 op->_ob_next = op->_ob_prev = NULL;
Tim Peters34592512002-07-11 06:23:50 +00002077 _Py_INC_TPFREES(op);
Guido van Rossum3f5da241990-12-20 15:06:42 +00002078}
2079
Guido van Rossumaacdc9d1996-08-12 21:32:12 +00002080void
Fred Drake100814d2000-07-09 15:48:49 +00002081_Py_Dealloc(PyObject *op)
Guido van Rossum3f5da241990-12-20 15:06:42 +00002082{
Christian Heimese93237d2007-12-19 02:37:44 +00002083 destructor dealloc = Py_TYPE(op)->tp_dealloc;
Guido van Rossumc0b618a1997-05-02 03:12:38 +00002084 _Py_ForgetReference(op);
Guido van Rossum9776adf1994-09-07 14:36:45 +00002085 (*dealloc)(op);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002086}
2087
Tim Peters269b2a62003-04-17 19:52:29 +00002088/* Print all live objects. Because PyObject_Print is called, the
2089 * interpreter must be in a healthy state.
2090 */
Guido van Rossumaacdc9d1996-08-12 21:32:12 +00002091void
Fred Drake100814d2000-07-09 15:48:49 +00002092_Py_PrintReferences(FILE *fp)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002093{
Guido van Rossumc0b618a1997-05-02 03:12:38 +00002094 PyObject *op;
Guido van Rossume09fb551997-08-05 02:04:34 +00002095 fprintf(fp, "Remaining objects:\n");
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002096 for (op = refchain._ob_next; op != &refchain; op = op->_ob_next) {
Tim Peterscbd6f182006-04-11 19:12:33 +00002097 fprintf(fp, "%p [%" PY_FORMAT_SIZE_T "d] ", op, op->ob_refcnt);
Guido van Rossumc0b618a1997-05-02 03:12:38 +00002098 if (PyObject_Print(op, fp, 0) != 0)
2099 PyErr_Clear();
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002100 putc('\n', fp);
2101 }
2102}
2103
Tim Peters269b2a62003-04-17 19:52:29 +00002104/* Print the addresses of all live objects. Unlike _Py_PrintReferences, this
2105 * doesn't make any calls to the Python C API, so is always safe to call.
2106 */
2107void
2108_Py_PrintReferenceAddresses(FILE *fp)
2109{
2110 PyObject *op;
2111 fprintf(fp, "Remaining object addresses:\n");
2112 for (op = refchain._ob_next; op != &refchain; op = op->_ob_next)
Tim Peterscbd6f182006-04-11 19:12:33 +00002113 fprintf(fp, "%p [%" PY_FORMAT_SIZE_T "d] %s\n", op,
Christian Heimese93237d2007-12-19 02:37:44 +00002114 op->ob_refcnt, Py_TYPE(op)->tp_name);
Tim Peters269b2a62003-04-17 19:52:29 +00002115}
2116
Sjoerd Mullender6ec3c651995-08-29 09:18:14 +00002117PyObject *
Fred Drake100814d2000-07-09 15:48:49 +00002118_Py_GetObjects(PyObject *self, PyObject *args)
Sjoerd Mullender6ec3c651995-08-29 09:18:14 +00002119{
2120 int i, n;
2121 PyObject *t = NULL;
2122 PyObject *res, *op;
2123
2124 if (!PyArg_ParseTuple(args, "i|O", &n, &t))
2125 return NULL;
2126 op = refchain._ob_next;
2127 res = PyList_New(0);
2128 if (res == NULL)
2129 return NULL;
2130 for (i = 0; (n == 0 || i < n) && op != &refchain; i++) {
2131 while (op == self || op == args || op == res || op == t ||
Christian Heimese93237d2007-12-19 02:37:44 +00002132 (t != NULL && Py_TYPE(op) != (PyTypeObject *) t)) {
Sjoerd Mullender6ec3c651995-08-29 09:18:14 +00002133 op = op->_ob_next;
2134 if (op == &refchain)
2135 return res;
2136 }
2137 if (PyList_Append(res, op) < 0) {
2138 Py_DECREF(res);
2139 return NULL;
2140 }
2141 op = op->_ob_next;
2142 }
2143 return res;
2144}
2145
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002146#endif
Guido van Rossum97ead3f1996-01-12 01:24:09 +00002147
2148
2149/* Hack to force loading of cobject.o */
Guido van Rossumda9c2711996-12-05 21:58:58 +00002150PyTypeObject *_Py_cobject_hack = &PyCObject_Type;
Guido van Rossum84a90321996-05-22 16:34:47 +00002151
2152
2153/* Hack to force loading of abstract.o */
Martin v. Löwis18e16552006-02-15 17:27:45 +00002154Py_ssize_t (*_Py_abstract_hack)(PyObject *) = PyObject_Size;
Guido van Rossume09fb551997-08-05 02:04:34 +00002155
2156
Andrew M. Kuchling1582a3a2000-08-16 12:27:23 +00002157/* Python's malloc wrappers (see pymem.h) */
Guido van Rossume09fb551997-08-05 02:04:34 +00002158
Thomas Wouters334fb892000-07-25 12:56:38 +00002159void *
Fred Drake100814d2000-07-09 15:48:49 +00002160PyMem_Malloc(size_t nbytes)
Guido van Rossume09fb551997-08-05 02:04:34 +00002161{
Guido van Rossumb18618d2000-05-03 23:44:39 +00002162 return PyMem_MALLOC(nbytes);
Guido van Rossume09fb551997-08-05 02:04:34 +00002163}
2164
Thomas Wouters334fb892000-07-25 12:56:38 +00002165void *
2166PyMem_Realloc(void *p, size_t nbytes)
Guido van Rossume09fb551997-08-05 02:04:34 +00002167{
Tim Petersaf3e8de2002-04-12 07:22:56 +00002168 return PyMem_REALLOC(p, nbytes);
Guido van Rossume09fb551997-08-05 02:04:34 +00002169}
2170
2171void
Thomas Wouters334fb892000-07-25 12:56:38 +00002172PyMem_Free(void *p)
Guido van Rossume09fb551997-08-05 02:04:34 +00002173{
Guido van Rossumb18618d2000-05-03 23:44:39 +00002174 PyMem_FREE(p);
2175}
2176
2177
Guido van Rossum86610361998-04-10 22:32:46 +00002178/* These methods are used to control infinite recursion in repr, str, print,
2179 etc. Container objects that may recursively contain themselves,
2180 e.g. builtin dictionaries and lists, should used Py_ReprEnter() and
2181 Py_ReprLeave() to avoid infinite recursion.
2182
2183 Py_ReprEnter() returns 0 the first time it is called for a particular
2184 object and 1 every time thereafter. It returns -1 if an exception
2185 occurred. Py_ReprLeave() has no return value.
2186
2187 See dictobject.c and listobject.c for examples of use.
2188*/
2189
2190#define KEY "Py_Repr"
2191
2192int
Fred Drake100814d2000-07-09 15:48:49 +00002193Py_ReprEnter(PyObject *obj)
Guido van Rossum86610361998-04-10 22:32:46 +00002194{
2195 PyObject *dict;
2196 PyObject *list;
Martin v. Löwis18e16552006-02-15 17:27:45 +00002197 Py_ssize_t i;
Guido van Rossum86610361998-04-10 22:32:46 +00002198
2199 dict = PyThreadState_GetDict();
2200 if (dict == NULL)
Guido van Rossum0fc8f002003-04-15 15:12:39 +00002201 return 0;
Guido van Rossum86610361998-04-10 22:32:46 +00002202 list = PyDict_GetItemString(dict, KEY);
2203 if (list == NULL) {
2204 list = PyList_New(0);
2205 if (list == NULL)
2206 return -1;
2207 if (PyDict_SetItemString(dict, KEY, list) < 0)
2208 return -1;
2209 Py_DECREF(list);
2210 }
2211 i = PyList_GET_SIZE(list);
2212 while (--i >= 0) {
2213 if (PyList_GET_ITEM(list, i) == obj)
2214 return 1;
2215 }
2216 PyList_Append(list, obj);
2217 return 0;
2218}
2219
2220void
Fred Drake100814d2000-07-09 15:48:49 +00002221Py_ReprLeave(PyObject *obj)
Guido van Rossum86610361998-04-10 22:32:46 +00002222{
2223 PyObject *dict;
2224 PyObject *list;
Martin v. Löwis18e16552006-02-15 17:27:45 +00002225 Py_ssize_t i;
Guido van Rossum86610361998-04-10 22:32:46 +00002226
2227 dict = PyThreadState_GetDict();
Guido van Rossumeb909461998-04-11 15:17:34 +00002228 if (dict == NULL)
2229 return;
Guido van Rossum86610361998-04-10 22:32:46 +00002230 list = PyDict_GetItemString(dict, KEY);
Guido van Rossumeb909461998-04-11 15:17:34 +00002231 if (list == NULL || !PyList_Check(list))
2232 return;
Guido van Rossum86610361998-04-10 22:32:46 +00002233 i = PyList_GET_SIZE(list);
2234 /* Count backwards because we always expect obj to be list[-1] */
2235 while (--i >= 0) {
2236 if (PyList_GET_ITEM(list, i) == obj) {
2237 PyList_SetSlice(list, i, i + 1, NULL);
2238 break;
2239 }
2240 }
2241}
Guido van Rossumd724b232000-03-13 16:01:29 +00002242
Tim Peters803526b2002-07-07 05:13:56 +00002243/* Trashcan support. */
Guido van Rossumd724b232000-03-13 16:01:29 +00002244
Tim Peters803526b2002-07-07 05:13:56 +00002245/* Current call-stack depth of tp_dealloc calls. */
Guido van Rossumd724b232000-03-13 16:01:29 +00002246int _PyTrash_delete_nesting = 0;
Guido van Rossume92e6102000-04-24 15:40:53 +00002247
Tim Peters803526b2002-07-07 05:13:56 +00002248/* List of objects that still need to be cleaned up, singly linked via their
2249 * gc headers' gc_prev pointers.
2250 */
2251PyObject *_PyTrash_delete_later = NULL;
Guido van Rossumd724b232000-03-13 16:01:29 +00002252
Tim Peters803526b2002-07-07 05:13:56 +00002253/* Add op to the _PyTrash_delete_later list. Called when the current
2254 * call-stack depth gets large. op must be a currently untracked gc'ed
2255 * object, with refcount 0. Py_DECREF must already have been called on it.
2256 */
Guido van Rossumd724b232000-03-13 16:01:29 +00002257void
Fred Drake100814d2000-07-09 15:48:49 +00002258_PyTrash_deposit_object(PyObject *op)
Guido van Rossumd724b232000-03-13 16:01:29 +00002259{
Tim Peters803526b2002-07-07 05:13:56 +00002260 assert(PyObject_IS_GC(op));
2261 assert(_Py_AS_GC(op)->gc.gc_refs == _PyGC_REFS_UNTRACKED);
2262 assert(op->ob_refcnt == 0);
Neil Schemenauerf589c052002-03-29 03:05:54 +00002263 _Py_AS_GC(op)->gc.gc_prev = (PyGC_Head *)_PyTrash_delete_later;
Guido van Rossume92e6102000-04-24 15:40:53 +00002264 _PyTrash_delete_later = op;
Guido van Rossumd724b232000-03-13 16:01:29 +00002265}
2266
Tim Peters803526b2002-07-07 05:13:56 +00002267/* Dealloccate all the objects in the _PyTrash_delete_later list. Called when
2268 * the call-stack unwinds again.
2269 */
Guido van Rossumd724b232000-03-13 16:01:29 +00002270void
Fred Drake100814d2000-07-09 15:48:49 +00002271_PyTrash_destroy_chain(void)
Guido van Rossumd724b232000-03-13 16:01:29 +00002272{
2273 while (_PyTrash_delete_later) {
Tim Peters803526b2002-07-07 05:13:56 +00002274 PyObject *op = _PyTrash_delete_later;
Christian Heimese93237d2007-12-19 02:37:44 +00002275 destructor dealloc = Py_TYPE(op)->tp_dealloc;
Neil Schemenauerf589c052002-03-29 03:05:54 +00002276
Neil Schemenauerf589c052002-03-29 03:05:54 +00002277 _PyTrash_delete_later =
Tim Peters803526b2002-07-07 05:13:56 +00002278 (PyObject*) _Py_AS_GC(op)->gc.gc_prev;
Neil Schemenauerf589c052002-03-29 03:05:54 +00002279
Tim Peters803526b2002-07-07 05:13:56 +00002280 /* Call the deallocator directly. This used to try to
2281 * fool Py_DECREF into calling it indirectly, but
2282 * Py_DECREF was already called on this object, and in
2283 * assorted non-release builds calling Py_DECREF again ends
2284 * up distorting allocation statistics.
2285 */
2286 assert(op->ob_refcnt == 0);
Guido van Rossumd724b232000-03-13 16:01:29 +00002287 ++_PyTrash_delete_nesting;
Tim Peters803526b2002-07-07 05:13:56 +00002288 (*dealloc)(op);
Guido van Rossumd724b232000-03-13 16:01:29 +00002289 --_PyTrash_delete_nesting;
2290 }
2291}
Anthony Baxterac6bd462006-04-13 02:06:09 +00002292
2293#ifdef __cplusplus
2294}
2295#endif