blob: f40fd9f5878da5e92c5603ef013cae423b9091ad [file] [log] [blame]
Guido van Rossumf70e43a1991-02-19 12:39:46 +00001
Guido van Rossum3f5da241990-12-20 15:06:42 +00002/* Generic object operations; and implementation of None (NoObject) */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00003
Guido van Rossumc0b618a1997-05-02 03:12:38 +00004#include "Python.h"
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00005
Anthony Baxterac6bd462006-04-13 02:06:09 +00006#ifdef __cplusplus
7extern "C" {
8#endif
9
Tim Peters34592512002-07-11 06:23:50 +000010#ifdef Py_REF_DEBUG
Neal Norwitz84632ee2006-03-04 20:00:59 +000011Py_ssize_t _Py_RefTotal;
Armin Rigoe1709372006-04-12 17:06:05 +000012
13Py_ssize_t
14_Py_GetRefTotal(void)
15{
16 PyObject *o;
17 Py_ssize_t total = _Py_RefTotal;
18 /* ignore the references to the dummy object of the dicts and sets
19 because they are not reliable and not useful (now that the
20 hash table code is well-tested) */
21 o = _PyDict_Dummy();
22 if (o != NULL)
23 total -= o->ob_refcnt;
24 o = _PySet_Dummy();
25 if (o != NULL)
26 total -= o->ob_refcnt;
27 return total;
28}
29#endif /* Py_REF_DEBUG */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000030
Mark Hammonda2905272002-07-29 13:42:14 +000031int Py_DivisionWarningFlag;
Neal Norwitz8b2bfbc2007-05-23 06:35:32 +000032int Py_Py3kWarningFlag;
Guido van Rossum393661d2001-08-31 17:40:15 +000033
Guido van Rossum3f5da241990-12-20 15:06:42 +000034/* Object allocation routines used by NEWOBJ and NEWVAROBJ macros.
35 These are used by the individual routines for object creation.
36 Do not call them otherwise, they do not initialize the object! */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000037
Tim Peters78be7992003-03-23 02:51:01 +000038#ifdef Py_TRACE_REFS
Tim Peters7571a0f2003-03-23 17:52:28 +000039/* Head of circular doubly-linked list of all objects. These are linked
40 * together via the _ob_prev and _ob_next members of a PyObject, which
41 * exist only in a Py_TRACE_REFS build.
42 */
Tim Peters78be7992003-03-23 02:51:01 +000043static PyObject refchain = {&refchain, &refchain};
Tim Peters36eb4df2003-03-23 03:33:13 +000044
Tim Peters7571a0f2003-03-23 17:52:28 +000045/* Insert op at the front of the list of all objects. If force is true,
46 * op is added even if _ob_prev and _ob_next are non-NULL already. If
47 * force is false amd _ob_prev or _ob_next are non-NULL, do nothing.
48 * force should be true if and only if op points to freshly allocated,
49 * uninitialized memory, or you've unlinked op from the list and are
Tim Peters51f8d382003-03-23 18:06:08 +000050 * relinking it into the front.
Tim Peters7571a0f2003-03-23 17:52:28 +000051 * Note that objects are normally added to the list via _Py_NewReference,
52 * which is called by PyObject_Init. Not all objects are initialized that
53 * way, though; exceptions include statically allocated type objects, and
54 * statically allocated singletons (like Py_True and Py_None).
55 */
Tim Peters36eb4df2003-03-23 03:33:13 +000056void
Tim Peters7571a0f2003-03-23 17:52:28 +000057_Py_AddToAllObjects(PyObject *op, int force)
Tim Peters36eb4df2003-03-23 03:33:13 +000058{
Tim Peters7571a0f2003-03-23 17:52:28 +000059#ifdef Py_DEBUG
60 if (!force) {
61 /* If it's initialized memory, op must be in or out of
62 * the list unambiguously.
63 */
64 assert((op->_ob_prev == NULL) == (op->_ob_next == NULL));
65 }
Tim Peters78be7992003-03-23 02:51:01 +000066#endif
Tim Peters7571a0f2003-03-23 17:52:28 +000067 if (force || op->_ob_prev == NULL) {
68 op->_ob_next = refchain._ob_next;
69 op->_ob_prev = &refchain;
70 refchain._ob_next->_ob_prev = op;
71 refchain._ob_next = op;
72 }
73}
74#endif /* Py_TRACE_REFS */
Tim Peters78be7992003-03-23 02:51:01 +000075
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +000076#ifdef COUNT_ALLOCS
Guido van Rossumc0b618a1997-05-02 03:12:38 +000077static PyTypeObject *type_list;
Andrew M. Kuchling2060d1b2006-04-18 11:49:53 +000078/* All types are added to type_list, at least when
Martin v. Löwis45294a92006-04-18 06:24:08 +000079 they get one object created. That makes them
80 immortal, which unfortunately contributes to
81 garbage itself. If unlist_types_without_objects
82 is set, they will be removed from the type_list
83 once the last object is deallocated. */
84int unlist_types_without_objects;
Sjoerd Mullender842d2cc1993-10-15 16:18:48 +000085extern int tuple_zero_allocs, fast_tuple_allocs;
86extern int quick_int_allocs, quick_neg_int_allocs;
Sjoerd Mullender3bb8a051993-10-22 12:04:32 +000087extern int null_strings, one_strings;
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +000088void
Martin v. Löwis45294a92006-04-18 06:24:08 +000089dump_counts(FILE* f)
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +000090{
Guido van Rossumc0b618a1997-05-02 03:12:38 +000091 PyTypeObject *tp;
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +000092
93 for (tp = type_list; tp; tp = tp->tp_next)
Martin v. Löwis45294a92006-04-18 06:24:08 +000094 fprintf(f, "%s alloc'd: %d, freed: %d, max in use: %d\n",
Tim Peters6d6c1a32001-08-02 04:15:00 +000095 tp->tp_name, tp->tp_allocs, tp->tp_frees,
Sjoerd Mullender52c1f511993-10-25 08:40:52 +000096 tp->tp_maxalloc);
Martin v. Löwis45294a92006-04-18 06:24:08 +000097 fprintf(f, "fast tuple allocs: %d, empty: %d\n",
Sjoerd Mullender52c1f511993-10-25 08:40:52 +000098 fast_tuple_allocs, tuple_zero_allocs);
Martin v. Löwis45294a92006-04-18 06:24:08 +000099 fprintf(f, "fast int allocs: pos: %d, neg: %d\n",
Sjoerd Mullender52c1f511993-10-25 08:40:52 +0000100 quick_int_allocs, quick_neg_int_allocs);
Martin v. Löwis45294a92006-04-18 06:24:08 +0000101 fprintf(f, "null strings: %d, 1-strings: %d\n",
Sjoerd Mullender52c1f511993-10-25 08:40:52 +0000102 null_strings, one_strings);
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +0000103}
104
Sjoerd Mullender6ec3c651995-08-29 09:18:14 +0000105PyObject *
Fred Drake100814d2000-07-09 15:48:49 +0000106get_counts(void)
Sjoerd Mullender6ec3c651995-08-29 09:18:14 +0000107{
108 PyTypeObject *tp;
109 PyObject *result;
110 PyObject *v;
111
112 result = PyList_New(0);
113 if (result == NULL)
114 return NULL;
115 for (tp = type_list; tp; tp = tp->tp_next) {
Georg Brandl2cfaa342006-05-29 19:39:45 +0000116 v = Py_BuildValue("(snnn)", tp->tp_name, tp->tp_allocs,
Tim Peters6d6c1a32001-08-02 04:15:00 +0000117 tp->tp_frees, tp->tp_maxalloc);
Sjoerd Mullender6ec3c651995-08-29 09:18:14 +0000118 if (v == NULL) {
119 Py_DECREF(result);
120 return NULL;
121 }
122 if (PyList_Append(result, v) < 0) {
123 Py_DECREF(v);
124 Py_DECREF(result);
125 return NULL;
126 }
127 Py_DECREF(v);
128 }
129 return result;
130}
131
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +0000132void
Fred Drake100814d2000-07-09 15:48:49 +0000133inc_count(PyTypeObject *tp)
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +0000134{
Martin v. Löwis45294a92006-04-18 06:24:08 +0000135 if (tp->tp_next == NULL && tp->tp_prev == NULL) {
Guido van Rossumd8953cb1995-04-06 14:46:26 +0000136 /* first time; insert in linked list */
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +0000137 if (tp->tp_next != NULL) /* sanity check */
Guido van Rossumc0b618a1997-05-02 03:12:38 +0000138 Py_FatalError("XXX inc_count sanity check");
Martin v. Löwis45294a92006-04-18 06:24:08 +0000139 if (type_list)
140 type_list->tp_prev = tp;
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +0000141 tp->tp_next = type_list;
Tim Petersc6a3ff62002-07-08 22:11:52 +0000142 /* Note that as of Python 2.2, heap-allocated type objects
143 * can go away, but this code requires that they stay alive
144 * until program exit. That's why we're careful with
145 * refcounts here. type_list gets a new reference to tp,
146 * while ownership of the reference type_list used to hold
147 * (if any) was transferred to tp->tp_next in the line above.
148 * tp is thus effectively immortal after this.
149 */
150 Py_INCREF(tp);
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +0000151 type_list = tp;
Tim Peters3e40c7f2003-03-23 03:04:32 +0000152#ifdef Py_TRACE_REFS
Tim Peters7571a0f2003-03-23 17:52:28 +0000153 /* Also insert in the doubly-linked list of all objects,
154 * if not already there.
155 */
156 _Py_AddToAllObjects((PyObject *)tp, 0);
Tim Peters78be7992003-03-23 02:51:01 +0000157#endif
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +0000158 }
Tim Peters6d6c1a32001-08-02 04:15:00 +0000159 tp->tp_allocs++;
160 if (tp->tp_allocs - tp->tp_frees > tp->tp_maxalloc)
161 tp->tp_maxalloc = tp->tp_allocs - tp->tp_frees;
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +0000162}
Martin v. Löwis45294a92006-04-18 06:24:08 +0000163
164void dec_count(PyTypeObject *tp)
165{
166 tp->tp_frees++;
167 if (unlist_types_without_objects &&
168 tp->tp_allocs == tp->tp_frees) {
169 /* unlink the type from type_list */
170 if (tp->tp_prev)
171 tp->tp_prev->tp_next = tp->tp_next;
172 else
173 type_list = tp->tp_next;
174 if (tp->tp_next)
175 tp->tp_next->tp_prev = tp->tp_prev;
176 tp->tp_next = tp->tp_prev = NULL;
177 Py_DECREF(tp);
178 }
179}
180
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +0000181#endif
182
Tim Peters7c321a82002-07-09 02:57:01 +0000183#ifdef Py_REF_DEBUG
184/* Log a fatal error; doesn't return. */
185void
186_Py_NegativeRefcount(const char *fname, int lineno, PyObject *op)
187{
188 char buf[300];
189
190 PyOS_snprintf(buf, sizeof(buf),
Tim Peters4d073bb2006-03-23 05:38:33 +0000191 "%s:%i object at %p has negative ref count "
192 "%" PY_FORMAT_SIZE_T "d",
Tim Peters8af92d12006-03-23 05:41:24 +0000193 fname, lineno, op, op->ob_refcnt);
Tim Peters7c321a82002-07-09 02:57:01 +0000194 Py_FatalError(buf);
195}
196
197#endif /* Py_REF_DEBUG */
198
Thomas Heller1328b522004-04-22 17:23:49 +0000199void
200Py_IncRef(PyObject *o)
201{
202 Py_XINCREF(o);
203}
204
205void
206Py_DecRef(PyObject *o)
207{
208 Py_XDECREF(o);
209}
210
Guido van Rossumc0b618a1997-05-02 03:12:38 +0000211PyObject *
Fred Drake100814d2000-07-09 15:48:49 +0000212PyObject_Init(PyObject *op, PyTypeObject *tp)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000213{
Guido van Rossum6e08c142002-10-11 20:37:24 +0000214 if (op == NULL)
215 return PyErr_NoMemory();
Guido van Rossumb18618d2000-05-03 23:44:39 +0000216 /* Any changes should be reflected in PyObject_INIT (objimpl.h) */
Christian Heimese93237d2007-12-19 02:37:44 +0000217 Py_TYPE(op) = tp;
Guido van Rossumc0b618a1997-05-02 03:12:38 +0000218 _Py_NewReference(op);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000219 return op;
220}
221
Guido van Rossumb18618d2000-05-03 23:44:39 +0000222PyVarObject *
Martin v. Löwis18e16552006-02-15 17:27:45 +0000223PyObject_InitVar(PyVarObject *op, PyTypeObject *tp, Py_ssize_t size)
Guido van Rossumb18618d2000-05-03 23:44:39 +0000224{
Guido van Rossum6e08c142002-10-11 20:37:24 +0000225 if (op == NULL)
226 return (PyVarObject *) PyErr_NoMemory();
Guido van Rossumb18618d2000-05-03 23:44:39 +0000227 /* Any changes should be reflected in PyObject_INIT_VAR */
228 op->ob_size = size;
Christian Heimese93237d2007-12-19 02:37:44 +0000229 Py_TYPE(op) = tp;
Guido van Rossumb18618d2000-05-03 23:44:39 +0000230 _Py_NewReference((PyObject *)op);
231 return op;
232}
233
234PyObject *
Fred Drake100814d2000-07-09 15:48:49 +0000235_PyObject_New(PyTypeObject *tp)
Guido van Rossumb18618d2000-05-03 23:44:39 +0000236{
237 PyObject *op;
238 op = (PyObject *) PyObject_MALLOC(_PyObject_SIZE(tp));
239 if (op == NULL)
240 return PyErr_NoMemory();
241 return PyObject_INIT(op, tp);
242}
243
Guido van Rossumd0c87ee1997-05-15 21:31:03 +0000244PyVarObject *
Martin v. Löwis18e16552006-02-15 17:27:45 +0000245_PyObject_NewVar(PyTypeObject *tp, Py_ssize_t nitems)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000246{
Guido van Rossumb18618d2000-05-03 23:44:39 +0000247 PyVarObject *op;
Tim Petersf2a67da2001-10-07 03:54:51 +0000248 const size_t size = _PyObject_VAR_SIZE(tp, nitems);
Tim Peters6d483d32001-10-06 21:27:34 +0000249 op = (PyVarObject *) PyObject_MALLOC(size);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000250 if (op == NULL)
Guido van Rossumd0c87ee1997-05-15 21:31:03 +0000251 return (PyVarObject *)PyErr_NoMemory();
Tim Peters6d483d32001-10-06 21:27:34 +0000252 return PyObject_INIT_VAR(op, tp, nitems);
Guido van Rossumb18618d2000-05-03 23:44:39 +0000253}
254
Neil Schemenauerbdf0eed2002-04-12 03:08:42 +0000255/* for binary compatibility with 2.2 */
256#undef _PyObject_Del
Guido van Rossumb18618d2000-05-03 23:44:39 +0000257void
Fred Drake100814d2000-07-09 15:48:49 +0000258_PyObject_Del(PyObject *op)
Guido van Rossumb18618d2000-05-03 23:44:39 +0000259{
Guido van Rossum4cc6ac72000-07-01 01:00:38 +0000260 PyObject_FREE(op);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000261}
262
Neal Norwitz1a997502003-01-13 20:13:12 +0000263/* Implementation of PyObject_Print with recursion checking */
264static int
265internal_print(PyObject *op, FILE *fp, int flags, int nesting)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000266{
Guido van Rossum278ef591991-07-27 21:40:24 +0000267 int ret = 0;
Neal Norwitz1a997502003-01-13 20:13:12 +0000268 if (nesting > 10) {
269 PyErr_SetString(PyExc_RuntimeError, "print recursion");
270 return -1;
271 }
Guido van Rossumc0b618a1997-05-02 03:12:38 +0000272 if (PyErr_CheckSignals())
Guido van Rossum90933611991-06-07 16:10:43 +0000273 return -1;
Guido van Rossum9b00dfa1998-04-28 16:06:54 +0000274#ifdef USE_STACKCHECK
275 if (PyOS_CheckStack()) {
Fred Drake661ea262000-10-24 19:57:45 +0000276 PyErr_SetString(PyExc_MemoryError, "stack overflow");
Guido van Rossum9b00dfa1998-04-28 16:06:54 +0000277 return -1;
278 }
279#endif
Guido van Rossum687ef6e2000-01-12 16:28:58 +0000280 clearerr(fp); /* Clear any previous error condition */
Guido van Rossum90933611991-06-07 16:10:43 +0000281 if (op == NULL) {
Brett Cannon01531592007-09-17 03:28:34 +0000282 Py_BEGIN_ALLOW_THREADS
Guido van Rossum90933611991-06-07 16:10:43 +0000283 fprintf(fp, "<nil>");
Brett Cannon01531592007-09-17 03:28:34 +0000284 Py_END_ALLOW_THREADS
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000285 }
Guido van Rossum90933611991-06-07 16:10:43 +0000286 else {
287 if (op->ob_refcnt <= 0)
Thomas Wouters8b87a0b2006-03-01 05:41:20 +0000288 /* XXX(twouters) cast refcount to long until %zd is
289 universally available */
Brett Cannon01531592007-09-17 03:28:34 +0000290 Py_BEGIN_ALLOW_THREADS
Thomas Wouters8b87a0b2006-03-01 05:41:20 +0000291 fprintf(fp, "<refcnt %ld at %p>",
292 (long)op->ob_refcnt, op);
Brett Cannon01531592007-09-17 03:28:34 +0000293 Py_END_ALLOW_THREADS
Christian Heimese93237d2007-12-19 02:37:44 +0000294 else if (Py_TYPE(op)->tp_print == NULL) {
Guido van Rossum4f288ab2001-05-01 16:53:37 +0000295 PyObject *s;
296 if (flags & Py_PRINT_RAW)
297 s = PyObject_Str(op);
298 else
299 s = PyObject_Repr(op);
300 if (s == NULL)
301 ret = -1;
Guido van Rossum2e8f6141992-09-03 20:32:55 +0000302 else {
Neal Norwitz1a997502003-01-13 20:13:12 +0000303 ret = internal_print(s, fp, Py_PRINT_RAW,
304 nesting+1);
Guido van Rossum2e8f6141992-09-03 20:32:55 +0000305 }
Guido van Rossum4f288ab2001-05-01 16:53:37 +0000306 Py_XDECREF(s);
Guido van Rossum2e8f6141992-09-03 20:32:55 +0000307 }
Guido van Rossum90933611991-06-07 16:10:43 +0000308 else
Christian Heimese93237d2007-12-19 02:37:44 +0000309 ret = (*Py_TYPE(op)->tp_print)(op, fp, flags);
Guido van Rossum90933611991-06-07 16:10:43 +0000310 }
Guido van Rossum278ef591991-07-27 21:40:24 +0000311 if (ret == 0) {
312 if (ferror(fp)) {
Guido van Rossumc0b618a1997-05-02 03:12:38 +0000313 PyErr_SetFromErrno(PyExc_IOError);
Guido van Rossum278ef591991-07-27 21:40:24 +0000314 clearerr(fp);
315 ret = -1;
316 }
317 }
318 return ret;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000319}
320
Neal Norwitz1a997502003-01-13 20:13:12 +0000321int
322PyObject_Print(PyObject *op, FILE *fp, int flags)
323{
324 return internal_print(op, fp, flags, 0);
325}
326
327
Barry Warsaw9bf16442001-01-23 16:24:35 +0000328/* For debugging convenience. See Misc/gdbinit for some useful gdb hooks */
Tim Peters803526b2002-07-07 05:13:56 +0000329void _PyObject_Dump(PyObject* op)
Barry Warsaw9bf16442001-01-23 16:24:35 +0000330{
Barry Warsaweefb1072001-02-22 22:39:18 +0000331 if (op == NULL)
332 fprintf(stderr, "NULL\n");
333 else {
Guido van Rossum5f5512d2001-09-14 15:50:08 +0000334 fprintf(stderr, "object : ");
Barry Warsaweefb1072001-02-22 22:39:18 +0000335 (void)PyObject_Print(op, stderr, 0);
Thomas Wouters8b87a0b2006-03-01 05:41:20 +0000336 /* XXX(twouters) cast refcount to long until %zd is
337 universally available */
Guido van Rossum5f5512d2001-09-14 15:50:08 +0000338 fprintf(stderr, "\n"
339 "type : %s\n"
Thomas Wouters8b87a0b2006-03-01 05:41:20 +0000340 "refcount: %ld\n"
Guido van Rossum5f5512d2001-09-14 15:50:08 +0000341 "address : %p\n",
Christian Heimese93237d2007-12-19 02:37:44 +0000342 Py_TYPE(op)==NULL ? "NULL" : Py_TYPE(op)->tp_name,
Thomas Wouters8b87a0b2006-03-01 05:41:20 +0000343 (long)op->ob_refcnt,
Guido van Rossum5f5512d2001-09-14 15:50:08 +0000344 op);
Barry Warsaweefb1072001-02-22 22:39:18 +0000345 }
Barry Warsaw9bf16442001-01-23 16:24:35 +0000346}
Barry Warsaw903138f2001-01-23 16:33:18 +0000347
Guido van Rossumc0b618a1997-05-02 03:12:38 +0000348PyObject *
Fred Drake100814d2000-07-09 15:48:49 +0000349PyObject_Repr(PyObject *v)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000350{
Guido van Rossumc0b618a1997-05-02 03:12:38 +0000351 if (PyErr_CheckSignals())
Guido van Rossum90933611991-06-07 16:10:43 +0000352 return NULL;
Guido van Rossum9b00dfa1998-04-28 16:06:54 +0000353#ifdef USE_STACKCHECK
354 if (PyOS_CheckStack()) {
Fred Drake661ea262000-10-24 19:57:45 +0000355 PyErr_SetString(PyExc_MemoryError, "stack overflow");
Guido van Rossum9b00dfa1998-04-28 16:06:54 +0000356 return NULL;
357 }
358#endif
Guido van Rossum90933611991-06-07 16:10:43 +0000359 if (v == NULL)
Gregory P. Smithdd96db62008-06-09 04:58:54 +0000360 return PyString_FromString("<NULL>");
Christian Heimese93237d2007-12-19 02:37:44 +0000361 else if (Py_TYPE(v)->tp_repr == NULL)
Gregory P. Smithdd96db62008-06-09 04:58:54 +0000362 return PyString_FromFormat("<%s object at %p>",
Christian Heimese93237d2007-12-19 02:37:44 +0000363 Py_TYPE(v)->tp_name, v);
Guido van Rossum4c08d552000-03-10 22:55:18 +0000364 else {
365 PyObject *res;
Christian Heimese93237d2007-12-19 02:37:44 +0000366 res = (*Py_TYPE(v)->tp_repr)(v);
Guido van Rossum4c08d552000-03-10 22:55:18 +0000367 if (res == NULL)
368 return NULL;
Martin v. Löwis339d0f72001-08-17 18:39:25 +0000369#ifdef Py_USING_UNICODE
Fredrik Lundhefecc7d2000-07-01 14:31:09 +0000370 if (PyUnicode_Check(res)) {
371 PyObject* str;
Anthony Baxter262c00a2006-03-30 10:53:17 +0000372 str = PyUnicode_AsEncodedString(res, NULL, NULL);
Marc-André Lemburg891bc652000-07-03 09:57:53 +0000373 Py_DECREF(res);
374 if (str)
Fredrik Lundhefecc7d2000-07-01 14:31:09 +0000375 res = str;
Marc-André Lemburg891bc652000-07-03 09:57:53 +0000376 else
377 return NULL;
Fredrik Lundhefecc7d2000-07-01 14:31:09 +0000378 }
Martin v. Löwis339d0f72001-08-17 18:39:25 +0000379#endif
Gregory P. Smithdd96db62008-06-09 04:58:54 +0000380 if (!PyString_Check(res)) {
Guido van Rossum4c08d552000-03-10 22:55:18 +0000381 PyErr_Format(PyExc_TypeError,
Guido van Rossum5db862d2000-04-10 12:46:51 +0000382 "__repr__ returned non-string (type %.200s)",
Christian Heimese93237d2007-12-19 02:37:44 +0000383 Py_TYPE(res)->tp_name);
Guido van Rossum4c08d552000-03-10 22:55:18 +0000384 Py_DECREF(res);
385 return NULL;
386 }
387 return res;
388 }
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000389}
390
Guido van Rossumc0b618a1997-05-02 03:12:38 +0000391PyObject *
Neil Schemenauercf52c072005-08-12 17:34:58 +0000392_PyObject_Str(PyObject *v)
Guido van Rossumc6004111993-11-05 10:22:19 +0000393{
Guido van Rossum4c08d552000-03-10 22:55:18 +0000394 PyObject *res;
Neil Schemenauercf52c072005-08-12 17:34:58 +0000395 int type_ok;
Guido van Rossumc6004111993-11-05 10:22:19 +0000396 if (v == NULL)
Gregory P. Smithdd96db62008-06-09 04:58:54 +0000397 return PyString_FromString("<NULL>");
398 if (PyString_CheckExact(v)) {
Guido van Rossumc0b618a1997-05-02 03:12:38 +0000399 Py_INCREF(v);
Guido van Rossumc6004111993-11-05 10:22:19 +0000400 return v;
401 }
Neil Schemenauercf52c072005-08-12 17:34:58 +0000402#ifdef Py_USING_UNICODE
403 if (PyUnicode_CheckExact(v)) {
404 Py_INCREF(v);
405 return v;
406 }
407#endif
Christian Heimese93237d2007-12-19 02:37:44 +0000408 if (Py_TYPE(v)->tp_str == NULL)
Guido van Rossum4f288ab2001-05-01 16:53:37 +0000409 return PyObject_Repr(v);
410
Brett Cannon0b14f242007-09-30 19:45:10 +0000411 /* It is possible for a type to have a tp_str representation that loops
412 infinitely. */
413 if (Py_EnterRecursiveCall(" while getting the str of an object"))
414 return NULL;
Christian Heimese93237d2007-12-19 02:37:44 +0000415 res = (*Py_TYPE(v)->tp_str)(v);
Brett Cannon0b14f242007-09-30 19:45:10 +0000416 Py_LeaveRecursiveCall();
Guido van Rossum4c08d552000-03-10 22:55:18 +0000417 if (res == NULL)
418 return NULL;
Gregory P. Smithdd96db62008-06-09 04:58:54 +0000419 type_ok = PyString_Check(res);
Neil Schemenauercf52c072005-08-12 17:34:58 +0000420#ifdef Py_USING_UNICODE
421 type_ok = type_ok || PyUnicode_Check(res);
422#endif
423 if (!type_ok) {
424 PyErr_Format(PyExc_TypeError,
425 "__str__ returned non-string (type %.200s)",
Christian Heimese93237d2007-12-19 02:37:44 +0000426 Py_TYPE(res)->tp_name);
Neil Schemenauercf52c072005-08-12 17:34:58 +0000427 Py_DECREF(res);
428 return NULL;
429 }
430 return res;
431}
432
433PyObject *
434PyObject_Str(PyObject *v)
435{
436 PyObject *res = _PyObject_Str(v);
437 if (res == NULL)
438 return NULL;
Martin v. Löwis339d0f72001-08-17 18:39:25 +0000439#ifdef Py_USING_UNICODE
Marc-André Lemburg891bc652000-07-03 09:57:53 +0000440 if (PyUnicode_Check(res)) {
441 PyObject* str;
442 str = PyUnicode_AsEncodedString(res, NULL, NULL);
443 Py_DECREF(res);
444 if (str)
445 res = str;
446 else
447 return NULL;
448 }
Martin v. Löwis339d0f72001-08-17 18:39:25 +0000449#endif
Gregory P. Smithdd96db62008-06-09 04:58:54 +0000450 assert(PyString_Check(res));
Guido van Rossum4c08d552000-03-10 22:55:18 +0000451 return res;
Guido van Rossumc6004111993-11-05 10:22:19 +0000452}
453
Martin v. Löwis339d0f72001-08-17 18:39:25 +0000454#ifdef Py_USING_UNICODE
Guido van Rossuma3af41d2001-01-18 22:07:06 +0000455PyObject *
456PyObject_Unicode(PyObject *v)
457{
458 PyObject *res;
Brett Cannonc3647ac2005-04-26 03:45:26 +0000459 PyObject *func;
Neal Norwitz75801462006-03-14 06:02:16 +0000460 PyObject *str;
Nick Coghlan524b7772008-07-08 14:08:04 +0000461 int unicode_method_found = 0;
Brett Cannonc3647ac2005-04-26 03:45:26 +0000462 static PyObject *unicodestr;
Tim Peters803526b2002-07-07 05:13:56 +0000463
Georg Brandl3daf7582006-03-13 22:22:11 +0000464 if (v == NULL) {
Gregory P. Smithdd96db62008-06-09 04:58:54 +0000465 res = PyString_FromString("<NULL>");
Neal Norwitz75801462006-03-14 06:02:16 +0000466 if (res == NULL)
467 return NULL;
468 str = PyUnicode_FromEncodedObject(res, NULL, "strict");
469 Py_DECREF(res);
470 return str;
Georg Brandl3daf7582006-03-13 22:22:11 +0000471 } else if (PyUnicode_CheckExact(v)) {
Guido van Rossuma3af41d2001-01-18 22:07:06 +0000472 Py_INCREF(v);
473 return v;
474 }
Nick Coghlan524b7772008-07-08 14:08:04 +0000475
476 /* Try the __unicode__ method */
Brett Cannonc3647ac2005-04-26 03:45:26 +0000477 if (unicodestr == NULL) {
Gregory P. Smithdd96db62008-06-09 04:58:54 +0000478 unicodestr= PyString_InternFromString("__unicode__");
Brett Cannonc3647ac2005-04-26 03:45:26 +0000479 if (unicodestr == NULL)
480 return NULL;
Guido van Rossumb8c65bc2001-10-19 02:01:31 +0000481 }
Nick Coghlan524b7772008-07-08 14:08:04 +0000482 if (PyInstance_Check(v)) {
483 /* We're an instance of a classic class */
484 /* Try __unicode__ from the instance -- alas we have no type */
485 func = PyObject_GetAttr(v, unicodestr);
486 if (func != NULL) {
487 unicode_method_found = 1;
488 res = PyObject_CallFunctionObjArgs(func, NULL);
489 Py_DECREF(func);
490 }
491 else {
492 PyErr_Clear();
493 }
Brett Cannonc3647ac2005-04-26 03:45:26 +0000494 }
Guido van Rossuma3af41d2001-01-18 22:07:06 +0000495 else {
Nick Coghlan524b7772008-07-08 14:08:04 +0000496 /* Not a classic class instance, try __unicode__ from type */
497 /* _PyType_Lookup doesn't create a reference */
498 func = _PyType_Lookup(Py_TYPE(v), unicodestr);
499 if (func != NULL) {
500 unicode_method_found = 1;
501 res = PyObject_CallFunctionObjArgs(func, v, NULL);
502 }
503 else {
504 PyErr_Clear();
505 }
506 }
507
508 /* Didn't find __unicode__ */
509 if (!unicode_method_found) {
Brett Cannonc3647ac2005-04-26 03:45:26 +0000510 if (PyUnicode_Check(v)) {
511 /* For a Unicode subtype that's didn't overwrite __unicode__,
512 return a true Unicode object with the same data. */
513 return PyUnicode_FromUnicode(PyUnicode_AS_UNICODE(v),
Nick Coghlan524b7772008-07-08 14:08:04 +0000514 PyUnicode_GET_SIZE(v));
Guido van Rossuma3af41d2001-01-18 22:07:06 +0000515 }
Gregory P. Smithdd96db62008-06-09 04:58:54 +0000516 if (PyString_CheckExact(v)) {
Brett Cannonc3647ac2005-04-26 03:45:26 +0000517 Py_INCREF(v);
518 res = v;
Guido van Rossuma3af41d2001-01-18 22:07:06 +0000519 }
Guido van Rossumb8c65bc2001-10-19 02:01:31 +0000520 else {
Christian Heimese93237d2007-12-19 02:37:44 +0000521 if (Py_TYPE(v)->tp_str != NULL)
522 res = (*Py_TYPE(v)->tp_str)(v);
Guido van Rossumb8c65bc2001-10-19 02:01:31 +0000523 else
524 res = PyObject_Repr(v);
525 }
Guido van Rossuma3af41d2001-01-18 22:07:06 +0000526 }
Nick Coghlan524b7772008-07-08 14:08:04 +0000527
Guido van Rossuma3af41d2001-01-18 22:07:06 +0000528 if (res == NULL)
529 return NULL;
530 if (!PyUnicode_Check(res)) {
Guido van Rossumb8c65bc2001-10-19 02:01:31 +0000531 str = PyUnicode_FromEncodedObject(res, NULL, "strict");
Guido van Rossuma3af41d2001-01-18 22:07:06 +0000532 Py_DECREF(res);
Neal Norwitz75801462006-03-14 06:02:16 +0000533 res = str;
Guido van Rossuma3af41d2001-01-18 22:07:06 +0000534 }
535 return res;
536}
Martin v. Löwis339d0f72001-08-17 18:39:25 +0000537#endif
Guido van Rossuma3af41d2001-01-18 22:07:06 +0000538
539
Guido van Rossuma4073002002-05-31 20:03:54 +0000540/* Helper to warn about deprecated tp_compare return values. Return:
541 -2 for an exception;
542 -1 if v < w;
543 0 if v == w;
544 1 if v > w.
545 (This function cannot return 2.)
546*/
547static int
548adjust_tp_compare(int c)
549{
550 if (PyErr_Occurred()) {
551 if (c != -1 && c != -2) {
552 PyObject *t, *v, *tb;
553 PyErr_Fetch(&t, &v, &tb);
554 if (PyErr_Warn(PyExc_RuntimeWarning,
555 "tp_compare didn't return -1 or -2 "
556 "for exception") < 0) {
557 Py_XDECREF(t);
558 Py_XDECREF(v);
559 Py_XDECREF(tb);
560 }
561 else
562 PyErr_Restore(t, v, tb);
563 }
564 return -2;
565 }
566 else if (c < -1 || c > 1) {
567 if (PyErr_Warn(PyExc_RuntimeWarning,
568 "tp_compare didn't return -1, 0 or 1") < 0)
569 return -2;
570 else
571 return c < -1 ? -1 : 1;
572 }
573 else {
574 assert(c >= -1 && c <= 1);
575 return c;
576 }
577}
578
579
Guido van Rossumd1f06b92001-01-24 22:14:43 +0000580/* Macro to get the tp_richcompare field of a type if defined */
581#define RICHCOMPARE(t) (PyType_HasFeature((t), Py_TPFLAGS_HAVE_RICHCOMPARE) \
582 ? (t)->tp_richcompare : NULL)
583
Guido van Rossume797ec12001-01-17 15:24:28 +0000584/* Map rich comparison operators to their swapped version, e.g. LT --> GT */
Brett Cannona5ca2e72004-09-25 01:37:24 +0000585int _Py_SwappedOp[] = {Py_GT, Py_GE, Py_EQ, Py_NE, Py_LT, Py_LE};
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +0000586
Guido van Rossume797ec12001-01-17 15:24:28 +0000587/* Try a genuine rich comparison, returning an object. Return:
588 NULL for exception;
589 NotImplemented if this particular rich comparison is not implemented or
590 undefined;
591 some object not equal to NotImplemented if it is implemented
592 (this latter object may not be a Boolean).
593*/
594static PyObject *
595try_rich_compare(PyObject *v, PyObject *w, int op)
596{
597 richcmpfunc f;
598 PyObject *res;
599
Guido van Rossum2ed6bf82001-09-27 20:30:07 +0000600 if (v->ob_type != w->ob_type &&
601 PyType_IsSubtype(w->ob_type, v->ob_type) &&
602 (f = RICHCOMPARE(w->ob_type)) != NULL) {
Tim Petersf4aca752004-09-23 02:39:37 +0000603 res = (*f)(w, v, _Py_SwappedOp[op]);
Guido van Rossum2ed6bf82001-09-27 20:30:07 +0000604 if (res != Py_NotImplemented)
605 return res;
606 Py_DECREF(res);
607 }
Guido van Rossumd1f06b92001-01-24 22:14:43 +0000608 if ((f = RICHCOMPARE(v->ob_type)) != NULL) {
Guido van Rossume797ec12001-01-17 15:24:28 +0000609 res = (*f)(v, w, op);
610 if (res != Py_NotImplemented)
611 return res;
612 Py_DECREF(res);
613 }
Guido van Rossumd1f06b92001-01-24 22:14:43 +0000614 if ((f = RICHCOMPARE(w->ob_type)) != NULL) {
Tim Petersf4aca752004-09-23 02:39:37 +0000615 return (*f)(w, v, _Py_SwappedOp[op]);
Guido van Rossume797ec12001-01-17 15:24:28 +0000616 }
617 res = Py_NotImplemented;
618 Py_INCREF(res);
619 return res;
620}
621
622/* Try a genuine rich comparison, returning an int. Return:
623 -1 for exception (including the case where try_rich_compare() returns an
624 object that's not a Boolean);
Tim Petersc99213f2001-11-04 05:57:16 +0000625 0 if the outcome is false;
626 1 if the outcome is true;
627 2 if this particular rich comparison is not implemented or undefined.
Guido van Rossume797ec12001-01-17 15:24:28 +0000628*/
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +0000629static int
Guido van Rossume797ec12001-01-17 15:24:28 +0000630try_rich_compare_bool(PyObject *v, PyObject *w, int op)
631{
632 PyObject *res;
633 int ok;
634
Guido van Rossumd1f06b92001-01-24 22:14:43 +0000635 if (RICHCOMPARE(v->ob_type) == NULL && RICHCOMPARE(w->ob_type) == NULL)
Guido van Rossume797ec12001-01-17 15:24:28 +0000636 return 2; /* Shortcut, avoid INCREF+DECREF */
637 res = try_rich_compare(v, w, op);
638 if (res == NULL)
639 return -1;
640 if (res == Py_NotImplemented) {
641 Py_DECREF(res);
642 return 2;
643 }
644 ok = PyObject_IsTrue(res);
645 Py_DECREF(res);
646 return ok;
647}
648
649/* Try rich comparisons to determine a 3-way comparison. Return:
650 -2 for an exception;
Tim Petersc99213f2001-11-04 05:57:16 +0000651 -1 if v < w;
652 0 if v == w;
653 1 if v > w;
654 2 if this particular rich comparison is not implemented or undefined.
Guido van Rossume797ec12001-01-17 15:24:28 +0000655*/
656static int
657try_rich_to_3way_compare(PyObject *v, PyObject *w)
658{
Guido van Rossum2ffbf6b2001-01-17 21:27:02 +0000659 static struct { int op; int outcome; } tries[3] = {
660 /* Try this operator, and if it is true, use this outcome: */
661 {Py_EQ, 0},
662 {Py_LT, -1},
663 {Py_GT, 1},
664 };
665 int i;
666
Guido van Rossumd1f06b92001-01-24 22:14:43 +0000667 if (RICHCOMPARE(v->ob_type) == NULL && RICHCOMPARE(w->ob_type) == NULL)
Guido van Rossume797ec12001-01-17 15:24:28 +0000668 return 2; /* Shortcut */
Guido van Rossum2ffbf6b2001-01-17 21:27:02 +0000669
670 for (i = 0; i < 3; i++) {
671 switch (try_rich_compare_bool(v, w, tries[i].op)) {
672 case -1:
Tim Peters6d60b2e2001-05-07 20:53:51 +0000673 return -2;
Guido van Rossum2ffbf6b2001-01-17 21:27:02 +0000674 case 1:
675 return tries[i].outcome;
676 }
Guido van Rossume797ec12001-01-17 15:24:28 +0000677 }
Guido van Rossum2ffbf6b2001-01-17 21:27:02 +0000678
679 return 2;
Guido van Rossume797ec12001-01-17 15:24:28 +0000680}
681
682/* Try a 3-way comparison, returning an int. Return:
683 -2 for an exception;
Tim Petersc99213f2001-11-04 05:57:16 +0000684 -1 if v < w;
685 0 if v == w;
686 1 if v > w;
687 2 if this particular 3-way comparison is not implemented or undefined.
Guido van Rossume797ec12001-01-17 15:24:28 +0000688*/
689static int
690try_3way_compare(PyObject *v, PyObject *w)
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +0000691{
692 int c;
Guido van Rossume797ec12001-01-17 15:24:28 +0000693 cmpfunc f;
694
695 /* Comparisons involving instances are given to instance_compare,
696 which has the same return conventions as this function. */
697
Guido van Rossumab3b0342001-09-18 20:38:53 +0000698 f = v->ob_type->tp_compare;
Guido van Rossume797ec12001-01-17 15:24:28 +0000699 if (PyInstance_Check(v))
Guido van Rossumab3b0342001-09-18 20:38:53 +0000700 return (*f)(v, w);
Guido van Rossume797ec12001-01-17 15:24:28 +0000701 if (PyInstance_Check(w))
702 return (*w->ob_type->tp_compare)(v, w);
703
Guido van Rossumab3b0342001-09-18 20:38:53 +0000704 /* If both have the same (non-NULL) tp_compare, use it. */
705 if (f != NULL && f == w->ob_type->tp_compare) {
706 c = (*f)(v, w);
Guido van Rossuma4073002002-05-31 20:03:54 +0000707 return adjust_tp_compare(c);
Guido van Rossumab3b0342001-09-18 20:38:53 +0000708 }
709
710 /* If either tp_compare is _PyObject_SlotCompare, that's safe. */
711 if (f == _PyObject_SlotCompare ||
712 w->ob_type->tp_compare == _PyObject_SlotCompare)
713 return _PyObject_SlotCompare(v, w);
714
Armin Rigoa1748132004-12-23 22:13:13 +0000715 /* If we're here, v and w,
716 a) are not instances;
717 b) have different types or a type without tp_compare; and
718 c) don't have a user-defined tp_compare.
719 tp_compare implementations in C assume that both arguments
720 have their type, so we give up if the coercion fails or if
721 it yields types which are still incompatible (which can
722 happen with a user-defined nb_coerce).
723 */
Guido van Rossume797ec12001-01-17 15:24:28 +0000724 c = PyNumber_CoerceEx(&v, &w);
725 if (c < 0)
726 return -2;
727 if (c > 0)
728 return 2;
Armin Rigoa1748132004-12-23 22:13:13 +0000729 f = v->ob_type->tp_compare;
730 if (f != NULL && f == w->ob_type->tp_compare) {
Guido van Rossume797ec12001-01-17 15:24:28 +0000731 c = (*f)(v, w);
732 Py_DECREF(v);
733 Py_DECREF(w);
Guido van Rossuma4073002002-05-31 20:03:54 +0000734 return adjust_tp_compare(c);
Guido van Rossume797ec12001-01-17 15:24:28 +0000735 }
736
Guido van Rossume797ec12001-01-17 15:24:28 +0000737 /* No comparison defined */
738 Py_DECREF(v);
739 Py_DECREF(w);
740 return 2;
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +0000741}
742
Guido van Rossume797ec12001-01-17 15:24:28 +0000743/* Final fallback 3-way comparison, returning an int. Return:
744 -2 if an error occurred;
Tim Petersc99213f2001-11-04 05:57:16 +0000745 -1 if v < w;
746 0 if v == w;
747 1 if v > w.
Guido van Rossume797ec12001-01-17 15:24:28 +0000748*/
749static int
750default_3way_compare(PyObject *v, PyObject *w)
751{
752 int c;
Jeremy Hyltonaf68c872005-12-10 18:50:16 +0000753 const char *vname, *wname;
Guido van Rossume797ec12001-01-17 15:24:28 +0000754
755 if (v->ob_type == w->ob_type) {
Barry Warsawb0e754d2001-01-20 06:24:55 +0000756 /* When comparing these pointers, they must be cast to
757 * integer types (i.e. Py_uintptr_t, our spelling of C9X's
758 * uintptr_t). ANSI specifies that pointer compares other
759 * than == and != to non-related structures are undefined.
760 */
Barry Warsaw71ff8d52001-01-20 06:08:10 +0000761 Py_uintptr_t vv = (Py_uintptr_t)v;
762 Py_uintptr_t ww = (Py_uintptr_t)w;
Guido van Rossume797ec12001-01-17 15:24:28 +0000763 return (vv < ww) ? -1 : (vv > ww) ? 1 : 0;
764 }
765
Guido van Rossum0871e932001-01-22 19:28:09 +0000766 /* None is smaller than anything */
767 if (v == Py_None)
768 return -1;
769 if (w == Py_None)
770 return 1;
771
Guido van Rossumfb50d3f2003-02-18 16:40:09 +0000772 /* different type: compare type names; numbers are smaller */
773 if (PyNumber_Check(v))
Guido van Rossum8f9143d2001-01-22 15:59:32 +0000774 vname = "";
775 else
776 vname = v->ob_type->tp_name;
Guido van Rossumfb50d3f2003-02-18 16:40:09 +0000777 if (PyNumber_Check(w))
Guido van Rossum8f9143d2001-01-22 15:59:32 +0000778 wname = "";
779 else
780 wname = w->ob_type->tp_name;
781 c = strcmp(vname, wname);
782 if (c < 0)
783 return -1;
784 if (c > 0)
785 return 1;
786 /* Same type name, or (more likely) incomparable numeric types */
787 return ((Py_uintptr_t)(v->ob_type) < (
788 Py_uintptr_t)(w->ob_type)) ? -1 : 1;
Guido van Rossume797ec12001-01-17 15:24:28 +0000789}
790
Tim Peters6d60b2e2001-05-07 20:53:51 +0000791/* Do a 3-way comparison, by hook or by crook. Return:
Guido van Rossuma4073002002-05-31 20:03:54 +0000792 -2 for an exception (but see below);
Tim Petersc99213f2001-11-04 05:57:16 +0000793 -1 if v < w;
Tim Peters6d60b2e2001-05-07 20:53:51 +0000794 0 if v == w;
Tim Petersc99213f2001-11-04 05:57:16 +0000795 1 if v > w;
Guido van Rossuma4073002002-05-31 20:03:54 +0000796 BUT: if the object implements a tp_compare function, it returns
Martin v. Löwis0163d6d2001-06-09 07:34:05 +0000797 whatever this function returns (whether with an exception or not).
Tim Peters6d60b2e2001-05-07 20:53:51 +0000798*/
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +0000799static int
Fred Drake100814d2000-07-09 15:48:49 +0000800do_cmp(PyObject *v, PyObject *w)
Guido van Rossum20566841995-01-12 11:26:10 +0000801{
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +0000802 int c;
Martin v. Löwis0163d6d2001-06-09 07:34:05 +0000803 cmpfunc f;
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +0000804
Martin v. Löwis0163d6d2001-06-09 07:34:05 +0000805 if (v->ob_type == w->ob_type
Guido van Rossum82fc51c2001-08-16 08:02:45 +0000806 && (f = v->ob_type->tp_compare) != NULL) {
807 c = (*f)(v, w);
Guido van Rossuma4073002002-05-31 20:03:54 +0000808 if (PyInstance_Check(v)) {
809 /* Instance tp_compare has a different signature.
810 But if it returns undefined we fall through. */
811 if (c != 2)
812 return c;
Neal Norwitz3f8dae72002-05-31 20:23:33 +0000813 /* Else fall through to try_rich_to_3way_compare() */
Guido van Rossuma4073002002-05-31 20:03:54 +0000814 }
815 else
816 return adjust_tp_compare(c);
Guido van Rossum82fc51c2001-08-16 08:02:45 +0000817 }
Guido van Rossuma4073002002-05-31 20:03:54 +0000818 /* We only get here if one of the following is true:
819 a) v and w have different types
820 b) v and w have the same type, which doesn't have tp_compare
821 c) v and w are instances, and either __cmp__ is not defined or
822 __cmp__ returns NotImplemented
823 */
Guido van Rossume797ec12001-01-17 15:24:28 +0000824 c = try_rich_to_3way_compare(v, w);
825 if (c < 2)
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +0000826 return c;
Guido van Rossume797ec12001-01-17 15:24:28 +0000827 c = try_3way_compare(v, w);
828 if (c < 2)
829 return c;
830 return default_3way_compare(v, w);
Guido van Rossum20566841995-01-12 11:26:10 +0000831}
832
Tim Petersc99213f2001-11-04 05:57:16 +0000833/* Compare v to w. Return
834 -1 if v < w or exception (PyErr_Occurred() true in latter case).
835 0 if v == w.
836 1 if v > w.
837 XXX The docs (C API manual) say the return value is undefined in case
838 XXX of error.
839*/
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000840int
Fred Drake100814d2000-07-09 15:48:49 +0000841PyObject_Compare(PyObject *v, PyObject *w)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000842{
Jeremy Hylton4a3dd2d2000-04-14 19:13:24 +0000843 int result;
844
Guido van Rossumc8b6df91997-05-23 00:06:51 +0000845 if (v == NULL || w == NULL) {
846 PyErr_BadInternalCall();
847 return -1;
848 }
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000849 if (v == w)
850 return 0;
Armin Rigo2b3eb402003-10-28 12:05:48 +0000851 if (Py_EnterRecursiveCall(" in cmp"))
852 return -1;
853 result = do_cmp(v, w);
854 Py_LeaveRecursiveCall();
Guido van Rossume797ec12001-01-17 15:24:28 +0000855 return result < 0 ? -1 : result;
856}
857
Tim Petersc99213f2001-11-04 05:57:16 +0000858/* Return (new reference to) Py_True or Py_False. */
Guido van Rossume797ec12001-01-17 15:24:28 +0000859static PyObject *
Martin v. Löwis0163d6d2001-06-09 07:34:05 +0000860convert_3way_to_object(int op, int c)
Guido van Rossume797ec12001-01-17 15:24:28 +0000861{
Guido van Rossume797ec12001-01-17 15:24:28 +0000862 PyObject *result;
Guido van Rossume797ec12001-01-17 15:24:28 +0000863 switch (op) {
864 case Py_LT: c = c < 0; break;
865 case Py_LE: c = c <= 0; break;
866 case Py_EQ: c = c == 0; break;
867 case Py_NE: c = c != 0; break;
868 case Py_GT: c = c > 0; break;
869 case Py_GE: c = c >= 0; break;
870 }
871 result = c ? Py_True : Py_False;
872 Py_INCREF(result);
Jeremy Hylton4a3dd2d2000-04-14 19:13:24 +0000873 return result;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000874}
Tim Peters803526b2002-07-07 05:13:56 +0000875
Tim Petersc99213f2001-11-04 05:57:16 +0000876/* We want a rich comparison but don't have one. Try a 3-way cmp instead.
877 Return
878 NULL if error
879 Py_True if v op w
880 Py_False if not (v op w)
881*/
Martin v. Löwis0163d6d2001-06-09 07:34:05 +0000882static PyObject *
883try_3way_to_rich_compare(PyObject *v, PyObject *w, int op)
884{
885 int c;
886
887 c = try_3way_compare(v, w);
Steven Bethardae42f332008-03-18 17:26:10 +0000888 if (c >= 2) {
889
890 /* Py3K warning if types are not equal and comparison isn't == or != */
891 if (Py_Py3kWarningFlag &&
Georg Brandld5b635f2008-03-25 08:29:14 +0000892 v->ob_type != w->ob_type && op != Py_EQ && op != Py_NE &&
Benjamin Peterson9f4f4812008-04-27 03:01:45 +0000893 PyErr_WarnEx(PyExc_DeprecationWarning,
Georg Brandld5b635f2008-03-25 08:29:14 +0000894 "comparing unequal types not supported "
Benjamin Peterson9f4f4812008-04-27 03:01:45 +0000895 "in 3.x", 1) < 0) {
Steven Bethardae42f332008-03-18 17:26:10 +0000896 return NULL;
897 }
898
Martin v. Löwis0163d6d2001-06-09 07:34:05 +0000899 c = default_3way_compare(v, w);
Steven Bethardae42f332008-03-18 17:26:10 +0000900 }
Martin v. Löwis0163d6d2001-06-09 07:34:05 +0000901 if (c <= -2)
902 return NULL;
903 return convert_3way_to_object(op, c);
904}
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000905
Tim Petersc99213f2001-11-04 05:57:16 +0000906/* Do rich comparison on v and w. Return
907 NULL if error
908 Else a new reference to an object other than Py_NotImplemented, usually(?):
909 Py_True if v op w
910 Py_False if not (v op w)
911*/
Neil Schemenauerd38855c2001-01-21 16:25:18 +0000912static PyObject *
Guido van Rossume797ec12001-01-17 15:24:28 +0000913do_richcmp(PyObject *v, PyObject *w, int op)
914{
915 PyObject *res;
916
917 res = try_rich_compare(v, w, op);
918 if (res != Py_NotImplemented)
919 return res;
920 Py_DECREF(res);
921
922 return try_3way_to_rich_compare(v, w, op);
923}
924
Tim Petersc99213f2001-11-04 05:57:16 +0000925/* Return:
926 NULL for exception;
Tim Petersc99213f2001-11-04 05:57:16 +0000927 some object not equal to NotImplemented if it is implemented
928 (this latter object may not be a Boolean).
929*/
Guido van Rossume797ec12001-01-17 15:24:28 +0000930PyObject *
931PyObject_RichCompare(PyObject *v, PyObject *w, int op)
932{
933 PyObject *res;
934
935 assert(Py_LT <= op && op <= Py_GE);
Armin Rigo2b3eb402003-10-28 12:05:48 +0000936 if (Py_EnterRecursiveCall(" in cmp"))
937 return NULL;
Guido van Rossume797ec12001-01-17 15:24:28 +0000938
Armin Rigo2b3eb402003-10-28 12:05:48 +0000939 /* If the types are equal, and not old-style instances, try to
Tim Peters67754e92001-11-04 07:29:31 +0000940 get out cheap (don't bother with coercions etc.). */
941 if (v->ob_type == w->ob_type && !PyInstance_Check(v)) {
942 cmpfunc fcmp;
943 richcmpfunc frich = RICHCOMPARE(v->ob_type);
944 /* If the type has richcmp, try it first. try_rich_compare
945 tries it two-sided, which is not needed since we've a
946 single type only. */
947 if (frich != NULL) {
948 res = (*frich)(v, w, op);
949 if (res != Py_NotImplemented)
950 goto Done;
951 Py_DECREF(res);
952 }
953 /* No richcmp, or this particular richmp not implemented.
954 Try 3-way cmp. */
955 fcmp = v->ob_type->tp_compare;
956 if (fcmp != NULL) {
957 int c = (*fcmp)(v, w);
Guido van Rossuma4073002002-05-31 20:03:54 +0000958 c = adjust_tp_compare(c);
959 if (c == -2) {
Tim Peters67754e92001-11-04 07:29:31 +0000960 res = NULL;
961 goto Done;
962 }
963 res = convert_3way_to_object(op, c);
964 goto Done;
965 }
Guido van Rossum2ffbf6b2001-01-17 21:27:02 +0000966 }
Tim Peters67754e92001-11-04 07:29:31 +0000967
968 /* Fast path not taken, or couldn't deliver a useful result. */
969 res = do_richcmp(v, w, op);
970Done:
Armin Rigo2b3eb402003-10-28 12:05:48 +0000971 Py_LeaveRecursiveCall();
Guido van Rossume797ec12001-01-17 15:24:28 +0000972 return res;
973}
974
Tim Petersde9725f2001-05-05 10:06:17 +0000975/* Return -1 if error; 1 if v op w; 0 if not (v op w). */
Guido van Rossume797ec12001-01-17 15:24:28 +0000976int
977PyObject_RichCompareBool(PyObject *v, PyObject *w, int op)
978{
Raymond Hettinger93d44812004-03-21 17:01:44 +0000979 PyObject *res;
Guido van Rossume797ec12001-01-17 15:24:28 +0000980 int ok;
981
Raymond Hettinger93d44812004-03-21 17:01:44 +0000982 /* Quick result when objects are the same.
983 Guarantees that identity implies equality. */
984 if (v == w) {
985 if (op == Py_EQ)
986 return 1;
987 else if (op == Py_NE)
988 return 0;
989 }
990
991 res = PyObject_RichCompare(v, w, op);
Guido van Rossume797ec12001-01-17 15:24:28 +0000992 if (res == NULL)
993 return -1;
Guido van Rossum81912d42002-08-24 05:33:28 +0000994 if (PyBool_Check(res))
995 ok = (res == Py_True);
996 else
997 ok = PyObject_IsTrue(res);
Guido van Rossume797ec12001-01-17 15:24:28 +0000998 Py_DECREF(res);
999 return ok;
1000}
Fred Drake13634cf2000-06-29 19:17:04 +00001001
1002/* Set of hash utility functions to help maintaining the invariant that
Raymond Hettinger8183fa42004-03-21 17:35:06 +00001003 if a==b then hash(a)==hash(b)
Fred Drake13634cf2000-06-29 19:17:04 +00001004
1005 All the utility functions (_Py_Hash*()) return "-1" to signify an error.
1006*/
1007
1008long
Fred Drake100814d2000-07-09 15:48:49 +00001009_Py_HashDouble(double v)
Fred Drake13634cf2000-06-29 19:17:04 +00001010{
Tim Peters39dce292000-08-15 03:34:48 +00001011 double intpart, fractpart;
1012 int expo;
1013 long hipart;
1014 long x; /* the final hash value */
1015 /* This is designed so that Python numbers of different types
1016 * that compare equal hash to the same value; otherwise comparisons
1017 * of mapping keys will turn out weird.
1018 */
1019
Tim Peters39dce292000-08-15 03:34:48 +00001020 fractpart = modf(v, &intpart);
Tim Peters39dce292000-08-15 03:34:48 +00001021 if (fractpart == 0.0) {
1022 /* This must return the same hash as an equal int or long. */
1023 if (intpart > LONG_MAX || -intpart > LONG_MAX) {
1024 /* Convert to long and use its hash. */
1025 PyObject *plong; /* converted to Python long */
1026 if (Py_IS_INFINITY(intpart))
1027 /* can't convert to long int -- arbitrary */
1028 v = v < 0 ? -271828.0 : 314159.0;
1029 plong = PyLong_FromDouble(v);
1030 if (plong == NULL)
1031 return -1;
1032 x = PyObject_Hash(plong);
1033 Py_DECREF(plong);
1034 return x;
1035 }
1036 /* Fits in a C long == a Python int, so is its own hash. */
1037 x = (long)intpart;
1038 if (x == -1)
1039 x = -2;
1040 return x;
1041 }
1042 /* The fractional part is non-zero, so we don't have to worry about
1043 * making this match the hash of some other type.
1044 * Use frexp to get at the bits in the double.
Fred Drake13634cf2000-06-29 19:17:04 +00001045 * Since the VAX D double format has 56 mantissa bits, which is the
1046 * most of any double format in use, each of these parts may have as
1047 * many as (but no more than) 56 significant bits.
Tim Peters39dce292000-08-15 03:34:48 +00001048 * So, assuming sizeof(long) >= 4, each part can be broken into two
1049 * longs; frexp and multiplication are used to do that.
1050 * Also, since the Cray double format has 15 exponent bits, which is
1051 * the most of any double format in use, shifting the exponent field
1052 * left by 15 won't overflow a long (again assuming sizeof(long) >= 4).
Fred Drake13634cf2000-06-29 19:17:04 +00001053 */
Tim Peters39dce292000-08-15 03:34:48 +00001054 v = frexp(v, &expo);
1055 v *= 2147483648.0; /* 2**31 */
1056 hipart = (long)v; /* take the top 32 bits */
1057 v = (v - (double)hipart) * 2147483648.0; /* get the next 32 bits */
1058 x = hipart + (long)v + (expo << 15);
1059 if (x == -1)
1060 x = -2;
1061 return x;
Fred Drake13634cf2000-06-29 19:17:04 +00001062}
1063
1064long
Fred Drake100814d2000-07-09 15:48:49 +00001065_Py_HashPointer(void *p)
Fred Drake13634cf2000-06-29 19:17:04 +00001066{
1067#if SIZEOF_LONG >= SIZEOF_VOID_P
1068 return (long)p;
1069#else
1070 /* convert to a Python long and hash that */
1071 PyObject* longobj;
1072 long x;
Tim Peters803526b2002-07-07 05:13:56 +00001073
Fred Drake13634cf2000-06-29 19:17:04 +00001074 if ((longobj = PyLong_FromVoidPtr(p)) == NULL) {
1075 x = -1;
1076 goto finally;
1077 }
1078 x = PyObject_Hash(longobj);
Tim Peters803526b2002-07-07 05:13:56 +00001079
Fred Drake13634cf2000-06-29 19:17:04 +00001080finally:
1081 Py_XDECREF(longobj);
1082 return x;
1083#endif
1084}
1085
1086
Guido van Rossum9bfef441993-03-29 10:43:31 +00001087long
Fred Drake100814d2000-07-09 15:48:49 +00001088PyObject_Hash(PyObject *v)
Guido van Rossum9bfef441993-03-29 10:43:31 +00001089{
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001090 PyTypeObject *tp = v->ob_type;
Guido van Rossum9bfef441993-03-29 10:43:31 +00001091 if (tp->tp_hash != NULL)
1092 return (*tp->tp_hash)(v);
Guido van Rossumd1f06b92001-01-24 22:14:43 +00001093 if (tp->tp_compare == NULL && RICHCOMPARE(tp) == NULL) {
Fred Drake13634cf2000-06-29 19:17:04 +00001094 return _Py_HashPointer(v); /* Use address as hash value */
1095 }
Guido van Rossum9bfef441993-03-29 10:43:31 +00001096 /* If there's a cmp but no hash defined, the object can't be hashed */
Georg Brandlccff7852006-06-18 22:17:29 +00001097 PyErr_Format(PyExc_TypeError, "unhashable type: '%.200s'",
1098 v->ob_type->tp_name);
Guido van Rossum9bfef441993-03-29 10:43:31 +00001099 return -1;
1100}
1101
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001102PyObject *
Jeremy Hyltonaf68c872005-12-10 18:50:16 +00001103PyObject_GetAttrString(PyObject *v, const char *name)
Guido van Rossum3f5da241990-12-20 15:06:42 +00001104{
Tim Peters6d6c1a32001-08-02 04:15:00 +00001105 PyObject *w, *res;
Guido van Rossumd8eb1b31996-08-09 20:52:03 +00001106
Christian Heimese93237d2007-12-19 02:37:44 +00001107 if (Py_TYPE(v)->tp_getattr != NULL)
1108 return (*Py_TYPE(v)->tp_getattr)(v, (char*)name);
Gregory P. Smithdd96db62008-06-09 04:58:54 +00001109 w = PyString_InternFromString(name);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001110 if (w == NULL)
1111 return NULL;
1112 res = PyObject_GetAttr(v, w);
1113 Py_XDECREF(w);
1114 return res;
Guido van Rossum3f5da241990-12-20 15:06:42 +00001115}
1116
1117int
Jeremy Hyltonaf68c872005-12-10 18:50:16 +00001118PyObject_HasAttrString(PyObject *v, const char *name)
Guido van Rossumed18fdc1993-07-11 19:55:34 +00001119{
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001120 PyObject *res = PyObject_GetAttrString(v, name);
Guido van Rossumed18fdc1993-07-11 19:55:34 +00001121 if (res != NULL) {
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001122 Py_DECREF(res);
Guido van Rossumed18fdc1993-07-11 19:55:34 +00001123 return 1;
1124 }
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001125 PyErr_Clear();
Guido van Rossumed18fdc1993-07-11 19:55:34 +00001126 return 0;
1127}
1128
1129int
Jeremy Hyltonaf68c872005-12-10 18:50:16 +00001130PyObject_SetAttrString(PyObject *v, const char *name, PyObject *w)
Guido van Rossum3f5da241990-12-20 15:06:42 +00001131{
Tim Peters6d6c1a32001-08-02 04:15:00 +00001132 PyObject *s;
1133 int res;
Guido van Rossumd8eb1b31996-08-09 20:52:03 +00001134
Christian Heimese93237d2007-12-19 02:37:44 +00001135 if (Py_TYPE(v)->tp_setattr != NULL)
1136 return (*Py_TYPE(v)->tp_setattr)(v, (char*)name, w);
Gregory P. Smithdd96db62008-06-09 04:58:54 +00001137 s = PyString_InternFromString(name);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001138 if (s == NULL)
1139 return -1;
1140 res = PyObject_SetAttr(v, s, w);
1141 Py_XDECREF(s);
1142 return res;
Guido van Rossum3f5da241990-12-20 15:06:42 +00001143}
1144
Guido van Rossum98ff96a1997-05-20 18:34:44 +00001145PyObject *
Fred Drake100814d2000-07-09 15:48:49 +00001146PyObject_GetAttr(PyObject *v, PyObject *name)
Guido van Rossum98ff96a1997-05-20 18:34:44 +00001147{
Christian Heimese93237d2007-12-19 02:37:44 +00001148 PyTypeObject *tp = Py_TYPE(v);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001149
Gregory P. Smithdd96db62008-06-09 04:58:54 +00001150 if (!PyString_Check(name)) {
Martin v. Löwis0c160a02002-03-15 13:40:30 +00001151#ifdef Py_USING_UNICODE
1152 /* The Unicode to string conversion is done here because the
1153 existing tp_getattro slots expect a string object as name
1154 and we wouldn't want to break those. */
1155 if (PyUnicode_Check(name)) {
1156 name = _PyUnicode_AsDefaultEncodedString(name, NULL);
1157 if (name == NULL)
1158 return NULL;
1159 }
1160 else
1161#endif
1162 {
Georg Brandlccff7852006-06-18 22:17:29 +00001163 PyErr_Format(PyExc_TypeError,
1164 "attribute name must be string, not '%.200s'",
Christian Heimese93237d2007-12-19 02:37:44 +00001165 Py_TYPE(name)->tp_name);
Martin v. Löwis0c160a02002-03-15 13:40:30 +00001166 return NULL;
1167 }
Jeremy Hylton99a8f902000-06-23 14:36:32 +00001168 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00001169 if (tp->tp_getattro != NULL)
1170 return (*tp->tp_getattro)(v, name);
1171 if (tp->tp_getattr != NULL)
Gregory P. Smithdd96db62008-06-09 04:58:54 +00001172 return (*tp->tp_getattr)(v, PyString_AS_STRING(name));
Tim Peters6d6c1a32001-08-02 04:15:00 +00001173 PyErr_Format(PyExc_AttributeError,
1174 "'%.50s' object has no attribute '%.400s'",
Gregory P. Smithdd96db62008-06-09 04:58:54 +00001175 tp->tp_name, PyString_AS_STRING(name));
Tim Peters6d6c1a32001-08-02 04:15:00 +00001176 return NULL;
Guido van Rossum98ff96a1997-05-20 18:34:44 +00001177}
1178
1179int
Fred Drake100814d2000-07-09 15:48:49 +00001180PyObject_HasAttr(PyObject *v, PyObject *name)
Guido van Rossum98ff96a1997-05-20 18:34:44 +00001181{
1182 PyObject *res = PyObject_GetAttr(v, name);
1183 if (res != NULL) {
1184 Py_DECREF(res);
1185 return 1;
1186 }
1187 PyErr_Clear();
1188 return 0;
1189}
1190
1191int
Fred Drake100814d2000-07-09 15:48:49 +00001192PyObject_SetAttr(PyObject *v, PyObject *name, PyObject *value)
Guido van Rossum98ff96a1997-05-20 18:34:44 +00001193{
Christian Heimese93237d2007-12-19 02:37:44 +00001194 PyTypeObject *tp = Py_TYPE(v);
Guido van Rossum98ff96a1997-05-20 18:34:44 +00001195 int err;
Marc-André Lemburge44e5072000-09-18 16:20:57 +00001196
Gregory P. Smithdd96db62008-06-09 04:58:54 +00001197 if (!PyString_Check(name)){
Martin v. Löwis0c160a02002-03-15 13:40:30 +00001198#ifdef Py_USING_UNICODE
1199 /* The Unicode to string conversion is done here because the
1200 existing tp_setattro slots expect a string object as name
1201 and we wouldn't want to break those. */
1202 if (PyUnicode_Check(name)) {
1203 name = PyUnicode_AsEncodedString(name, NULL, NULL);
1204 if (name == NULL)
1205 return -1;
1206 }
Tim Peters803526b2002-07-07 05:13:56 +00001207 else
Martin v. Löwis0c160a02002-03-15 13:40:30 +00001208#endif
1209 {
Georg Brandlccff7852006-06-18 22:17:29 +00001210 PyErr_Format(PyExc_TypeError,
1211 "attribute name must be string, not '%.200s'",
Christian Heimese93237d2007-12-19 02:37:44 +00001212 Py_TYPE(name)->tp_name);
Martin v. Löwis0c160a02002-03-15 13:40:30 +00001213 return -1;
1214 }
Jeremy Hylton99a8f902000-06-23 14:36:32 +00001215 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00001216 else
1217 Py_INCREF(name);
1218
Gregory P. Smithdd96db62008-06-09 04:58:54 +00001219 PyString_InternInPlace(&name);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001220 if (tp->tp_setattro != NULL) {
1221 err = (*tp->tp_setattro)(v, name, value);
1222 Py_DECREF(name);
1223 return err;
Marc-André Lemburge44e5072000-09-18 16:20:57 +00001224 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00001225 if (tp->tp_setattr != NULL) {
Gregory P. Smithdd96db62008-06-09 04:58:54 +00001226 err = (*tp->tp_setattr)(v, PyString_AS_STRING(name), value);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001227 Py_DECREF(name);
1228 return err;
1229 }
Guido van Rossum98ff96a1997-05-20 18:34:44 +00001230 Py_DECREF(name);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001231 if (tp->tp_getattr == NULL && tp->tp_getattro == NULL)
1232 PyErr_Format(PyExc_TypeError,
1233 "'%.100s' object has no attributes "
1234 "(%s .%.100s)",
1235 tp->tp_name,
1236 value==NULL ? "del" : "assign to",
Gregory P. Smithdd96db62008-06-09 04:58:54 +00001237 PyString_AS_STRING(name));
Tim Peters6d6c1a32001-08-02 04:15:00 +00001238 else
1239 PyErr_Format(PyExc_TypeError,
1240 "'%.100s' object has only read-only attributes "
1241 "(%s .%.100s)",
1242 tp->tp_name,
1243 value==NULL ? "del" : "assign to",
Gregory P. Smithdd96db62008-06-09 04:58:54 +00001244 PyString_AS_STRING(name));
Tim Peters6d6c1a32001-08-02 04:15:00 +00001245 return -1;
1246}
1247
1248/* Helper to get a pointer to an object's __dict__ slot, if any */
1249
1250PyObject **
1251_PyObject_GetDictPtr(PyObject *obj)
1252{
Martin v. Löwis725507b2006-03-07 12:08:51 +00001253 Py_ssize_t dictoffset;
Christian Heimese93237d2007-12-19 02:37:44 +00001254 PyTypeObject *tp = Py_TYPE(obj);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001255
1256 if (!(tp->tp_flags & Py_TPFLAGS_HAVE_CLASS))
1257 return NULL;
1258 dictoffset = tp->tp_dictoffset;
1259 if (dictoffset == 0)
1260 return NULL;
1261 if (dictoffset < 0) {
Martin v. Löwis18e16552006-02-15 17:27:45 +00001262 Py_ssize_t tsize;
Guido van Rossum2eb0b872002-03-01 22:24:49 +00001263 size_t size;
1264
1265 tsize = ((PyVarObject *)obj)->ob_size;
1266 if (tsize < 0)
1267 tsize = -tsize;
1268 size = _PyObject_VAR_SIZE(tp, tsize);
1269
Tim Peters6d483d32001-10-06 21:27:34 +00001270 dictoffset += (long)size;
1271 assert(dictoffset > 0);
1272 assert(dictoffset % SIZEOF_VOID_P == 0);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001273 }
1274 return (PyObject **) ((char *)obj + dictoffset);
1275}
1276
Tim Peters6d6c1a32001-08-02 04:15:00 +00001277PyObject *
Raymond Hettinger1da1dbf2003-03-17 19:46:11 +00001278PyObject_SelfIter(PyObject *obj)
Raymond Hettinger01538262003-03-17 08:24:35 +00001279{
1280 Py_INCREF(obj);
1281 return obj;
1282}
1283
Michael W. Hudson1593f502004-09-14 17:09:47 +00001284/* Generic GetAttr functions - put these in your tp_[gs]etattro slot */
1285
Raymond Hettinger01538262003-03-17 08:24:35 +00001286PyObject *
Tim Peters6d6c1a32001-08-02 04:15:00 +00001287PyObject_GenericGetAttr(PyObject *obj, PyObject *name)
1288{
Christian Heimese93237d2007-12-19 02:37:44 +00001289 PyTypeObject *tp = Py_TYPE(obj);
Guido van Rossum056fbf42002-08-19 19:22:50 +00001290 PyObject *descr = NULL;
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001291 PyObject *res = NULL;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001292 descrgetfunc f;
Martin v. Löwis725507b2006-03-07 12:08:51 +00001293 Py_ssize_t dictoffset;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001294 PyObject **dictptr;
1295
Gregory P. Smithdd96db62008-06-09 04:58:54 +00001296 if (!PyString_Check(name)){
Martin v. Löwis0c160a02002-03-15 13:40:30 +00001297#ifdef Py_USING_UNICODE
1298 /* The Unicode to string conversion is done here because the
1299 existing tp_setattro slots expect a string object as name
1300 and we wouldn't want to break those. */
1301 if (PyUnicode_Check(name)) {
1302 name = PyUnicode_AsEncodedString(name, NULL, NULL);
1303 if (name == NULL)
1304 return NULL;
1305 }
Tim Peters803526b2002-07-07 05:13:56 +00001306 else
Martin v. Löwis0c160a02002-03-15 13:40:30 +00001307#endif
1308 {
Georg Brandlccff7852006-06-18 22:17:29 +00001309 PyErr_Format(PyExc_TypeError,
1310 "attribute name must be string, not '%.200s'",
Christian Heimese93237d2007-12-19 02:37:44 +00001311 Py_TYPE(name)->tp_name);
Martin v. Löwis0c160a02002-03-15 13:40:30 +00001312 return NULL;
1313 }
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001314 }
1315 else
1316 Py_INCREF(name);
1317
Tim Peters6d6c1a32001-08-02 04:15:00 +00001318 if (tp->tp_dict == NULL) {
Guido van Rossum528b7eb2001-08-07 17:24:28 +00001319 if (PyType_Ready(tp) < 0)
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001320 goto done;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001321 }
1322
Amaury Forgeot d'Arce4c270c2008-01-14 00:29:41 +00001323#if 0 /* XXX this is not quite _PyType_Lookup anymore */
Guido van Rossum056fbf42002-08-19 19:22:50 +00001324 /* Inline _PyType_Lookup */
1325 {
Martin v. Löwis18e16552006-02-15 17:27:45 +00001326 Py_ssize_t i, n;
Guido van Rossum056fbf42002-08-19 19:22:50 +00001327 PyObject *mro, *base, *dict;
1328
1329 /* Look in tp_dict of types in MRO */
1330 mro = tp->tp_mro;
1331 assert(mro != NULL);
1332 assert(PyTuple_Check(mro));
1333 n = PyTuple_GET_SIZE(mro);
1334 for (i = 0; i < n; i++) {
1335 base = PyTuple_GET_ITEM(mro, i);
1336 if (PyClass_Check(base))
1337 dict = ((PyClassObject *)base)->cl_dict;
1338 else {
1339 assert(PyType_Check(base));
1340 dict = ((PyTypeObject *)base)->tp_dict;
1341 }
1342 assert(dict && PyDict_Check(dict));
1343 descr = PyDict_GetItem(dict, name);
1344 if (descr != NULL)
1345 break;
1346 }
1347 }
Amaury Forgeot d'Arce4c270c2008-01-14 00:29:41 +00001348#else
1349 descr = _PyType_Lookup(tp, name);
1350#endif
Guido van Rossum056fbf42002-08-19 19:22:50 +00001351
Michael W. Hudsonb2c7de42003-08-15 13:07:47 +00001352 Py_XINCREF(descr);
1353
Tim Peters6d6c1a32001-08-02 04:15:00 +00001354 f = NULL;
Guido van Rossum90195e22003-02-19 03:19:29 +00001355 if (descr != NULL &&
1356 PyType_HasFeature(descr->ob_type, Py_TPFLAGS_HAVE_CLASS)) {
Tim Peters6d6c1a32001-08-02 04:15:00 +00001357 f = descr->ob_type->tp_descr_get;
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001358 if (f != NULL && PyDescr_IsData(descr)) {
1359 res = f(descr, obj, (PyObject *)obj->ob_type);
Michael W. Hudsonb2c7de42003-08-15 13:07:47 +00001360 Py_DECREF(descr);
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001361 goto done;
1362 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00001363 }
1364
Guido van Rossumc66ff442002-08-19 16:50:48 +00001365 /* Inline _PyObject_GetDictPtr */
1366 dictoffset = tp->tp_dictoffset;
1367 if (dictoffset != 0) {
1368 PyObject *dict;
1369 if (dictoffset < 0) {
Martin v. Löwis18e16552006-02-15 17:27:45 +00001370 Py_ssize_t tsize;
Guido van Rossumc66ff442002-08-19 16:50:48 +00001371 size_t size;
1372
1373 tsize = ((PyVarObject *)obj)->ob_size;
1374 if (tsize < 0)
1375 tsize = -tsize;
1376 size = _PyObject_VAR_SIZE(tp, tsize);
1377
1378 dictoffset += (long)size;
1379 assert(dictoffset > 0);
1380 assert(dictoffset % SIZEOF_VOID_P == 0);
1381 }
1382 dictptr = (PyObject **) ((char *)obj + dictoffset);
1383 dict = *dictptr;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001384 if (dict != NULL) {
Guido van Rossum37edeab2008-01-24 17:58:05 +00001385 Py_INCREF(dict);
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001386 res = PyDict_GetItem(dict, name);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001387 if (res != NULL) {
1388 Py_INCREF(res);
Michael W. Hudsonb2c7de42003-08-15 13:07:47 +00001389 Py_XDECREF(descr);
Guido van Rossum37edeab2008-01-24 17:58:05 +00001390 Py_DECREF(dict);
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001391 goto done;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001392 }
Guido van Rossum37edeab2008-01-24 17:58:05 +00001393 Py_DECREF(dict);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001394 }
1395 }
1396
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001397 if (f != NULL) {
Christian Heimese93237d2007-12-19 02:37:44 +00001398 res = f(descr, obj, (PyObject *)Py_TYPE(obj));
Michael W. Hudsonb2c7de42003-08-15 13:07:47 +00001399 Py_DECREF(descr);
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001400 goto done;
1401 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00001402
1403 if (descr != NULL) {
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001404 res = descr;
Michael W. Hudsonb2c7de42003-08-15 13:07:47 +00001405 /* descr was already increfed above */
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001406 goto done;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001407 }
1408
1409 PyErr_Format(PyExc_AttributeError,
1410 "'%.50s' object has no attribute '%.400s'",
Gregory P. Smithdd96db62008-06-09 04:58:54 +00001411 tp->tp_name, PyString_AS_STRING(name));
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001412 done:
1413 Py_DECREF(name);
1414 return res;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001415}
1416
1417int
1418PyObject_GenericSetAttr(PyObject *obj, PyObject *name, PyObject *value)
1419{
Christian Heimese93237d2007-12-19 02:37:44 +00001420 PyTypeObject *tp = Py_TYPE(obj);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001421 PyObject *descr;
1422 descrsetfunc f;
1423 PyObject **dictptr;
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001424 int res = -1;
1425
Gregory P. Smithdd96db62008-06-09 04:58:54 +00001426 if (!PyString_Check(name)){
Martin v. Löwis0c160a02002-03-15 13:40:30 +00001427#ifdef Py_USING_UNICODE
1428 /* The Unicode to string conversion is done here because the
1429 existing tp_setattro slots expect a string object as name
1430 and we wouldn't want to break those. */
1431 if (PyUnicode_Check(name)) {
1432 name = PyUnicode_AsEncodedString(name, NULL, NULL);
1433 if (name == NULL)
1434 return -1;
1435 }
Tim Peters803526b2002-07-07 05:13:56 +00001436 else
Martin v. Löwis0c160a02002-03-15 13:40:30 +00001437#endif
1438 {
Georg Brandlccff7852006-06-18 22:17:29 +00001439 PyErr_Format(PyExc_TypeError,
1440 "attribute name must be string, not '%.200s'",
Christian Heimese93237d2007-12-19 02:37:44 +00001441 Py_TYPE(name)->tp_name);
Martin v. Löwis0c160a02002-03-15 13:40:30 +00001442 return -1;
1443 }
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001444 }
1445 else
1446 Py_INCREF(name);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001447
1448 if (tp->tp_dict == NULL) {
Guido van Rossum528b7eb2001-08-07 17:24:28 +00001449 if (PyType_Ready(tp) < 0)
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001450 goto done;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001451 }
1452
1453 descr = _PyType_Lookup(tp, name);
1454 f = NULL;
Guido van Rossum90195e22003-02-19 03:19:29 +00001455 if (descr != NULL &&
1456 PyType_HasFeature(descr->ob_type, Py_TPFLAGS_HAVE_CLASS)) {
Tim Peters6d6c1a32001-08-02 04:15:00 +00001457 f = descr->ob_type->tp_descr_set;
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001458 if (f != NULL && PyDescr_IsData(descr)) {
1459 res = f(descr, obj, value);
1460 goto done;
1461 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00001462 }
1463
1464 dictptr = _PyObject_GetDictPtr(obj);
1465 if (dictptr != NULL) {
1466 PyObject *dict = *dictptr;
1467 if (dict == NULL && value != NULL) {
1468 dict = PyDict_New();
1469 if (dict == NULL)
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001470 goto done;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001471 *dictptr = dict;
1472 }
1473 if (dict != NULL) {
Guido van Rossum37edeab2008-01-24 17:58:05 +00001474 Py_INCREF(dict);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001475 if (value == NULL)
1476 res = PyDict_DelItem(dict, name);
1477 else
1478 res = PyDict_SetItem(dict, name, value);
1479 if (res < 0 && PyErr_ExceptionMatches(PyExc_KeyError))
1480 PyErr_SetObject(PyExc_AttributeError, name);
Guido van Rossum37edeab2008-01-24 17:58:05 +00001481 Py_DECREF(dict);
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001482 goto done;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001483 }
1484 }
1485
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001486 if (f != NULL) {
1487 res = f(descr, obj, value);
1488 goto done;
1489 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00001490
1491 if (descr == NULL) {
1492 PyErr_Format(PyExc_AttributeError,
Georg Brandlccff7852006-06-18 22:17:29 +00001493 "'%.100s' object has no attribute '%.200s'",
Gregory P. Smithdd96db62008-06-09 04:58:54 +00001494 tp->tp_name, PyString_AS_STRING(name));
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001495 goto done;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001496 }
1497
1498 PyErr_Format(PyExc_AttributeError,
1499 "'%.50s' object attribute '%.400s' is read-only",
Gregory P. Smithdd96db62008-06-09 04:58:54 +00001500 tp->tp_name, PyString_AS_STRING(name));
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001501 done:
1502 Py_DECREF(name);
1503 return res;
Guido van Rossum98ff96a1997-05-20 18:34:44 +00001504}
1505
Guido van Rossum6ac258d1993-05-12 08:24:20 +00001506/* Test a value used as condition, e.g., in a for or if statement.
1507 Return -1 if an error occurred */
1508
1509int
Fred Drake100814d2000-07-09 15:48:49 +00001510PyObject_IsTrue(PyObject *v)
Guido van Rossum6ac258d1993-05-12 08:24:20 +00001511{
Martin v. Löwis18e16552006-02-15 17:27:45 +00001512 Py_ssize_t res;
Guido van Rossum6248f442002-08-24 06:31:34 +00001513 if (v == Py_True)
1514 return 1;
1515 if (v == Py_False)
1516 return 0;
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001517 if (v == Py_None)
Neal Norwitz51290d32002-06-13 21:32:44 +00001518 return 0;
Guido van Rossum1c4f4581998-05-22 00:53:24 +00001519 else if (v->ob_type->tp_as_number != NULL &&
1520 v->ob_type->tp_as_number->nb_nonzero != NULL)
Guido van Rossum6ac258d1993-05-12 08:24:20 +00001521 res = (*v->ob_type->tp_as_number->nb_nonzero)(v);
Guido van Rossum1c4f4581998-05-22 00:53:24 +00001522 else if (v->ob_type->tp_as_mapping != NULL &&
1523 v->ob_type->tp_as_mapping->mp_length != NULL)
Guido van Rossum6ac258d1993-05-12 08:24:20 +00001524 res = (*v->ob_type->tp_as_mapping->mp_length)(v);
Guido van Rossum1c4f4581998-05-22 00:53:24 +00001525 else if (v->ob_type->tp_as_sequence != NULL &&
1526 v->ob_type->tp_as_sequence->sq_length != NULL)
Guido van Rossum6ac258d1993-05-12 08:24:20 +00001527 res = (*v->ob_type->tp_as_sequence->sq_length)(v);
1528 else
Neal Norwitz51290d32002-06-13 21:32:44 +00001529 return 1;
Martin v. Löwis18e16552006-02-15 17:27:45 +00001530 /* if it is negative, it should be either -1 or -2 */
1531 return (res > 0) ? 1 : Py_SAFE_DOWNCAST(res, Py_ssize_t, int);
Guido van Rossum6ac258d1993-05-12 08:24:20 +00001532}
1533
Tim Peters803526b2002-07-07 05:13:56 +00001534/* equivalent of 'not v'
Guido van Rossumc3d3f961998-04-09 17:53:59 +00001535 Return -1 if an error occurred */
1536
1537int
Fred Drake100814d2000-07-09 15:48:49 +00001538PyObject_Not(PyObject *v)
Guido van Rossumc3d3f961998-04-09 17:53:59 +00001539{
1540 int res;
1541 res = PyObject_IsTrue(v);
1542 if (res < 0)
1543 return res;
1544 return res == 0;
1545}
1546
Guido van Rossum5524a591995-01-10 15:26:20 +00001547/* Coerce two numeric types to the "larger" one.
1548 Increment the reference count on each argument.
Guido van Rossume797ec12001-01-17 15:24:28 +00001549 Return value:
1550 -1 if an error occurred;
1551 0 if the coercion succeeded (and then the reference counts are increased);
1552 1 if no coercion is possible (and no error is raised).
Guido van Rossum5524a591995-01-10 15:26:20 +00001553*/
Guido van Rossum5524a591995-01-10 15:26:20 +00001554int
Fred Drake100814d2000-07-09 15:48:49 +00001555PyNumber_CoerceEx(PyObject **pv, PyObject **pw)
Guido van Rossum5524a591995-01-10 15:26:20 +00001556{
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001557 register PyObject *v = *pv;
1558 register PyObject *w = *pw;
Guido van Rossum5524a591995-01-10 15:26:20 +00001559 int res;
1560
Guido van Rossum517c7d42002-04-26 02:49:14 +00001561 /* Shortcut only for old-style types */
1562 if (v->ob_type == w->ob_type &&
1563 !PyType_HasFeature(v->ob_type, Py_TPFLAGS_CHECKTYPES))
1564 {
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001565 Py_INCREF(v);
1566 Py_INCREF(w);
Guido van Rossum5524a591995-01-10 15:26:20 +00001567 return 0;
1568 }
1569 if (v->ob_type->tp_as_number && v->ob_type->tp_as_number->nb_coerce) {
1570 res = (*v->ob_type->tp_as_number->nb_coerce)(pv, pw);
1571 if (res <= 0)
1572 return res;
1573 }
1574 if (w->ob_type->tp_as_number && w->ob_type->tp_as_number->nb_coerce) {
1575 res = (*w->ob_type->tp_as_number->nb_coerce)(pw, pv);
1576 if (res <= 0)
1577 return res;
1578 }
Guido van Rossum242c6421997-11-19 16:03:17 +00001579 return 1;
1580}
1581
Guido van Rossume797ec12001-01-17 15:24:28 +00001582/* Coerce two numeric types to the "larger" one.
1583 Increment the reference count on each argument.
1584 Return -1 and raise an exception if no coercion is possible
1585 (and then no reference count is incremented).
1586*/
Guido van Rossum242c6421997-11-19 16:03:17 +00001587int
Fred Drake100814d2000-07-09 15:48:49 +00001588PyNumber_Coerce(PyObject **pv, PyObject **pw)
Guido van Rossum242c6421997-11-19 16:03:17 +00001589{
1590 int err = PyNumber_CoerceEx(pv, pw);
1591 if (err <= 0)
1592 return err;
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001593 PyErr_SetString(PyExc_TypeError, "number coercion failed");
Guido van Rossum5524a591995-01-10 15:26:20 +00001594 return -1;
1595}
1596
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001597
Guido van Rossum49b11fe1995-01-26 00:38:22 +00001598/* Test whether an object can be called */
1599
1600int
Fred Drake100814d2000-07-09 15:48:49 +00001601PyCallable_Check(PyObject *x)
Guido van Rossum49b11fe1995-01-26 00:38:22 +00001602{
1603 if (x == NULL)
1604 return 0;
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001605 if (PyInstance_Check(x)) {
1606 PyObject *call = PyObject_GetAttrString(x, "__call__");
Guido van Rossum49b11fe1995-01-26 00:38:22 +00001607 if (call == NULL) {
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001608 PyErr_Clear();
Guido van Rossum49b11fe1995-01-26 00:38:22 +00001609 return 0;
1610 }
1611 /* Could test recursively but don't, for fear of endless
1612 recursion if some joker sets self.__call__ = self */
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001613 Py_DECREF(call);
Guido van Rossum49b11fe1995-01-26 00:38:22 +00001614 return 1;
1615 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00001616 else {
1617 return x->ob_type->tp_call != NULL;
1618 }
Guido van Rossum49b11fe1995-01-26 00:38:22 +00001619}
1620
Georg Brandl871f1bc2007-03-12 13:17:36 +00001621/* ------------------------- PyObject_Dir() helpers ------------------------- */
1622
Tim Peters7eea37e2001-09-04 22:08:56 +00001623/* Helper for PyObject_Dir.
1624 Merge the __dict__ of aclass into dict, and recursively also all
1625 the __dict__s of aclass's base classes. The order of merging isn't
1626 defined, as it's expected that only the final set of dict keys is
1627 interesting.
1628 Return 0 on success, -1 on error.
1629*/
1630
1631static int
1632merge_class_dict(PyObject* dict, PyObject* aclass)
1633{
1634 PyObject *classdict;
1635 PyObject *bases;
1636
1637 assert(PyDict_Check(dict));
1638 assert(aclass);
1639
1640 /* Merge in the type's dict (if any). */
1641 classdict = PyObject_GetAttrString(aclass, "__dict__");
1642 if (classdict == NULL)
1643 PyErr_Clear();
1644 else {
1645 int status = PyDict_Update(dict, classdict);
1646 Py_DECREF(classdict);
1647 if (status < 0)
1648 return -1;
1649 }
1650
1651 /* Recursively merge in the base types' (if any) dicts. */
1652 bases = PyObject_GetAttrString(aclass, "__bases__");
Tim Petersbc7e8632001-09-16 20:33:22 +00001653 if (bases == NULL)
1654 PyErr_Clear();
1655 else {
Guido van Rossum44022412002-05-13 18:29:46 +00001656 /* We have no guarantee that bases is a real tuple */
Martin v. Löwis18e16552006-02-15 17:27:45 +00001657 Py_ssize_t i, n;
Guido van Rossum44022412002-05-13 18:29:46 +00001658 n = PySequence_Size(bases); /* This better be right */
1659 if (n < 0)
1660 PyErr_Clear();
1661 else {
1662 for (i = 0; i < n; i++) {
Tim Peters18e70832003-02-05 19:35:19 +00001663 int status;
Guido van Rossum44022412002-05-13 18:29:46 +00001664 PyObject *base = PySequence_GetItem(bases, i);
1665 if (base == NULL) {
1666 Py_DECREF(bases);
1667 return -1;
1668 }
Tim Peters18e70832003-02-05 19:35:19 +00001669 status = merge_class_dict(dict, base);
1670 Py_DECREF(base);
1671 if (status < 0) {
Guido van Rossum44022412002-05-13 18:29:46 +00001672 Py_DECREF(bases);
1673 return -1;
1674 }
Tim Peters7eea37e2001-09-04 22:08:56 +00001675 }
1676 }
1677 Py_DECREF(bases);
1678 }
1679 return 0;
1680}
1681
Tim Peters305b5852001-09-17 02:38:46 +00001682/* Helper for PyObject_Dir.
1683 If obj has an attr named attrname that's a list, merge its string
1684 elements into keys of dict.
1685 Return 0 on success, -1 on error. Errors due to not finding the attr,
1686 or the attr not being a list, are suppressed.
1687*/
1688
1689static int
Jeremy Hyltonaf68c872005-12-10 18:50:16 +00001690merge_list_attr(PyObject* dict, PyObject* obj, const char *attrname)
Tim Peters305b5852001-09-17 02:38:46 +00001691{
1692 PyObject *list;
1693 int result = 0;
1694
1695 assert(PyDict_Check(dict));
1696 assert(obj);
1697 assert(attrname);
1698
1699 list = PyObject_GetAttrString(obj, attrname);
1700 if (list == NULL)
1701 PyErr_Clear();
1702
1703 else if (PyList_Check(list)) {
1704 int i;
1705 for (i = 0; i < PyList_GET_SIZE(list); ++i) {
1706 PyObject *item = PyList_GET_ITEM(list, i);
Gregory P. Smithdd96db62008-06-09 04:58:54 +00001707 if (PyString_Check(item)) {
Tim Peters305b5852001-09-17 02:38:46 +00001708 result = PyDict_SetItem(dict, item, Py_None);
1709 if (result < 0)
1710 break;
1711 }
1712 }
Georg Brandl07e56812008-03-21 20:21:46 +00001713 if (Py_Py3kWarningFlag &&
1714 (strcmp(attrname, "__members__") == 0 ||
1715 strcmp(attrname, "__methods__") == 0)) {
Benjamin Peterson9f4f4812008-04-27 03:01:45 +00001716 if (PyErr_WarnEx(PyExc_DeprecationWarning,
Georg Brandld5b635f2008-03-25 08:29:14 +00001717 "__members__ and __methods__ not "
Benjamin Peterson9f4f4812008-04-27 03:01:45 +00001718 "supported in 3.x", 1) < 0) {
Georg Brandl07e56812008-03-21 20:21:46 +00001719 Py_XDECREF(list);
1720 return -1;
1721 }
1722 }
Tim Peters305b5852001-09-17 02:38:46 +00001723 }
1724
1725 Py_XDECREF(list);
1726 return result;
1727}
1728
Georg Brandl871f1bc2007-03-12 13:17:36 +00001729/* Helper for PyObject_Dir without arguments: returns the local scope. */
1730static PyObject *
Jeremy Hylton26ca9252007-03-16 14:49:11 +00001731_dir_locals(void)
Tim Peters7eea37e2001-09-04 22:08:56 +00001732{
Georg Brandl871f1bc2007-03-12 13:17:36 +00001733 PyObject *names;
1734 PyObject *locals = PyEval_GetLocals();
Tim Peters7eea37e2001-09-04 22:08:56 +00001735
Georg Brandl871f1bc2007-03-12 13:17:36 +00001736 if (locals == NULL) {
1737 PyErr_SetString(PyExc_SystemError, "frame does not exist");
1738 return NULL;
Tim Peters7eea37e2001-09-04 22:08:56 +00001739 }
1740
Georg Brandl871f1bc2007-03-12 13:17:36 +00001741 names = PyMapping_Keys(locals);
1742 if (!names)
1743 return NULL;
1744 if (!PyList_Check(names)) {
Georg Brandlccff7852006-06-18 22:17:29 +00001745 PyErr_Format(PyExc_TypeError,
Georg Brandl871f1bc2007-03-12 13:17:36 +00001746 "dir(): expected keys() of locals to be a list, "
Christian Heimese93237d2007-12-19 02:37:44 +00001747 "not '%.200s'", Py_TYPE(names)->tp_name);
Georg Brandl871f1bc2007-03-12 13:17:36 +00001748 Py_DECREF(names);
1749 return NULL;
Raymond Hettinger2a7dede2004-08-07 04:55:30 +00001750 }
Georg Brandl871f1bc2007-03-12 13:17:36 +00001751 /* the locals don't need to be DECREF'd */
1752 return names;
1753}
Tim Peters7eea37e2001-09-04 22:08:56 +00001754
Georg Brandl871f1bc2007-03-12 13:17:36 +00001755/* Helper for PyObject_Dir of type objects: returns __dict__ and __bases__.
1756 We deliberately don't suck up its __class__, as methods belonging to the
1757 metaclass would probably be more confusing than helpful.
1758*/
1759static PyObject *
1760_specialized_dir_type(PyObject *obj)
1761{
1762 PyObject *result = NULL;
1763 PyObject *dict = PyDict_New();
1764
1765 if (dict != NULL && merge_class_dict(dict, obj) == 0)
1766 result = PyDict_Keys(dict);
1767
1768 Py_XDECREF(dict);
1769 return result;
1770}
1771
1772/* Helper for PyObject_Dir of module objects: returns the module's __dict__. */
1773static PyObject *
1774_specialized_dir_module(PyObject *obj)
1775{
1776 PyObject *result = NULL;
1777 PyObject *dict = PyObject_GetAttrString(obj, "__dict__");
1778
1779 if (dict != NULL) {
1780 if (PyDict_Check(dict))
1781 result = PyDict_Keys(dict);
1782 else {
1783 PyErr_Format(PyExc_TypeError,
1784 "%.200s.__dict__ is not a dictionary",
1785 PyModule_GetName(obj));
1786 }
1787 }
1788
1789 Py_XDECREF(dict);
1790 return result;
1791}
1792
1793/* Helper for PyObject_Dir of generic objects: returns __dict__, __class__,
1794 and recursively up the __class__.__bases__ chain.
1795*/
1796static PyObject *
1797_generic_dir(PyObject *obj)
1798{
1799 PyObject *result = NULL;
1800 PyObject *dict = NULL;
1801 PyObject *itsclass = NULL;
1802
1803 /* Get __dict__ (which may or may not be a real dict...) */
1804 dict = PyObject_GetAttrString(obj, "__dict__");
1805 if (dict == NULL) {
1806 PyErr_Clear();
1807 dict = PyDict_New();
1808 }
1809 else if (!PyDict_Check(dict)) {
1810 Py_DECREF(dict);
1811 dict = PyDict_New();
1812 }
1813 else {
1814 /* Copy __dict__ to avoid mutating it. */
1815 PyObject *temp = PyDict_Copy(dict);
1816 Py_DECREF(dict);
1817 dict = temp;
1818 }
1819
1820 if (dict == NULL)
1821 goto error;
1822
1823 /* Merge in __members__ and __methods__ (if any).
1824 * This is removed in Python 3000. */
1825 if (merge_list_attr(dict, obj, "__members__") < 0)
1826 goto error;
1827 if (merge_list_attr(dict, obj, "__methods__") < 0)
1828 goto error;
1829
1830 /* Merge in attrs reachable from its class. */
1831 itsclass = PyObject_GetAttrString(obj, "__class__");
1832 if (itsclass == NULL)
1833 /* XXX(tomer): Perhaps fall back to obj->ob_type if no
1834 __class__ exists? */
1835 PyErr_Clear();
1836 else {
1837 if (merge_class_dict(dict, itsclass) != 0)
1838 goto error;
1839 }
1840
1841 result = PyDict_Keys(dict);
Tim Peters7eea37e2001-09-04 22:08:56 +00001842 /* fall through */
Georg Brandl871f1bc2007-03-12 13:17:36 +00001843error:
1844 Py_XDECREF(itsclass);
1845 Py_XDECREF(dict);
1846 return result;
1847}
1848
1849/* Helper for PyObject_Dir: object introspection.
1850 This calls one of the above specialized versions if no __dir__ method
1851 exists. */
1852static PyObject *
1853_dir_object(PyObject *obj)
1854{
Georg Brandl3bb15672007-03-13 07:23:16 +00001855 PyObject *result = NULL;
1856 PyObject *dirfunc = PyObject_GetAttrString((PyObject *)obj->ob_type,
1857 "__dir__");
Georg Brandl871f1bc2007-03-12 13:17:36 +00001858
1859 assert(obj);
1860 if (dirfunc == NULL) {
1861 /* use default implementation */
1862 PyErr_Clear();
1863 if (PyModule_Check(obj))
1864 result = _specialized_dir_module(obj);
1865 else if (PyType_Check(obj) || PyClass_Check(obj))
1866 result = _specialized_dir_type(obj);
1867 else
1868 result = _generic_dir(obj);
1869 }
1870 else {
1871 /* use __dir__ */
1872 result = PyObject_CallFunctionObjArgs(dirfunc, obj, NULL);
1873 Py_DECREF(dirfunc);
1874 if (result == NULL)
1875 return NULL;
1876
1877 /* result must be a list */
1878 /* XXX(gbrandl): could also check if all items are strings */
1879 if (!PyList_Check(result)) {
1880 PyErr_Format(PyExc_TypeError,
1881 "__dir__() must return a list, not %.200s",
Christian Heimese93237d2007-12-19 02:37:44 +00001882 Py_TYPE(result)->tp_name);
Georg Brandl871f1bc2007-03-12 13:17:36 +00001883 Py_DECREF(result);
1884 result = NULL;
1885 }
1886 }
1887
1888 return result;
1889}
1890
1891/* Implementation of dir() -- if obj is NULL, returns the names in the current
1892 (local) scope. Otherwise, performs introspection of the object: returns a
1893 sorted list of attribute names (supposedly) accessible from the object
1894*/
1895PyObject *
1896PyObject_Dir(PyObject *obj)
1897{
1898 PyObject * result;
1899
1900 if (obj == NULL)
1901 /* no object -- introspect the locals */
1902 result = _dir_locals();
1903 else
1904 /* object -- introspect the object */
1905 result = _dir_object(obj);
1906
1907 assert(result == NULL || PyList_Check(result));
1908
1909 if (result != NULL && PyList_Sort(result) != 0) {
1910 /* sorting the list failed */
1911 Py_DECREF(result);
1912 result = NULL;
1913 }
1914
Tim Peters7eea37e2001-09-04 22:08:56 +00001915 return result;
1916}
Guido van Rossum49b11fe1995-01-26 00:38:22 +00001917
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001918/*
1919NoObject is usable as a non-NULL undefined value, used by the macro None.
1920There is (and should be!) no way to create other objects of this type,
Guido van Rossum3f5da241990-12-20 15:06:42 +00001921so there is exactly one (which is indestructible, by the way).
Guido van Rossumba21a492001-08-16 08:17:26 +00001922(XXX This type and the type of NotImplemented below should be unified.)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001923*/
1924
Guido van Rossum0c182a11992-03-27 17:26:13 +00001925/* ARGSUSED */
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001926static PyObject *
Fred Drake100814d2000-07-09 15:48:49 +00001927none_repr(PyObject *op)
Guido van Rossum3f5da241990-12-20 15:06:42 +00001928{
Gregory P. Smithdd96db62008-06-09 04:58:54 +00001929 return PyString_FromString("None");
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001930}
1931
Barry Warsaw9bf16442001-01-23 16:24:35 +00001932/* ARGUSED */
1933static void
Tim Peters803526b2002-07-07 05:13:56 +00001934none_dealloc(PyObject* ignore)
Barry Warsaw9bf16442001-01-23 16:24:35 +00001935{
1936 /* This should never get called, but we also don't want to SEGV if
1937 * we accidently decref None out of existance.
1938 */
Martin v. Löwis3f19b102002-08-07 16:21:51 +00001939 Py_FatalError("deallocating None");
Barry Warsaw9bf16442001-01-23 16:24:35 +00001940}
1941
1942
Guido van Rossumba21a492001-08-16 08:17:26 +00001943static PyTypeObject PyNone_Type = {
Martin v. Löwis68192102007-07-21 06:55:02 +00001944 PyVarObject_HEAD_INIT(&PyType_Type, 0)
Guido van Rossumba21a492001-08-16 08:17:26 +00001945 "NoneType",
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001946 0,
1947 0,
Georg Brandl347b3002006-03-30 11:57:00 +00001948 none_dealloc, /*tp_dealloc*/ /*never called*/
Guido van Rossum7066dd71992-09-17 17:54:56 +00001949 0, /*tp_print*/
Guido van Rossum3f5da241990-12-20 15:06:42 +00001950 0, /*tp_getattr*/
1951 0, /*tp_setattr*/
1952 0, /*tp_compare*/
Georg Brandl347b3002006-03-30 11:57:00 +00001953 none_repr, /*tp_repr*/
Guido van Rossum3f5da241990-12-20 15:06:42 +00001954 0, /*tp_as_number*/
1955 0, /*tp_as_sequence*/
1956 0, /*tp_as_mapping*/
Guido van Rossum64c06e32007-11-22 00:55:51 +00001957 (hashfunc)_Py_HashPointer, /*tp_hash */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001958};
1959
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001960PyObject _Py_NoneStruct = {
Martin v. Löwis68192102007-07-21 06:55:02 +00001961 _PyObject_EXTRA_INIT
1962 1, &PyNone_Type
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001963};
1964
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +00001965/* NotImplemented is an object that can be used to signal that an
1966 operation is not implemented for the given type combination. */
1967
1968static PyObject *
1969NotImplemented_repr(PyObject *op)
1970{
Gregory P. Smithdd96db62008-06-09 04:58:54 +00001971 return PyString_FromString("NotImplemented");
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +00001972}
1973
1974static PyTypeObject PyNotImplemented_Type = {
Martin v. Löwis68192102007-07-21 06:55:02 +00001975 PyVarObject_HEAD_INIT(&PyType_Type, 0)
Guido van Rossumba21a492001-08-16 08:17:26 +00001976 "NotImplementedType",
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +00001977 0,
1978 0,
Georg Brandl347b3002006-03-30 11:57:00 +00001979 none_dealloc, /*tp_dealloc*/ /*never called*/
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +00001980 0, /*tp_print*/
1981 0, /*tp_getattr*/
1982 0, /*tp_setattr*/
1983 0, /*tp_compare*/
Georg Brandl347b3002006-03-30 11:57:00 +00001984 NotImplemented_repr, /*tp_repr*/
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +00001985 0, /*tp_as_number*/
1986 0, /*tp_as_sequence*/
1987 0, /*tp_as_mapping*/
1988 0, /*tp_hash */
1989};
1990
1991PyObject _Py_NotImplementedStruct = {
Martin v. Löwis68192102007-07-21 06:55:02 +00001992 _PyObject_EXTRA_INIT
1993 1, &PyNotImplemented_Type
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +00001994};
1995
Guido van Rossumba21a492001-08-16 08:17:26 +00001996void
1997_Py_ReadyTypes(void)
1998{
1999 if (PyType_Ready(&PyType_Type) < 0)
2000 Py_FatalError("Can't initialize 'type'");
2001
Fred Drake0a4dd392004-07-02 18:57:45 +00002002 if (PyType_Ready(&_PyWeakref_RefType) < 0)
2003 Py_FatalError("Can't initialize 'weakref'");
2004
Guido van Rossum77f6a652002-04-03 22:41:51 +00002005 if (PyType_Ready(&PyBool_Type) < 0)
2006 Py_FatalError("Can't initialize 'bool'");
2007
Gregory P. Smithdd96db62008-06-09 04:58:54 +00002008 if (PyType_Ready(&PyString_Type) < 0)
Guido van Rossumcacfc072002-05-24 19:01:59 +00002009 Py_FatalError("Can't initialize 'str'");
2010
Christian Heimes3497f942008-05-26 12:29:14 +00002011 if (PyType_Ready(&PyByteArray_Type) < 0)
Christian Heimes1a6387e2008-03-26 12:49:49 +00002012 Py_FatalError("Can't initialize 'bytes'");
2013
Guido van Rossumba21a492001-08-16 08:17:26 +00002014 if (PyType_Ready(&PyList_Type) < 0)
2015 Py_FatalError("Can't initialize 'list'");
2016
2017 if (PyType_Ready(&PyNone_Type) < 0)
2018 Py_FatalError("Can't initialize type(None)");
2019
2020 if (PyType_Ready(&PyNotImplemented_Type) < 0)
2021 Py_FatalError("Can't initialize type(NotImplemented)");
2022}
2023
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002024
Guido van Rossum84a90321996-05-22 16:34:47 +00002025#ifdef Py_TRACE_REFS
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002026
Guido van Rossumaacdc9d1996-08-12 21:32:12 +00002027void
Fred Drake100814d2000-07-09 15:48:49 +00002028_Py_NewReference(PyObject *op)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002029{
Tim Peters34592512002-07-11 06:23:50 +00002030 _Py_INC_REFTOTAL;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002031 op->ob_refcnt = 1;
Tim Peters7571a0f2003-03-23 17:52:28 +00002032 _Py_AddToAllObjects(op, 1);
Tim Peters34592512002-07-11 06:23:50 +00002033 _Py_INC_TPALLOCS(op);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002034}
2035
Guido van Rossumaacdc9d1996-08-12 21:32:12 +00002036void
Fred Drake100814d2000-07-09 15:48:49 +00002037_Py_ForgetReference(register PyObject *op)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002038{
Guido van Rossumbffd6832000-01-20 22:32:56 +00002039#ifdef SLOW_UNREF_CHECK
Guido van Rossum4c08d552000-03-10 22:55:18 +00002040 register PyObject *p;
Guido van Rossumbffd6832000-01-20 22:32:56 +00002041#endif
Guido van Rossumd7047b31995-01-02 19:07:15 +00002042 if (op->ob_refcnt < 0)
Guido van Rossumc0b618a1997-05-02 03:12:38 +00002043 Py_FatalError("UNREF negative refcnt");
Guido van Rossum2e8f6141992-09-03 20:32:55 +00002044 if (op == &refchain ||
Guido van Rossumd7047b31995-01-02 19:07:15 +00002045 op->_ob_prev->_ob_next != op || op->_ob_next->_ob_prev != op)
Guido van Rossumc0b618a1997-05-02 03:12:38 +00002046 Py_FatalError("UNREF invalid object");
Guido van Rossum2e8f6141992-09-03 20:32:55 +00002047#ifdef SLOW_UNREF_CHECK
Guido van Rossum3f5da241990-12-20 15:06:42 +00002048 for (p = refchain._ob_next; p != &refchain; p = p->_ob_next) {
2049 if (p == op)
2050 break;
2051 }
Guido van Rossumd7047b31995-01-02 19:07:15 +00002052 if (p == &refchain) /* Not found */
Guido van Rossumc0b618a1997-05-02 03:12:38 +00002053 Py_FatalError("UNREF unknown object");
Guido van Rossum2e8f6141992-09-03 20:32:55 +00002054#endif
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002055 op->_ob_next->_ob_prev = op->_ob_prev;
2056 op->_ob_prev->_ob_next = op->_ob_next;
Guido van Rossum2e8f6141992-09-03 20:32:55 +00002057 op->_ob_next = op->_ob_prev = NULL;
Tim Peters34592512002-07-11 06:23:50 +00002058 _Py_INC_TPFREES(op);
Guido van Rossum3f5da241990-12-20 15:06:42 +00002059}
2060
Guido van Rossumaacdc9d1996-08-12 21:32:12 +00002061void
Fred Drake100814d2000-07-09 15:48:49 +00002062_Py_Dealloc(PyObject *op)
Guido van Rossum3f5da241990-12-20 15:06:42 +00002063{
Christian Heimese93237d2007-12-19 02:37:44 +00002064 destructor dealloc = Py_TYPE(op)->tp_dealloc;
Guido van Rossumc0b618a1997-05-02 03:12:38 +00002065 _Py_ForgetReference(op);
Guido van Rossum9776adf1994-09-07 14:36:45 +00002066 (*dealloc)(op);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002067}
2068
Tim Peters269b2a62003-04-17 19:52:29 +00002069/* Print all live objects. Because PyObject_Print is called, the
2070 * interpreter must be in a healthy state.
2071 */
Guido van Rossumaacdc9d1996-08-12 21:32:12 +00002072void
Fred Drake100814d2000-07-09 15:48:49 +00002073_Py_PrintReferences(FILE *fp)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002074{
Guido van Rossumc0b618a1997-05-02 03:12:38 +00002075 PyObject *op;
Guido van Rossume09fb551997-08-05 02:04:34 +00002076 fprintf(fp, "Remaining objects:\n");
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002077 for (op = refchain._ob_next; op != &refchain; op = op->_ob_next) {
Tim Peterscbd6f182006-04-11 19:12:33 +00002078 fprintf(fp, "%p [%" PY_FORMAT_SIZE_T "d] ", op, op->ob_refcnt);
Guido van Rossumc0b618a1997-05-02 03:12:38 +00002079 if (PyObject_Print(op, fp, 0) != 0)
2080 PyErr_Clear();
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002081 putc('\n', fp);
2082 }
2083}
2084
Tim Peters269b2a62003-04-17 19:52:29 +00002085/* Print the addresses of all live objects. Unlike _Py_PrintReferences, this
2086 * doesn't make any calls to the Python C API, so is always safe to call.
2087 */
2088void
2089_Py_PrintReferenceAddresses(FILE *fp)
2090{
2091 PyObject *op;
2092 fprintf(fp, "Remaining object addresses:\n");
2093 for (op = refchain._ob_next; op != &refchain; op = op->_ob_next)
Tim Peterscbd6f182006-04-11 19:12:33 +00002094 fprintf(fp, "%p [%" PY_FORMAT_SIZE_T "d] %s\n", op,
Christian Heimese93237d2007-12-19 02:37:44 +00002095 op->ob_refcnt, Py_TYPE(op)->tp_name);
Tim Peters269b2a62003-04-17 19:52:29 +00002096}
2097
Sjoerd Mullender6ec3c651995-08-29 09:18:14 +00002098PyObject *
Fred Drake100814d2000-07-09 15:48:49 +00002099_Py_GetObjects(PyObject *self, PyObject *args)
Sjoerd Mullender6ec3c651995-08-29 09:18:14 +00002100{
2101 int i, n;
2102 PyObject *t = NULL;
2103 PyObject *res, *op;
2104
2105 if (!PyArg_ParseTuple(args, "i|O", &n, &t))
2106 return NULL;
2107 op = refchain._ob_next;
2108 res = PyList_New(0);
2109 if (res == NULL)
2110 return NULL;
2111 for (i = 0; (n == 0 || i < n) && op != &refchain; i++) {
2112 while (op == self || op == args || op == res || op == t ||
Christian Heimese93237d2007-12-19 02:37:44 +00002113 (t != NULL && Py_TYPE(op) != (PyTypeObject *) t)) {
Sjoerd Mullender6ec3c651995-08-29 09:18:14 +00002114 op = op->_ob_next;
2115 if (op == &refchain)
2116 return res;
2117 }
2118 if (PyList_Append(res, op) < 0) {
2119 Py_DECREF(res);
2120 return NULL;
2121 }
2122 op = op->_ob_next;
2123 }
2124 return res;
2125}
2126
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002127#endif
Guido van Rossum97ead3f1996-01-12 01:24:09 +00002128
2129
2130/* Hack to force loading of cobject.o */
Guido van Rossumda9c2711996-12-05 21:58:58 +00002131PyTypeObject *_Py_cobject_hack = &PyCObject_Type;
Guido van Rossum84a90321996-05-22 16:34:47 +00002132
2133
2134/* Hack to force loading of abstract.o */
Martin v. Löwis18e16552006-02-15 17:27:45 +00002135Py_ssize_t (*_Py_abstract_hack)(PyObject *) = PyObject_Size;
Guido van Rossume09fb551997-08-05 02:04:34 +00002136
2137
Andrew M. Kuchling1582a3a2000-08-16 12:27:23 +00002138/* Python's malloc wrappers (see pymem.h) */
Guido van Rossume09fb551997-08-05 02:04:34 +00002139
Thomas Wouters334fb892000-07-25 12:56:38 +00002140void *
Fred Drake100814d2000-07-09 15:48:49 +00002141PyMem_Malloc(size_t nbytes)
Guido van Rossume09fb551997-08-05 02:04:34 +00002142{
Guido van Rossumb18618d2000-05-03 23:44:39 +00002143 return PyMem_MALLOC(nbytes);
Guido van Rossume09fb551997-08-05 02:04:34 +00002144}
2145
Thomas Wouters334fb892000-07-25 12:56:38 +00002146void *
2147PyMem_Realloc(void *p, size_t nbytes)
Guido van Rossume09fb551997-08-05 02:04:34 +00002148{
Tim Petersaf3e8de2002-04-12 07:22:56 +00002149 return PyMem_REALLOC(p, nbytes);
Guido van Rossume09fb551997-08-05 02:04:34 +00002150}
2151
2152void
Thomas Wouters334fb892000-07-25 12:56:38 +00002153PyMem_Free(void *p)
Guido van Rossume09fb551997-08-05 02:04:34 +00002154{
Guido van Rossumb18618d2000-05-03 23:44:39 +00002155 PyMem_FREE(p);
2156}
2157
2158
Guido van Rossum86610361998-04-10 22:32:46 +00002159/* These methods are used to control infinite recursion in repr, str, print,
2160 etc. Container objects that may recursively contain themselves,
2161 e.g. builtin dictionaries and lists, should used Py_ReprEnter() and
2162 Py_ReprLeave() to avoid infinite recursion.
2163
2164 Py_ReprEnter() returns 0 the first time it is called for a particular
2165 object and 1 every time thereafter. It returns -1 if an exception
2166 occurred. Py_ReprLeave() has no return value.
2167
2168 See dictobject.c and listobject.c for examples of use.
2169*/
2170
2171#define KEY "Py_Repr"
2172
2173int
Fred Drake100814d2000-07-09 15:48:49 +00002174Py_ReprEnter(PyObject *obj)
Guido van Rossum86610361998-04-10 22:32:46 +00002175{
2176 PyObject *dict;
2177 PyObject *list;
Martin v. Löwis18e16552006-02-15 17:27:45 +00002178 Py_ssize_t i;
Guido van Rossum86610361998-04-10 22:32:46 +00002179
2180 dict = PyThreadState_GetDict();
2181 if (dict == NULL)
Guido van Rossum0fc8f002003-04-15 15:12:39 +00002182 return 0;
Guido van Rossum86610361998-04-10 22:32:46 +00002183 list = PyDict_GetItemString(dict, KEY);
2184 if (list == NULL) {
2185 list = PyList_New(0);
2186 if (list == NULL)
2187 return -1;
2188 if (PyDict_SetItemString(dict, KEY, list) < 0)
2189 return -1;
2190 Py_DECREF(list);
2191 }
2192 i = PyList_GET_SIZE(list);
2193 while (--i >= 0) {
2194 if (PyList_GET_ITEM(list, i) == obj)
2195 return 1;
2196 }
2197 PyList_Append(list, obj);
2198 return 0;
2199}
2200
2201void
Fred Drake100814d2000-07-09 15:48:49 +00002202Py_ReprLeave(PyObject *obj)
Guido van Rossum86610361998-04-10 22:32:46 +00002203{
2204 PyObject *dict;
2205 PyObject *list;
Martin v. Löwis18e16552006-02-15 17:27:45 +00002206 Py_ssize_t i;
Guido van Rossum86610361998-04-10 22:32:46 +00002207
2208 dict = PyThreadState_GetDict();
Guido van Rossumeb909461998-04-11 15:17:34 +00002209 if (dict == NULL)
2210 return;
Guido van Rossum86610361998-04-10 22:32:46 +00002211 list = PyDict_GetItemString(dict, KEY);
Guido van Rossumeb909461998-04-11 15:17:34 +00002212 if (list == NULL || !PyList_Check(list))
2213 return;
Guido van Rossum86610361998-04-10 22:32:46 +00002214 i = PyList_GET_SIZE(list);
2215 /* Count backwards because we always expect obj to be list[-1] */
2216 while (--i >= 0) {
2217 if (PyList_GET_ITEM(list, i) == obj) {
2218 PyList_SetSlice(list, i, i + 1, NULL);
2219 break;
2220 }
2221 }
2222}
Guido van Rossumd724b232000-03-13 16:01:29 +00002223
Tim Peters803526b2002-07-07 05:13:56 +00002224/* Trashcan support. */
Guido van Rossumd724b232000-03-13 16:01:29 +00002225
Tim Peters803526b2002-07-07 05:13:56 +00002226/* Current call-stack depth of tp_dealloc calls. */
Guido van Rossumd724b232000-03-13 16:01:29 +00002227int _PyTrash_delete_nesting = 0;
Guido van Rossume92e6102000-04-24 15:40:53 +00002228
Tim Peters803526b2002-07-07 05:13:56 +00002229/* List of objects that still need to be cleaned up, singly linked via their
2230 * gc headers' gc_prev pointers.
2231 */
2232PyObject *_PyTrash_delete_later = NULL;
Guido van Rossumd724b232000-03-13 16:01:29 +00002233
Tim Peters803526b2002-07-07 05:13:56 +00002234/* Add op to the _PyTrash_delete_later list. Called when the current
2235 * call-stack depth gets large. op must be a currently untracked gc'ed
2236 * object, with refcount 0. Py_DECREF must already have been called on it.
2237 */
Guido van Rossumd724b232000-03-13 16:01:29 +00002238void
Fred Drake100814d2000-07-09 15:48:49 +00002239_PyTrash_deposit_object(PyObject *op)
Guido van Rossumd724b232000-03-13 16:01:29 +00002240{
Tim Peters803526b2002-07-07 05:13:56 +00002241 assert(PyObject_IS_GC(op));
2242 assert(_Py_AS_GC(op)->gc.gc_refs == _PyGC_REFS_UNTRACKED);
2243 assert(op->ob_refcnt == 0);
Neil Schemenauerf589c052002-03-29 03:05:54 +00002244 _Py_AS_GC(op)->gc.gc_prev = (PyGC_Head *)_PyTrash_delete_later;
Guido van Rossume92e6102000-04-24 15:40:53 +00002245 _PyTrash_delete_later = op;
Guido van Rossumd724b232000-03-13 16:01:29 +00002246}
2247
Tim Peters803526b2002-07-07 05:13:56 +00002248/* Dealloccate all the objects in the _PyTrash_delete_later list. Called when
2249 * the call-stack unwinds again.
2250 */
Guido van Rossumd724b232000-03-13 16:01:29 +00002251void
Fred Drake100814d2000-07-09 15:48:49 +00002252_PyTrash_destroy_chain(void)
Guido van Rossumd724b232000-03-13 16:01:29 +00002253{
2254 while (_PyTrash_delete_later) {
Tim Peters803526b2002-07-07 05:13:56 +00002255 PyObject *op = _PyTrash_delete_later;
Christian Heimese93237d2007-12-19 02:37:44 +00002256 destructor dealloc = Py_TYPE(op)->tp_dealloc;
Neil Schemenauerf589c052002-03-29 03:05:54 +00002257
Neil Schemenauerf589c052002-03-29 03:05:54 +00002258 _PyTrash_delete_later =
Tim Peters803526b2002-07-07 05:13:56 +00002259 (PyObject*) _Py_AS_GC(op)->gc.gc_prev;
Neil Schemenauerf589c052002-03-29 03:05:54 +00002260
Tim Peters803526b2002-07-07 05:13:56 +00002261 /* Call the deallocator directly. This used to try to
2262 * fool Py_DECREF into calling it indirectly, but
2263 * Py_DECREF was already called on this object, and in
2264 * assorted non-release builds calling Py_DECREF again ends
2265 * up distorting allocation statistics.
2266 */
2267 assert(op->ob_refcnt == 0);
Guido van Rossumd724b232000-03-13 16:01:29 +00002268 ++_PyTrash_delete_nesting;
Tim Peters803526b2002-07-07 05:13:56 +00002269 (*dealloc)(op);
Guido van Rossumd724b232000-03-13 16:01:29 +00002270 --_PyTrash_delete_nesting;
2271 }
2272}
Anthony Baxterac6bd462006-04-13 02:06:09 +00002273
2274#ifdef __cplusplus
2275}
2276#endif