blob: ff135741a5a244167ff3f86ac53555434df1e333 [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
Thomas Wouters49fd7fa2006-04-21 10:40:58 +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;
Thomas Wouters49fd7fa2006-04-21 10:40:58 +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;
Guido van Rossum393661d2001-08-31 17:40:15 +000032
Guido van Rossum3f5da241990-12-20 15:06:42 +000033/* Object allocation routines used by NEWOBJ and NEWVAROBJ macros.
34 These are used by the individual routines for object creation.
35 Do not call them otherwise, they do not initialize the object! */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000036
Tim Peters78be7992003-03-23 02:51:01 +000037#ifdef Py_TRACE_REFS
Tim Peters7571a0f2003-03-23 17:52:28 +000038/* Head of circular doubly-linked list of all objects. These are linked
39 * together via the _ob_prev and _ob_next members of a PyObject, which
40 * exist only in a Py_TRACE_REFS build.
41 */
Tim Peters78be7992003-03-23 02:51:01 +000042static PyObject refchain = {&refchain, &refchain};
Tim Peters36eb4df2003-03-23 03:33:13 +000043
Tim Peters7571a0f2003-03-23 17:52:28 +000044/* Insert op at the front of the list of all objects. If force is true,
45 * op is added even if _ob_prev and _ob_next are non-NULL already. If
46 * force is false amd _ob_prev or _ob_next are non-NULL, do nothing.
47 * force should be true if and only if op points to freshly allocated,
48 * uninitialized memory, or you've unlinked op from the list and are
Tim Peters51f8d382003-03-23 18:06:08 +000049 * relinking it into the front.
Tim Peters7571a0f2003-03-23 17:52:28 +000050 * Note that objects are normally added to the list via _Py_NewReference,
51 * which is called by PyObject_Init. Not all objects are initialized that
52 * way, though; exceptions include statically allocated type objects, and
53 * statically allocated singletons (like Py_True and Py_None).
54 */
Tim Peters36eb4df2003-03-23 03:33:13 +000055void
Tim Peters7571a0f2003-03-23 17:52:28 +000056_Py_AddToAllObjects(PyObject *op, int force)
Tim Peters36eb4df2003-03-23 03:33:13 +000057{
Tim Peters7571a0f2003-03-23 17:52:28 +000058#ifdef Py_DEBUG
59 if (!force) {
60 /* If it's initialized memory, op must be in or out of
61 * the list unambiguously.
62 */
63 assert((op->_ob_prev == NULL) == (op->_ob_next == NULL));
64 }
Tim Peters78be7992003-03-23 02:51:01 +000065#endif
Tim Peters7571a0f2003-03-23 17:52:28 +000066 if (force || op->_ob_prev == NULL) {
67 op->_ob_next = refchain._ob_next;
68 op->_ob_prev = &refchain;
69 refchain._ob_next->_ob_prev = op;
70 refchain._ob_next = op;
71 }
72}
73#endif /* Py_TRACE_REFS */
Tim Peters78be7992003-03-23 02:51:01 +000074
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +000075#ifdef COUNT_ALLOCS
Guido van Rossumc0b618a1997-05-02 03:12:38 +000076static PyTypeObject *type_list;
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000077/* All types are added to type_list, at least when
78 they get one object created. That makes them
79 immortal, which unfortunately contributes to
80 garbage itself. If unlist_types_without_objects
81 is set, they will be removed from the type_list
82 once the last object is deallocated. */
83int unlist_types_without_objects;
Sjoerd Mullender842d2cc1993-10-15 16:18:48 +000084extern int tuple_zero_allocs, fast_tuple_allocs;
85extern int quick_int_allocs, quick_neg_int_allocs;
Sjoerd Mullender3bb8a051993-10-22 12:04:32 +000086extern int null_strings, one_strings;
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +000087void
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000088dump_counts(FILE* f)
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +000089{
Guido van Rossumc0b618a1997-05-02 03:12:38 +000090 PyTypeObject *tp;
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +000091
92 for (tp = type_list; tp; tp = tp->tp_next)
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000093 fprintf(f, "%s alloc'd: %d, freed: %d, max in use: %d\n",
Tim Peters6d6c1a32001-08-02 04:15:00 +000094 tp->tp_name, tp->tp_allocs, tp->tp_frees,
Sjoerd Mullender52c1f511993-10-25 08:40:52 +000095 tp->tp_maxalloc);
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000096 fprintf(f, "fast tuple allocs: %d, empty: %d\n",
Sjoerd Mullender52c1f511993-10-25 08:40:52 +000097 fast_tuple_allocs, tuple_zero_allocs);
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000098 fprintf(f, "fast int allocs: pos: %d, neg: %d\n",
Sjoerd Mullender52c1f511993-10-25 08:40:52 +000099 quick_int_allocs, quick_neg_int_allocs);
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000100 fprintf(f, "null strings: %d, 1-strings: %d\n",
Sjoerd Mullender52c1f511993-10-25 08:40:52 +0000101 null_strings, one_strings);
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +0000102}
103
Sjoerd Mullender6ec3c651995-08-29 09:18:14 +0000104PyObject *
Fred Drake100814d2000-07-09 15:48:49 +0000105get_counts(void)
Sjoerd Mullender6ec3c651995-08-29 09:18:14 +0000106{
107 PyTypeObject *tp;
108 PyObject *result;
109 PyObject *v;
110
111 result = PyList_New(0);
112 if (result == NULL)
113 return NULL;
114 for (tp = type_list; tp; tp = tp->tp_next) {
Thomas Wouters4d70c3d2006-06-08 14:42:34 +0000115 v = Py_BuildValue("(snnn)", tp->tp_name, tp->tp_allocs,
Tim Peters6d6c1a32001-08-02 04:15:00 +0000116 tp->tp_frees, tp->tp_maxalloc);
Sjoerd Mullender6ec3c651995-08-29 09:18:14 +0000117 if (v == NULL) {
118 Py_DECREF(result);
119 return NULL;
120 }
121 if (PyList_Append(result, v) < 0) {
122 Py_DECREF(v);
123 Py_DECREF(result);
124 return NULL;
125 }
126 Py_DECREF(v);
127 }
128 return result;
129}
130
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +0000131void
Fred Drake100814d2000-07-09 15:48:49 +0000132inc_count(PyTypeObject *tp)
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +0000133{
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000134 if (tp->tp_next == NULL && tp->tp_prev == NULL) {
Guido van Rossumd8953cb1995-04-06 14:46:26 +0000135 /* first time; insert in linked list */
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +0000136 if (tp->tp_next != NULL) /* sanity check */
Guido van Rossumc0b618a1997-05-02 03:12:38 +0000137 Py_FatalError("XXX inc_count sanity check");
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000138 if (type_list)
139 type_list->tp_prev = tp;
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +0000140 tp->tp_next = type_list;
Tim Petersc6a3ff62002-07-08 22:11:52 +0000141 /* Note that as of Python 2.2, heap-allocated type objects
142 * can go away, but this code requires that they stay alive
143 * until program exit. That's why we're careful with
144 * refcounts here. type_list gets a new reference to tp,
145 * while ownership of the reference type_list used to hold
146 * (if any) was transferred to tp->tp_next in the line above.
147 * tp is thus effectively immortal after this.
148 */
149 Py_INCREF(tp);
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +0000150 type_list = tp;
Tim Peters3e40c7f2003-03-23 03:04:32 +0000151#ifdef Py_TRACE_REFS
Tim Peters7571a0f2003-03-23 17:52:28 +0000152 /* Also insert in the doubly-linked list of all objects,
153 * if not already there.
154 */
155 _Py_AddToAllObjects((PyObject *)tp, 0);
Tim Peters78be7992003-03-23 02:51:01 +0000156#endif
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +0000157 }
Tim Peters6d6c1a32001-08-02 04:15:00 +0000158 tp->tp_allocs++;
159 if (tp->tp_allocs - tp->tp_frees > tp->tp_maxalloc)
160 tp->tp_maxalloc = tp->tp_allocs - tp->tp_frees;
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +0000161}
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000162
163void dec_count(PyTypeObject *tp)
164{
165 tp->tp_frees++;
166 if (unlist_types_without_objects &&
167 tp->tp_allocs == tp->tp_frees) {
168 /* unlink the type from type_list */
169 if (tp->tp_prev)
170 tp->tp_prev->tp_next = tp->tp_next;
171 else
172 type_list = tp->tp_next;
173 if (tp->tp_next)
174 tp->tp_next->tp_prev = tp->tp_prev;
175 tp->tp_next = tp->tp_prev = NULL;
176 Py_DECREF(tp);
177 }
178}
179
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +0000180#endif
181
Tim Peters7c321a82002-07-09 02:57:01 +0000182#ifdef Py_REF_DEBUG
183/* Log a fatal error; doesn't return. */
184void
185_Py_NegativeRefcount(const char *fname, int lineno, PyObject *op)
186{
187 char buf[300];
188
189 PyOS_snprintf(buf, sizeof(buf),
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000190 "%s:%i object at %p has negative ref count "
191 "%" PY_FORMAT_SIZE_T "d",
192 fname, lineno, op, op->ob_refcnt);
Tim Peters7c321a82002-07-09 02:57:01 +0000193 Py_FatalError(buf);
194}
195
196#endif /* Py_REF_DEBUG */
197
Thomas Heller1328b522004-04-22 17:23:49 +0000198void
199Py_IncRef(PyObject *o)
200{
201 Py_XINCREF(o);
202}
203
204void
205Py_DecRef(PyObject *o)
206{
207 Py_XDECREF(o);
208}
209
Guido van Rossumc0b618a1997-05-02 03:12:38 +0000210PyObject *
Fred Drake100814d2000-07-09 15:48:49 +0000211PyObject_Init(PyObject *op, PyTypeObject *tp)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000212{
Guido van Rossum6e08c142002-10-11 20:37:24 +0000213 if (op == NULL)
214 return PyErr_NoMemory();
Guido van Rossumb18618d2000-05-03 23:44:39 +0000215 /* Any changes should be reflected in PyObject_INIT (objimpl.h) */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000216 op->ob_type = tp;
Guido van Rossumc0b618a1997-05-02 03:12:38 +0000217 _Py_NewReference(op);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000218 return op;
219}
220
Guido van Rossumb18618d2000-05-03 23:44:39 +0000221PyVarObject *
Martin v. Löwis18e16552006-02-15 17:27:45 +0000222PyObject_InitVar(PyVarObject *op, PyTypeObject *tp, Py_ssize_t size)
Guido van Rossumb18618d2000-05-03 23:44:39 +0000223{
Guido van Rossum6e08c142002-10-11 20:37:24 +0000224 if (op == NULL)
225 return (PyVarObject *) PyErr_NoMemory();
Guido van Rossumb18618d2000-05-03 23:44:39 +0000226 /* Any changes should be reflected in PyObject_INIT_VAR */
227 op->ob_size = size;
228 op->ob_type = tp;
229 _Py_NewReference((PyObject *)op);
230 return op;
231}
232
233PyObject *
Fred Drake100814d2000-07-09 15:48:49 +0000234_PyObject_New(PyTypeObject *tp)
Guido van Rossumb18618d2000-05-03 23:44:39 +0000235{
236 PyObject *op;
237 op = (PyObject *) PyObject_MALLOC(_PyObject_SIZE(tp));
238 if (op == NULL)
239 return PyErr_NoMemory();
240 return PyObject_INIT(op, tp);
241}
242
Guido van Rossumd0c87ee1997-05-15 21:31:03 +0000243PyVarObject *
Martin v. Löwis18e16552006-02-15 17:27:45 +0000244_PyObject_NewVar(PyTypeObject *tp, Py_ssize_t nitems)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000245{
Guido van Rossumb18618d2000-05-03 23:44:39 +0000246 PyVarObject *op;
Tim Petersf2a67da2001-10-07 03:54:51 +0000247 const size_t size = _PyObject_VAR_SIZE(tp, nitems);
Tim Peters6d483d32001-10-06 21:27:34 +0000248 op = (PyVarObject *) PyObject_MALLOC(size);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000249 if (op == NULL)
Guido van Rossumd0c87ee1997-05-15 21:31:03 +0000250 return (PyVarObject *)PyErr_NoMemory();
Tim Peters6d483d32001-10-06 21:27:34 +0000251 return PyObject_INIT_VAR(op, tp, nitems);
Guido van Rossumb18618d2000-05-03 23:44:39 +0000252}
253
Neil Schemenauerbdf0eed2002-04-12 03:08:42 +0000254/* for binary compatibility with 2.2 */
255#undef _PyObject_Del
Guido van Rossumb18618d2000-05-03 23:44:39 +0000256void
Fred Drake100814d2000-07-09 15:48:49 +0000257_PyObject_Del(PyObject *op)
Guido van Rossumb18618d2000-05-03 23:44:39 +0000258{
Guido van Rossum4cc6ac72000-07-01 01:00:38 +0000259 PyObject_FREE(op);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000260}
261
Neal Norwitz1a997502003-01-13 20:13:12 +0000262/* Implementation of PyObject_Print with recursion checking */
263static int
264internal_print(PyObject *op, FILE *fp, int flags, int nesting)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000265{
Guido van Rossum278ef591991-07-27 21:40:24 +0000266 int ret = 0;
Neal Norwitz1a997502003-01-13 20:13:12 +0000267 if (nesting > 10) {
268 PyErr_SetString(PyExc_RuntimeError, "print recursion");
269 return -1;
270 }
Guido van Rossumc0b618a1997-05-02 03:12:38 +0000271 if (PyErr_CheckSignals())
Guido van Rossum90933611991-06-07 16:10:43 +0000272 return -1;
Guido van Rossum9b00dfa1998-04-28 16:06:54 +0000273#ifdef USE_STACKCHECK
274 if (PyOS_CheckStack()) {
Fred Drake661ea262000-10-24 19:57:45 +0000275 PyErr_SetString(PyExc_MemoryError, "stack overflow");
Guido van Rossum9b00dfa1998-04-28 16:06:54 +0000276 return -1;
277 }
278#endif
Guido van Rossum687ef6e2000-01-12 16:28:58 +0000279 clearerr(fp); /* Clear any previous error condition */
Guido van Rossum90933611991-06-07 16:10:43 +0000280 if (op == NULL) {
281 fprintf(fp, "<nil>");
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000282 }
Guido van Rossum90933611991-06-07 16:10:43 +0000283 else {
284 if (op->ob_refcnt <= 0)
Thomas Wouters8b87a0b2006-03-01 05:41:20 +0000285 /* XXX(twouters) cast refcount to long until %zd is
286 universally available */
287 fprintf(fp, "<refcnt %ld at %p>",
288 (long)op->ob_refcnt, op);
Guido van Rossum2e8f6141992-09-03 20:32:55 +0000289 else if (op->ob_type->tp_print == NULL) {
Guido van Rossum4f288ab2001-05-01 16:53:37 +0000290 PyObject *s;
291 if (flags & Py_PRINT_RAW)
292 s = PyObject_Str(op);
293 else
294 s = PyObject_Repr(op);
295 if (s == NULL)
296 ret = -1;
Guido van Rossum2e8f6141992-09-03 20:32:55 +0000297 else {
Neal Norwitz1a997502003-01-13 20:13:12 +0000298 ret = internal_print(s, fp, Py_PRINT_RAW,
299 nesting+1);
Guido van Rossum2e8f6141992-09-03 20:32:55 +0000300 }
Guido van Rossum4f288ab2001-05-01 16:53:37 +0000301 Py_XDECREF(s);
Guido van Rossum2e8f6141992-09-03 20:32:55 +0000302 }
Guido van Rossum90933611991-06-07 16:10:43 +0000303 else
Guido van Rossum278ef591991-07-27 21:40:24 +0000304 ret = (*op->ob_type->tp_print)(op, fp, flags);
Guido van Rossum90933611991-06-07 16:10:43 +0000305 }
Guido van Rossum278ef591991-07-27 21:40:24 +0000306 if (ret == 0) {
307 if (ferror(fp)) {
Guido van Rossumc0b618a1997-05-02 03:12:38 +0000308 PyErr_SetFromErrno(PyExc_IOError);
Guido van Rossum278ef591991-07-27 21:40:24 +0000309 clearerr(fp);
310 ret = -1;
311 }
312 }
313 return ret;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000314}
315
Neal Norwitz1a997502003-01-13 20:13:12 +0000316int
317PyObject_Print(PyObject *op, FILE *fp, int flags)
318{
319 return internal_print(op, fp, flags, 0);
320}
321
322
Barry Warsaw9bf16442001-01-23 16:24:35 +0000323/* For debugging convenience. See Misc/gdbinit for some useful gdb hooks */
Tim Peters803526b2002-07-07 05:13:56 +0000324void _PyObject_Dump(PyObject* op)
Barry Warsaw9bf16442001-01-23 16:24:35 +0000325{
Barry Warsaweefb1072001-02-22 22:39:18 +0000326 if (op == NULL)
327 fprintf(stderr, "NULL\n");
328 else {
Guido van Rossum5f5512d2001-09-14 15:50:08 +0000329 fprintf(stderr, "object : ");
Barry Warsaweefb1072001-02-22 22:39:18 +0000330 (void)PyObject_Print(op, stderr, 0);
Thomas Wouters8b87a0b2006-03-01 05:41:20 +0000331 /* XXX(twouters) cast refcount to long until %zd is
332 universally available */
Guido van Rossum5f5512d2001-09-14 15:50:08 +0000333 fprintf(stderr, "\n"
334 "type : %s\n"
Thomas Wouters8b87a0b2006-03-01 05:41:20 +0000335 "refcount: %ld\n"
Guido van Rossum5f5512d2001-09-14 15:50:08 +0000336 "address : %p\n",
337 op->ob_type==NULL ? "NULL" : op->ob_type->tp_name,
Thomas Wouters8b87a0b2006-03-01 05:41:20 +0000338 (long)op->ob_refcnt,
Guido van Rossum5f5512d2001-09-14 15:50:08 +0000339 op);
Barry Warsaweefb1072001-02-22 22:39:18 +0000340 }
Barry Warsaw9bf16442001-01-23 16:24:35 +0000341}
Barry Warsaw903138f2001-01-23 16:33:18 +0000342
Guido van Rossumc0b618a1997-05-02 03:12:38 +0000343PyObject *
Fred Drake100814d2000-07-09 15:48:49 +0000344PyObject_Repr(PyObject *v)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000345{
Guido van Rossumc0b618a1997-05-02 03:12:38 +0000346 if (PyErr_CheckSignals())
Guido van Rossum90933611991-06-07 16:10:43 +0000347 return NULL;
Guido van Rossum9b00dfa1998-04-28 16:06:54 +0000348#ifdef USE_STACKCHECK
349 if (PyOS_CheckStack()) {
Fred Drake661ea262000-10-24 19:57:45 +0000350 PyErr_SetString(PyExc_MemoryError, "stack overflow");
Guido van Rossum9b00dfa1998-04-28 16:06:54 +0000351 return NULL;
352 }
353#endif
Guido van Rossum90933611991-06-07 16:10:43 +0000354 if (v == NULL)
Guido van Rossumc0b618a1997-05-02 03:12:38 +0000355 return PyString_FromString("<NULL>");
Barry Warsaw7ce36942001-08-24 18:34:26 +0000356 else if (v->ob_type->tp_repr == NULL)
Guido van Rossum21922aa2001-08-30 20:26:05 +0000357 return PyString_FromFormat("<%s object at %p>",
Barry Warsaw7ce36942001-08-24 18:34:26 +0000358 v->ob_type->tp_name, v);
Guido van Rossum4c08d552000-03-10 22:55:18 +0000359 else {
360 PyObject *res;
361 res = (*v->ob_type->tp_repr)(v);
362 if (res == NULL)
363 return NULL;
Martin v. Löwis339d0f72001-08-17 18:39:25 +0000364#ifdef Py_USING_UNICODE
Fredrik Lundhefecc7d2000-07-01 14:31:09 +0000365 if (PyUnicode_Check(res)) {
366 PyObject* str;
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000367 str = PyUnicode_AsEncodedString(res, NULL, NULL);
Marc-André Lemburg891bc652000-07-03 09:57:53 +0000368 Py_DECREF(res);
369 if (str)
Fredrik Lundhefecc7d2000-07-01 14:31:09 +0000370 res = str;
Marc-André Lemburg891bc652000-07-03 09:57:53 +0000371 else
372 return NULL;
Fredrik Lundhefecc7d2000-07-01 14:31:09 +0000373 }
Martin v. Löwis339d0f72001-08-17 18:39:25 +0000374#endif
Guido van Rossum4c08d552000-03-10 22:55:18 +0000375 if (!PyString_Check(res)) {
376 PyErr_Format(PyExc_TypeError,
Guido van Rossum5db862d2000-04-10 12:46:51 +0000377 "__repr__ returned non-string (type %.200s)",
Guido van Rossum4c08d552000-03-10 22:55:18 +0000378 res->ob_type->tp_name);
379 Py_DECREF(res);
380 return NULL;
381 }
382 return res;
383 }
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000384}
385
Guido van Rossumc0b618a1997-05-02 03:12:38 +0000386PyObject *
Neil Schemenauercf52c072005-08-12 17:34:58 +0000387_PyObject_Str(PyObject *v)
Guido van Rossumc6004111993-11-05 10:22:19 +0000388{
Guido van Rossum4c08d552000-03-10 22:55:18 +0000389 PyObject *res;
Neil Schemenauercf52c072005-08-12 17:34:58 +0000390 int type_ok;
Guido van Rossumc6004111993-11-05 10:22:19 +0000391 if (v == NULL)
Guido van Rossumc0b618a1997-05-02 03:12:38 +0000392 return PyString_FromString("<NULL>");
Tim Peters5a49ade2001-09-11 01:41:59 +0000393 if (PyString_CheckExact(v)) {
Guido van Rossumc0b618a1997-05-02 03:12:38 +0000394 Py_INCREF(v);
Guido van Rossumc6004111993-11-05 10:22:19 +0000395 return v;
396 }
Neil Schemenauercf52c072005-08-12 17:34:58 +0000397#ifdef Py_USING_UNICODE
398 if (PyUnicode_CheckExact(v)) {
399 Py_INCREF(v);
400 return v;
401 }
402#endif
Guido van Rossum4f288ab2001-05-01 16:53:37 +0000403 if (v->ob_type->tp_str == NULL)
404 return PyObject_Repr(v);
405
406 res = (*v->ob_type->tp_str)(v);
Guido van Rossum4c08d552000-03-10 22:55:18 +0000407 if (res == NULL)
408 return NULL;
Neil Schemenauercf52c072005-08-12 17:34:58 +0000409 type_ok = PyString_Check(res);
410#ifdef Py_USING_UNICODE
411 type_ok = type_ok || PyUnicode_Check(res);
412#endif
413 if (!type_ok) {
414 PyErr_Format(PyExc_TypeError,
415 "__str__ returned non-string (type %.200s)",
416 res->ob_type->tp_name);
417 Py_DECREF(res);
418 return NULL;
419 }
420 return res;
421}
422
423PyObject *
424PyObject_Str(PyObject *v)
425{
426 PyObject *res = _PyObject_Str(v);
427 if (res == NULL)
428 return NULL;
Martin v. Löwis339d0f72001-08-17 18:39:25 +0000429#ifdef Py_USING_UNICODE
Marc-André Lemburg891bc652000-07-03 09:57:53 +0000430 if (PyUnicode_Check(res)) {
431 PyObject* str;
432 str = PyUnicode_AsEncodedString(res, NULL, NULL);
433 Py_DECREF(res);
434 if (str)
435 res = str;
436 else
437 return NULL;
438 }
Martin v. Löwis339d0f72001-08-17 18:39:25 +0000439#endif
Neil Schemenauercf52c072005-08-12 17:34:58 +0000440 assert(PyString_Check(res));
Guido van Rossum4c08d552000-03-10 22:55:18 +0000441 return res;
Guido van Rossumc6004111993-11-05 10:22:19 +0000442}
443
Martin v. Löwis339d0f72001-08-17 18:39:25 +0000444#ifdef Py_USING_UNICODE
Guido van Rossuma3af41d2001-01-18 22:07:06 +0000445PyObject *
446PyObject_Unicode(PyObject *v)
447{
448 PyObject *res;
Brett Cannonc3647ac2005-04-26 03:45:26 +0000449 PyObject *func;
Neal Norwitz75801462006-03-14 06:02:16 +0000450 PyObject *str;
Brett Cannonc3647ac2005-04-26 03:45:26 +0000451 static PyObject *unicodestr;
Tim Peters803526b2002-07-07 05:13:56 +0000452
Georg Brandl3daf7582006-03-13 22:22:11 +0000453 if (v == NULL) {
Guido van Rossuma3af41d2001-01-18 22:07:06 +0000454 res = PyString_FromString("<NULL>");
Neal Norwitz75801462006-03-14 06:02:16 +0000455 if (res == NULL)
456 return NULL;
457 str = PyUnicode_FromEncodedObject(res, NULL, "strict");
458 Py_DECREF(res);
459 return str;
Georg Brandl3daf7582006-03-13 22:22:11 +0000460 } else if (PyUnicode_CheckExact(v)) {
Guido van Rossuma3af41d2001-01-18 22:07:06 +0000461 Py_INCREF(v);
462 return v;
463 }
Brett Cannonc3647ac2005-04-26 03:45:26 +0000464 /* XXX As soon as we have a tp_unicode slot, we should
465 check this before trying the __unicode__
466 method. */
467 if (unicodestr == NULL) {
468 unicodestr= PyString_InternFromString("__unicode__");
469 if (unicodestr == NULL)
470 return NULL;
Guido van Rossumb8c65bc2001-10-19 02:01:31 +0000471 }
Brett Cannonc3647ac2005-04-26 03:45:26 +0000472 func = PyObject_GetAttr(v, unicodestr);
473 if (func != NULL) {
474 res = PyEval_CallObject(func, (PyObject *)NULL);
475 Py_DECREF(func);
476 }
Guido van Rossuma3af41d2001-01-18 22:07:06 +0000477 else {
Brett Cannonc3647ac2005-04-26 03:45:26 +0000478 PyErr_Clear();
479 if (PyUnicode_Check(v)) {
480 /* For a Unicode subtype that's didn't overwrite __unicode__,
481 return a true Unicode object with the same data. */
482 return PyUnicode_FromUnicode(PyUnicode_AS_UNICODE(v),
483 PyUnicode_GET_SIZE(v));
Guido van Rossuma3af41d2001-01-18 22:07:06 +0000484 }
Brett Cannonc3647ac2005-04-26 03:45:26 +0000485 if (PyString_CheckExact(v)) {
486 Py_INCREF(v);
487 res = v;
Guido van Rossuma3af41d2001-01-18 22:07:06 +0000488 }
Guido van Rossumb8c65bc2001-10-19 02:01:31 +0000489 else {
Guido van Rossumb8c65bc2001-10-19 02:01:31 +0000490 if (v->ob_type->tp_str != NULL)
491 res = (*v->ob_type->tp_str)(v);
492 else
493 res = PyObject_Repr(v);
494 }
Guido van Rossuma3af41d2001-01-18 22:07:06 +0000495 }
496 if (res == NULL)
497 return NULL;
498 if (!PyUnicode_Check(res)) {
Guido van Rossumb8c65bc2001-10-19 02:01:31 +0000499 str = PyUnicode_FromEncodedObject(res, NULL, "strict");
Guido van Rossuma3af41d2001-01-18 22:07:06 +0000500 Py_DECREF(res);
Neal Norwitz75801462006-03-14 06:02:16 +0000501 res = str;
Guido van Rossuma3af41d2001-01-18 22:07:06 +0000502 }
503 return res;
504}
Martin v. Löwis339d0f72001-08-17 18:39:25 +0000505#endif
Guido van Rossuma3af41d2001-01-18 22:07:06 +0000506
507
Guido van Rossuma4073002002-05-31 20:03:54 +0000508/* Helper to warn about deprecated tp_compare return values. Return:
509 -2 for an exception;
510 -1 if v < w;
511 0 if v == w;
512 1 if v > w.
513 (This function cannot return 2.)
514*/
515static int
516adjust_tp_compare(int c)
517{
518 if (PyErr_Occurred()) {
519 if (c != -1 && c != -2) {
520 PyObject *t, *v, *tb;
521 PyErr_Fetch(&t, &v, &tb);
522 if (PyErr_Warn(PyExc_RuntimeWarning,
523 "tp_compare didn't return -1 or -2 "
524 "for exception") < 0) {
525 Py_XDECREF(t);
526 Py_XDECREF(v);
527 Py_XDECREF(tb);
528 }
529 else
530 PyErr_Restore(t, v, tb);
531 }
532 return -2;
533 }
534 else if (c < -1 || c > 1) {
535 if (PyErr_Warn(PyExc_RuntimeWarning,
536 "tp_compare didn't return -1, 0 or 1") < 0)
537 return -2;
538 else
539 return c < -1 ? -1 : 1;
540 }
541 else {
542 assert(c >= -1 && c <= 1);
543 return c;
544 }
545}
546
547
Guido van Rossumd1f06b92001-01-24 22:14:43 +0000548/* Macro to get the tp_richcompare field of a type if defined */
Guido van Rossum3cf5b1e2006-07-27 21:53:35 +0000549#define RICHCOMPARE(t) ((t)->tp_richcompare)
Guido van Rossumd1f06b92001-01-24 22:14:43 +0000550
Guido van Rossume797ec12001-01-17 15:24:28 +0000551/* Map rich comparison operators to their swapped version, e.g. LT --> GT */
Brett Cannona5ca2e72004-09-25 01:37:24 +0000552int _Py_SwappedOp[] = {Py_GT, Py_GE, Py_EQ, Py_NE, Py_LT, Py_LE};
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +0000553
Guido van Rossume797ec12001-01-17 15:24:28 +0000554/* Try a genuine rich comparison, returning an object. Return:
555 NULL for exception;
556 NotImplemented if this particular rich comparison is not implemented or
557 undefined;
558 some object not equal to NotImplemented if it is implemented
559 (this latter object may not be a Boolean).
560*/
561static PyObject *
562try_rich_compare(PyObject *v, PyObject *w, int op)
563{
564 richcmpfunc f;
565 PyObject *res;
566
Guido van Rossum2ed6bf82001-09-27 20:30:07 +0000567 if (v->ob_type != w->ob_type &&
568 PyType_IsSubtype(w->ob_type, v->ob_type) &&
569 (f = RICHCOMPARE(w->ob_type)) != NULL) {
Tim Petersf4aca752004-09-23 02:39:37 +0000570 res = (*f)(w, v, _Py_SwappedOp[op]);
Guido van Rossum2ed6bf82001-09-27 20:30:07 +0000571 if (res != Py_NotImplemented)
572 return res;
573 Py_DECREF(res);
574 }
Guido van Rossumd1f06b92001-01-24 22:14:43 +0000575 if ((f = RICHCOMPARE(v->ob_type)) != NULL) {
Guido van Rossume797ec12001-01-17 15:24:28 +0000576 res = (*f)(v, w, op);
577 if (res != Py_NotImplemented)
578 return res;
579 Py_DECREF(res);
580 }
Guido van Rossumd1f06b92001-01-24 22:14:43 +0000581 if ((f = RICHCOMPARE(w->ob_type)) != NULL) {
Tim Petersf4aca752004-09-23 02:39:37 +0000582 return (*f)(w, v, _Py_SwappedOp[op]);
Guido van Rossume797ec12001-01-17 15:24:28 +0000583 }
584 res = Py_NotImplemented;
585 Py_INCREF(res);
586 return res;
587}
588
589/* Try a genuine rich comparison, returning an int. Return:
590 -1 for exception (including the case where try_rich_compare() returns an
591 object that's not a Boolean);
Tim Petersc99213f2001-11-04 05:57:16 +0000592 0 if the outcome is false;
593 1 if the outcome is true;
594 2 if this particular rich comparison is not implemented or undefined.
Guido van Rossume797ec12001-01-17 15:24:28 +0000595*/
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +0000596static int
Guido van Rossume797ec12001-01-17 15:24:28 +0000597try_rich_compare_bool(PyObject *v, PyObject *w, int op)
598{
599 PyObject *res;
600 int ok;
601
Guido van Rossumd1f06b92001-01-24 22:14:43 +0000602 if (RICHCOMPARE(v->ob_type) == NULL && RICHCOMPARE(w->ob_type) == NULL)
Guido van Rossume797ec12001-01-17 15:24:28 +0000603 return 2; /* Shortcut, avoid INCREF+DECREF */
604 res = try_rich_compare(v, w, op);
605 if (res == NULL)
606 return -1;
607 if (res == Py_NotImplemented) {
608 Py_DECREF(res);
609 return 2;
610 }
611 ok = PyObject_IsTrue(res);
612 Py_DECREF(res);
613 return ok;
614}
615
616/* Try rich comparisons to determine a 3-way comparison. Return:
617 -2 for an exception;
Tim Petersc99213f2001-11-04 05:57:16 +0000618 -1 if v < w;
619 0 if v == w;
620 1 if v > w;
621 2 if this particular rich comparison is not implemented or undefined.
Guido van Rossume797ec12001-01-17 15:24:28 +0000622*/
623static int
624try_rich_to_3way_compare(PyObject *v, PyObject *w)
625{
Guido van Rossum2ffbf6b2001-01-17 21:27:02 +0000626 static struct { int op; int outcome; } tries[3] = {
627 /* Try this operator, and if it is true, use this outcome: */
628 {Py_EQ, 0},
629 {Py_LT, -1},
630 {Py_GT, 1},
631 };
632 int i;
633
Guido van Rossumd1f06b92001-01-24 22:14:43 +0000634 if (RICHCOMPARE(v->ob_type) == NULL && RICHCOMPARE(w->ob_type) == NULL)
Guido van Rossume797ec12001-01-17 15:24:28 +0000635 return 2; /* Shortcut */
Guido van Rossum2ffbf6b2001-01-17 21:27:02 +0000636
637 for (i = 0; i < 3; i++) {
638 switch (try_rich_compare_bool(v, w, tries[i].op)) {
639 case -1:
Tim Peters6d60b2e2001-05-07 20:53:51 +0000640 return -2;
Guido van Rossum2ffbf6b2001-01-17 21:27:02 +0000641 case 1:
642 return tries[i].outcome;
643 }
Guido van Rossume797ec12001-01-17 15:24:28 +0000644 }
Guido van Rossum2ffbf6b2001-01-17 21:27:02 +0000645
646 return 2;
Guido van Rossume797ec12001-01-17 15:24:28 +0000647}
648
649/* Try a 3-way comparison, returning an int. 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 3-way comparison is not implemented or undefined.
Guido van Rossume797ec12001-01-17 15:24:28 +0000655*/
656static int
657try_3way_compare(PyObject *v, PyObject *w)
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +0000658{
659 int c;
Guido van Rossume797ec12001-01-17 15:24:28 +0000660 cmpfunc f;
661
662 /* Comparisons involving instances are given to instance_compare,
663 which has the same return conventions as this function. */
664
Guido van Rossumab3b0342001-09-18 20:38:53 +0000665 f = v->ob_type->tp_compare;
Guido van Rossume797ec12001-01-17 15:24:28 +0000666 if (PyInstance_Check(v))
Guido van Rossumab3b0342001-09-18 20:38:53 +0000667 return (*f)(v, w);
Guido van Rossume797ec12001-01-17 15:24:28 +0000668 if (PyInstance_Check(w))
669 return (*w->ob_type->tp_compare)(v, w);
670
Guido van Rossumab3b0342001-09-18 20:38:53 +0000671 /* If both have the same (non-NULL) tp_compare, use it. */
672 if (f != NULL && f == w->ob_type->tp_compare) {
673 c = (*f)(v, w);
Guido van Rossuma4073002002-05-31 20:03:54 +0000674 return adjust_tp_compare(c);
Guido van Rossumab3b0342001-09-18 20:38:53 +0000675 }
676
677 /* If either tp_compare is _PyObject_SlotCompare, that's safe. */
678 if (f == _PyObject_SlotCompare ||
679 w->ob_type->tp_compare == _PyObject_SlotCompare)
680 return _PyObject_SlotCompare(v, w);
681
Armin Rigoa1748132004-12-23 22:13:13 +0000682 /* If we're here, v and w,
683 a) are not instances;
684 b) have different types or a type without tp_compare; and
685 c) don't have a user-defined tp_compare.
686 tp_compare implementations in C assume that both arguments
687 have their type, so we give up if the coercion fails or if
688 it yields types which are still incompatible (which can
689 happen with a user-defined nb_coerce).
690 */
Guido van Rossume797ec12001-01-17 15:24:28 +0000691 c = PyNumber_CoerceEx(&v, &w);
692 if (c < 0)
693 return -2;
694 if (c > 0)
695 return 2;
Armin Rigoa1748132004-12-23 22:13:13 +0000696 f = v->ob_type->tp_compare;
697 if (f != NULL && f == w->ob_type->tp_compare) {
Guido van Rossume797ec12001-01-17 15:24:28 +0000698 c = (*f)(v, w);
699 Py_DECREF(v);
700 Py_DECREF(w);
Guido van Rossuma4073002002-05-31 20:03:54 +0000701 return adjust_tp_compare(c);
Guido van Rossume797ec12001-01-17 15:24:28 +0000702 }
703
Guido van Rossume797ec12001-01-17 15:24:28 +0000704 /* No comparison defined */
705 Py_DECREF(v);
706 Py_DECREF(w);
707 return 2;
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +0000708}
709
Guido van Rossume797ec12001-01-17 15:24:28 +0000710/* Final fallback 3-way comparison, returning an int. Return:
711 -2 if an error occurred;
Tim Petersc99213f2001-11-04 05:57:16 +0000712 -1 if v < w;
713 0 if v == w;
714 1 if v > w.
Guido van Rossume797ec12001-01-17 15:24:28 +0000715*/
716static int
717default_3way_compare(PyObject *v, PyObject *w)
718{
719 int c;
Jeremy Hyltonaf68c872005-12-10 18:50:16 +0000720 const char *vname, *wname;
Guido van Rossume797ec12001-01-17 15:24:28 +0000721
722 if (v->ob_type == w->ob_type) {
Barry Warsawb0e754d2001-01-20 06:24:55 +0000723 /* When comparing these pointers, they must be cast to
724 * integer types (i.e. Py_uintptr_t, our spelling of C9X's
725 * uintptr_t). ANSI specifies that pointer compares other
726 * than == and != to non-related structures are undefined.
727 */
Barry Warsaw71ff8d52001-01-20 06:08:10 +0000728 Py_uintptr_t vv = (Py_uintptr_t)v;
729 Py_uintptr_t ww = (Py_uintptr_t)w;
Guido van Rossume797ec12001-01-17 15:24:28 +0000730 return (vv < ww) ? -1 : (vv > ww) ? 1 : 0;
731 }
732
Martin v. Löwis339d0f72001-08-17 18:39:25 +0000733#ifdef Py_USING_UNICODE
Guido van Rossume797ec12001-01-17 15:24:28 +0000734 /* Special case for Unicode */
735 if (PyUnicode_Check(v) || PyUnicode_Check(w)) {
736 c = PyUnicode_Compare(v, w);
737 if (!PyErr_Occurred())
738 return c;
739 /* TypeErrors are ignored: if Unicode coercion fails due
740 to one of the arguments not having the right type, we
741 continue as defined by the coercion protocol (see
742 above). Luckily, decoding errors are reported as
743 ValueErrors and are not masked by this technique. */
744 if (!PyErr_ExceptionMatches(PyExc_TypeError))
745 return -2;
746 PyErr_Clear();
747 }
Martin v. Löwis339d0f72001-08-17 18:39:25 +0000748#endif
Guido van Rossume797ec12001-01-17 15:24:28 +0000749
Guido van Rossum0871e932001-01-22 19:28:09 +0000750 /* None is smaller than anything */
751 if (v == Py_None)
752 return -1;
753 if (w == Py_None)
754 return 1;
755
Guido van Rossumfb50d3f2003-02-18 16:40:09 +0000756 /* different type: compare type names; numbers are smaller */
757 if (PyNumber_Check(v))
Guido van Rossum8f9143d2001-01-22 15:59:32 +0000758 vname = "";
759 else
760 vname = v->ob_type->tp_name;
Guido van Rossumfb50d3f2003-02-18 16:40:09 +0000761 if (PyNumber_Check(w))
Guido van Rossum8f9143d2001-01-22 15:59:32 +0000762 wname = "";
763 else
764 wname = w->ob_type->tp_name;
765 c = strcmp(vname, wname);
766 if (c < 0)
767 return -1;
768 if (c > 0)
769 return 1;
770 /* Same type name, or (more likely) incomparable numeric types */
771 return ((Py_uintptr_t)(v->ob_type) < (
772 Py_uintptr_t)(w->ob_type)) ? -1 : 1;
Guido van Rossume797ec12001-01-17 15:24:28 +0000773}
774
Tim Peters6d60b2e2001-05-07 20:53:51 +0000775/* Do a 3-way comparison, by hook or by crook. Return:
Guido van Rossuma4073002002-05-31 20:03:54 +0000776 -2 for an exception (but see below);
Tim Petersc99213f2001-11-04 05:57:16 +0000777 -1 if v < w;
Tim Peters6d60b2e2001-05-07 20:53:51 +0000778 0 if v == w;
Tim Petersc99213f2001-11-04 05:57:16 +0000779 1 if v > w;
Guido van Rossuma4073002002-05-31 20:03:54 +0000780 BUT: if the object implements a tp_compare function, it returns
Martin v. Löwis0163d6d2001-06-09 07:34:05 +0000781 whatever this function returns (whether with an exception or not).
Tim Peters6d60b2e2001-05-07 20:53:51 +0000782*/
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +0000783static int
Fred Drake100814d2000-07-09 15:48:49 +0000784do_cmp(PyObject *v, PyObject *w)
Guido van Rossum20566841995-01-12 11:26:10 +0000785{
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +0000786 int c;
Martin v. Löwis0163d6d2001-06-09 07:34:05 +0000787 cmpfunc f;
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +0000788
Martin v. Löwis0163d6d2001-06-09 07:34:05 +0000789 if (v->ob_type == w->ob_type
Guido van Rossum82fc51c12001-08-16 08:02:45 +0000790 && (f = v->ob_type->tp_compare) != NULL) {
791 c = (*f)(v, w);
Guido van Rossuma4073002002-05-31 20:03:54 +0000792 if (PyInstance_Check(v)) {
793 /* Instance tp_compare has a different signature.
794 But if it returns undefined we fall through. */
795 if (c != 2)
796 return c;
Neal Norwitz3f8dae72002-05-31 20:23:33 +0000797 /* Else fall through to try_rich_to_3way_compare() */
Guido van Rossuma4073002002-05-31 20:03:54 +0000798 }
799 else
800 return adjust_tp_compare(c);
Guido van Rossum82fc51c12001-08-16 08:02:45 +0000801 }
Guido van Rossuma4073002002-05-31 20:03:54 +0000802 /* We only get here if one of the following is true:
803 a) v and w have different types
804 b) v and w have the same type, which doesn't have tp_compare
805 c) v and w are instances, and either __cmp__ is not defined or
806 __cmp__ returns NotImplemented
807 */
Guido van Rossume797ec12001-01-17 15:24:28 +0000808 c = try_rich_to_3way_compare(v, w);
809 if (c < 2)
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +0000810 return c;
Guido van Rossume797ec12001-01-17 15:24:28 +0000811 c = try_3way_compare(v, w);
812 if (c < 2)
813 return c;
814 return default_3way_compare(v, w);
Guido van Rossum20566841995-01-12 11:26:10 +0000815}
816
Tim Petersc99213f2001-11-04 05:57:16 +0000817/* Compare v to w. Return
818 -1 if v < w or exception (PyErr_Occurred() true in latter case).
819 0 if v == w.
820 1 if v > w.
821 XXX The docs (C API manual) say the return value is undefined in case
822 XXX of error.
823*/
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000824int
Fred Drake100814d2000-07-09 15:48:49 +0000825PyObject_Compare(PyObject *v, PyObject *w)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000826{
Jeremy Hylton4a3dd2d2000-04-14 19:13:24 +0000827 int result;
828
Guido van Rossumc8b6df91997-05-23 00:06:51 +0000829 if (v == NULL || w == NULL) {
830 PyErr_BadInternalCall();
831 return -1;
832 }
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000833 if (v == w)
834 return 0;
Armin Rigo2b3eb402003-10-28 12:05:48 +0000835 if (Py_EnterRecursiveCall(" in cmp"))
836 return -1;
837 result = do_cmp(v, w);
838 Py_LeaveRecursiveCall();
Guido van Rossume797ec12001-01-17 15:24:28 +0000839 return result < 0 ? -1 : result;
840}
841
Tim Petersc99213f2001-11-04 05:57:16 +0000842/* Return (new reference to) Py_True or Py_False. */
Guido van Rossume797ec12001-01-17 15:24:28 +0000843static PyObject *
Martin v. Löwis0163d6d2001-06-09 07:34:05 +0000844convert_3way_to_object(int op, int c)
Guido van Rossume797ec12001-01-17 15:24:28 +0000845{
Guido van Rossume797ec12001-01-17 15:24:28 +0000846 PyObject *result;
Guido van Rossume797ec12001-01-17 15:24:28 +0000847 switch (op) {
848 case Py_LT: c = c < 0; break;
849 case Py_LE: c = c <= 0; break;
850 case Py_EQ: c = c == 0; break;
851 case Py_NE: c = c != 0; break;
852 case Py_GT: c = c > 0; break;
853 case Py_GE: c = c >= 0; break;
854 }
855 result = c ? Py_True : Py_False;
856 Py_INCREF(result);
Jeremy Hylton4a3dd2d2000-04-14 19:13:24 +0000857 return result;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000858}
Tim Peters803526b2002-07-07 05:13:56 +0000859
Tim Petersc99213f2001-11-04 05:57:16 +0000860/* We want a rich comparison but don't have one. Try a 3-way cmp instead.
861 Return
862 NULL if error
863 Py_True if v op w
864 Py_False if not (v op w)
865*/
Martin v. Löwis0163d6d2001-06-09 07:34:05 +0000866static PyObject *
867try_3way_to_rich_compare(PyObject *v, PyObject *w, int op)
868{
869 int c;
870
871 c = try_3way_compare(v, w);
872 if (c >= 2)
873 c = default_3way_compare(v, w);
874 if (c <= -2)
875 return NULL;
876 return convert_3way_to_object(op, c);
877}
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000878
Tim Petersc99213f2001-11-04 05:57:16 +0000879/* Do rich comparison on v and w. Return
880 NULL if error
881 Else a new reference to an object other than Py_NotImplemented, usually(?):
882 Py_True if v op w
883 Py_False if not (v op w)
884*/
Neil Schemenauerd38855c2001-01-21 16:25:18 +0000885static PyObject *
Guido van Rossume797ec12001-01-17 15:24:28 +0000886do_richcmp(PyObject *v, PyObject *w, int op)
887{
888 PyObject *res;
889
890 res = try_rich_compare(v, w, op);
891 if (res != Py_NotImplemented)
892 return res;
893 Py_DECREF(res);
894
895 return try_3way_to_rich_compare(v, w, op);
896}
897
Tim Petersc99213f2001-11-04 05:57:16 +0000898/* Return:
899 NULL for exception;
Tim Petersc99213f2001-11-04 05:57:16 +0000900 some object not equal to NotImplemented if it is implemented
901 (this latter object may not be a Boolean).
902*/
Guido van Rossume797ec12001-01-17 15:24:28 +0000903PyObject *
904PyObject_RichCompare(PyObject *v, PyObject *w, int op)
905{
906 PyObject *res;
907
908 assert(Py_LT <= op && op <= Py_GE);
Armin Rigo2b3eb402003-10-28 12:05:48 +0000909 if (Py_EnterRecursiveCall(" in cmp"))
910 return NULL;
Guido van Rossume797ec12001-01-17 15:24:28 +0000911
Armin Rigo2b3eb402003-10-28 12:05:48 +0000912 /* If the types are equal, and not old-style instances, try to
Tim Peters67754e92001-11-04 07:29:31 +0000913 get out cheap (don't bother with coercions etc.). */
914 if (v->ob_type == w->ob_type && !PyInstance_Check(v)) {
915 cmpfunc fcmp;
916 richcmpfunc frich = RICHCOMPARE(v->ob_type);
917 /* If the type has richcmp, try it first. try_rich_compare
918 tries it two-sided, which is not needed since we've a
919 single type only. */
920 if (frich != NULL) {
921 res = (*frich)(v, w, op);
922 if (res != Py_NotImplemented)
923 goto Done;
924 Py_DECREF(res);
925 }
926 /* No richcmp, or this particular richmp not implemented.
927 Try 3-way cmp. */
928 fcmp = v->ob_type->tp_compare;
929 if (fcmp != NULL) {
930 int c = (*fcmp)(v, w);
Guido van Rossuma4073002002-05-31 20:03:54 +0000931 c = adjust_tp_compare(c);
932 if (c == -2) {
Tim Peters67754e92001-11-04 07:29:31 +0000933 res = NULL;
934 goto Done;
935 }
936 res = convert_3way_to_object(op, c);
937 goto Done;
938 }
Guido van Rossum2ffbf6b2001-01-17 21:27:02 +0000939 }
Tim Peters67754e92001-11-04 07:29:31 +0000940
941 /* Fast path not taken, or couldn't deliver a useful result. */
942 res = do_richcmp(v, w, op);
943Done:
Armin Rigo2b3eb402003-10-28 12:05:48 +0000944 Py_LeaveRecursiveCall();
Guido van Rossume797ec12001-01-17 15:24:28 +0000945 return res;
946}
947
Tim Petersde9725f2001-05-05 10:06:17 +0000948/* Return -1 if error; 1 if v op w; 0 if not (v op w). */
Guido van Rossume797ec12001-01-17 15:24:28 +0000949int
950PyObject_RichCompareBool(PyObject *v, PyObject *w, int op)
951{
Raymond Hettinger93d44812004-03-21 17:01:44 +0000952 PyObject *res;
Guido van Rossume797ec12001-01-17 15:24:28 +0000953 int ok;
954
Raymond Hettinger93d44812004-03-21 17:01:44 +0000955 /* Quick result when objects are the same.
956 Guarantees that identity implies equality. */
957 if (v == w) {
958 if (op == Py_EQ)
959 return 1;
960 else if (op == Py_NE)
961 return 0;
962 }
963
964 res = PyObject_RichCompare(v, w, op);
Guido van Rossume797ec12001-01-17 15:24:28 +0000965 if (res == NULL)
966 return -1;
Guido van Rossum81912d42002-08-24 05:33:28 +0000967 if (PyBool_Check(res))
968 ok = (res == Py_True);
969 else
970 ok = PyObject_IsTrue(res);
Guido van Rossume797ec12001-01-17 15:24:28 +0000971 Py_DECREF(res);
972 return ok;
973}
Fred Drake13634cf2000-06-29 19:17:04 +0000974
975/* Set of hash utility functions to help maintaining the invariant that
Raymond Hettinger8183fa42004-03-21 17:35:06 +0000976 if a==b then hash(a)==hash(b)
Fred Drake13634cf2000-06-29 19:17:04 +0000977
978 All the utility functions (_Py_Hash*()) return "-1" to signify an error.
979*/
980
981long
Fred Drake100814d2000-07-09 15:48:49 +0000982_Py_HashDouble(double v)
Fred Drake13634cf2000-06-29 19:17:04 +0000983{
Tim Peters39dce292000-08-15 03:34:48 +0000984 double intpart, fractpart;
985 int expo;
986 long hipart;
987 long x; /* the final hash value */
988 /* This is designed so that Python numbers of different types
989 * that compare equal hash to the same value; otherwise comparisons
990 * of mapping keys will turn out weird.
991 */
992
Tim Peters39dce292000-08-15 03:34:48 +0000993 fractpart = modf(v, &intpart);
Tim Peters39dce292000-08-15 03:34:48 +0000994 if (fractpart == 0.0) {
995 /* This must return the same hash as an equal int or long. */
996 if (intpart > LONG_MAX || -intpart > LONG_MAX) {
997 /* Convert to long and use its hash. */
998 PyObject *plong; /* converted to Python long */
999 if (Py_IS_INFINITY(intpart))
1000 /* can't convert to long int -- arbitrary */
1001 v = v < 0 ? -271828.0 : 314159.0;
1002 plong = PyLong_FromDouble(v);
1003 if (plong == NULL)
1004 return -1;
1005 x = PyObject_Hash(plong);
1006 Py_DECREF(plong);
1007 return x;
1008 }
1009 /* Fits in a C long == a Python int, so is its own hash. */
1010 x = (long)intpart;
1011 if (x == -1)
1012 x = -2;
1013 return x;
1014 }
1015 /* The fractional part is non-zero, so we don't have to worry about
1016 * making this match the hash of some other type.
1017 * Use frexp to get at the bits in the double.
Fred Drake13634cf2000-06-29 19:17:04 +00001018 * Since the VAX D double format has 56 mantissa bits, which is the
1019 * most of any double format in use, each of these parts may have as
1020 * many as (but no more than) 56 significant bits.
Tim Peters39dce292000-08-15 03:34:48 +00001021 * So, assuming sizeof(long) >= 4, each part can be broken into two
1022 * longs; frexp and multiplication are used to do that.
1023 * Also, since the Cray double format has 15 exponent bits, which is
1024 * the most of any double format in use, shifting the exponent field
1025 * left by 15 won't overflow a long (again assuming sizeof(long) >= 4).
Fred Drake13634cf2000-06-29 19:17:04 +00001026 */
Tim Peters39dce292000-08-15 03:34:48 +00001027 v = frexp(v, &expo);
1028 v *= 2147483648.0; /* 2**31 */
1029 hipart = (long)v; /* take the top 32 bits */
1030 v = (v - (double)hipart) * 2147483648.0; /* get the next 32 bits */
1031 x = hipart + (long)v + (expo << 15);
1032 if (x == -1)
1033 x = -2;
1034 return x;
Fred Drake13634cf2000-06-29 19:17:04 +00001035}
1036
1037long
Fred Drake100814d2000-07-09 15:48:49 +00001038_Py_HashPointer(void *p)
Fred Drake13634cf2000-06-29 19:17:04 +00001039{
1040#if SIZEOF_LONG >= SIZEOF_VOID_P
1041 return (long)p;
1042#else
1043 /* convert to a Python long and hash that */
1044 PyObject* longobj;
1045 long x;
Tim Peters803526b2002-07-07 05:13:56 +00001046
Fred Drake13634cf2000-06-29 19:17:04 +00001047 if ((longobj = PyLong_FromVoidPtr(p)) == NULL) {
1048 x = -1;
1049 goto finally;
1050 }
1051 x = PyObject_Hash(longobj);
Tim Peters803526b2002-07-07 05:13:56 +00001052
Fred Drake13634cf2000-06-29 19:17:04 +00001053finally:
1054 Py_XDECREF(longobj);
1055 return x;
1056#endif
1057}
1058
1059
Guido van Rossum9bfef441993-03-29 10:43:31 +00001060long
Fred Drake100814d2000-07-09 15:48:49 +00001061PyObject_Hash(PyObject *v)
Guido van Rossum9bfef441993-03-29 10:43:31 +00001062{
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001063 PyTypeObject *tp = v->ob_type;
Guido van Rossum9bfef441993-03-29 10:43:31 +00001064 if (tp->tp_hash != NULL)
1065 return (*tp->tp_hash)(v);
Guido van Rossumd1f06b92001-01-24 22:14:43 +00001066 if (tp->tp_compare == NULL && RICHCOMPARE(tp) == NULL) {
Fred Drake13634cf2000-06-29 19:17:04 +00001067 return _Py_HashPointer(v); /* Use address as hash value */
1068 }
Guido van Rossum9bfef441993-03-29 10:43:31 +00001069 /* If there's a cmp but no hash defined, the object can't be hashed */
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001070 PyErr_Format(PyExc_TypeError, "unhashable type: '%.200s'",
1071 v->ob_type->tp_name);
Guido van Rossum9bfef441993-03-29 10:43:31 +00001072 return -1;
1073}
1074
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001075PyObject *
Jeremy Hyltonaf68c872005-12-10 18:50:16 +00001076PyObject_GetAttrString(PyObject *v, const char *name)
Guido van Rossum3f5da241990-12-20 15:06:42 +00001077{
Tim Peters6d6c1a32001-08-02 04:15:00 +00001078 PyObject *w, *res;
Guido van Rossumd8eb1b31996-08-09 20:52:03 +00001079
Tim Peters6d6c1a32001-08-02 04:15:00 +00001080 if (v->ob_type->tp_getattr != NULL)
Martin v. Löwis15e62742006-02-27 16:46:16 +00001081 return (*v->ob_type->tp_getattr)(v, (char*)name);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001082 w = PyString_InternFromString(name);
1083 if (w == NULL)
1084 return NULL;
1085 res = PyObject_GetAttr(v, w);
1086 Py_XDECREF(w);
1087 return res;
Guido van Rossum3f5da241990-12-20 15:06:42 +00001088}
1089
1090int
Jeremy Hyltonaf68c872005-12-10 18:50:16 +00001091PyObject_HasAttrString(PyObject *v, const char *name)
Guido van Rossumed18fdc1993-07-11 19:55:34 +00001092{
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001093 PyObject *res = PyObject_GetAttrString(v, name);
Guido van Rossumed18fdc1993-07-11 19:55:34 +00001094 if (res != NULL) {
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001095 Py_DECREF(res);
Guido van Rossumed18fdc1993-07-11 19:55:34 +00001096 return 1;
1097 }
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001098 PyErr_Clear();
Guido van Rossumed18fdc1993-07-11 19:55:34 +00001099 return 0;
1100}
1101
1102int
Jeremy Hyltonaf68c872005-12-10 18:50:16 +00001103PyObject_SetAttrString(PyObject *v, const char *name, PyObject *w)
Guido van Rossum3f5da241990-12-20 15:06:42 +00001104{
Tim Peters6d6c1a32001-08-02 04:15:00 +00001105 PyObject *s;
1106 int res;
Guido van Rossumd8eb1b31996-08-09 20:52:03 +00001107
Tim Peters6d6c1a32001-08-02 04:15:00 +00001108 if (v->ob_type->tp_setattr != NULL)
Martin v. Löwis15e62742006-02-27 16:46:16 +00001109 return (*v->ob_type->tp_setattr)(v, (char*)name, w);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001110 s = PyString_InternFromString(name);
1111 if (s == NULL)
1112 return -1;
1113 res = PyObject_SetAttr(v, s, w);
1114 Py_XDECREF(s);
1115 return res;
Guido van Rossum3f5da241990-12-20 15:06:42 +00001116}
1117
Guido van Rossum98ff96a1997-05-20 18:34:44 +00001118PyObject *
Fred Drake100814d2000-07-09 15:48:49 +00001119PyObject_GetAttr(PyObject *v, PyObject *name)
Guido van Rossum98ff96a1997-05-20 18:34:44 +00001120{
Tim Peters6d6c1a32001-08-02 04:15:00 +00001121 PyTypeObject *tp = v->ob_type;
1122
Jeremy Hylton99a8f902000-06-23 14:36:32 +00001123 if (!PyString_Check(name)) {
Martin v. Löwis0c160a02002-03-15 13:40:30 +00001124#ifdef Py_USING_UNICODE
1125 /* The Unicode to string conversion is done here because the
1126 existing tp_getattro slots expect a string object as name
1127 and we wouldn't want to break those. */
1128 if (PyUnicode_Check(name)) {
1129 name = _PyUnicode_AsDefaultEncodedString(name, NULL);
1130 if (name == NULL)
1131 return NULL;
1132 }
1133 else
1134#endif
1135 {
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001136 PyErr_Format(PyExc_TypeError,
1137 "attribute name must be string, not '%.200s'",
1138 name->ob_type->tp_name);
Martin v. Löwis0c160a02002-03-15 13:40:30 +00001139 return NULL;
1140 }
Jeremy Hylton99a8f902000-06-23 14:36:32 +00001141 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00001142 if (tp->tp_getattro != NULL)
1143 return (*tp->tp_getattro)(v, name);
1144 if (tp->tp_getattr != NULL)
1145 return (*tp->tp_getattr)(v, PyString_AS_STRING(name));
1146 PyErr_Format(PyExc_AttributeError,
1147 "'%.50s' object has no attribute '%.400s'",
1148 tp->tp_name, PyString_AS_STRING(name));
1149 return NULL;
Guido van Rossum98ff96a1997-05-20 18:34:44 +00001150}
1151
1152int
Fred Drake100814d2000-07-09 15:48:49 +00001153PyObject_HasAttr(PyObject *v, PyObject *name)
Guido van Rossum98ff96a1997-05-20 18:34:44 +00001154{
1155 PyObject *res = PyObject_GetAttr(v, name);
1156 if (res != NULL) {
1157 Py_DECREF(res);
1158 return 1;
1159 }
1160 PyErr_Clear();
1161 return 0;
1162}
1163
1164int
Fred Drake100814d2000-07-09 15:48:49 +00001165PyObject_SetAttr(PyObject *v, PyObject *name, PyObject *value)
Guido van Rossum98ff96a1997-05-20 18:34:44 +00001166{
Tim Peters6d6c1a32001-08-02 04:15:00 +00001167 PyTypeObject *tp = v->ob_type;
Guido van Rossum98ff96a1997-05-20 18:34:44 +00001168 int err;
Marc-André Lemburge44e5072000-09-18 16:20:57 +00001169
Martin v. Löwis339d0f72001-08-17 18:39:25 +00001170 if (!PyString_Check(name)){
Martin v. Löwis0c160a02002-03-15 13:40:30 +00001171#ifdef Py_USING_UNICODE
1172 /* The Unicode to string conversion is done here because the
1173 existing tp_setattro slots expect a string object as name
1174 and we wouldn't want to break those. */
1175 if (PyUnicode_Check(name)) {
1176 name = PyUnicode_AsEncodedString(name, NULL, NULL);
1177 if (name == NULL)
1178 return -1;
1179 }
Tim Peters803526b2002-07-07 05:13:56 +00001180 else
Martin v. Löwis0c160a02002-03-15 13:40:30 +00001181#endif
1182 {
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001183 PyErr_Format(PyExc_TypeError,
1184 "attribute name must be string, not '%.200s'",
1185 name->ob_type->tp_name);
Martin v. Löwis0c160a02002-03-15 13:40:30 +00001186 return -1;
1187 }
Jeremy Hylton99a8f902000-06-23 14:36:32 +00001188 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00001189 else
1190 Py_INCREF(name);
1191
1192 PyString_InternInPlace(&name);
1193 if (tp->tp_setattro != NULL) {
1194 err = (*tp->tp_setattro)(v, name, value);
1195 Py_DECREF(name);
1196 return err;
Marc-André Lemburge44e5072000-09-18 16:20:57 +00001197 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00001198 if (tp->tp_setattr != NULL) {
1199 err = (*tp->tp_setattr)(v, PyString_AS_STRING(name), value);
1200 Py_DECREF(name);
1201 return err;
1202 }
Guido van Rossum98ff96a1997-05-20 18:34:44 +00001203 Py_DECREF(name);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001204 if (tp->tp_getattr == NULL && tp->tp_getattro == NULL)
1205 PyErr_Format(PyExc_TypeError,
1206 "'%.100s' object has no attributes "
1207 "(%s .%.100s)",
1208 tp->tp_name,
1209 value==NULL ? "del" : "assign to",
1210 PyString_AS_STRING(name));
1211 else
1212 PyErr_Format(PyExc_TypeError,
1213 "'%.100s' object has only read-only attributes "
1214 "(%s .%.100s)",
1215 tp->tp_name,
1216 value==NULL ? "del" : "assign to",
1217 PyString_AS_STRING(name));
1218 return -1;
1219}
1220
1221/* Helper to get a pointer to an object's __dict__ slot, if any */
1222
1223PyObject **
1224_PyObject_GetDictPtr(PyObject *obj)
1225{
Martin v. Löwis725507b2006-03-07 12:08:51 +00001226 Py_ssize_t dictoffset;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001227 PyTypeObject *tp = obj->ob_type;
1228
Tim Peters6d6c1a32001-08-02 04:15:00 +00001229 dictoffset = tp->tp_dictoffset;
1230 if (dictoffset == 0)
1231 return NULL;
1232 if (dictoffset < 0) {
Martin v. Löwis18e16552006-02-15 17:27:45 +00001233 Py_ssize_t tsize;
Guido van Rossum2eb0b872002-03-01 22:24:49 +00001234 size_t size;
1235
1236 tsize = ((PyVarObject *)obj)->ob_size;
1237 if (tsize < 0)
1238 tsize = -tsize;
1239 size = _PyObject_VAR_SIZE(tp, tsize);
1240
Tim Peters6d483d32001-10-06 21:27:34 +00001241 dictoffset += (long)size;
1242 assert(dictoffset > 0);
1243 assert(dictoffset % SIZEOF_VOID_P == 0);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001244 }
1245 return (PyObject **) ((char *)obj + dictoffset);
1246}
1247
Tim Peters6d6c1a32001-08-02 04:15:00 +00001248PyObject *
Raymond Hettinger1da1dbf2003-03-17 19:46:11 +00001249PyObject_SelfIter(PyObject *obj)
Raymond Hettinger01538262003-03-17 08:24:35 +00001250{
1251 Py_INCREF(obj);
1252 return obj;
1253}
1254
Michael W. Hudson1593f502004-09-14 17:09:47 +00001255/* Generic GetAttr functions - put these in your tp_[gs]etattro slot */
1256
Raymond Hettinger01538262003-03-17 08:24:35 +00001257PyObject *
Tim Peters6d6c1a32001-08-02 04:15:00 +00001258PyObject_GenericGetAttr(PyObject *obj, PyObject *name)
1259{
1260 PyTypeObject *tp = obj->ob_type;
Guido van Rossum056fbf42002-08-19 19:22:50 +00001261 PyObject *descr = NULL;
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001262 PyObject *res = NULL;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001263 descrgetfunc f;
Martin v. Löwis725507b2006-03-07 12:08:51 +00001264 Py_ssize_t dictoffset;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001265 PyObject **dictptr;
1266
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001267 if (!PyString_Check(name)){
Martin v. Löwis0c160a02002-03-15 13:40:30 +00001268#ifdef Py_USING_UNICODE
1269 /* The Unicode to string conversion is done here because the
1270 existing tp_setattro slots expect a string object as name
1271 and we wouldn't want to break those. */
1272 if (PyUnicode_Check(name)) {
1273 name = PyUnicode_AsEncodedString(name, NULL, NULL);
1274 if (name == NULL)
1275 return NULL;
1276 }
Tim Peters803526b2002-07-07 05:13:56 +00001277 else
Martin v. Löwis0c160a02002-03-15 13:40:30 +00001278#endif
1279 {
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001280 PyErr_Format(PyExc_TypeError,
1281 "attribute name must be string, not '%.200s'",
1282 name->ob_type->tp_name);
Martin v. Löwis0c160a02002-03-15 13:40:30 +00001283 return NULL;
1284 }
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001285 }
1286 else
1287 Py_INCREF(name);
1288
Tim Peters6d6c1a32001-08-02 04:15:00 +00001289 if (tp->tp_dict == NULL) {
Guido van Rossum528b7eb2001-08-07 17:24:28 +00001290 if (PyType_Ready(tp) < 0)
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001291 goto done;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001292 }
1293
Guido van Rossum056fbf42002-08-19 19:22:50 +00001294 /* Inline _PyType_Lookup */
1295 {
Martin v. Löwis18e16552006-02-15 17:27:45 +00001296 Py_ssize_t i, n;
Guido van Rossum056fbf42002-08-19 19:22:50 +00001297 PyObject *mro, *base, *dict;
1298
1299 /* Look in tp_dict of types in MRO */
1300 mro = tp->tp_mro;
1301 assert(mro != NULL);
1302 assert(PyTuple_Check(mro));
1303 n = PyTuple_GET_SIZE(mro);
1304 for (i = 0; i < n; i++) {
1305 base = PyTuple_GET_ITEM(mro, i);
1306 if (PyClass_Check(base))
1307 dict = ((PyClassObject *)base)->cl_dict;
1308 else {
1309 assert(PyType_Check(base));
1310 dict = ((PyTypeObject *)base)->tp_dict;
1311 }
1312 assert(dict && PyDict_Check(dict));
1313 descr = PyDict_GetItem(dict, name);
1314 if (descr != NULL)
1315 break;
1316 }
1317 }
1318
Michael W. Hudsonb2c7de42003-08-15 13:07:47 +00001319 Py_XINCREF(descr);
1320
Tim Peters6d6c1a32001-08-02 04:15:00 +00001321 f = NULL;
Guido van Rossum3cf5b1e2006-07-27 21:53:35 +00001322 if (descr != NULL) {
Tim Peters6d6c1a32001-08-02 04:15:00 +00001323 f = descr->ob_type->tp_descr_get;
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001324 if (f != NULL && PyDescr_IsData(descr)) {
1325 res = f(descr, obj, (PyObject *)obj->ob_type);
Michael W. Hudsonb2c7de42003-08-15 13:07:47 +00001326 Py_DECREF(descr);
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001327 goto done;
1328 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00001329 }
1330
Guido van Rossumc66ff442002-08-19 16:50:48 +00001331 /* Inline _PyObject_GetDictPtr */
1332 dictoffset = tp->tp_dictoffset;
1333 if (dictoffset != 0) {
1334 PyObject *dict;
1335 if (dictoffset < 0) {
Martin v. Löwis18e16552006-02-15 17:27:45 +00001336 Py_ssize_t tsize;
Guido van Rossumc66ff442002-08-19 16:50:48 +00001337 size_t size;
1338
1339 tsize = ((PyVarObject *)obj)->ob_size;
1340 if (tsize < 0)
1341 tsize = -tsize;
1342 size = _PyObject_VAR_SIZE(tp, tsize);
1343
1344 dictoffset += (long)size;
1345 assert(dictoffset > 0);
1346 assert(dictoffset % SIZEOF_VOID_P == 0);
1347 }
1348 dictptr = (PyObject **) ((char *)obj + dictoffset);
1349 dict = *dictptr;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001350 if (dict != NULL) {
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001351 res = PyDict_GetItem(dict, name);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001352 if (res != NULL) {
1353 Py_INCREF(res);
Michael W. Hudsonb2c7de42003-08-15 13:07:47 +00001354 Py_XDECREF(descr);
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001355 goto done;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001356 }
1357 }
1358 }
1359
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001360 if (f != NULL) {
1361 res = f(descr, obj, (PyObject *)obj->ob_type);
Michael W. Hudsonb2c7de42003-08-15 13:07:47 +00001362 Py_DECREF(descr);
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001363 goto done;
1364 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00001365
1366 if (descr != NULL) {
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001367 res = descr;
Michael W. Hudsonb2c7de42003-08-15 13:07:47 +00001368 /* descr was already increfed above */
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001369 goto done;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001370 }
1371
1372 PyErr_Format(PyExc_AttributeError,
1373 "'%.50s' object has no attribute '%.400s'",
1374 tp->tp_name, PyString_AS_STRING(name));
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001375 done:
1376 Py_DECREF(name);
1377 return res;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001378}
1379
1380int
1381PyObject_GenericSetAttr(PyObject *obj, PyObject *name, PyObject *value)
1382{
1383 PyTypeObject *tp = obj->ob_type;
1384 PyObject *descr;
1385 descrsetfunc f;
1386 PyObject **dictptr;
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001387 int res = -1;
1388
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001389 if (!PyString_Check(name)){
Martin v. Löwis0c160a02002-03-15 13:40:30 +00001390#ifdef Py_USING_UNICODE
1391 /* The Unicode to string conversion is done here because the
1392 existing tp_setattro slots expect a string object as name
1393 and we wouldn't want to break those. */
1394 if (PyUnicode_Check(name)) {
1395 name = PyUnicode_AsEncodedString(name, NULL, NULL);
1396 if (name == NULL)
1397 return -1;
1398 }
Tim Peters803526b2002-07-07 05:13:56 +00001399 else
Martin v. Löwis0c160a02002-03-15 13:40:30 +00001400#endif
1401 {
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001402 PyErr_Format(PyExc_TypeError,
1403 "attribute name must be string, not '%.200s'",
1404 name->ob_type->tp_name);
Martin v. Löwis0c160a02002-03-15 13:40:30 +00001405 return -1;
1406 }
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001407 }
1408 else
1409 Py_INCREF(name);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001410
1411 if (tp->tp_dict == NULL) {
Guido van Rossum528b7eb2001-08-07 17:24:28 +00001412 if (PyType_Ready(tp) < 0)
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001413 goto done;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001414 }
1415
1416 descr = _PyType_Lookup(tp, name);
1417 f = NULL;
Guido van Rossum3cf5b1e2006-07-27 21:53:35 +00001418 if (descr != NULL) {
Tim Peters6d6c1a32001-08-02 04:15:00 +00001419 f = descr->ob_type->tp_descr_set;
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001420 if (f != NULL && PyDescr_IsData(descr)) {
1421 res = f(descr, obj, value);
1422 goto done;
1423 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00001424 }
1425
1426 dictptr = _PyObject_GetDictPtr(obj);
1427 if (dictptr != NULL) {
1428 PyObject *dict = *dictptr;
1429 if (dict == NULL && value != NULL) {
1430 dict = PyDict_New();
1431 if (dict == NULL)
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001432 goto done;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001433 *dictptr = dict;
1434 }
1435 if (dict != NULL) {
Tim Peters6d6c1a32001-08-02 04:15:00 +00001436 if (value == NULL)
1437 res = PyDict_DelItem(dict, name);
1438 else
1439 res = PyDict_SetItem(dict, name, value);
1440 if (res < 0 && PyErr_ExceptionMatches(PyExc_KeyError))
1441 PyErr_SetObject(PyExc_AttributeError, name);
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001442 goto done;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001443 }
1444 }
1445
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001446 if (f != NULL) {
1447 res = f(descr, obj, value);
1448 goto done;
1449 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00001450
1451 if (descr == NULL) {
1452 PyErr_Format(PyExc_AttributeError,
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001453 "'%.100s' object has no attribute '%.200s'",
Tim Peters6d6c1a32001-08-02 04:15:00 +00001454 tp->tp_name, PyString_AS_STRING(name));
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001455 goto done;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001456 }
1457
1458 PyErr_Format(PyExc_AttributeError,
1459 "'%.50s' object attribute '%.400s' is read-only",
1460 tp->tp_name, PyString_AS_STRING(name));
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001461 done:
1462 Py_DECREF(name);
1463 return res;
Guido van Rossum98ff96a1997-05-20 18:34:44 +00001464}
1465
Guido van Rossum6ac258d1993-05-12 08:24:20 +00001466/* Test a value used as condition, e.g., in a for or if statement.
1467 Return -1 if an error occurred */
1468
1469int
Fred Drake100814d2000-07-09 15:48:49 +00001470PyObject_IsTrue(PyObject *v)
Guido van Rossum6ac258d1993-05-12 08:24:20 +00001471{
Martin v. Löwis18e16552006-02-15 17:27:45 +00001472 Py_ssize_t res;
Guido van Rossum6248f442002-08-24 06:31:34 +00001473 if (v == Py_True)
1474 return 1;
1475 if (v == Py_False)
1476 return 0;
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001477 if (v == Py_None)
Neal Norwitz51290d32002-06-13 21:32:44 +00001478 return 0;
Guido van Rossum1c4f4581998-05-22 00:53:24 +00001479 else if (v->ob_type->tp_as_number != NULL &&
1480 v->ob_type->tp_as_number->nb_nonzero != NULL)
Guido van Rossum6ac258d1993-05-12 08:24:20 +00001481 res = (*v->ob_type->tp_as_number->nb_nonzero)(v);
Guido van Rossum1c4f4581998-05-22 00:53:24 +00001482 else if (v->ob_type->tp_as_mapping != NULL &&
1483 v->ob_type->tp_as_mapping->mp_length != NULL)
Guido van Rossum6ac258d1993-05-12 08:24:20 +00001484 res = (*v->ob_type->tp_as_mapping->mp_length)(v);
Guido van Rossum1c4f4581998-05-22 00:53:24 +00001485 else if (v->ob_type->tp_as_sequence != NULL &&
1486 v->ob_type->tp_as_sequence->sq_length != NULL)
Guido van Rossum6ac258d1993-05-12 08:24:20 +00001487 res = (*v->ob_type->tp_as_sequence->sq_length)(v);
1488 else
Neal Norwitz51290d32002-06-13 21:32:44 +00001489 return 1;
Martin v. Löwis18e16552006-02-15 17:27:45 +00001490 /* if it is negative, it should be either -1 or -2 */
1491 return (res > 0) ? 1 : Py_SAFE_DOWNCAST(res, Py_ssize_t, int);
Guido van Rossum6ac258d1993-05-12 08:24:20 +00001492}
1493
Tim Peters803526b2002-07-07 05:13:56 +00001494/* equivalent of 'not v'
Guido van Rossumc3d3f961998-04-09 17:53:59 +00001495 Return -1 if an error occurred */
1496
1497int
Fred Drake100814d2000-07-09 15:48:49 +00001498PyObject_Not(PyObject *v)
Guido van Rossumc3d3f961998-04-09 17:53:59 +00001499{
1500 int res;
1501 res = PyObject_IsTrue(v);
1502 if (res < 0)
1503 return res;
1504 return res == 0;
1505}
1506
Guido van Rossum5524a591995-01-10 15:26:20 +00001507/* Coerce two numeric types to the "larger" one.
1508 Increment the reference count on each argument.
Guido van Rossume797ec12001-01-17 15:24:28 +00001509 Return value:
1510 -1 if an error occurred;
1511 0 if the coercion succeeded (and then the reference counts are increased);
1512 1 if no coercion is possible (and no error is raised).
Guido van Rossum5524a591995-01-10 15:26:20 +00001513*/
Guido van Rossum5524a591995-01-10 15:26:20 +00001514int
Fred Drake100814d2000-07-09 15:48:49 +00001515PyNumber_CoerceEx(PyObject **pv, PyObject **pw)
Guido van Rossum5524a591995-01-10 15:26:20 +00001516{
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001517 register PyObject *v = *pv;
1518 register PyObject *w = *pw;
Guido van Rossum5524a591995-01-10 15:26:20 +00001519 int res;
1520
Guido van Rossum5524a591995-01-10 15:26:20 +00001521 if (v->ob_type->tp_as_number && v->ob_type->tp_as_number->nb_coerce) {
1522 res = (*v->ob_type->tp_as_number->nb_coerce)(pv, pw);
1523 if (res <= 0)
1524 return res;
1525 }
1526 if (w->ob_type->tp_as_number && w->ob_type->tp_as_number->nb_coerce) {
1527 res = (*w->ob_type->tp_as_number->nb_coerce)(pw, pv);
1528 if (res <= 0)
1529 return res;
1530 }
Guido van Rossum242c6421997-11-19 16:03:17 +00001531 return 1;
1532}
1533
Guido van Rossume797ec12001-01-17 15:24:28 +00001534/* Coerce two numeric types to the "larger" one.
1535 Increment the reference count on each argument.
1536 Return -1 and raise an exception if no coercion is possible
1537 (and then no reference count is incremented).
1538*/
Guido van Rossum242c6421997-11-19 16:03:17 +00001539int
Fred Drake100814d2000-07-09 15:48:49 +00001540PyNumber_Coerce(PyObject **pv, PyObject **pw)
Guido van Rossum242c6421997-11-19 16:03:17 +00001541{
1542 int err = PyNumber_CoerceEx(pv, pw);
1543 if (err <= 0)
1544 return err;
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001545 PyErr_SetString(PyExc_TypeError, "number coercion failed");
Guido van Rossum5524a591995-01-10 15:26:20 +00001546 return -1;
1547}
1548
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001549
Guido van Rossum49b11fe1995-01-26 00:38:22 +00001550/* Test whether an object can be called */
1551
1552int
Fred Drake100814d2000-07-09 15:48:49 +00001553PyCallable_Check(PyObject *x)
Guido van Rossum49b11fe1995-01-26 00:38:22 +00001554{
1555 if (x == NULL)
1556 return 0;
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001557 if (PyInstance_Check(x)) {
1558 PyObject *call = PyObject_GetAttrString(x, "__call__");
Guido van Rossum49b11fe1995-01-26 00:38:22 +00001559 if (call == NULL) {
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001560 PyErr_Clear();
Guido van Rossum49b11fe1995-01-26 00:38:22 +00001561 return 0;
1562 }
1563 /* Could test recursively but don't, for fear of endless
1564 recursion if some joker sets self.__call__ = self */
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001565 Py_DECREF(call);
Guido van Rossum49b11fe1995-01-26 00:38:22 +00001566 return 1;
1567 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00001568 else {
1569 return x->ob_type->tp_call != NULL;
1570 }
Guido van Rossum49b11fe1995-01-26 00:38:22 +00001571}
1572
Tim Peters7eea37e2001-09-04 22:08:56 +00001573/* Helper for PyObject_Dir.
1574 Merge the __dict__ of aclass into dict, and recursively also all
1575 the __dict__s of aclass's base classes. The order of merging isn't
1576 defined, as it's expected that only the final set of dict keys is
1577 interesting.
1578 Return 0 on success, -1 on error.
1579*/
1580
1581static int
1582merge_class_dict(PyObject* dict, PyObject* aclass)
1583{
1584 PyObject *classdict;
1585 PyObject *bases;
1586
1587 assert(PyDict_Check(dict));
1588 assert(aclass);
1589
1590 /* Merge in the type's dict (if any). */
1591 classdict = PyObject_GetAttrString(aclass, "__dict__");
1592 if (classdict == NULL)
1593 PyErr_Clear();
1594 else {
1595 int status = PyDict_Update(dict, classdict);
1596 Py_DECREF(classdict);
1597 if (status < 0)
1598 return -1;
1599 }
1600
1601 /* Recursively merge in the base types' (if any) dicts. */
1602 bases = PyObject_GetAttrString(aclass, "__bases__");
Tim Petersbc7e8632001-09-16 20:33:22 +00001603 if (bases == NULL)
1604 PyErr_Clear();
1605 else {
Guido van Rossum44022412002-05-13 18:29:46 +00001606 /* We have no guarantee that bases is a real tuple */
Martin v. Löwis18e16552006-02-15 17:27:45 +00001607 Py_ssize_t i, n;
Guido van Rossum44022412002-05-13 18:29:46 +00001608 n = PySequence_Size(bases); /* This better be right */
1609 if (n < 0)
1610 PyErr_Clear();
1611 else {
1612 for (i = 0; i < n; i++) {
Tim Peters18e70832003-02-05 19:35:19 +00001613 int status;
Guido van Rossum44022412002-05-13 18:29:46 +00001614 PyObject *base = PySequence_GetItem(bases, i);
1615 if (base == NULL) {
1616 Py_DECREF(bases);
1617 return -1;
1618 }
Tim Peters18e70832003-02-05 19:35:19 +00001619 status = merge_class_dict(dict, base);
1620 Py_DECREF(base);
1621 if (status < 0) {
Guido van Rossum44022412002-05-13 18:29:46 +00001622 Py_DECREF(bases);
1623 return -1;
1624 }
Tim Peters7eea37e2001-09-04 22:08:56 +00001625 }
1626 }
1627 Py_DECREF(bases);
1628 }
1629 return 0;
1630}
1631
Tim Peters305b5852001-09-17 02:38:46 +00001632/* Helper for PyObject_Dir.
1633 If obj has an attr named attrname that's a list, merge its string
1634 elements into keys of dict.
1635 Return 0 on success, -1 on error. Errors due to not finding the attr,
1636 or the attr not being a list, are suppressed.
1637*/
1638
1639static int
Jeremy Hyltonaf68c872005-12-10 18:50:16 +00001640merge_list_attr(PyObject* dict, PyObject* obj, const char *attrname)
Tim Peters305b5852001-09-17 02:38:46 +00001641{
1642 PyObject *list;
1643 int result = 0;
1644
1645 assert(PyDict_Check(dict));
1646 assert(obj);
1647 assert(attrname);
1648
1649 list = PyObject_GetAttrString(obj, attrname);
1650 if (list == NULL)
1651 PyErr_Clear();
1652
1653 else if (PyList_Check(list)) {
1654 int i;
1655 for (i = 0; i < PyList_GET_SIZE(list); ++i) {
1656 PyObject *item = PyList_GET_ITEM(list, i);
1657 if (PyString_Check(item)) {
1658 result = PyDict_SetItem(dict, item, Py_None);
1659 if (result < 0)
1660 break;
1661 }
1662 }
1663 }
1664
1665 Py_XDECREF(list);
1666 return result;
1667}
1668
Tim Peters7eea37e2001-09-04 22:08:56 +00001669/* Like __builtin__.dir(arg). See bltinmodule.c's builtin_dir for the
1670 docstring, which should be kept in synch with this implementation. */
1671
1672PyObject *
1673PyObject_Dir(PyObject *arg)
1674{
1675 /* Set exactly one of these non-NULL before the end. */
1676 PyObject *result = NULL; /* result list */
1677 PyObject *masterdict = NULL; /* result is masterdict.keys() */
1678
1679 /* If NULL arg, return the locals. */
1680 if (arg == NULL) {
1681 PyObject *locals = PyEval_GetLocals();
1682 if (locals == NULL)
1683 goto error;
Raymond Hettinger214b1c32004-07-02 06:41:07 +00001684 result = PyMapping_Keys(locals);
Tim Peters7eea37e2001-09-04 22:08:56 +00001685 if (result == NULL)
1686 goto error;
1687 }
1688
1689 /* Elif this is some form of module, we only want its dict. */
Guido van Rossum8dbd3d82001-09-10 18:27:43 +00001690 else if (PyModule_Check(arg)) {
Tim Peters7eea37e2001-09-04 22:08:56 +00001691 masterdict = PyObject_GetAttrString(arg, "__dict__");
1692 if (masterdict == NULL)
1693 goto error;
Guido van Rossum8dbd3d82001-09-10 18:27:43 +00001694 if (!PyDict_Check(masterdict)) {
1695 PyErr_SetString(PyExc_TypeError,
1696 "module.__dict__ is not a dictionary");
1697 goto error;
1698 }
Tim Peters7eea37e2001-09-04 22:08:56 +00001699 }
1700
1701 /* Elif some form of type or class, grab its dict and its bases.
1702 We deliberately don't suck up its __class__, as methods belonging
1703 to the metaclass would probably be more confusing than helpful. */
1704 else if (PyType_Check(arg) || PyClass_Check(arg)) {
1705 masterdict = PyDict_New();
1706 if (masterdict == NULL)
1707 goto error;
1708 if (merge_class_dict(masterdict, arg) < 0)
1709 goto error;
1710 }
1711
1712 /* Else look at its dict, and the attrs reachable from its class. */
1713 else {
1714 PyObject *itsclass;
1715 /* Create a dict to start with. CAUTION: Not everything
1716 responding to __dict__ returns a dict! */
1717 masterdict = PyObject_GetAttrString(arg, "__dict__");
1718 if (masterdict == NULL) {
1719 PyErr_Clear();
1720 masterdict = PyDict_New();
1721 }
1722 else if (!PyDict_Check(masterdict)) {
1723 Py_DECREF(masterdict);
1724 masterdict = PyDict_New();
1725 }
1726 else {
1727 /* The object may have returned a reference to its
1728 dict, so copy it to avoid mutating it. */
1729 PyObject *temp = PyDict_Copy(masterdict);
1730 Py_DECREF(masterdict);
1731 masterdict = temp;
1732 }
1733 if (masterdict == NULL)
1734 goto error;
1735
Tim Peters305b5852001-09-17 02:38:46 +00001736 /* Merge in __members__ and __methods__ (if any).
1737 XXX Would like this to go away someday; for now, it's
1738 XXX needed to get at im_self etc of method objects. */
1739 if (merge_list_attr(masterdict, arg, "__members__") < 0)
1740 goto error;
1741 if (merge_list_attr(masterdict, arg, "__methods__") < 0)
1742 goto error;
1743
Tim Peters7eea37e2001-09-04 22:08:56 +00001744 /* Merge in attrs reachable from its class.
1745 CAUTION: Not all objects have a __class__ attr. */
1746 itsclass = PyObject_GetAttrString(arg, "__class__");
1747 if (itsclass == NULL)
1748 PyErr_Clear();
1749 else {
1750 int status = merge_class_dict(masterdict, itsclass);
1751 Py_DECREF(itsclass);
1752 if (status < 0)
1753 goto error;
1754 }
1755 }
1756
1757 assert((result == NULL) ^ (masterdict == NULL));
1758 if (masterdict != NULL) {
1759 /* The result comes from its keys. */
1760 assert(result == NULL);
1761 result = PyDict_Keys(masterdict);
1762 if (result == NULL)
1763 goto error;
1764 }
1765
1766 assert(result);
Raymond Hettinger2a7dede2004-08-07 04:55:30 +00001767 if (!PyList_Check(result)) {
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001768 PyErr_Format(PyExc_TypeError,
1769 "Expected keys() to be a list, not '%.200s'",
1770 result->ob_type->tp_name);
Raymond Hettinger2a7dede2004-08-07 04:55:30 +00001771 goto error;
1772 }
Tim Peters7eea37e2001-09-04 22:08:56 +00001773 if (PyList_Sort(result) != 0)
1774 goto error;
1775 else
1776 goto normal_return;
1777
1778 error:
1779 Py_XDECREF(result);
1780 result = NULL;
1781 /* fall through */
1782 normal_return:
1783 Py_XDECREF(masterdict);
1784 return result;
1785}
Guido van Rossum49b11fe1995-01-26 00:38:22 +00001786
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001787/*
1788NoObject is usable as a non-NULL undefined value, used by the macro None.
1789There is (and should be!) no way to create other objects of this type,
Guido van Rossum3f5da241990-12-20 15:06:42 +00001790so there is exactly one (which is indestructible, by the way).
Guido van Rossumba21a492001-08-16 08:17:26 +00001791(XXX This type and the type of NotImplemented below should be unified.)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001792*/
1793
Guido van Rossum0c182a11992-03-27 17:26:13 +00001794/* ARGSUSED */
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001795static PyObject *
Fred Drake100814d2000-07-09 15:48:49 +00001796none_repr(PyObject *op)
Guido van Rossum3f5da241990-12-20 15:06:42 +00001797{
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001798 return PyString_FromString("None");
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001799}
1800
Barry Warsaw9bf16442001-01-23 16:24:35 +00001801/* ARGUSED */
1802static void
Tim Peters803526b2002-07-07 05:13:56 +00001803none_dealloc(PyObject* ignore)
Barry Warsaw9bf16442001-01-23 16:24:35 +00001804{
1805 /* This should never get called, but we also don't want to SEGV if
1806 * we accidently decref None out of existance.
1807 */
Martin v. Löwis3f19b102002-08-07 16:21:51 +00001808 Py_FatalError("deallocating None");
Barry Warsaw9bf16442001-01-23 16:24:35 +00001809}
1810
1811
Guido van Rossumba21a492001-08-16 08:17:26 +00001812static PyTypeObject PyNone_Type = {
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001813 PyObject_HEAD_INIT(&PyType_Type)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001814 0,
Guido van Rossumba21a492001-08-16 08:17:26 +00001815 "NoneType",
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001816 0,
1817 0,
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001818 none_dealloc, /*tp_dealloc*/ /*never called*/
Guido van Rossum7066dd71992-09-17 17:54:56 +00001819 0, /*tp_print*/
Guido van Rossum3f5da241990-12-20 15:06:42 +00001820 0, /*tp_getattr*/
1821 0, /*tp_setattr*/
1822 0, /*tp_compare*/
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001823 none_repr, /*tp_repr*/
Guido van Rossum3f5da241990-12-20 15:06:42 +00001824 0, /*tp_as_number*/
1825 0, /*tp_as_sequence*/
1826 0, /*tp_as_mapping*/
Guido van Rossum9bfef441993-03-29 10:43:31 +00001827 0, /*tp_hash */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001828};
1829
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001830PyObject _Py_NoneStruct = {
Guido van Rossumba21a492001-08-16 08:17:26 +00001831 PyObject_HEAD_INIT(&PyNone_Type)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001832};
1833
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +00001834/* NotImplemented is an object that can be used to signal that an
1835 operation is not implemented for the given type combination. */
1836
1837static PyObject *
1838NotImplemented_repr(PyObject *op)
1839{
1840 return PyString_FromString("NotImplemented");
1841}
1842
1843static PyTypeObject PyNotImplemented_Type = {
1844 PyObject_HEAD_INIT(&PyType_Type)
1845 0,
Guido van Rossumba21a492001-08-16 08:17:26 +00001846 "NotImplementedType",
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +00001847 0,
1848 0,
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001849 none_dealloc, /*tp_dealloc*/ /*never called*/
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +00001850 0, /*tp_print*/
1851 0, /*tp_getattr*/
1852 0, /*tp_setattr*/
1853 0, /*tp_compare*/
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001854 NotImplemented_repr, /*tp_repr*/
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +00001855 0, /*tp_as_number*/
1856 0, /*tp_as_sequence*/
1857 0, /*tp_as_mapping*/
1858 0, /*tp_hash */
1859};
1860
1861PyObject _Py_NotImplementedStruct = {
1862 PyObject_HEAD_INIT(&PyNotImplemented_Type)
1863};
1864
Guido van Rossumba21a492001-08-16 08:17:26 +00001865void
1866_Py_ReadyTypes(void)
1867{
1868 if (PyType_Ready(&PyType_Type) < 0)
1869 Py_FatalError("Can't initialize 'type'");
1870
Fred Drake0a4dd392004-07-02 18:57:45 +00001871 if (PyType_Ready(&_PyWeakref_RefType) < 0)
1872 Py_FatalError("Can't initialize 'weakref'");
1873
Guido van Rossum77f6a652002-04-03 22:41:51 +00001874 if (PyType_Ready(&PyBool_Type) < 0)
1875 Py_FatalError("Can't initialize 'bool'");
1876
Guido van Rossum4dfe8a12006-04-22 23:28:04 +00001877 if (PyType_Ready(&PyBytes_Type) < 0)
1878 Py_FatalError("Can't initialize 'bytes'");
1879
Guido van Rossumcacfc072002-05-24 19:01:59 +00001880 if (PyType_Ready(&PyString_Type) < 0)
1881 Py_FatalError("Can't initialize 'str'");
1882
Guido van Rossumba21a492001-08-16 08:17:26 +00001883 if (PyType_Ready(&PyList_Type) < 0)
1884 Py_FatalError("Can't initialize 'list'");
1885
1886 if (PyType_Ready(&PyNone_Type) < 0)
1887 Py_FatalError("Can't initialize type(None)");
1888
1889 if (PyType_Ready(&PyNotImplemented_Type) < 0)
1890 Py_FatalError("Can't initialize type(NotImplemented)");
1891}
1892
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001893
Guido van Rossum84a90321996-05-22 16:34:47 +00001894#ifdef Py_TRACE_REFS
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001895
Guido van Rossumaacdc9d1996-08-12 21:32:12 +00001896void
Fred Drake100814d2000-07-09 15:48:49 +00001897_Py_NewReference(PyObject *op)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001898{
Tim Peters34592512002-07-11 06:23:50 +00001899 _Py_INC_REFTOTAL;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001900 op->ob_refcnt = 1;
Tim Peters7571a0f2003-03-23 17:52:28 +00001901 _Py_AddToAllObjects(op, 1);
Tim Peters34592512002-07-11 06:23:50 +00001902 _Py_INC_TPALLOCS(op);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001903}
1904
Guido van Rossumaacdc9d1996-08-12 21:32:12 +00001905void
Fred Drake100814d2000-07-09 15:48:49 +00001906_Py_ForgetReference(register PyObject *op)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001907{
Guido van Rossumbffd6832000-01-20 22:32:56 +00001908#ifdef SLOW_UNREF_CHECK
Guido van Rossum4c08d552000-03-10 22:55:18 +00001909 register PyObject *p;
Guido van Rossumbffd6832000-01-20 22:32:56 +00001910#endif
Guido van Rossumd7047b31995-01-02 19:07:15 +00001911 if (op->ob_refcnt < 0)
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001912 Py_FatalError("UNREF negative refcnt");
Guido van Rossum2e8f6141992-09-03 20:32:55 +00001913 if (op == &refchain ||
Guido van Rossumd7047b31995-01-02 19:07:15 +00001914 op->_ob_prev->_ob_next != op || op->_ob_next->_ob_prev != op)
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001915 Py_FatalError("UNREF invalid object");
Guido van Rossum2e8f6141992-09-03 20:32:55 +00001916#ifdef SLOW_UNREF_CHECK
Guido van Rossum3f5da241990-12-20 15:06:42 +00001917 for (p = refchain._ob_next; p != &refchain; p = p->_ob_next) {
1918 if (p == op)
1919 break;
1920 }
Guido van Rossumd7047b31995-01-02 19:07:15 +00001921 if (p == &refchain) /* Not found */
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001922 Py_FatalError("UNREF unknown object");
Guido van Rossum2e8f6141992-09-03 20:32:55 +00001923#endif
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001924 op->_ob_next->_ob_prev = op->_ob_prev;
1925 op->_ob_prev->_ob_next = op->_ob_next;
Guido van Rossum2e8f6141992-09-03 20:32:55 +00001926 op->_ob_next = op->_ob_prev = NULL;
Tim Peters34592512002-07-11 06:23:50 +00001927 _Py_INC_TPFREES(op);
Guido van Rossum3f5da241990-12-20 15:06:42 +00001928}
1929
Guido van Rossumaacdc9d1996-08-12 21:32:12 +00001930void
Fred Drake100814d2000-07-09 15:48:49 +00001931_Py_Dealloc(PyObject *op)
Guido van Rossum3f5da241990-12-20 15:06:42 +00001932{
Guido van Rossum9776adf1994-09-07 14:36:45 +00001933 destructor dealloc = op->ob_type->tp_dealloc;
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001934 _Py_ForgetReference(op);
Guido van Rossum9776adf1994-09-07 14:36:45 +00001935 (*dealloc)(op);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001936}
1937
Tim Peters269b2a62003-04-17 19:52:29 +00001938/* Print all live objects. Because PyObject_Print is called, the
1939 * interpreter must be in a healthy state.
1940 */
Guido van Rossumaacdc9d1996-08-12 21:32:12 +00001941void
Fred Drake100814d2000-07-09 15:48:49 +00001942_Py_PrintReferences(FILE *fp)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001943{
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001944 PyObject *op;
Guido van Rossume09fb551997-08-05 02:04:34 +00001945 fprintf(fp, "Remaining objects:\n");
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001946 for (op = refchain._ob_next; op != &refchain; op = op->_ob_next) {
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001947 fprintf(fp, "%p [%" PY_FORMAT_SIZE_T "d] ", op, op->ob_refcnt);
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001948 if (PyObject_Print(op, fp, 0) != 0)
1949 PyErr_Clear();
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001950 putc('\n', fp);
1951 }
1952}
1953
Tim Peters269b2a62003-04-17 19:52:29 +00001954/* Print the addresses of all live objects. Unlike _Py_PrintReferences, this
1955 * doesn't make any calls to the Python C API, so is always safe to call.
1956 */
1957void
1958_Py_PrintReferenceAddresses(FILE *fp)
1959{
1960 PyObject *op;
1961 fprintf(fp, "Remaining object addresses:\n");
1962 for (op = refchain._ob_next; op != &refchain; op = op->_ob_next)
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001963 fprintf(fp, "%p [%" PY_FORMAT_SIZE_T "d] %s\n", op,
1964 op->ob_refcnt, op->ob_type->tp_name);
Tim Peters269b2a62003-04-17 19:52:29 +00001965}
1966
Sjoerd Mullender6ec3c651995-08-29 09:18:14 +00001967PyObject *
Fred Drake100814d2000-07-09 15:48:49 +00001968_Py_GetObjects(PyObject *self, PyObject *args)
Sjoerd Mullender6ec3c651995-08-29 09:18:14 +00001969{
1970 int i, n;
1971 PyObject *t = NULL;
1972 PyObject *res, *op;
1973
1974 if (!PyArg_ParseTuple(args, "i|O", &n, &t))
1975 return NULL;
1976 op = refchain._ob_next;
1977 res = PyList_New(0);
1978 if (res == NULL)
1979 return NULL;
1980 for (i = 0; (n == 0 || i < n) && op != &refchain; i++) {
1981 while (op == self || op == args || op == res || op == t ||
Guido van Rossum3c296022001-07-14 17:58:00 +00001982 (t != NULL && op->ob_type != (PyTypeObject *) t)) {
Sjoerd Mullender6ec3c651995-08-29 09:18:14 +00001983 op = op->_ob_next;
1984 if (op == &refchain)
1985 return res;
1986 }
1987 if (PyList_Append(res, op) < 0) {
1988 Py_DECREF(res);
1989 return NULL;
1990 }
1991 op = op->_ob_next;
1992 }
1993 return res;
1994}
1995
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001996#endif
Guido van Rossum97ead3f1996-01-12 01:24:09 +00001997
1998
1999/* Hack to force loading of cobject.o */
Guido van Rossumda9c2711996-12-05 21:58:58 +00002000PyTypeObject *_Py_cobject_hack = &PyCObject_Type;
Guido van Rossum84a90321996-05-22 16:34:47 +00002001
2002
2003/* Hack to force loading of abstract.o */
Martin v. Löwis18e16552006-02-15 17:27:45 +00002004Py_ssize_t (*_Py_abstract_hack)(PyObject *) = PyObject_Size;
Guido van Rossume09fb551997-08-05 02:04:34 +00002005
2006
Andrew M. Kuchling1582a3a2000-08-16 12:27:23 +00002007/* Python's malloc wrappers (see pymem.h) */
Guido van Rossume09fb551997-08-05 02:04:34 +00002008
Thomas Wouters334fb892000-07-25 12:56:38 +00002009void *
Fred Drake100814d2000-07-09 15:48:49 +00002010PyMem_Malloc(size_t nbytes)
Guido van Rossume09fb551997-08-05 02:04:34 +00002011{
Guido van Rossumb18618d2000-05-03 23:44:39 +00002012 return PyMem_MALLOC(nbytes);
Guido van Rossume09fb551997-08-05 02:04:34 +00002013}
2014
Thomas Wouters334fb892000-07-25 12:56:38 +00002015void *
2016PyMem_Realloc(void *p, size_t nbytes)
Guido van Rossume09fb551997-08-05 02:04:34 +00002017{
Tim Petersaf3e8de2002-04-12 07:22:56 +00002018 return PyMem_REALLOC(p, nbytes);
Guido van Rossume09fb551997-08-05 02:04:34 +00002019}
2020
2021void
Thomas Wouters334fb892000-07-25 12:56:38 +00002022PyMem_Free(void *p)
Guido van Rossume09fb551997-08-05 02:04:34 +00002023{
Guido van Rossumb18618d2000-05-03 23:44:39 +00002024 PyMem_FREE(p);
2025}
2026
2027
Guido van Rossum86610361998-04-10 22:32:46 +00002028/* These methods are used to control infinite recursion in repr, str, print,
2029 etc. Container objects that may recursively contain themselves,
2030 e.g. builtin dictionaries and lists, should used Py_ReprEnter() and
2031 Py_ReprLeave() to avoid infinite recursion.
2032
2033 Py_ReprEnter() returns 0 the first time it is called for a particular
2034 object and 1 every time thereafter. It returns -1 if an exception
2035 occurred. Py_ReprLeave() has no return value.
2036
2037 See dictobject.c and listobject.c for examples of use.
2038*/
2039
2040#define KEY "Py_Repr"
2041
2042int
Fred Drake100814d2000-07-09 15:48:49 +00002043Py_ReprEnter(PyObject *obj)
Guido van Rossum86610361998-04-10 22:32:46 +00002044{
2045 PyObject *dict;
2046 PyObject *list;
Martin v. Löwis18e16552006-02-15 17:27:45 +00002047 Py_ssize_t i;
Guido van Rossum86610361998-04-10 22:32:46 +00002048
2049 dict = PyThreadState_GetDict();
2050 if (dict == NULL)
Guido van Rossum0fc8f002003-04-15 15:12:39 +00002051 return 0;
Guido van Rossum86610361998-04-10 22:32:46 +00002052 list = PyDict_GetItemString(dict, KEY);
2053 if (list == NULL) {
2054 list = PyList_New(0);
2055 if (list == NULL)
2056 return -1;
2057 if (PyDict_SetItemString(dict, KEY, list) < 0)
2058 return -1;
2059 Py_DECREF(list);
2060 }
2061 i = PyList_GET_SIZE(list);
2062 while (--i >= 0) {
2063 if (PyList_GET_ITEM(list, i) == obj)
2064 return 1;
2065 }
2066 PyList_Append(list, obj);
2067 return 0;
2068}
2069
2070void
Fred Drake100814d2000-07-09 15:48:49 +00002071Py_ReprLeave(PyObject *obj)
Guido van Rossum86610361998-04-10 22:32:46 +00002072{
2073 PyObject *dict;
2074 PyObject *list;
Martin v. Löwis18e16552006-02-15 17:27:45 +00002075 Py_ssize_t i;
Guido van Rossum86610361998-04-10 22:32:46 +00002076
2077 dict = PyThreadState_GetDict();
Guido van Rossumeb909461998-04-11 15:17:34 +00002078 if (dict == NULL)
2079 return;
Guido van Rossum86610361998-04-10 22:32:46 +00002080 list = PyDict_GetItemString(dict, KEY);
Guido van Rossumeb909461998-04-11 15:17:34 +00002081 if (list == NULL || !PyList_Check(list))
2082 return;
Guido van Rossum86610361998-04-10 22:32:46 +00002083 i = PyList_GET_SIZE(list);
2084 /* Count backwards because we always expect obj to be list[-1] */
2085 while (--i >= 0) {
2086 if (PyList_GET_ITEM(list, i) == obj) {
2087 PyList_SetSlice(list, i, i + 1, NULL);
2088 break;
2089 }
2090 }
2091}
Guido van Rossumd724b232000-03-13 16:01:29 +00002092
Tim Peters803526b2002-07-07 05:13:56 +00002093/* Trashcan support. */
Guido van Rossumd724b232000-03-13 16:01:29 +00002094
Tim Peters803526b2002-07-07 05:13:56 +00002095/* Current call-stack depth of tp_dealloc calls. */
Guido van Rossumd724b232000-03-13 16:01:29 +00002096int _PyTrash_delete_nesting = 0;
Guido van Rossume92e6102000-04-24 15:40:53 +00002097
Tim Peters803526b2002-07-07 05:13:56 +00002098/* List of objects that still need to be cleaned up, singly linked via their
2099 * gc headers' gc_prev pointers.
2100 */
2101PyObject *_PyTrash_delete_later = NULL;
Guido van Rossumd724b232000-03-13 16:01:29 +00002102
Tim Peters803526b2002-07-07 05:13:56 +00002103/* Add op to the _PyTrash_delete_later list. Called when the current
2104 * call-stack depth gets large. op must be a currently untracked gc'ed
2105 * object, with refcount 0. Py_DECREF must already have been called on it.
2106 */
Guido van Rossumd724b232000-03-13 16:01:29 +00002107void
Fred Drake100814d2000-07-09 15:48:49 +00002108_PyTrash_deposit_object(PyObject *op)
Guido van Rossumd724b232000-03-13 16:01:29 +00002109{
Tim Peters803526b2002-07-07 05:13:56 +00002110 assert(PyObject_IS_GC(op));
2111 assert(_Py_AS_GC(op)->gc.gc_refs == _PyGC_REFS_UNTRACKED);
2112 assert(op->ob_refcnt == 0);
Neil Schemenauerf589c052002-03-29 03:05:54 +00002113 _Py_AS_GC(op)->gc.gc_prev = (PyGC_Head *)_PyTrash_delete_later;
Guido van Rossume92e6102000-04-24 15:40:53 +00002114 _PyTrash_delete_later = op;
Guido van Rossumd724b232000-03-13 16:01:29 +00002115}
2116
Tim Peters803526b2002-07-07 05:13:56 +00002117/* Dealloccate all the objects in the _PyTrash_delete_later list. Called when
2118 * the call-stack unwinds again.
2119 */
Guido van Rossumd724b232000-03-13 16:01:29 +00002120void
Fred Drake100814d2000-07-09 15:48:49 +00002121_PyTrash_destroy_chain(void)
Guido van Rossumd724b232000-03-13 16:01:29 +00002122{
2123 while (_PyTrash_delete_later) {
Tim Peters803526b2002-07-07 05:13:56 +00002124 PyObject *op = _PyTrash_delete_later;
2125 destructor dealloc = op->ob_type->tp_dealloc;
Neil Schemenauerf589c052002-03-29 03:05:54 +00002126
Neil Schemenauerf589c052002-03-29 03:05:54 +00002127 _PyTrash_delete_later =
Tim Peters803526b2002-07-07 05:13:56 +00002128 (PyObject*) _Py_AS_GC(op)->gc.gc_prev;
Neil Schemenauerf589c052002-03-29 03:05:54 +00002129
Tim Peters803526b2002-07-07 05:13:56 +00002130 /* Call the deallocator directly. This used to try to
2131 * fool Py_DECREF into calling it indirectly, but
2132 * Py_DECREF was already called on this object, and in
2133 * assorted non-release builds calling Py_DECREF again ends
2134 * up distorting allocation statistics.
2135 */
2136 assert(op->ob_refcnt == 0);
Guido van Rossumd724b232000-03-13 16:01:29 +00002137 ++_PyTrash_delete_nesting;
Tim Peters803526b2002-07-07 05:13:56 +00002138 (*dealloc)(op);
Guido van Rossumd724b232000-03-13 16:01:29 +00002139 --_PyTrash_delete_nesting;
2140 }
2141}
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00002142
2143#ifdef __cplusplus
2144}
2145#endif
2146