blob: 44b3f7db7e2fea57cefb6ca412f3cf90c88c7b91 [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 Rossum50e9fb92006-08-17 05:42:55 +00005#include "sliceobject.h" /* For PyEllipsis_Type */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00006
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00007#ifdef __cplusplus
8extern "C" {
9#endif
10
Tim Peters34592512002-07-11 06:23:50 +000011#ifdef Py_REF_DEBUG
Neal Norwitz84632ee2006-03-04 20:00:59 +000012Py_ssize_t _Py_RefTotal;
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000013
14Py_ssize_t
15_Py_GetRefTotal(void)
16{
17 PyObject *o;
18 Py_ssize_t total = _Py_RefTotal;
19 /* ignore the references to the dummy object of the dicts and sets
20 because they are not reliable and not useful (now that the
21 hash table code is well-tested) */
22 o = _PyDict_Dummy();
23 if (o != NULL)
24 total -= o->ob_refcnt;
25 o = _PySet_Dummy();
26 if (o != NULL)
27 total -= o->ob_refcnt;
28 return total;
29}
30#endif /* Py_REF_DEBUG */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000031
Mark Hammonda2905272002-07-29 13:42:14 +000032int Py_DivisionWarningFlag;
Guido van Rossum393661d2001-08-31 17:40:15 +000033
Guido van Rossum3f5da241990-12-20 15:06:42 +000034/* Object allocation routines used by NEWOBJ and NEWVAROBJ macros.
35 These are used by the individual routines for object creation.
36 Do not call them otherwise, they do not initialize the object! */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000037
Tim Peters78be7992003-03-23 02:51:01 +000038#ifdef Py_TRACE_REFS
Tim Peters7571a0f2003-03-23 17:52:28 +000039/* Head of circular doubly-linked list of all objects. These are linked
40 * together via the _ob_prev and _ob_next members of a PyObject, which
41 * exist only in a Py_TRACE_REFS build.
42 */
Tim Peters78be7992003-03-23 02:51:01 +000043static PyObject refchain = {&refchain, &refchain};
Tim Peters36eb4df2003-03-23 03:33:13 +000044
Tim Peters7571a0f2003-03-23 17:52:28 +000045/* Insert op at the front of the list of all objects. If force is true,
46 * op is added even if _ob_prev and _ob_next are non-NULL already. If
47 * force is false amd _ob_prev or _ob_next are non-NULL, do nothing.
48 * force should be true if and only if op points to freshly allocated,
49 * uninitialized memory, or you've unlinked op from the list and are
Tim Peters51f8d382003-03-23 18:06:08 +000050 * relinking it into the front.
Tim Peters7571a0f2003-03-23 17:52:28 +000051 * Note that objects are normally added to the list via _Py_NewReference,
52 * which is called by PyObject_Init. Not all objects are initialized that
53 * way, though; exceptions include statically allocated type objects, and
54 * statically allocated singletons (like Py_True and Py_None).
55 */
Tim Peters36eb4df2003-03-23 03:33:13 +000056void
Tim Peters7571a0f2003-03-23 17:52:28 +000057_Py_AddToAllObjects(PyObject *op, int force)
Tim Peters36eb4df2003-03-23 03:33:13 +000058{
Tim Peters7571a0f2003-03-23 17:52:28 +000059#ifdef Py_DEBUG
60 if (!force) {
61 /* If it's initialized memory, op must be in or out of
62 * the list unambiguously.
63 */
64 assert((op->_ob_prev == NULL) == (op->_ob_next == NULL));
65 }
Tim Peters78be7992003-03-23 02:51:01 +000066#endif
Tim Peters7571a0f2003-03-23 17:52:28 +000067 if (force || op->_ob_prev == NULL) {
68 op->_ob_next = refchain._ob_next;
69 op->_ob_prev = &refchain;
70 refchain._ob_next->_ob_prev = op;
71 refchain._ob_next = op;
72 }
73}
74#endif /* Py_TRACE_REFS */
Tim Peters78be7992003-03-23 02:51:01 +000075
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +000076#ifdef COUNT_ALLOCS
Guido van Rossumc0b618a1997-05-02 03:12:38 +000077static PyTypeObject *type_list;
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000078/* All types are added to type_list, at least when
79 they get one object created. That makes them
80 immortal, which unfortunately contributes to
81 garbage itself. If unlist_types_without_objects
82 is set, they will be removed from the type_list
83 once the last object is deallocated. */
84int unlist_types_without_objects;
Sjoerd Mullender842d2cc1993-10-15 16:18:48 +000085extern int tuple_zero_allocs, fast_tuple_allocs;
86extern int quick_int_allocs, quick_neg_int_allocs;
Sjoerd Mullender3bb8a051993-10-22 12:04:32 +000087extern int null_strings, one_strings;
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +000088void
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000089dump_counts(FILE* f)
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +000090{
Guido van Rossumc0b618a1997-05-02 03:12:38 +000091 PyTypeObject *tp;
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +000092
93 for (tp = type_list; tp; tp = tp->tp_next)
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000094 fprintf(f, "%s alloc'd: %d, freed: %d, max in use: %d\n",
Tim Peters6d6c1a32001-08-02 04:15:00 +000095 tp->tp_name, tp->tp_allocs, tp->tp_frees,
Sjoerd Mullender52c1f511993-10-25 08:40:52 +000096 tp->tp_maxalloc);
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000097 fprintf(f, "fast tuple allocs: %d, empty: %d\n",
Sjoerd Mullender52c1f511993-10-25 08:40:52 +000098 fast_tuple_allocs, tuple_zero_allocs);
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000099 fprintf(f, "fast int allocs: pos: %d, neg: %d\n",
Sjoerd Mullender52c1f511993-10-25 08:40:52 +0000100 quick_int_allocs, quick_neg_int_allocs);
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000101 fprintf(f, "null strings: %d, 1-strings: %d\n",
Sjoerd Mullender52c1f511993-10-25 08:40:52 +0000102 null_strings, one_strings);
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +0000103}
104
Sjoerd Mullender6ec3c651995-08-29 09:18:14 +0000105PyObject *
Fred Drake100814d2000-07-09 15:48:49 +0000106get_counts(void)
Sjoerd Mullender6ec3c651995-08-29 09:18:14 +0000107{
108 PyTypeObject *tp;
109 PyObject *result;
110 PyObject *v;
111
112 result = PyList_New(0);
113 if (result == NULL)
114 return NULL;
115 for (tp = type_list; tp; tp = tp->tp_next) {
Thomas Wouters4d70c3d2006-06-08 14:42:34 +0000116 v = Py_BuildValue("(snnn)", tp->tp_name, tp->tp_allocs,
Tim Peters6d6c1a32001-08-02 04:15:00 +0000117 tp->tp_frees, tp->tp_maxalloc);
Sjoerd Mullender6ec3c651995-08-29 09:18:14 +0000118 if (v == NULL) {
119 Py_DECREF(result);
120 return NULL;
121 }
122 if (PyList_Append(result, v) < 0) {
123 Py_DECREF(v);
124 Py_DECREF(result);
125 return NULL;
126 }
127 Py_DECREF(v);
128 }
129 return result;
130}
131
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +0000132void
Fred Drake100814d2000-07-09 15:48:49 +0000133inc_count(PyTypeObject *tp)
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +0000134{
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000135 if (tp->tp_next == NULL && tp->tp_prev == NULL) {
Guido van Rossumd8953cb1995-04-06 14:46:26 +0000136 /* first time; insert in linked list */
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +0000137 if (tp->tp_next != NULL) /* sanity check */
Guido van Rossumc0b618a1997-05-02 03:12:38 +0000138 Py_FatalError("XXX inc_count sanity check");
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000139 if (type_list)
140 type_list->tp_prev = tp;
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +0000141 tp->tp_next = type_list;
Tim Petersc6a3ff62002-07-08 22:11:52 +0000142 /* Note that as of Python 2.2, heap-allocated type objects
143 * can go away, but this code requires that they stay alive
144 * until program exit. That's why we're careful with
145 * refcounts here. type_list gets a new reference to tp,
146 * while ownership of the reference type_list used to hold
147 * (if any) was transferred to tp->tp_next in the line above.
148 * tp is thus effectively immortal after this.
149 */
150 Py_INCREF(tp);
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +0000151 type_list = tp;
Tim Peters3e40c7f2003-03-23 03:04:32 +0000152#ifdef Py_TRACE_REFS
Tim Peters7571a0f2003-03-23 17:52:28 +0000153 /* Also insert in the doubly-linked list of all objects,
154 * if not already there.
155 */
156 _Py_AddToAllObjects((PyObject *)tp, 0);
Tim Peters78be7992003-03-23 02:51:01 +0000157#endif
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +0000158 }
Tim Peters6d6c1a32001-08-02 04:15:00 +0000159 tp->tp_allocs++;
160 if (tp->tp_allocs - tp->tp_frees > tp->tp_maxalloc)
161 tp->tp_maxalloc = tp->tp_allocs - tp->tp_frees;
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +0000162}
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000163
164void dec_count(PyTypeObject *tp)
165{
166 tp->tp_frees++;
167 if (unlist_types_without_objects &&
168 tp->tp_allocs == tp->tp_frees) {
169 /* unlink the type from type_list */
170 if (tp->tp_prev)
171 tp->tp_prev->tp_next = tp->tp_next;
172 else
173 type_list = tp->tp_next;
174 if (tp->tp_next)
175 tp->tp_next->tp_prev = tp->tp_prev;
176 tp->tp_next = tp->tp_prev = NULL;
177 Py_DECREF(tp);
178 }
179}
180
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +0000181#endif
182
Tim Peters7c321a82002-07-09 02:57:01 +0000183#ifdef Py_REF_DEBUG
184/* Log a fatal error; doesn't return. */
185void
186_Py_NegativeRefcount(const char *fname, int lineno, PyObject *op)
187{
188 char buf[300];
189
190 PyOS_snprintf(buf, sizeof(buf),
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000191 "%s:%i object at %p has negative ref count "
192 "%" PY_FORMAT_SIZE_T "d",
193 fname, lineno, op, op->ob_refcnt);
Tim Peters7c321a82002-07-09 02:57:01 +0000194 Py_FatalError(buf);
195}
196
197#endif /* Py_REF_DEBUG */
198
Thomas Heller1328b522004-04-22 17:23:49 +0000199void
200Py_IncRef(PyObject *o)
201{
202 Py_XINCREF(o);
203}
204
205void
206Py_DecRef(PyObject *o)
207{
208 Py_XDECREF(o);
209}
210
Guido van Rossumc0b618a1997-05-02 03:12:38 +0000211PyObject *
Fred Drake100814d2000-07-09 15:48:49 +0000212PyObject_Init(PyObject *op, PyTypeObject *tp)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000213{
Guido van Rossum6e08c142002-10-11 20:37:24 +0000214 if (op == NULL)
215 return PyErr_NoMemory();
Guido van Rossumb18618d2000-05-03 23:44:39 +0000216 /* Any changes should be reflected in PyObject_INIT (objimpl.h) */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000217 op->ob_type = tp;
Guido van Rossumc0b618a1997-05-02 03:12:38 +0000218 _Py_NewReference(op);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000219 return op;
220}
221
Guido van Rossumb18618d2000-05-03 23:44:39 +0000222PyVarObject *
Martin v. Löwis18e16552006-02-15 17:27:45 +0000223PyObject_InitVar(PyVarObject *op, PyTypeObject *tp, Py_ssize_t size)
Guido van Rossumb18618d2000-05-03 23:44:39 +0000224{
Guido van Rossum6e08c142002-10-11 20:37:24 +0000225 if (op == NULL)
226 return (PyVarObject *) PyErr_NoMemory();
Guido van Rossumb18618d2000-05-03 23:44:39 +0000227 /* Any changes should be reflected in PyObject_INIT_VAR */
228 op->ob_size = size;
229 op->ob_type = tp;
230 _Py_NewReference((PyObject *)op);
231 return op;
232}
233
234PyObject *
Fred Drake100814d2000-07-09 15:48:49 +0000235_PyObject_New(PyTypeObject *tp)
Guido van Rossumb18618d2000-05-03 23:44:39 +0000236{
237 PyObject *op;
238 op = (PyObject *) PyObject_MALLOC(_PyObject_SIZE(tp));
239 if (op == NULL)
240 return PyErr_NoMemory();
241 return PyObject_INIT(op, tp);
242}
243
Guido van Rossumd0c87ee1997-05-15 21:31:03 +0000244PyVarObject *
Martin v. Löwis18e16552006-02-15 17:27:45 +0000245_PyObject_NewVar(PyTypeObject *tp, Py_ssize_t nitems)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000246{
Guido van Rossumb18618d2000-05-03 23:44:39 +0000247 PyVarObject *op;
Tim Petersf2a67da2001-10-07 03:54:51 +0000248 const size_t size = _PyObject_VAR_SIZE(tp, nitems);
Tim Peters6d483d32001-10-06 21:27:34 +0000249 op = (PyVarObject *) PyObject_MALLOC(size);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000250 if (op == NULL)
Guido van Rossumd0c87ee1997-05-15 21:31:03 +0000251 return (PyVarObject *)PyErr_NoMemory();
Tim Peters6d483d32001-10-06 21:27:34 +0000252 return PyObject_INIT_VAR(op, tp, nitems);
Guido van Rossumb18618d2000-05-03 23:44:39 +0000253}
254
Neil Schemenauerbdf0eed2002-04-12 03:08:42 +0000255/* for binary compatibility with 2.2 */
256#undef _PyObject_Del
Guido van Rossumb18618d2000-05-03 23:44:39 +0000257void
Fred Drake100814d2000-07-09 15:48:49 +0000258_PyObject_Del(PyObject *op)
Guido van Rossumb18618d2000-05-03 23:44:39 +0000259{
Guido van Rossum4cc6ac72000-07-01 01:00:38 +0000260 PyObject_FREE(op);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000261}
262
Neal Norwitz1a997502003-01-13 20:13:12 +0000263/* Implementation of PyObject_Print with recursion checking */
264static int
265internal_print(PyObject *op, FILE *fp, int flags, int nesting)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000266{
Guido van Rossum278ef591991-07-27 21:40:24 +0000267 int ret = 0;
Neal Norwitz1a997502003-01-13 20:13:12 +0000268 if (nesting > 10) {
269 PyErr_SetString(PyExc_RuntimeError, "print recursion");
270 return -1;
271 }
Guido van Rossumc0b618a1997-05-02 03:12:38 +0000272 if (PyErr_CheckSignals())
Guido van Rossum90933611991-06-07 16:10:43 +0000273 return -1;
Guido van Rossum9b00dfa1998-04-28 16:06:54 +0000274#ifdef USE_STACKCHECK
275 if (PyOS_CheckStack()) {
Fred Drake661ea262000-10-24 19:57:45 +0000276 PyErr_SetString(PyExc_MemoryError, "stack overflow");
Guido van Rossum9b00dfa1998-04-28 16:06:54 +0000277 return -1;
278 }
279#endif
Guido van Rossum687ef6e2000-01-12 16:28:58 +0000280 clearerr(fp); /* Clear any previous error condition */
Guido van Rossum90933611991-06-07 16:10:43 +0000281 if (op == NULL) {
282 fprintf(fp, "<nil>");
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000283 }
Guido van Rossum90933611991-06-07 16:10:43 +0000284 else {
285 if (op->ob_refcnt <= 0)
Thomas Wouters8b87a0b2006-03-01 05:41:20 +0000286 /* XXX(twouters) cast refcount to long until %zd is
287 universally available */
288 fprintf(fp, "<refcnt %ld at %p>",
289 (long)op->ob_refcnt, op);
Guido van Rossum2e8f6141992-09-03 20:32:55 +0000290 else if (op->ob_type->tp_print == NULL) {
Guido van Rossum4f288ab2001-05-01 16:53:37 +0000291 PyObject *s;
292 if (flags & Py_PRINT_RAW)
293 s = PyObject_Str(op);
294 else
295 s = PyObject_Repr(op);
296 if (s == NULL)
297 ret = -1;
Guido van Rossum2e8f6141992-09-03 20:32:55 +0000298 else {
Neal Norwitz1a997502003-01-13 20:13:12 +0000299 ret = internal_print(s, fp, Py_PRINT_RAW,
300 nesting+1);
Guido van Rossum2e8f6141992-09-03 20:32:55 +0000301 }
Guido van Rossum4f288ab2001-05-01 16:53:37 +0000302 Py_XDECREF(s);
Guido van Rossum2e8f6141992-09-03 20:32:55 +0000303 }
Guido van Rossum90933611991-06-07 16:10:43 +0000304 else
Guido van Rossum278ef591991-07-27 21:40:24 +0000305 ret = (*op->ob_type->tp_print)(op, fp, flags);
Guido van Rossum90933611991-06-07 16:10:43 +0000306 }
Guido van Rossum278ef591991-07-27 21:40:24 +0000307 if (ret == 0) {
308 if (ferror(fp)) {
Guido van Rossumc0b618a1997-05-02 03:12:38 +0000309 PyErr_SetFromErrno(PyExc_IOError);
Guido van Rossum278ef591991-07-27 21:40:24 +0000310 clearerr(fp);
311 ret = -1;
312 }
313 }
314 return ret;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000315}
316
Neal Norwitz1a997502003-01-13 20:13:12 +0000317int
318PyObject_Print(PyObject *op, FILE *fp, int flags)
319{
320 return internal_print(op, fp, flags, 0);
321}
322
323
Barry Warsaw9bf16442001-01-23 16:24:35 +0000324/* For debugging convenience. See Misc/gdbinit for some useful gdb hooks */
Tim Peters803526b2002-07-07 05:13:56 +0000325void _PyObject_Dump(PyObject* op)
Barry Warsaw9bf16442001-01-23 16:24:35 +0000326{
Barry Warsaweefb1072001-02-22 22:39:18 +0000327 if (op == NULL)
328 fprintf(stderr, "NULL\n");
329 else {
Guido van Rossum5f5512d2001-09-14 15:50:08 +0000330 fprintf(stderr, "object : ");
Barry Warsaweefb1072001-02-22 22:39:18 +0000331 (void)PyObject_Print(op, stderr, 0);
Thomas Wouters8b87a0b2006-03-01 05:41:20 +0000332 /* XXX(twouters) cast refcount to long until %zd is
333 universally available */
Guido van Rossum5f5512d2001-09-14 15:50:08 +0000334 fprintf(stderr, "\n"
335 "type : %s\n"
Thomas Wouters8b87a0b2006-03-01 05:41:20 +0000336 "refcount: %ld\n"
Guido van Rossum5f5512d2001-09-14 15:50:08 +0000337 "address : %p\n",
338 op->ob_type==NULL ? "NULL" : op->ob_type->tp_name,
Thomas Wouters8b87a0b2006-03-01 05:41:20 +0000339 (long)op->ob_refcnt,
Guido van Rossum5f5512d2001-09-14 15:50:08 +0000340 op);
Barry Warsaweefb1072001-02-22 22:39:18 +0000341 }
Barry Warsaw9bf16442001-01-23 16:24:35 +0000342}
Barry Warsaw903138f2001-01-23 16:33:18 +0000343
Guido van Rossumc0b618a1997-05-02 03:12:38 +0000344PyObject *
Fred Drake100814d2000-07-09 15:48:49 +0000345PyObject_Repr(PyObject *v)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000346{
Guido van Rossumc0b618a1997-05-02 03:12:38 +0000347 if (PyErr_CheckSignals())
Guido van Rossum90933611991-06-07 16:10:43 +0000348 return NULL;
Guido van Rossum9b00dfa1998-04-28 16:06:54 +0000349#ifdef USE_STACKCHECK
350 if (PyOS_CheckStack()) {
Fred Drake661ea262000-10-24 19:57:45 +0000351 PyErr_SetString(PyExc_MemoryError, "stack overflow");
Guido van Rossum9b00dfa1998-04-28 16:06:54 +0000352 return NULL;
353 }
354#endif
Guido van Rossum90933611991-06-07 16:10:43 +0000355 if (v == NULL)
Guido van Rossumc0b618a1997-05-02 03:12:38 +0000356 return PyString_FromString("<NULL>");
Barry Warsaw7ce36942001-08-24 18:34:26 +0000357 else if (v->ob_type->tp_repr == NULL)
Guido van Rossum21922aa2001-08-30 20:26:05 +0000358 return PyString_FromFormat("<%s object at %p>",
Barry Warsaw7ce36942001-08-24 18:34:26 +0000359 v->ob_type->tp_name, v);
Guido van Rossum4c08d552000-03-10 22:55:18 +0000360 else {
361 PyObject *res;
362 res = (*v->ob_type->tp_repr)(v);
363 if (res == NULL)
364 return NULL;
Martin v. Löwis339d0f72001-08-17 18:39:25 +0000365#ifdef Py_USING_UNICODE
Fredrik Lundhefecc7d2000-07-01 14:31:09 +0000366 if (PyUnicode_Check(res)) {
367 PyObject* str;
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000368 str = PyUnicode_AsEncodedString(res, NULL, NULL);
Marc-André Lemburg891bc652000-07-03 09:57:53 +0000369 Py_DECREF(res);
370 if (str)
Fredrik Lundhefecc7d2000-07-01 14:31:09 +0000371 res = str;
Marc-André Lemburg891bc652000-07-03 09:57:53 +0000372 else
373 return NULL;
Fredrik Lundhefecc7d2000-07-01 14:31:09 +0000374 }
Martin v. Löwis339d0f72001-08-17 18:39:25 +0000375#endif
Guido van Rossum4c08d552000-03-10 22:55:18 +0000376 if (!PyString_Check(res)) {
377 PyErr_Format(PyExc_TypeError,
Guido van Rossum5db862d2000-04-10 12:46:51 +0000378 "__repr__ returned non-string (type %.200s)",
Guido van Rossum4c08d552000-03-10 22:55:18 +0000379 res->ob_type->tp_name);
380 Py_DECREF(res);
381 return NULL;
382 }
383 return res;
384 }
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000385}
386
Guido van Rossumc0b618a1997-05-02 03:12:38 +0000387PyObject *
Neil Schemenauercf52c072005-08-12 17:34:58 +0000388_PyObject_Str(PyObject *v)
Guido van Rossumc6004111993-11-05 10:22:19 +0000389{
Guido van Rossum4c08d552000-03-10 22:55:18 +0000390 PyObject *res;
Neil Schemenauercf52c072005-08-12 17:34:58 +0000391 int type_ok;
Guido van Rossumc6004111993-11-05 10:22:19 +0000392 if (v == NULL)
Guido van Rossumc0b618a1997-05-02 03:12:38 +0000393 return PyString_FromString("<NULL>");
Tim Peters5a49ade2001-09-11 01:41:59 +0000394 if (PyString_CheckExact(v)) {
Guido van Rossumc0b618a1997-05-02 03:12:38 +0000395 Py_INCREF(v);
Guido van Rossumc6004111993-11-05 10:22:19 +0000396 return v;
397 }
Neil Schemenauercf52c072005-08-12 17:34:58 +0000398#ifdef Py_USING_UNICODE
399 if (PyUnicode_CheckExact(v)) {
400 Py_INCREF(v);
401 return v;
402 }
403#endif
Guido van Rossum4f288ab2001-05-01 16:53:37 +0000404 if (v->ob_type->tp_str == NULL)
405 return PyObject_Repr(v);
406
407 res = (*v->ob_type->tp_str)(v);
Guido van Rossum4c08d552000-03-10 22:55:18 +0000408 if (res == NULL)
409 return NULL;
Neil Schemenauercf52c072005-08-12 17:34:58 +0000410 type_ok = PyString_Check(res);
411#ifdef Py_USING_UNICODE
412 type_ok = type_ok || PyUnicode_Check(res);
413#endif
414 if (!type_ok) {
415 PyErr_Format(PyExc_TypeError,
416 "__str__ returned non-string (type %.200s)",
417 res->ob_type->tp_name);
418 Py_DECREF(res);
419 return NULL;
420 }
421 return res;
422}
423
424PyObject *
425PyObject_Str(PyObject *v)
426{
427 PyObject *res = _PyObject_Str(v);
428 if (res == NULL)
429 return NULL;
Martin v. Löwis339d0f72001-08-17 18:39:25 +0000430#ifdef Py_USING_UNICODE
Marc-André Lemburg891bc652000-07-03 09:57:53 +0000431 if (PyUnicode_Check(res)) {
432 PyObject* str;
433 str = PyUnicode_AsEncodedString(res, NULL, NULL);
434 Py_DECREF(res);
435 if (str)
436 res = str;
437 else
438 return NULL;
439 }
Martin v. Löwis339d0f72001-08-17 18:39:25 +0000440#endif
Neil Schemenauercf52c072005-08-12 17:34:58 +0000441 assert(PyString_Check(res));
Guido van Rossum4c08d552000-03-10 22:55:18 +0000442 return res;
Guido van Rossumc6004111993-11-05 10:22:19 +0000443}
444
Martin v. Löwis339d0f72001-08-17 18:39:25 +0000445#ifdef Py_USING_UNICODE
Guido van Rossuma3af41d2001-01-18 22:07:06 +0000446PyObject *
447PyObject_Unicode(PyObject *v)
448{
449 PyObject *res;
Brett Cannonc3647ac2005-04-26 03:45:26 +0000450 PyObject *func;
Neal Norwitz75801462006-03-14 06:02:16 +0000451 PyObject *str;
Brett Cannonc3647ac2005-04-26 03:45:26 +0000452 static PyObject *unicodestr;
Tim Peters803526b2002-07-07 05:13:56 +0000453
Georg Brandl3daf7582006-03-13 22:22:11 +0000454 if (v == NULL) {
Guido van Rossuma3af41d2001-01-18 22:07:06 +0000455 res = PyString_FromString("<NULL>");
Neal Norwitz75801462006-03-14 06:02:16 +0000456 if (res == NULL)
457 return NULL;
458 str = PyUnicode_FromEncodedObject(res, NULL, "strict");
459 Py_DECREF(res);
460 return str;
Georg Brandl3daf7582006-03-13 22:22:11 +0000461 } else if (PyUnicode_CheckExact(v)) {
Guido van Rossuma3af41d2001-01-18 22:07:06 +0000462 Py_INCREF(v);
463 return v;
464 }
Brett Cannonc3647ac2005-04-26 03:45:26 +0000465 /* XXX As soon as we have a tp_unicode slot, we should
466 check this before trying the __unicode__
467 method. */
468 if (unicodestr == NULL) {
469 unicodestr= PyString_InternFromString("__unicode__");
470 if (unicodestr == NULL)
471 return NULL;
Guido van Rossumb8c65bc2001-10-19 02:01:31 +0000472 }
Brett Cannonc3647ac2005-04-26 03:45:26 +0000473 func = PyObject_GetAttr(v, unicodestr);
474 if (func != NULL) {
475 res = PyEval_CallObject(func, (PyObject *)NULL);
476 Py_DECREF(func);
477 }
Guido van Rossuma3af41d2001-01-18 22:07:06 +0000478 else {
Brett Cannonc3647ac2005-04-26 03:45:26 +0000479 PyErr_Clear();
480 if (PyUnicode_Check(v)) {
481 /* For a Unicode subtype that's didn't overwrite __unicode__,
482 return a true Unicode object with the same data. */
483 return PyUnicode_FromUnicode(PyUnicode_AS_UNICODE(v),
484 PyUnicode_GET_SIZE(v));
Guido van Rossuma3af41d2001-01-18 22:07:06 +0000485 }
Brett Cannonc3647ac2005-04-26 03:45:26 +0000486 if (PyString_CheckExact(v)) {
487 Py_INCREF(v);
488 res = v;
Guido van Rossuma3af41d2001-01-18 22:07:06 +0000489 }
Guido van Rossumb8c65bc2001-10-19 02:01:31 +0000490 else {
Guido van Rossumb8c65bc2001-10-19 02:01:31 +0000491 if (v->ob_type->tp_str != NULL)
492 res = (*v->ob_type->tp_str)(v);
493 else
494 res = PyObject_Repr(v);
495 }
Guido van Rossuma3af41d2001-01-18 22:07:06 +0000496 }
497 if (res == NULL)
498 return NULL;
499 if (!PyUnicode_Check(res)) {
Guido van Rossumb8c65bc2001-10-19 02:01:31 +0000500 str = PyUnicode_FromEncodedObject(res, NULL, "strict");
Guido van Rossuma3af41d2001-01-18 22:07:06 +0000501 Py_DECREF(res);
Neal Norwitz75801462006-03-14 06:02:16 +0000502 res = str;
Guido van Rossuma3af41d2001-01-18 22:07:06 +0000503 }
504 return res;
505}
Martin v. Löwis339d0f72001-08-17 18:39:25 +0000506#endif
Guido van Rossuma3af41d2001-01-18 22:07:06 +0000507
508
Guido van Rossuma4073002002-05-31 20:03:54 +0000509/* Helper to warn about deprecated tp_compare return values. Return:
510 -2 for an exception;
511 -1 if v < w;
512 0 if v == w;
513 1 if v > w.
514 (This function cannot return 2.)
515*/
516static int
517adjust_tp_compare(int c)
518{
519 if (PyErr_Occurred()) {
520 if (c != -1 && c != -2) {
521 PyObject *t, *v, *tb;
522 PyErr_Fetch(&t, &v, &tb);
523 if (PyErr_Warn(PyExc_RuntimeWarning,
524 "tp_compare didn't return -1 or -2 "
525 "for exception") < 0) {
526 Py_XDECREF(t);
527 Py_XDECREF(v);
528 Py_XDECREF(tb);
529 }
530 else
531 PyErr_Restore(t, v, tb);
532 }
533 return -2;
534 }
535 else if (c < -1 || c > 1) {
536 if (PyErr_Warn(PyExc_RuntimeWarning,
537 "tp_compare didn't return -1, 0 or 1") < 0)
538 return -2;
539 else
540 return c < -1 ? -1 : 1;
541 }
542 else {
543 assert(c >= -1 && c <= 1);
544 return c;
545 }
546}
547
548
Guido van Rossumd1f06b92001-01-24 22:14:43 +0000549/* Macro to get the tp_richcompare field of a type if defined */
Guido van Rossum3cf5b1e2006-07-27 21:53:35 +0000550#define RICHCOMPARE(t) ((t)->tp_richcompare)
Guido van Rossumd1f06b92001-01-24 22:14:43 +0000551
Guido van Rossume797ec12001-01-17 15:24:28 +0000552/* Map rich comparison operators to their swapped version, e.g. LT --> GT */
Brett Cannona5ca2e72004-09-25 01:37:24 +0000553int _Py_SwappedOp[] = {Py_GT, Py_GE, Py_EQ, Py_NE, Py_LT, Py_LE};
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +0000554
Guido van Rossume797ec12001-01-17 15:24:28 +0000555/* Try a genuine rich comparison, returning an object. Return:
556 NULL for exception;
557 NotImplemented if this particular rich comparison is not implemented or
558 undefined;
559 some object not equal to NotImplemented if it is implemented
560 (this latter object may not be a Boolean).
561*/
562static PyObject *
563try_rich_compare(PyObject *v, PyObject *w, int op)
564{
565 richcmpfunc f;
566 PyObject *res;
567
Guido van Rossum2ed6bf82001-09-27 20:30:07 +0000568 if (v->ob_type != w->ob_type &&
569 PyType_IsSubtype(w->ob_type, v->ob_type) &&
570 (f = RICHCOMPARE(w->ob_type)) != NULL) {
Tim Petersf4aca752004-09-23 02:39:37 +0000571 res = (*f)(w, v, _Py_SwappedOp[op]);
Guido van Rossum2ed6bf82001-09-27 20:30:07 +0000572 if (res != Py_NotImplemented)
573 return res;
574 Py_DECREF(res);
575 }
Guido van Rossumd1f06b92001-01-24 22:14:43 +0000576 if ((f = RICHCOMPARE(v->ob_type)) != NULL) {
Guido van Rossume797ec12001-01-17 15:24:28 +0000577 res = (*f)(v, w, op);
578 if (res != Py_NotImplemented)
579 return res;
580 Py_DECREF(res);
581 }
Guido van Rossumd1f06b92001-01-24 22:14:43 +0000582 if ((f = RICHCOMPARE(w->ob_type)) != NULL) {
Tim Petersf4aca752004-09-23 02:39:37 +0000583 return (*f)(w, v, _Py_SwappedOp[op]);
Guido van Rossume797ec12001-01-17 15:24:28 +0000584 }
585 res = Py_NotImplemented;
586 Py_INCREF(res);
587 return res;
588}
589
590/* Try a genuine rich comparison, returning an int. Return:
591 -1 for exception (including the case where try_rich_compare() returns an
592 object that's not a Boolean);
Tim Petersc99213f2001-11-04 05:57:16 +0000593 0 if the outcome is false;
594 1 if the outcome is true;
595 2 if this particular rich comparison is not implemented or undefined.
Guido van Rossume797ec12001-01-17 15:24:28 +0000596*/
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +0000597static int
Guido van Rossume797ec12001-01-17 15:24:28 +0000598try_rich_compare_bool(PyObject *v, PyObject *w, int op)
599{
600 PyObject *res;
601 int ok;
602
Guido van Rossumd1f06b92001-01-24 22:14:43 +0000603 if (RICHCOMPARE(v->ob_type) == NULL && RICHCOMPARE(w->ob_type) == NULL)
Guido van Rossume797ec12001-01-17 15:24:28 +0000604 return 2; /* Shortcut, avoid INCREF+DECREF */
605 res = try_rich_compare(v, w, op);
606 if (res == NULL)
607 return -1;
608 if (res == Py_NotImplemented) {
609 Py_DECREF(res);
610 return 2;
611 }
612 ok = PyObject_IsTrue(res);
613 Py_DECREF(res);
614 return ok;
615}
616
617/* Try rich comparisons to determine a 3-way comparison. Return:
618 -2 for an exception;
Tim Petersc99213f2001-11-04 05:57:16 +0000619 -1 if v < w;
620 0 if v == w;
621 1 if v > w;
622 2 if this particular rich comparison is not implemented or undefined.
Guido van Rossume797ec12001-01-17 15:24:28 +0000623*/
624static int
625try_rich_to_3way_compare(PyObject *v, PyObject *w)
626{
Guido van Rossum2ffbf6b2001-01-17 21:27:02 +0000627 static struct { int op; int outcome; } tries[3] = {
628 /* Try this operator, and if it is true, use this outcome: */
629 {Py_EQ, 0},
630 {Py_LT, -1},
631 {Py_GT, 1},
632 };
633 int i;
634
Guido van Rossumd1f06b92001-01-24 22:14:43 +0000635 if (RICHCOMPARE(v->ob_type) == NULL && RICHCOMPARE(w->ob_type) == NULL)
Guido van Rossume797ec12001-01-17 15:24:28 +0000636 return 2; /* Shortcut */
Guido van Rossum2ffbf6b2001-01-17 21:27:02 +0000637
638 for (i = 0; i < 3; i++) {
639 switch (try_rich_compare_bool(v, w, tries[i].op)) {
640 case -1:
Tim Peters6d60b2e2001-05-07 20:53:51 +0000641 return -2;
Guido van Rossum2ffbf6b2001-01-17 21:27:02 +0000642 case 1:
643 return tries[i].outcome;
644 }
Guido van Rossume797ec12001-01-17 15:24:28 +0000645 }
Guido van Rossum2ffbf6b2001-01-17 21:27:02 +0000646
647 return 2;
Guido van Rossume797ec12001-01-17 15:24:28 +0000648}
649
650/* Try a 3-way comparison, returning an int. Return:
651 -2 for an exception;
Tim Petersc99213f2001-11-04 05:57:16 +0000652 -1 if v < w;
653 0 if v == w;
654 1 if v > w;
655 2 if this particular 3-way comparison is not implemented or undefined.
Guido van Rossume797ec12001-01-17 15:24:28 +0000656*/
657static int
658try_3way_compare(PyObject *v, PyObject *w)
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +0000659{
660 int c;
Guido van Rossume797ec12001-01-17 15:24:28 +0000661 cmpfunc f;
662
663 /* Comparisons involving instances are given to instance_compare,
664 which has the same return conventions as this function. */
665
Guido van Rossumab3b0342001-09-18 20:38:53 +0000666 f = v->ob_type->tp_compare;
Guido van Rossume797ec12001-01-17 15:24:28 +0000667
Guido van Rossumab3b0342001-09-18 20:38:53 +0000668 /* If both have the same (non-NULL) tp_compare, use it. */
669 if (f != NULL && f == w->ob_type->tp_compare) {
670 c = (*f)(v, w);
Guido van Rossuma4073002002-05-31 20:03:54 +0000671 return adjust_tp_compare(c);
Guido van Rossumab3b0342001-09-18 20:38:53 +0000672 }
673
674 /* If either tp_compare is _PyObject_SlotCompare, that's safe. */
675 if (f == _PyObject_SlotCompare ||
676 w->ob_type->tp_compare == _PyObject_SlotCompare)
677 return _PyObject_SlotCompare(v, w);
678
Armin Rigoa1748132004-12-23 22:13:13 +0000679 /* If we're here, v and w,
680 a) are not instances;
681 b) have different types or a type without tp_compare; and
682 c) don't have a user-defined tp_compare.
683 tp_compare implementations in C assume that both arguments
Neal Norwitz4886cc32006-08-21 17:06:07 +0000684 have their type, so we give up if the coercion fails.
Armin Rigoa1748132004-12-23 22:13:13 +0000685 */
Guido van Rossume797ec12001-01-17 15:24:28 +0000686 c = PyNumber_CoerceEx(&v, &w);
687 if (c < 0)
688 return -2;
689 if (c > 0)
690 return 2;
Armin Rigoa1748132004-12-23 22:13:13 +0000691 f = v->ob_type->tp_compare;
692 if (f != NULL && f == w->ob_type->tp_compare) {
Guido van Rossume797ec12001-01-17 15:24:28 +0000693 c = (*f)(v, w);
694 Py_DECREF(v);
695 Py_DECREF(w);
Guido van Rossuma4073002002-05-31 20:03:54 +0000696 return adjust_tp_compare(c);
Guido van Rossume797ec12001-01-17 15:24:28 +0000697 }
698
Guido van Rossume797ec12001-01-17 15:24:28 +0000699 /* No comparison defined */
700 Py_DECREF(v);
701 Py_DECREF(w);
702 return 2;
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +0000703}
704
Guido van Rossume797ec12001-01-17 15:24:28 +0000705/* Final fallback 3-way comparison, returning an int. Return:
706 -2 if an error occurred;
Tim Petersc99213f2001-11-04 05:57:16 +0000707 -1 if v < w;
708 0 if v == w;
709 1 if v > w.
Guido van Rossume797ec12001-01-17 15:24:28 +0000710*/
711static int
712default_3way_compare(PyObject *v, PyObject *w)
713{
714 int c;
Jeremy Hyltonaf68c872005-12-10 18:50:16 +0000715 const char *vname, *wname;
Guido van Rossume797ec12001-01-17 15:24:28 +0000716
717 if (v->ob_type == w->ob_type) {
Barry Warsawb0e754d2001-01-20 06:24:55 +0000718 /* When comparing these pointers, they must be cast to
719 * integer types (i.e. Py_uintptr_t, our spelling of C9X's
720 * uintptr_t). ANSI specifies that pointer compares other
721 * than == and != to non-related structures are undefined.
722 */
Barry Warsaw71ff8d52001-01-20 06:08:10 +0000723 Py_uintptr_t vv = (Py_uintptr_t)v;
724 Py_uintptr_t ww = (Py_uintptr_t)w;
Guido van Rossume797ec12001-01-17 15:24:28 +0000725 return (vv < ww) ? -1 : (vv > ww) ? 1 : 0;
726 }
727
Martin v. Löwis339d0f72001-08-17 18:39:25 +0000728#ifdef Py_USING_UNICODE
Guido van Rossume797ec12001-01-17 15:24:28 +0000729 /* Special case for Unicode */
730 if (PyUnicode_Check(v) || PyUnicode_Check(w)) {
731 c = PyUnicode_Compare(v, w);
732 if (!PyErr_Occurred())
733 return c;
734 /* TypeErrors are ignored: if Unicode coercion fails due
735 to one of the arguments not having the right type, we
736 continue as defined by the coercion protocol (see
737 above). Luckily, decoding errors are reported as
738 ValueErrors and are not masked by this technique. */
739 if (!PyErr_ExceptionMatches(PyExc_TypeError))
740 return -2;
741 PyErr_Clear();
742 }
Martin v. Löwis339d0f72001-08-17 18:39:25 +0000743#endif
Guido van Rossume797ec12001-01-17 15:24:28 +0000744
Guido van Rossum0871e932001-01-22 19:28:09 +0000745 /* None is smaller than anything */
746 if (v == Py_None)
747 return -1;
748 if (w == Py_None)
749 return 1;
750
Guido van Rossumfb50d3f2003-02-18 16:40:09 +0000751 /* different type: compare type names; numbers are smaller */
752 if (PyNumber_Check(v))
Guido van Rossum8f9143d2001-01-22 15:59:32 +0000753 vname = "";
754 else
755 vname = v->ob_type->tp_name;
Guido van Rossumfb50d3f2003-02-18 16:40:09 +0000756 if (PyNumber_Check(w))
Guido van Rossum8f9143d2001-01-22 15:59:32 +0000757 wname = "";
758 else
759 wname = w->ob_type->tp_name;
760 c = strcmp(vname, wname);
761 if (c < 0)
762 return -1;
763 if (c > 0)
764 return 1;
765 /* Same type name, or (more likely) incomparable numeric types */
766 return ((Py_uintptr_t)(v->ob_type) < (
767 Py_uintptr_t)(w->ob_type)) ? -1 : 1;
Guido van Rossume797ec12001-01-17 15:24:28 +0000768}
769
Tim Peters6d60b2e2001-05-07 20:53:51 +0000770/* Do a 3-way comparison, by hook or by crook. Return:
Guido van Rossuma4073002002-05-31 20:03:54 +0000771 -2 for an exception (but see below);
Tim Petersc99213f2001-11-04 05:57:16 +0000772 -1 if v < w;
Tim Peters6d60b2e2001-05-07 20:53:51 +0000773 0 if v == w;
Tim Petersc99213f2001-11-04 05:57:16 +0000774 1 if v > w;
Guido van Rossuma4073002002-05-31 20:03:54 +0000775 BUT: if the object implements a tp_compare function, it returns
Martin v. Löwis0163d6d2001-06-09 07:34:05 +0000776 whatever this function returns (whether with an exception or not).
Tim Peters6d60b2e2001-05-07 20:53:51 +0000777*/
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +0000778static int
Fred Drake100814d2000-07-09 15:48:49 +0000779do_cmp(PyObject *v, PyObject *w)
Guido van Rossum20566841995-01-12 11:26:10 +0000780{
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +0000781 int c;
Martin v. Löwis0163d6d2001-06-09 07:34:05 +0000782 cmpfunc f;
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +0000783
Martin v. Löwis0163d6d2001-06-09 07:34:05 +0000784 if (v->ob_type == w->ob_type
Guido van Rossum82fc51c12001-08-16 08:02:45 +0000785 && (f = v->ob_type->tp_compare) != NULL) {
786 c = (*f)(v, w);
Guido van Rossum50e9fb92006-08-17 05:42:55 +0000787 return adjust_tp_compare(c);
Guido van Rossum82fc51c12001-08-16 08:02:45 +0000788 }
Guido van Rossuma4073002002-05-31 20:03:54 +0000789 /* We only get here if one of the following is true:
790 a) v and w have different types
791 b) v and w have the same type, which doesn't have tp_compare
792 c) v and w are instances, and either __cmp__ is not defined or
793 __cmp__ returns NotImplemented
794 */
Guido van Rossume797ec12001-01-17 15:24:28 +0000795 c = try_rich_to_3way_compare(v, w);
796 if (c < 2)
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +0000797 return c;
Guido van Rossume797ec12001-01-17 15:24:28 +0000798 c = try_3way_compare(v, w);
799 if (c < 2)
800 return c;
801 return default_3way_compare(v, w);
Guido van Rossum20566841995-01-12 11:26:10 +0000802}
803
Tim Petersc99213f2001-11-04 05:57:16 +0000804/* Compare v to w. Return
805 -1 if v < w or exception (PyErr_Occurred() true in latter case).
806 0 if v == w.
807 1 if v > w.
808 XXX The docs (C API manual) say the return value is undefined in case
809 XXX of error.
810*/
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000811int
Fred Drake100814d2000-07-09 15:48:49 +0000812PyObject_Compare(PyObject *v, PyObject *w)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000813{
Jeremy Hylton4a3dd2d2000-04-14 19:13:24 +0000814 int result;
815
Guido van Rossumc8b6df91997-05-23 00:06:51 +0000816 if (v == NULL || w == NULL) {
817 PyErr_BadInternalCall();
818 return -1;
819 }
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000820 if (v == w)
821 return 0;
Armin Rigo2b3eb402003-10-28 12:05:48 +0000822 if (Py_EnterRecursiveCall(" in cmp"))
823 return -1;
824 result = do_cmp(v, w);
825 Py_LeaveRecursiveCall();
Guido van Rossume797ec12001-01-17 15:24:28 +0000826 return result < 0 ? -1 : result;
827}
828
Tim Petersc99213f2001-11-04 05:57:16 +0000829/* Return (new reference to) Py_True or Py_False. */
Guido van Rossume797ec12001-01-17 15:24:28 +0000830static PyObject *
Martin v. Löwis0163d6d2001-06-09 07:34:05 +0000831convert_3way_to_object(int op, int c)
Guido van Rossume797ec12001-01-17 15:24:28 +0000832{
Guido van Rossume797ec12001-01-17 15:24:28 +0000833 PyObject *result;
Guido van Rossume797ec12001-01-17 15:24:28 +0000834 switch (op) {
835 case Py_LT: c = c < 0; break;
836 case Py_LE: c = c <= 0; break;
837 case Py_EQ: c = c == 0; break;
838 case Py_NE: c = c != 0; break;
839 case Py_GT: c = c > 0; break;
840 case Py_GE: c = c >= 0; break;
841 }
842 result = c ? Py_True : Py_False;
843 Py_INCREF(result);
Jeremy Hylton4a3dd2d2000-04-14 19:13:24 +0000844 return result;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000845}
Tim Peters803526b2002-07-07 05:13:56 +0000846
Tim Petersc99213f2001-11-04 05:57:16 +0000847/* We want a rich comparison but don't have one. Try a 3-way cmp instead.
848 Return
849 NULL if error
850 Py_True if v op w
851 Py_False if not (v op w)
852*/
Martin v. Löwis0163d6d2001-06-09 07:34:05 +0000853static PyObject *
854try_3way_to_rich_compare(PyObject *v, PyObject *w, int op)
855{
856 int c;
857
858 c = try_3way_compare(v, w);
859 if (c >= 2)
860 c = default_3way_compare(v, w);
861 if (c <= -2)
862 return NULL;
863 return convert_3way_to_object(op, c);
864}
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000865
Tim Petersc99213f2001-11-04 05:57:16 +0000866/* Do rich comparison on v and w. Return
867 NULL if error
868 Else a new reference to an object other than Py_NotImplemented, usually(?):
869 Py_True if v op w
870 Py_False if not (v op w)
871*/
Neil Schemenauerd38855c2001-01-21 16:25:18 +0000872static PyObject *
Guido van Rossume797ec12001-01-17 15:24:28 +0000873do_richcmp(PyObject *v, PyObject *w, int op)
874{
875 PyObject *res;
876
877 res = try_rich_compare(v, w, op);
878 if (res != Py_NotImplemented)
879 return res;
880 Py_DECREF(res);
881
882 return try_3way_to_rich_compare(v, w, op);
883}
884
Tim Petersc99213f2001-11-04 05:57:16 +0000885/* Return:
886 NULL for exception;
Tim Petersc99213f2001-11-04 05:57:16 +0000887 some object not equal to NotImplemented if it is implemented
888 (this latter object may not be a Boolean).
889*/
Guido van Rossume797ec12001-01-17 15:24:28 +0000890PyObject *
891PyObject_RichCompare(PyObject *v, PyObject *w, int op)
892{
893 PyObject *res;
894
895 assert(Py_LT <= op && op <= Py_GE);
Armin Rigo2b3eb402003-10-28 12:05:48 +0000896 if (Py_EnterRecursiveCall(" in cmp"))
897 return NULL;
Guido van Rossume797ec12001-01-17 15:24:28 +0000898
Armin Rigo2b3eb402003-10-28 12:05:48 +0000899 /* If the types are equal, and not old-style instances, try to
Tim Peters67754e92001-11-04 07:29:31 +0000900 get out cheap (don't bother with coercions etc.). */
Guido van Rossum50e9fb92006-08-17 05:42:55 +0000901 if (v->ob_type == w->ob_type) {
Tim Peters67754e92001-11-04 07:29:31 +0000902 cmpfunc fcmp;
903 richcmpfunc frich = RICHCOMPARE(v->ob_type);
904 /* If the type has richcmp, try it first. try_rich_compare
905 tries it two-sided, which is not needed since we've a
906 single type only. */
907 if (frich != NULL) {
908 res = (*frich)(v, w, op);
909 if (res != Py_NotImplemented)
910 goto Done;
911 Py_DECREF(res);
912 }
913 /* No richcmp, or this particular richmp not implemented.
914 Try 3-way cmp. */
915 fcmp = v->ob_type->tp_compare;
916 if (fcmp != NULL) {
917 int c = (*fcmp)(v, w);
Guido van Rossuma4073002002-05-31 20:03:54 +0000918 c = adjust_tp_compare(c);
919 if (c == -2) {
Tim Peters67754e92001-11-04 07:29:31 +0000920 res = NULL;
921 goto Done;
922 }
923 res = convert_3way_to_object(op, c);
924 goto Done;
925 }
Guido van Rossum2ffbf6b2001-01-17 21:27:02 +0000926 }
Tim Peters67754e92001-11-04 07:29:31 +0000927
928 /* Fast path not taken, or couldn't deliver a useful result. */
929 res = do_richcmp(v, w, op);
930Done:
Armin Rigo2b3eb402003-10-28 12:05:48 +0000931 Py_LeaveRecursiveCall();
Guido van Rossume797ec12001-01-17 15:24:28 +0000932 return res;
933}
934
Tim Petersde9725f2001-05-05 10:06:17 +0000935/* Return -1 if error; 1 if v op w; 0 if not (v op w). */
Guido van Rossume797ec12001-01-17 15:24:28 +0000936int
937PyObject_RichCompareBool(PyObject *v, PyObject *w, int op)
938{
Raymond Hettinger93d44812004-03-21 17:01:44 +0000939 PyObject *res;
Guido van Rossume797ec12001-01-17 15:24:28 +0000940 int ok;
941
Raymond Hettinger93d44812004-03-21 17:01:44 +0000942 /* Quick result when objects are the same.
943 Guarantees that identity implies equality. */
944 if (v == w) {
945 if (op == Py_EQ)
946 return 1;
947 else if (op == Py_NE)
948 return 0;
949 }
950
951 res = PyObject_RichCompare(v, w, op);
Guido van Rossume797ec12001-01-17 15:24:28 +0000952 if (res == NULL)
953 return -1;
Guido van Rossum81912d42002-08-24 05:33:28 +0000954 if (PyBool_Check(res))
955 ok = (res == Py_True);
956 else
957 ok = PyObject_IsTrue(res);
Guido van Rossume797ec12001-01-17 15:24:28 +0000958 Py_DECREF(res);
959 return ok;
960}
Fred Drake13634cf2000-06-29 19:17:04 +0000961
962/* Set of hash utility functions to help maintaining the invariant that
Raymond Hettinger8183fa42004-03-21 17:35:06 +0000963 if a==b then hash(a)==hash(b)
Fred Drake13634cf2000-06-29 19:17:04 +0000964
965 All the utility functions (_Py_Hash*()) return "-1" to signify an error.
966*/
967
968long
Fred Drake100814d2000-07-09 15:48:49 +0000969_Py_HashDouble(double v)
Fred Drake13634cf2000-06-29 19:17:04 +0000970{
Tim Peters39dce292000-08-15 03:34:48 +0000971 double intpart, fractpart;
972 int expo;
973 long hipart;
974 long x; /* the final hash value */
975 /* This is designed so that Python numbers of different types
976 * that compare equal hash to the same value; otherwise comparisons
977 * of mapping keys will turn out weird.
978 */
979
Tim Peters39dce292000-08-15 03:34:48 +0000980 fractpart = modf(v, &intpart);
Tim Peters39dce292000-08-15 03:34:48 +0000981 if (fractpart == 0.0) {
982 /* This must return the same hash as an equal int or long. */
983 if (intpart > LONG_MAX || -intpart > LONG_MAX) {
984 /* Convert to long and use its hash. */
985 PyObject *plong; /* converted to Python long */
986 if (Py_IS_INFINITY(intpart))
987 /* can't convert to long int -- arbitrary */
988 v = v < 0 ? -271828.0 : 314159.0;
989 plong = PyLong_FromDouble(v);
990 if (plong == NULL)
991 return -1;
992 x = PyObject_Hash(plong);
993 Py_DECREF(plong);
994 return x;
995 }
996 /* Fits in a C long == a Python int, so is its own hash. */
997 x = (long)intpart;
998 if (x == -1)
999 x = -2;
1000 return x;
1001 }
1002 /* The fractional part is non-zero, so we don't have to worry about
1003 * making this match the hash of some other type.
1004 * Use frexp to get at the bits in the double.
Fred Drake13634cf2000-06-29 19:17:04 +00001005 * Since the VAX D double format has 56 mantissa bits, which is the
1006 * most of any double format in use, each of these parts may have as
1007 * many as (but no more than) 56 significant bits.
Tim Peters39dce292000-08-15 03:34:48 +00001008 * So, assuming sizeof(long) >= 4, each part can be broken into two
1009 * longs; frexp and multiplication are used to do that.
1010 * Also, since the Cray double format has 15 exponent bits, which is
1011 * the most of any double format in use, shifting the exponent field
1012 * left by 15 won't overflow a long (again assuming sizeof(long) >= 4).
Fred Drake13634cf2000-06-29 19:17:04 +00001013 */
Tim Peters39dce292000-08-15 03:34:48 +00001014 v = frexp(v, &expo);
1015 v *= 2147483648.0; /* 2**31 */
1016 hipart = (long)v; /* take the top 32 bits */
1017 v = (v - (double)hipart) * 2147483648.0; /* get the next 32 bits */
1018 x = hipart + (long)v + (expo << 15);
1019 if (x == -1)
1020 x = -2;
1021 return x;
Fred Drake13634cf2000-06-29 19:17:04 +00001022}
1023
1024long
Fred Drake100814d2000-07-09 15:48:49 +00001025_Py_HashPointer(void *p)
Fred Drake13634cf2000-06-29 19:17:04 +00001026{
1027#if SIZEOF_LONG >= SIZEOF_VOID_P
1028 return (long)p;
1029#else
1030 /* convert to a Python long and hash that */
1031 PyObject* longobj;
1032 long x;
Tim Peters803526b2002-07-07 05:13:56 +00001033
Fred Drake13634cf2000-06-29 19:17:04 +00001034 if ((longobj = PyLong_FromVoidPtr(p)) == NULL) {
1035 x = -1;
1036 goto finally;
1037 }
1038 x = PyObject_Hash(longobj);
Tim Peters803526b2002-07-07 05:13:56 +00001039
Fred Drake13634cf2000-06-29 19:17:04 +00001040finally:
1041 Py_XDECREF(longobj);
1042 return x;
1043#endif
1044}
1045
1046
Guido van Rossum9bfef441993-03-29 10:43:31 +00001047long
Fred Drake100814d2000-07-09 15:48:49 +00001048PyObject_Hash(PyObject *v)
Guido van Rossum9bfef441993-03-29 10:43:31 +00001049{
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001050 PyTypeObject *tp = v->ob_type;
Guido van Rossum9bfef441993-03-29 10:43:31 +00001051 if (tp->tp_hash != NULL)
1052 return (*tp->tp_hash)(v);
Guido van Rossum50e9fb92006-08-17 05:42:55 +00001053 /* Otherwise, the object can't be hashed */
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001054 PyErr_Format(PyExc_TypeError, "unhashable type: '%.200s'",
1055 v->ob_type->tp_name);
Guido van Rossum9bfef441993-03-29 10:43:31 +00001056 return -1;
1057}
1058
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001059PyObject *
Jeremy Hyltonaf68c872005-12-10 18:50:16 +00001060PyObject_GetAttrString(PyObject *v, const char *name)
Guido van Rossum3f5da241990-12-20 15:06:42 +00001061{
Tim Peters6d6c1a32001-08-02 04:15:00 +00001062 PyObject *w, *res;
Guido van Rossumd8eb1b31996-08-09 20:52:03 +00001063
Tim Peters6d6c1a32001-08-02 04:15:00 +00001064 if (v->ob_type->tp_getattr != NULL)
Martin v. Löwis15e62742006-02-27 16:46:16 +00001065 return (*v->ob_type->tp_getattr)(v, (char*)name);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001066 w = PyString_InternFromString(name);
1067 if (w == NULL)
1068 return NULL;
1069 res = PyObject_GetAttr(v, w);
1070 Py_XDECREF(w);
1071 return res;
Guido van Rossum3f5da241990-12-20 15:06:42 +00001072}
1073
1074int
Jeremy Hyltonaf68c872005-12-10 18:50:16 +00001075PyObject_HasAttrString(PyObject *v, const char *name)
Guido van Rossumed18fdc1993-07-11 19:55:34 +00001076{
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001077 PyObject *res = PyObject_GetAttrString(v, name);
Guido van Rossumed18fdc1993-07-11 19:55:34 +00001078 if (res != NULL) {
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001079 Py_DECREF(res);
Guido van Rossumed18fdc1993-07-11 19:55:34 +00001080 return 1;
1081 }
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001082 PyErr_Clear();
Guido van Rossumed18fdc1993-07-11 19:55:34 +00001083 return 0;
1084}
1085
1086int
Jeremy Hyltonaf68c872005-12-10 18:50:16 +00001087PyObject_SetAttrString(PyObject *v, const char *name, PyObject *w)
Guido van Rossum3f5da241990-12-20 15:06:42 +00001088{
Tim Peters6d6c1a32001-08-02 04:15:00 +00001089 PyObject *s;
1090 int res;
Guido van Rossumd8eb1b31996-08-09 20:52:03 +00001091
Tim Peters6d6c1a32001-08-02 04:15:00 +00001092 if (v->ob_type->tp_setattr != NULL)
Martin v. Löwis15e62742006-02-27 16:46:16 +00001093 return (*v->ob_type->tp_setattr)(v, (char*)name, w);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001094 s = PyString_InternFromString(name);
1095 if (s == NULL)
1096 return -1;
1097 res = PyObject_SetAttr(v, s, w);
1098 Py_XDECREF(s);
1099 return res;
Guido van Rossum3f5da241990-12-20 15:06:42 +00001100}
1101
Guido van Rossum98ff96a1997-05-20 18:34:44 +00001102PyObject *
Fred Drake100814d2000-07-09 15:48:49 +00001103PyObject_GetAttr(PyObject *v, PyObject *name)
Guido van Rossum98ff96a1997-05-20 18:34:44 +00001104{
Tim Peters6d6c1a32001-08-02 04:15:00 +00001105 PyTypeObject *tp = v->ob_type;
1106
Jeremy Hylton99a8f902000-06-23 14:36:32 +00001107 if (!PyString_Check(name)) {
Martin v. Löwis0c160a02002-03-15 13:40:30 +00001108#ifdef Py_USING_UNICODE
1109 /* The Unicode to string conversion is done here because the
1110 existing tp_getattro slots expect a string object as name
1111 and we wouldn't want to break those. */
1112 if (PyUnicode_Check(name)) {
1113 name = _PyUnicode_AsDefaultEncodedString(name, NULL);
1114 if (name == NULL)
1115 return NULL;
1116 }
1117 else
1118#endif
1119 {
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001120 PyErr_Format(PyExc_TypeError,
1121 "attribute name must be string, not '%.200s'",
1122 name->ob_type->tp_name);
Martin v. Löwis0c160a02002-03-15 13:40:30 +00001123 return NULL;
1124 }
Jeremy Hylton99a8f902000-06-23 14:36:32 +00001125 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00001126 if (tp->tp_getattro != NULL)
1127 return (*tp->tp_getattro)(v, name);
1128 if (tp->tp_getattr != NULL)
1129 return (*tp->tp_getattr)(v, PyString_AS_STRING(name));
1130 PyErr_Format(PyExc_AttributeError,
1131 "'%.50s' object has no attribute '%.400s'",
1132 tp->tp_name, PyString_AS_STRING(name));
1133 return NULL;
Guido van Rossum98ff96a1997-05-20 18:34:44 +00001134}
1135
1136int
Fred Drake100814d2000-07-09 15:48:49 +00001137PyObject_HasAttr(PyObject *v, PyObject *name)
Guido van Rossum98ff96a1997-05-20 18:34:44 +00001138{
1139 PyObject *res = PyObject_GetAttr(v, name);
1140 if (res != NULL) {
1141 Py_DECREF(res);
1142 return 1;
1143 }
1144 PyErr_Clear();
1145 return 0;
1146}
1147
1148int
Fred Drake100814d2000-07-09 15:48:49 +00001149PyObject_SetAttr(PyObject *v, PyObject *name, PyObject *value)
Guido van Rossum98ff96a1997-05-20 18:34:44 +00001150{
Tim Peters6d6c1a32001-08-02 04:15:00 +00001151 PyTypeObject *tp = v->ob_type;
Guido van Rossum98ff96a1997-05-20 18:34:44 +00001152 int err;
Marc-André Lemburge44e5072000-09-18 16:20:57 +00001153
Martin v. Löwis339d0f72001-08-17 18:39:25 +00001154 if (!PyString_Check(name)){
Martin v. Löwis0c160a02002-03-15 13:40:30 +00001155#ifdef Py_USING_UNICODE
1156 /* The Unicode to string conversion is done here because the
1157 existing tp_setattro slots expect a string object as name
1158 and we wouldn't want to break those. */
1159 if (PyUnicode_Check(name)) {
1160 name = PyUnicode_AsEncodedString(name, NULL, NULL);
1161 if (name == NULL)
1162 return -1;
1163 }
Tim Peters803526b2002-07-07 05:13:56 +00001164 else
Martin v. Löwis0c160a02002-03-15 13:40:30 +00001165#endif
1166 {
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001167 PyErr_Format(PyExc_TypeError,
1168 "attribute name must be string, not '%.200s'",
1169 name->ob_type->tp_name);
Martin v. Löwis0c160a02002-03-15 13:40:30 +00001170 return -1;
1171 }
Jeremy Hylton99a8f902000-06-23 14:36:32 +00001172 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00001173 else
1174 Py_INCREF(name);
1175
1176 PyString_InternInPlace(&name);
1177 if (tp->tp_setattro != NULL) {
1178 err = (*tp->tp_setattro)(v, name, value);
1179 Py_DECREF(name);
1180 return err;
Marc-André Lemburge44e5072000-09-18 16:20:57 +00001181 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00001182 if (tp->tp_setattr != NULL) {
1183 err = (*tp->tp_setattr)(v, PyString_AS_STRING(name), value);
1184 Py_DECREF(name);
1185 return err;
1186 }
Guido van Rossum98ff96a1997-05-20 18:34:44 +00001187 Py_DECREF(name);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001188 if (tp->tp_getattr == NULL && tp->tp_getattro == NULL)
1189 PyErr_Format(PyExc_TypeError,
1190 "'%.100s' object has no attributes "
1191 "(%s .%.100s)",
1192 tp->tp_name,
1193 value==NULL ? "del" : "assign to",
1194 PyString_AS_STRING(name));
1195 else
1196 PyErr_Format(PyExc_TypeError,
1197 "'%.100s' object has only read-only attributes "
1198 "(%s .%.100s)",
1199 tp->tp_name,
1200 value==NULL ? "del" : "assign to",
1201 PyString_AS_STRING(name));
1202 return -1;
1203}
1204
1205/* Helper to get a pointer to an object's __dict__ slot, if any */
1206
1207PyObject **
1208_PyObject_GetDictPtr(PyObject *obj)
1209{
Martin v. Löwis725507b2006-03-07 12:08:51 +00001210 Py_ssize_t dictoffset;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001211 PyTypeObject *tp = obj->ob_type;
1212
Tim Peters6d6c1a32001-08-02 04:15:00 +00001213 dictoffset = tp->tp_dictoffset;
1214 if (dictoffset == 0)
1215 return NULL;
1216 if (dictoffset < 0) {
Martin v. Löwis18e16552006-02-15 17:27:45 +00001217 Py_ssize_t tsize;
Guido van Rossum2eb0b872002-03-01 22:24:49 +00001218 size_t size;
1219
1220 tsize = ((PyVarObject *)obj)->ob_size;
1221 if (tsize < 0)
1222 tsize = -tsize;
1223 size = _PyObject_VAR_SIZE(tp, tsize);
1224
Tim Peters6d483d32001-10-06 21:27:34 +00001225 dictoffset += (long)size;
1226 assert(dictoffset > 0);
1227 assert(dictoffset % SIZEOF_VOID_P == 0);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001228 }
1229 return (PyObject **) ((char *)obj + dictoffset);
1230}
1231
Tim Peters6d6c1a32001-08-02 04:15:00 +00001232PyObject *
Raymond Hettinger1da1dbf2003-03-17 19:46:11 +00001233PyObject_SelfIter(PyObject *obj)
Raymond Hettinger01538262003-03-17 08:24:35 +00001234{
1235 Py_INCREF(obj);
1236 return obj;
1237}
1238
Michael W. Hudson1593f502004-09-14 17:09:47 +00001239/* Generic GetAttr functions - put these in your tp_[gs]etattro slot */
1240
Raymond Hettinger01538262003-03-17 08:24:35 +00001241PyObject *
Tim Peters6d6c1a32001-08-02 04:15:00 +00001242PyObject_GenericGetAttr(PyObject *obj, PyObject *name)
1243{
1244 PyTypeObject *tp = obj->ob_type;
Guido van Rossum056fbf42002-08-19 19:22:50 +00001245 PyObject *descr = NULL;
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001246 PyObject *res = NULL;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001247 descrgetfunc f;
Martin v. Löwis725507b2006-03-07 12:08:51 +00001248 Py_ssize_t dictoffset;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001249 PyObject **dictptr;
1250
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001251 if (!PyString_Check(name)){
Martin v. Löwis0c160a02002-03-15 13:40:30 +00001252#ifdef Py_USING_UNICODE
1253 /* The Unicode to string conversion is done here because the
1254 existing tp_setattro slots expect a string object as name
1255 and we wouldn't want to break those. */
1256 if (PyUnicode_Check(name)) {
1257 name = PyUnicode_AsEncodedString(name, NULL, NULL);
1258 if (name == NULL)
1259 return NULL;
1260 }
Tim Peters803526b2002-07-07 05:13:56 +00001261 else
Martin v. Löwis0c160a02002-03-15 13:40:30 +00001262#endif
1263 {
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001264 PyErr_Format(PyExc_TypeError,
1265 "attribute name must be string, not '%.200s'",
1266 name->ob_type->tp_name);
Martin v. Löwis0c160a02002-03-15 13:40:30 +00001267 return NULL;
1268 }
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001269 }
1270 else
1271 Py_INCREF(name);
1272
Tim Peters6d6c1a32001-08-02 04:15:00 +00001273 if (tp->tp_dict == NULL) {
Guido van Rossum528b7eb2001-08-07 17:24:28 +00001274 if (PyType_Ready(tp) < 0)
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001275 goto done;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001276 }
1277
Guido van Rossum056fbf42002-08-19 19:22:50 +00001278 /* Inline _PyType_Lookup */
1279 {
Martin v. Löwis18e16552006-02-15 17:27:45 +00001280 Py_ssize_t i, n;
Guido van Rossum056fbf42002-08-19 19:22:50 +00001281 PyObject *mro, *base, *dict;
1282
1283 /* Look in tp_dict of types in MRO */
1284 mro = tp->tp_mro;
1285 assert(mro != NULL);
1286 assert(PyTuple_Check(mro));
1287 n = PyTuple_GET_SIZE(mro);
1288 for (i = 0; i < n; i++) {
1289 base = PyTuple_GET_ITEM(mro, i);
Guido van Rossum50e9fb92006-08-17 05:42:55 +00001290 assert(PyType_Check(base));
1291 dict = ((PyTypeObject *)base)->tp_dict;
Guido van Rossum056fbf42002-08-19 19:22:50 +00001292 assert(dict && PyDict_Check(dict));
1293 descr = PyDict_GetItem(dict, name);
1294 if (descr != NULL)
1295 break;
1296 }
1297 }
1298
Michael W. Hudsonb2c7de42003-08-15 13:07:47 +00001299 Py_XINCREF(descr);
1300
Tim Peters6d6c1a32001-08-02 04:15:00 +00001301 f = NULL;
Guido van Rossum3cf5b1e2006-07-27 21:53:35 +00001302 if (descr != NULL) {
Tim Peters6d6c1a32001-08-02 04:15:00 +00001303 f = descr->ob_type->tp_descr_get;
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001304 if (f != NULL && PyDescr_IsData(descr)) {
1305 res = f(descr, obj, (PyObject *)obj->ob_type);
Michael W. Hudsonb2c7de42003-08-15 13:07:47 +00001306 Py_DECREF(descr);
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001307 goto done;
1308 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00001309 }
1310
Guido van Rossumc66ff442002-08-19 16:50:48 +00001311 /* Inline _PyObject_GetDictPtr */
1312 dictoffset = tp->tp_dictoffset;
1313 if (dictoffset != 0) {
1314 PyObject *dict;
1315 if (dictoffset < 0) {
Martin v. Löwis18e16552006-02-15 17:27:45 +00001316 Py_ssize_t tsize;
Guido van Rossumc66ff442002-08-19 16:50:48 +00001317 size_t size;
1318
1319 tsize = ((PyVarObject *)obj)->ob_size;
1320 if (tsize < 0)
1321 tsize = -tsize;
1322 size = _PyObject_VAR_SIZE(tp, tsize);
1323
1324 dictoffset += (long)size;
1325 assert(dictoffset > 0);
1326 assert(dictoffset % SIZEOF_VOID_P == 0);
1327 }
1328 dictptr = (PyObject **) ((char *)obj + dictoffset);
1329 dict = *dictptr;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001330 if (dict != NULL) {
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001331 res = PyDict_GetItem(dict, name);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001332 if (res != NULL) {
1333 Py_INCREF(res);
Michael W. Hudsonb2c7de42003-08-15 13:07:47 +00001334 Py_XDECREF(descr);
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001335 goto done;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001336 }
1337 }
1338 }
1339
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001340 if (f != NULL) {
1341 res = f(descr, obj, (PyObject *)obj->ob_type);
Michael W. Hudsonb2c7de42003-08-15 13:07:47 +00001342 Py_DECREF(descr);
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001343 goto done;
1344 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00001345
1346 if (descr != NULL) {
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001347 res = descr;
Michael W. Hudsonb2c7de42003-08-15 13:07:47 +00001348 /* descr was already increfed above */
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001349 goto done;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001350 }
1351
1352 PyErr_Format(PyExc_AttributeError,
1353 "'%.50s' object has no attribute '%.400s'",
1354 tp->tp_name, PyString_AS_STRING(name));
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001355 done:
1356 Py_DECREF(name);
1357 return res;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001358}
1359
1360int
1361PyObject_GenericSetAttr(PyObject *obj, PyObject *name, PyObject *value)
1362{
1363 PyTypeObject *tp = obj->ob_type;
1364 PyObject *descr;
1365 descrsetfunc f;
1366 PyObject **dictptr;
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001367 int res = -1;
1368
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001369 if (!PyString_Check(name)){
Martin v. Löwis0c160a02002-03-15 13:40:30 +00001370#ifdef Py_USING_UNICODE
1371 /* The Unicode to string conversion is done here because the
1372 existing tp_setattro slots expect a string object as name
1373 and we wouldn't want to break those. */
1374 if (PyUnicode_Check(name)) {
1375 name = PyUnicode_AsEncodedString(name, NULL, NULL);
1376 if (name == NULL)
1377 return -1;
1378 }
Tim Peters803526b2002-07-07 05:13:56 +00001379 else
Martin v. Löwis0c160a02002-03-15 13:40:30 +00001380#endif
1381 {
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001382 PyErr_Format(PyExc_TypeError,
1383 "attribute name must be string, not '%.200s'",
1384 name->ob_type->tp_name);
Martin v. Löwis0c160a02002-03-15 13:40:30 +00001385 return -1;
1386 }
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001387 }
1388 else
1389 Py_INCREF(name);
Tim Peters6d6c1a32001-08-02 04:15:00 +00001390
1391 if (tp->tp_dict == NULL) {
Guido van Rossum528b7eb2001-08-07 17:24:28 +00001392 if (PyType_Ready(tp) < 0)
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001393 goto done;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001394 }
1395
1396 descr = _PyType_Lookup(tp, name);
1397 f = NULL;
Guido van Rossum3cf5b1e2006-07-27 21:53:35 +00001398 if (descr != NULL) {
Tim Peters6d6c1a32001-08-02 04:15:00 +00001399 f = descr->ob_type->tp_descr_set;
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001400 if (f != NULL && PyDescr_IsData(descr)) {
1401 res = f(descr, obj, value);
1402 goto done;
1403 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00001404 }
1405
1406 dictptr = _PyObject_GetDictPtr(obj);
1407 if (dictptr != NULL) {
1408 PyObject *dict = *dictptr;
1409 if (dict == NULL && value != NULL) {
1410 dict = PyDict_New();
1411 if (dict == NULL)
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001412 goto done;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001413 *dictptr = dict;
1414 }
1415 if (dict != NULL) {
Tim Peters6d6c1a32001-08-02 04:15:00 +00001416 if (value == NULL)
1417 res = PyDict_DelItem(dict, name);
1418 else
1419 res = PyDict_SetItem(dict, name, value);
1420 if (res < 0 && PyErr_ExceptionMatches(PyExc_KeyError))
1421 PyErr_SetObject(PyExc_AttributeError, name);
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001422 goto done;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001423 }
1424 }
1425
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001426 if (f != NULL) {
1427 res = f(descr, obj, value);
1428 goto done;
1429 }
Tim Peters6d6c1a32001-08-02 04:15:00 +00001430
1431 if (descr == NULL) {
1432 PyErr_Format(PyExc_AttributeError,
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001433 "'%.100s' object has no attribute '%.200s'",
Tim Peters6d6c1a32001-08-02 04:15:00 +00001434 tp->tp_name, PyString_AS_STRING(name));
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001435 goto done;
Tim Peters6d6c1a32001-08-02 04:15:00 +00001436 }
1437
1438 PyErr_Format(PyExc_AttributeError,
1439 "'%.50s' object attribute '%.400s' is read-only",
1440 tp->tp_name, PyString_AS_STRING(name));
Guido van Rossumebca9fc2001-12-04 15:54:53 +00001441 done:
1442 Py_DECREF(name);
1443 return res;
Guido van Rossum98ff96a1997-05-20 18:34:44 +00001444}
1445
Guido van Rossum6ac258d1993-05-12 08:24:20 +00001446/* Test a value used as condition, e.g., in a for or if statement.
1447 Return -1 if an error occurred */
1448
1449int
Fred Drake100814d2000-07-09 15:48:49 +00001450PyObject_IsTrue(PyObject *v)
Guido van Rossum6ac258d1993-05-12 08:24:20 +00001451{
Martin v. Löwis18e16552006-02-15 17:27:45 +00001452 Py_ssize_t res;
Guido van Rossum6248f442002-08-24 06:31:34 +00001453 if (v == Py_True)
1454 return 1;
1455 if (v == Py_False)
1456 return 0;
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001457 if (v == Py_None)
Neal Norwitz51290d32002-06-13 21:32:44 +00001458 return 0;
Guido van Rossum1c4f4581998-05-22 00:53:24 +00001459 else if (v->ob_type->tp_as_number != NULL &&
1460 v->ob_type->tp_as_number->nb_nonzero != NULL)
Guido van Rossum6ac258d1993-05-12 08:24:20 +00001461 res = (*v->ob_type->tp_as_number->nb_nonzero)(v);
Guido van Rossum1c4f4581998-05-22 00:53:24 +00001462 else if (v->ob_type->tp_as_mapping != NULL &&
1463 v->ob_type->tp_as_mapping->mp_length != NULL)
Guido van Rossum6ac258d1993-05-12 08:24:20 +00001464 res = (*v->ob_type->tp_as_mapping->mp_length)(v);
Guido van Rossum1c4f4581998-05-22 00:53:24 +00001465 else if (v->ob_type->tp_as_sequence != NULL &&
1466 v->ob_type->tp_as_sequence->sq_length != NULL)
Guido van Rossum6ac258d1993-05-12 08:24:20 +00001467 res = (*v->ob_type->tp_as_sequence->sq_length)(v);
1468 else
Neal Norwitz51290d32002-06-13 21:32:44 +00001469 return 1;
Martin v. Löwis18e16552006-02-15 17:27:45 +00001470 /* if it is negative, it should be either -1 or -2 */
1471 return (res > 0) ? 1 : Py_SAFE_DOWNCAST(res, Py_ssize_t, int);
Guido van Rossum6ac258d1993-05-12 08:24:20 +00001472}
1473
Tim Peters803526b2002-07-07 05:13:56 +00001474/* equivalent of 'not v'
Guido van Rossumc3d3f961998-04-09 17:53:59 +00001475 Return -1 if an error occurred */
1476
1477int
Fred Drake100814d2000-07-09 15:48:49 +00001478PyObject_Not(PyObject *v)
Guido van Rossumc3d3f961998-04-09 17:53:59 +00001479{
1480 int res;
1481 res = PyObject_IsTrue(v);
1482 if (res < 0)
1483 return res;
1484 return res == 0;
1485}
1486
Guido van Rossum5524a591995-01-10 15:26:20 +00001487/* Coerce two numeric types to the "larger" one.
1488 Increment the reference count on each argument.
Guido van Rossume797ec12001-01-17 15:24:28 +00001489 Return value:
1490 -1 if an error occurred;
1491 0 if the coercion succeeded (and then the reference counts are increased);
1492 1 if no coercion is possible (and no error is raised).
Guido van Rossum5524a591995-01-10 15:26:20 +00001493*/
Guido van Rossum5524a591995-01-10 15:26:20 +00001494int
Fred Drake100814d2000-07-09 15:48:49 +00001495PyNumber_CoerceEx(PyObject **pv, PyObject **pw)
Guido van Rossum5524a591995-01-10 15:26:20 +00001496{
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001497 register PyObject *v = *pv;
1498 register PyObject *w = *pw;
Guido van Rossum5524a591995-01-10 15:26:20 +00001499 int res;
1500
Guido van Rossum5524a591995-01-10 15:26:20 +00001501 if (v->ob_type->tp_as_number && v->ob_type->tp_as_number->nb_coerce) {
1502 res = (*v->ob_type->tp_as_number->nb_coerce)(pv, pw);
1503 if (res <= 0)
1504 return res;
1505 }
1506 if (w->ob_type->tp_as_number && w->ob_type->tp_as_number->nb_coerce) {
1507 res = (*w->ob_type->tp_as_number->nb_coerce)(pw, pv);
1508 if (res <= 0)
1509 return res;
1510 }
Guido van Rossum242c6421997-11-19 16:03:17 +00001511 return 1;
1512}
1513
Guido van Rossum49b11fe1995-01-26 00:38:22 +00001514/* Test whether an object can be called */
1515
1516int
Fred Drake100814d2000-07-09 15:48:49 +00001517PyCallable_Check(PyObject *x)
Guido van Rossum49b11fe1995-01-26 00:38:22 +00001518{
1519 if (x == NULL)
1520 return 0;
Guido van Rossum50e9fb92006-08-17 05:42:55 +00001521 return x->ob_type->tp_call != NULL;
Guido van Rossum49b11fe1995-01-26 00:38:22 +00001522}
1523
Tim Peters7eea37e2001-09-04 22:08:56 +00001524/* Helper for PyObject_Dir.
1525 Merge the __dict__ of aclass into dict, and recursively also all
1526 the __dict__s of aclass's base classes. The order of merging isn't
1527 defined, as it's expected that only the final set of dict keys is
1528 interesting.
1529 Return 0 on success, -1 on error.
1530*/
1531
1532static int
1533merge_class_dict(PyObject* dict, PyObject* aclass)
1534{
1535 PyObject *classdict;
1536 PyObject *bases;
1537
1538 assert(PyDict_Check(dict));
1539 assert(aclass);
1540
1541 /* Merge in the type's dict (if any). */
1542 classdict = PyObject_GetAttrString(aclass, "__dict__");
1543 if (classdict == NULL)
1544 PyErr_Clear();
1545 else {
1546 int status = PyDict_Update(dict, classdict);
1547 Py_DECREF(classdict);
1548 if (status < 0)
1549 return -1;
1550 }
1551
1552 /* Recursively merge in the base types' (if any) dicts. */
1553 bases = PyObject_GetAttrString(aclass, "__bases__");
Tim Petersbc7e8632001-09-16 20:33:22 +00001554 if (bases == NULL)
1555 PyErr_Clear();
1556 else {
Guido van Rossum44022412002-05-13 18:29:46 +00001557 /* We have no guarantee that bases is a real tuple */
Martin v. Löwis18e16552006-02-15 17:27:45 +00001558 Py_ssize_t i, n;
Guido van Rossum44022412002-05-13 18:29:46 +00001559 n = PySequence_Size(bases); /* This better be right */
1560 if (n < 0)
1561 PyErr_Clear();
1562 else {
1563 for (i = 0; i < n; i++) {
Tim Peters18e70832003-02-05 19:35:19 +00001564 int status;
Guido van Rossum44022412002-05-13 18:29:46 +00001565 PyObject *base = PySequence_GetItem(bases, i);
1566 if (base == NULL) {
1567 Py_DECREF(bases);
1568 return -1;
1569 }
Tim Peters18e70832003-02-05 19:35:19 +00001570 status = merge_class_dict(dict, base);
1571 Py_DECREF(base);
1572 if (status < 0) {
Guido van Rossum44022412002-05-13 18:29:46 +00001573 Py_DECREF(bases);
1574 return -1;
1575 }
Tim Peters7eea37e2001-09-04 22:08:56 +00001576 }
1577 }
1578 Py_DECREF(bases);
1579 }
1580 return 0;
1581}
1582
Tim Peters305b5852001-09-17 02:38:46 +00001583/* Helper for PyObject_Dir.
1584 If obj has an attr named attrname that's a list, merge its string
1585 elements into keys of dict.
1586 Return 0 on success, -1 on error. Errors due to not finding the attr,
1587 or the attr not being a list, are suppressed.
1588*/
1589
1590static int
Jeremy Hyltonaf68c872005-12-10 18:50:16 +00001591merge_list_attr(PyObject* dict, PyObject* obj, const char *attrname)
Tim Peters305b5852001-09-17 02:38:46 +00001592{
1593 PyObject *list;
1594 int result = 0;
1595
1596 assert(PyDict_Check(dict));
1597 assert(obj);
1598 assert(attrname);
1599
1600 list = PyObject_GetAttrString(obj, attrname);
1601 if (list == NULL)
1602 PyErr_Clear();
1603
1604 else if (PyList_Check(list)) {
1605 int i;
1606 for (i = 0; i < PyList_GET_SIZE(list); ++i) {
1607 PyObject *item = PyList_GET_ITEM(list, i);
1608 if (PyString_Check(item)) {
1609 result = PyDict_SetItem(dict, item, Py_None);
1610 if (result < 0)
1611 break;
1612 }
1613 }
1614 }
1615
1616 Py_XDECREF(list);
1617 return result;
1618}
1619
Tim Peters7eea37e2001-09-04 22:08:56 +00001620/* Like __builtin__.dir(arg). See bltinmodule.c's builtin_dir for the
1621 docstring, which should be kept in synch with this implementation. */
1622
1623PyObject *
1624PyObject_Dir(PyObject *arg)
1625{
1626 /* Set exactly one of these non-NULL before the end. */
1627 PyObject *result = NULL; /* result list */
1628 PyObject *masterdict = NULL; /* result is masterdict.keys() */
1629
1630 /* If NULL arg, return the locals. */
1631 if (arg == NULL) {
1632 PyObject *locals = PyEval_GetLocals();
1633 if (locals == NULL)
1634 goto error;
Raymond Hettinger214b1c32004-07-02 06:41:07 +00001635 result = PyMapping_Keys(locals);
Tim Peters7eea37e2001-09-04 22:08:56 +00001636 if (result == NULL)
1637 goto error;
1638 }
1639
1640 /* Elif this is some form of module, we only want its dict. */
Guido van Rossum8dbd3d82001-09-10 18:27:43 +00001641 else if (PyModule_Check(arg)) {
Tim Peters7eea37e2001-09-04 22:08:56 +00001642 masterdict = PyObject_GetAttrString(arg, "__dict__");
1643 if (masterdict == NULL)
1644 goto error;
Guido van Rossum8dbd3d82001-09-10 18:27:43 +00001645 if (!PyDict_Check(masterdict)) {
1646 PyErr_SetString(PyExc_TypeError,
1647 "module.__dict__ is not a dictionary");
1648 goto error;
1649 }
Tim Peters7eea37e2001-09-04 22:08:56 +00001650 }
1651
1652 /* Elif some form of type or class, grab its dict and its bases.
1653 We deliberately don't suck up its __class__, as methods belonging
1654 to the metaclass would probably be more confusing than helpful. */
Guido van Rossum50e9fb92006-08-17 05:42:55 +00001655 else if (PyType_Check(arg)) {
Tim Peters7eea37e2001-09-04 22:08:56 +00001656 masterdict = PyDict_New();
1657 if (masterdict == NULL)
1658 goto error;
1659 if (merge_class_dict(masterdict, arg) < 0)
1660 goto error;
1661 }
1662
1663 /* Else look at its dict, and the attrs reachable from its class. */
1664 else {
1665 PyObject *itsclass;
1666 /* Create a dict to start with. CAUTION: Not everything
1667 responding to __dict__ returns a dict! */
1668 masterdict = PyObject_GetAttrString(arg, "__dict__");
1669 if (masterdict == NULL) {
1670 PyErr_Clear();
1671 masterdict = PyDict_New();
1672 }
1673 else if (!PyDict_Check(masterdict)) {
1674 Py_DECREF(masterdict);
1675 masterdict = PyDict_New();
1676 }
1677 else {
1678 /* The object may have returned a reference to its
1679 dict, so copy it to avoid mutating it. */
1680 PyObject *temp = PyDict_Copy(masterdict);
1681 Py_DECREF(masterdict);
1682 masterdict = temp;
1683 }
1684 if (masterdict == NULL)
1685 goto error;
1686
Tim Peters305b5852001-09-17 02:38:46 +00001687 /* Merge in __members__ and __methods__ (if any).
1688 XXX Would like this to go away someday; for now, it's
1689 XXX needed to get at im_self etc of method objects. */
1690 if (merge_list_attr(masterdict, arg, "__members__") < 0)
1691 goto error;
1692 if (merge_list_attr(masterdict, arg, "__methods__") < 0)
1693 goto error;
1694
Tim Peters7eea37e2001-09-04 22:08:56 +00001695 /* Merge in attrs reachable from its class.
1696 CAUTION: Not all objects have a __class__ attr. */
1697 itsclass = PyObject_GetAttrString(arg, "__class__");
1698 if (itsclass == NULL)
1699 PyErr_Clear();
1700 else {
1701 int status = merge_class_dict(masterdict, itsclass);
1702 Py_DECREF(itsclass);
1703 if (status < 0)
1704 goto error;
1705 }
1706 }
1707
1708 assert((result == NULL) ^ (masterdict == NULL));
1709 if (masterdict != NULL) {
1710 /* The result comes from its keys. */
1711 assert(result == NULL);
1712 result = PyDict_Keys(masterdict);
1713 if (result == NULL)
1714 goto error;
1715 }
1716
1717 assert(result);
Raymond Hettinger2a7dede2004-08-07 04:55:30 +00001718 if (!PyList_Check(result)) {
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001719 PyErr_Format(PyExc_TypeError,
1720 "Expected keys() to be a list, not '%.200s'",
1721 result->ob_type->tp_name);
Raymond Hettinger2a7dede2004-08-07 04:55:30 +00001722 goto error;
1723 }
Tim Peters7eea37e2001-09-04 22:08:56 +00001724 if (PyList_Sort(result) != 0)
1725 goto error;
1726 else
1727 goto normal_return;
1728
1729 error:
1730 Py_XDECREF(result);
1731 result = NULL;
1732 /* fall through */
1733 normal_return:
1734 Py_XDECREF(masterdict);
1735 return result;
1736}
Guido van Rossum49b11fe1995-01-26 00:38:22 +00001737
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001738/*
1739NoObject is usable as a non-NULL undefined value, used by the macro None.
1740There is (and should be!) no way to create other objects of this type,
Guido van Rossum3f5da241990-12-20 15:06:42 +00001741so there is exactly one (which is indestructible, by the way).
Guido van Rossumba21a492001-08-16 08:17:26 +00001742(XXX This type and the type of NotImplemented below should be unified.)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001743*/
1744
Guido van Rossum0c182a11992-03-27 17:26:13 +00001745/* ARGSUSED */
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001746static PyObject *
Fred Drake100814d2000-07-09 15:48:49 +00001747none_repr(PyObject *op)
Guido van Rossum3f5da241990-12-20 15:06:42 +00001748{
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001749 return PyString_FromString("None");
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001750}
1751
Barry Warsaw9bf16442001-01-23 16:24:35 +00001752/* ARGUSED */
1753static void
Tim Peters803526b2002-07-07 05:13:56 +00001754none_dealloc(PyObject* ignore)
Barry Warsaw9bf16442001-01-23 16:24:35 +00001755{
1756 /* This should never get called, but we also don't want to SEGV if
1757 * we accidently decref None out of existance.
1758 */
Martin v. Löwis3f19b102002-08-07 16:21:51 +00001759 Py_FatalError("deallocating None");
Barry Warsaw9bf16442001-01-23 16:24:35 +00001760}
1761
1762
Guido van Rossumba21a492001-08-16 08:17:26 +00001763static PyTypeObject PyNone_Type = {
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001764 PyObject_HEAD_INIT(&PyType_Type)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001765 0,
Guido van Rossumba21a492001-08-16 08:17:26 +00001766 "NoneType",
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001767 0,
1768 0,
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001769 none_dealloc, /*tp_dealloc*/ /*never called*/
Guido van Rossum7066dd71992-09-17 17:54:56 +00001770 0, /*tp_print*/
Guido van Rossum3f5da241990-12-20 15:06:42 +00001771 0, /*tp_getattr*/
1772 0, /*tp_setattr*/
1773 0, /*tp_compare*/
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001774 none_repr, /*tp_repr*/
Guido van Rossum3f5da241990-12-20 15:06:42 +00001775 0, /*tp_as_number*/
1776 0, /*tp_as_sequence*/
1777 0, /*tp_as_mapping*/
Guido van Rossum9bfef441993-03-29 10:43:31 +00001778 0, /*tp_hash */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001779};
1780
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001781PyObject _Py_NoneStruct = {
Guido van Rossumba21a492001-08-16 08:17:26 +00001782 PyObject_HEAD_INIT(&PyNone_Type)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001783};
1784
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +00001785/* NotImplemented is an object that can be used to signal that an
1786 operation is not implemented for the given type combination. */
1787
1788static PyObject *
1789NotImplemented_repr(PyObject *op)
1790{
1791 return PyString_FromString("NotImplemented");
1792}
1793
1794static PyTypeObject PyNotImplemented_Type = {
1795 PyObject_HEAD_INIT(&PyType_Type)
1796 0,
Guido van Rossumba21a492001-08-16 08:17:26 +00001797 "NotImplementedType",
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +00001798 0,
1799 0,
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001800 none_dealloc, /*tp_dealloc*/ /*never called*/
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +00001801 0, /*tp_print*/
1802 0, /*tp_getattr*/
1803 0, /*tp_setattr*/
1804 0, /*tp_compare*/
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001805 NotImplemented_repr, /*tp_repr*/
Neil Schemenauer5ed85ec2001-01-04 01:48:10 +00001806 0, /*tp_as_number*/
1807 0, /*tp_as_sequence*/
1808 0, /*tp_as_mapping*/
1809 0, /*tp_hash */
1810};
1811
1812PyObject _Py_NotImplementedStruct = {
1813 PyObject_HEAD_INIT(&PyNotImplemented_Type)
1814};
1815
Guido van Rossumba21a492001-08-16 08:17:26 +00001816void
1817_Py_ReadyTypes(void)
1818{
1819 if (PyType_Ready(&PyType_Type) < 0)
1820 Py_FatalError("Can't initialize 'type'");
1821
Fred Drake0a4dd392004-07-02 18:57:45 +00001822 if (PyType_Ready(&_PyWeakref_RefType) < 0)
1823 Py_FatalError("Can't initialize 'weakref'");
1824
Guido van Rossum77f6a652002-04-03 22:41:51 +00001825 if (PyType_Ready(&PyBool_Type) < 0)
1826 Py_FatalError("Can't initialize 'bool'");
1827
Guido van Rossum4dfe8a12006-04-22 23:28:04 +00001828 if (PyType_Ready(&PyBytes_Type) < 0)
1829 Py_FatalError("Can't initialize 'bytes'");
1830
Guido van Rossumcacfc072002-05-24 19:01:59 +00001831 if (PyType_Ready(&PyString_Type) < 0)
1832 Py_FatalError("Can't initialize 'str'");
1833
Guido van Rossumba21a492001-08-16 08:17:26 +00001834 if (PyType_Ready(&PyList_Type) < 0)
1835 Py_FatalError("Can't initialize 'list'");
1836
1837 if (PyType_Ready(&PyNone_Type) < 0)
1838 Py_FatalError("Can't initialize type(None)");
1839
Guido van Rossum50e9fb92006-08-17 05:42:55 +00001840 if (PyType_Ready(Py_Ellipsis->ob_type) < 0)
1841 Py_FatalError("Can't initialize type(Ellipsis)");
1842
Guido van Rossumba21a492001-08-16 08:17:26 +00001843 if (PyType_Ready(&PyNotImplemented_Type) < 0)
1844 Py_FatalError("Can't initialize type(NotImplemented)");
1845}
1846
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001847
Guido van Rossum84a90321996-05-22 16:34:47 +00001848#ifdef Py_TRACE_REFS
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001849
Guido van Rossumaacdc9d1996-08-12 21:32:12 +00001850void
Fred Drake100814d2000-07-09 15:48:49 +00001851_Py_NewReference(PyObject *op)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001852{
Tim Peters34592512002-07-11 06:23:50 +00001853 _Py_INC_REFTOTAL;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001854 op->ob_refcnt = 1;
Tim Peters7571a0f2003-03-23 17:52:28 +00001855 _Py_AddToAllObjects(op, 1);
Tim Peters34592512002-07-11 06:23:50 +00001856 _Py_INC_TPALLOCS(op);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001857}
1858
Guido van Rossumaacdc9d1996-08-12 21:32:12 +00001859void
Fred Drake100814d2000-07-09 15:48:49 +00001860_Py_ForgetReference(register PyObject *op)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001861{
Guido van Rossumbffd6832000-01-20 22:32:56 +00001862#ifdef SLOW_UNREF_CHECK
Guido van Rossum4c08d552000-03-10 22:55:18 +00001863 register PyObject *p;
Guido van Rossumbffd6832000-01-20 22:32:56 +00001864#endif
Guido van Rossumd7047b31995-01-02 19:07:15 +00001865 if (op->ob_refcnt < 0)
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001866 Py_FatalError("UNREF negative refcnt");
Guido van Rossum2e8f6141992-09-03 20:32:55 +00001867 if (op == &refchain ||
Guido van Rossumd7047b31995-01-02 19:07:15 +00001868 op->_ob_prev->_ob_next != op || op->_ob_next->_ob_prev != op)
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001869 Py_FatalError("UNREF invalid object");
Guido van Rossum2e8f6141992-09-03 20:32:55 +00001870#ifdef SLOW_UNREF_CHECK
Guido van Rossum3f5da241990-12-20 15:06:42 +00001871 for (p = refchain._ob_next; p != &refchain; p = p->_ob_next) {
1872 if (p == op)
1873 break;
1874 }
Guido van Rossumd7047b31995-01-02 19:07:15 +00001875 if (p == &refchain) /* Not found */
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001876 Py_FatalError("UNREF unknown object");
Guido van Rossum2e8f6141992-09-03 20:32:55 +00001877#endif
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001878 op->_ob_next->_ob_prev = op->_ob_prev;
1879 op->_ob_prev->_ob_next = op->_ob_next;
Guido van Rossum2e8f6141992-09-03 20:32:55 +00001880 op->_ob_next = op->_ob_prev = NULL;
Tim Peters34592512002-07-11 06:23:50 +00001881 _Py_INC_TPFREES(op);
Guido van Rossum3f5da241990-12-20 15:06:42 +00001882}
1883
Guido van Rossumaacdc9d1996-08-12 21:32:12 +00001884void
Fred Drake100814d2000-07-09 15:48:49 +00001885_Py_Dealloc(PyObject *op)
Guido van Rossum3f5da241990-12-20 15:06:42 +00001886{
Guido van Rossum9776adf1994-09-07 14:36:45 +00001887 destructor dealloc = op->ob_type->tp_dealloc;
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001888 _Py_ForgetReference(op);
Guido van Rossum9776adf1994-09-07 14:36:45 +00001889 (*dealloc)(op);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001890}
1891
Tim Peters269b2a62003-04-17 19:52:29 +00001892/* Print all live objects. Because PyObject_Print is called, the
1893 * interpreter must be in a healthy state.
1894 */
Guido van Rossumaacdc9d1996-08-12 21:32:12 +00001895void
Fred Drake100814d2000-07-09 15:48:49 +00001896_Py_PrintReferences(FILE *fp)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001897{
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001898 PyObject *op;
Guido van Rossume09fb551997-08-05 02:04:34 +00001899 fprintf(fp, "Remaining objects:\n");
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001900 for (op = refchain._ob_next; op != &refchain; op = op->_ob_next) {
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001901 fprintf(fp, "%p [%" PY_FORMAT_SIZE_T "d] ", op, op->ob_refcnt);
Guido van Rossumc0b618a1997-05-02 03:12:38 +00001902 if (PyObject_Print(op, fp, 0) != 0)
1903 PyErr_Clear();
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001904 putc('\n', fp);
1905 }
1906}
1907
Tim Peters269b2a62003-04-17 19:52:29 +00001908/* Print the addresses of all live objects. Unlike _Py_PrintReferences, this
1909 * doesn't make any calls to the Python C API, so is always safe to call.
1910 */
1911void
1912_Py_PrintReferenceAddresses(FILE *fp)
1913{
1914 PyObject *op;
1915 fprintf(fp, "Remaining object addresses:\n");
1916 for (op = refchain._ob_next; op != &refchain; op = op->_ob_next)
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001917 fprintf(fp, "%p [%" PY_FORMAT_SIZE_T "d] %s\n", op,
1918 op->ob_refcnt, op->ob_type->tp_name);
Tim Peters269b2a62003-04-17 19:52:29 +00001919}
1920
Sjoerd Mullender6ec3c651995-08-29 09:18:14 +00001921PyObject *
Fred Drake100814d2000-07-09 15:48:49 +00001922_Py_GetObjects(PyObject *self, PyObject *args)
Sjoerd Mullender6ec3c651995-08-29 09:18:14 +00001923{
1924 int i, n;
1925 PyObject *t = NULL;
1926 PyObject *res, *op;
1927
1928 if (!PyArg_ParseTuple(args, "i|O", &n, &t))
1929 return NULL;
1930 op = refchain._ob_next;
1931 res = PyList_New(0);
1932 if (res == NULL)
1933 return NULL;
1934 for (i = 0; (n == 0 || i < n) && op != &refchain; i++) {
1935 while (op == self || op == args || op == res || op == t ||
Guido van Rossum3c296022001-07-14 17:58:00 +00001936 (t != NULL && op->ob_type != (PyTypeObject *) t)) {
Sjoerd Mullender6ec3c651995-08-29 09:18:14 +00001937 op = op->_ob_next;
1938 if (op == &refchain)
1939 return res;
1940 }
1941 if (PyList_Append(res, op) < 0) {
1942 Py_DECREF(res);
1943 return NULL;
1944 }
1945 op = op->_ob_next;
1946 }
1947 return res;
1948}
1949
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001950#endif
Guido van Rossum97ead3f1996-01-12 01:24:09 +00001951
1952
1953/* Hack to force loading of cobject.o */
Guido van Rossumda9c2711996-12-05 21:58:58 +00001954PyTypeObject *_Py_cobject_hack = &PyCObject_Type;
Guido van Rossum84a90321996-05-22 16:34:47 +00001955
1956
1957/* Hack to force loading of abstract.o */
Martin v. Löwis18e16552006-02-15 17:27:45 +00001958Py_ssize_t (*_Py_abstract_hack)(PyObject *) = PyObject_Size;
Guido van Rossume09fb551997-08-05 02:04:34 +00001959
1960
Andrew M. Kuchling1582a3a2000-08-16 12:27:23 +00001961/* Python's malloc wrappers (see pymem.h) */
Guido van Rossume09fb551997-08-05 02:04:34 +00001962
Thomas Wouters334fb892000-07-25 12:56:38 +00001963void *
Fred Drake100814d2000-07-09 15:48:49 +00001964PyMem_Malloc(size_t nbytes)
Guido van Rossume09fb551997-08-05 02:04:34 +00001965{
Guido van Rossumb18618d2000-05-03 23:44:39 +00001966 return PyMem_MALLOC(nbytes);
Guido van Rossume09fb551997-08-05 02:04:34 +00001967}
1968
Thomas Wouters334fb892000-07-25 12:56:38 +00001969void *
1970PyMem_Realloc(void *p, size_t nbytes)
Guido van Rossume09fb551997-08-05 02:04:34 +00001971{
Tim Petersaf3e8de2002-04-12 07:22:56 +00001972 return PyMem_REALLOC(p, nbytes);
Guido van Rossume09fb551997-08-05 02:04:34 +00001973}
1974
1975void
Thomas Wouters334fb892000-07-25 12:56:38 +00001976PyMem_Free(void *p)
Guido van Rossume09fb551997-08-05 02:04:34 +00001977{
Guido van Rossumb18618d2000-05-03 23:44:39 +00001978 PyMem_FREE(p);
1979}
1980
1981
Guido van Rossum86610361998-04-10 22:32:46 +00001982/* These methods are used to control infinite recursion in repr, str, print,
1983 etc. Container objects that may recursively contain themselves,
1984 e.g. builtin dictionaries and lists, should used Py_ReprEnter() and
1985 Py_ReprLeave() to avoid infinite recursion.
1986
1987 Py_ReprEnter() returns 0 the first time it is called for a particular
1988 object and 1 every time thereafter. It returns -1 if an exception
1989 occurred. Py_ReprLeave() has no return value.
1990
1991 See dictobject.c and listobject.c for examples of use.
1992*/
1993
1994#define KEY "Py_Repr"
1995
1996int
Fred Drake100814d2000-07-09 15:48:49 +00001997Py_ReprEnter(PyObject *obj)
Guido van Rossum86610361998-04-10 22:32:46 +00001998{
1999 PyObject *dict;
2000 PyObject *list;
Martin v. Löwis18e16552006-02-15 17:27:45 +00002001 Py_ssize_t i;
Guido van Rossum86610361998-04-10 22:32:46 +00002002
2003 dict = PyThreadState_GetDict();
2004 if (dict == NULL)
Guido van Rossum0fc8f002003-04-15 15:12:39 +00002005 return 0;
Guido van Rossum86610361998-04-10 22:32:46 +00002006 list = PyDict_GetItemString(dict, KEY);
2007 if (list == NULL) {
2008 list = PyList_New(0);
2009 if (list == NULL)
2010 return -1;
2011 if (PyDict_SetItemString(dict, KEY, list) < 0)
2012 return -1;
2013 Py_DECREF(list);
2014 }
2015 i = PyList_GET_SIZE(list);
2016 while (--i >= 0) {
2017 if (PyList_GET_ITEM(list, i) == obj)
2018 return 1;
2019 }
2020 PyList_Append(list, obj);
2021 return 0;
2022}
2023
2024void
Fred Drake100814d2000-07-09 15:48:49 +00002025Py_ReprLeave(PyObject *obj)
Guido van Rossum86610361998-04-10 22:32:46 +00002026{
2027 PyObject *dict;
2028 PyObject *list;
Martin v. Löwis18e16552006-02-15 17:27:45 +00002029 Py_ssize_t i;
Guido van Rossum86610361998-04-10 22:32:46 +00002030
2031 dict = PyThreadState_GetDict();
Guido van Rossumeb909461998-04-11 15:17:34 +00002032 if (dict == NULL)
2033 return;
Guido van Rossum86610361998-04-10 22:32:46 +00002034 list = PyDict_GetItemString(dict, KEY);
Guido van Rossumeb909461998-04-11 15:17:34 +00002035 if (list == NULL || !PyList_Check(list))
2036 return;
Guido van Rossum86610361998-04-10 22:32:46 +00002037 i = PyList_GET_SIZE(list);
2038 /* Count backwards because we always expect obj to be list[-1] */
2039 while (--i >= 0) {
2040 if (PyList_GET_ITEM(list, i) == obj) {
2041 PyList_SetSlice(list, i, i + 1, NULL);
2042 break;
2043 }
2044 }
2045}
Guido van Rossumd724b232000-03-13 16:01:29 +00002046
Tim Peters803526b2002-07-07 05:13:56 +00002047/* Trashcan support. */
Guido van Rossumd724b232000-03-13 16:01:29 +00002048
Tim Peters803526b2002-07-07 05:13:56 +00002049/* Current call-stack depth of tp_dealloc calls. */
Guido van Rossumd724b232000-03-13 16:01:29 +00002050int _PyTrash_delete_nesting = 0;
Guido van Rossume92e6102000-04-24 15:40:53 +00002051
Tim Peters803526b2002-07-07 05:13:56 +00002052/* List of objects that still need to be cleaned up, singly linked via their
2053 * gc headers' gc_prev pointers.
2054 */
2055PyObject *_PyTrash_delete_later = NULL;
Guido van Rossumd724b232000-03-13 16:01:29 +00002056
Tim Peters803526b2002-07-07 05:13:56 +00002057/* Add op to the _PyTrash_delete_later list. Called when the current
2058 * call-stack depth gets large. op must be a currently untracked gc'ed
2059 * object, with refcount 0. Py_DECREF must already have been called on it.
2060 */
Guido van Rossumd724b232000-03-13 16:01:29 +00002061void
Fred Drake100814d2000-07-09 15:48:49 +00002062_PyTrash_deposit_object(PyObject *op)
Guido van Rossumd724b232000-03-13 16:01:29 +00002063{
Tim Peters803526b2002-07-07 05:13:56 +00002064 assert(PyObject_IS_GC(op));
2065 assert(_Py_AS_GC(op)->gc.gc_refs == _PyGC_REFS_UNTRACKED);
2066 assert(op->ob_refcnt == 0);
Neil Schemenauerf589c052002-03-29 03:05:54 +00002067 _Py_AS_GC(op)->gc.gc_prev = (PyGC_Head *)_PyTrash_delete_later;
Guido van Rossume92e6102000-04-24 15:40:53 +00002068 _PyTrash_delete_later = op;
Guido van Rossumd724b232000-03-13 16:01:29 +00002069}
2070
Tim Peters803526b2002-07-07 05:13:56 +00002071/* Dealloccate all the objects in the _PyTrash_delete_later list. Called when
2072 * the call-stack unwinds again.
2073 */
Guido van Rossumd724b232000-03-13 16:01:29 +00002074void
Fred Drake100814d2000-07-09 15:48:49 +00002075_PyTrash_destroy_chain(void)
Guido van Rossumd724b232000-03-13 16:01:29 +00002076{
2077 while (_PyTrash_delete_later) {
Tim Peters803526b2002-07-07 05:13:56 +00002078 PyObject *op = _PyTrash_delete_later;
2079 destructor dealloc = op->ob_type->tp_dealloc;
Neil Schemenauerf589c052002-03-29 03:05:54 +00002080
Neil Schemenauerf589c052002-03-29 03:05:54 +00002081 _PyTrash_delete_later =
Tim Peters803526b2002-07-07 05:13:56 +00002082 (PyObject*) _Py_AS_GC(op)->gc.gc_prev;
Neil Schemenauerf589c052002-03-29 03:05:54 +00002083
Tim Peters803526b2002-07-07 05:13:56 +00002084 /* Call the deallocator directly. This used to try to
2085 * fool Py_DECREF into calling it indirectly, but
2086 * Py_DECREF was already called on this object, and in
2087 * assorted non-release builds calling Py_DECREF again ends
2088 * up distorting allocation statistics.
2089 */
2090 assert(op->ob_refcnt == 0);
Guido van Rossumd724b232000-03-13 16:01:29 +00002091 ++_PyTrash_delete_nesting;
Tim Peters803526b2002-07-07 05:13:56 +00002092 (*dealloc)(op);
Guido van Rossumd724b232000-03-13 16:01:29 +00002093 --_PyTrash_delete_nesting;
2094 }
2095}
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00002096
2097#ifdef __cplusplus
2098}
2099#endif
2100