Guido van Rossum | f70e43a | 1991-02-19 12:39:46 +0000 | [diff] [blame] | 1 | |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 2 | /* Generic object operations; and implementation of None (NoObject) */ |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 3 | |
Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 4 | #include "Python.h" |
Guido van Rossum | 50e9fb9 | 2006-08-17 05:42:55 +0000 | [diff] [blame] | 5 | #include "sliceobject.h" /* For PyEllipsis_Type */ |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 6 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 7 | #ifdef __cplusplus |
| 8 | extern "C" { |
| 9 | #endif |
| 10 | |
Tim Peters | 3459251 | 2002-07-11 06:23:50 +0000 | [diff] [blame] | 11 | #ifdef Py_REF_DEBUG |
Neal Norwitz | 84632ee | 2006-03-04 20:00:59 +0000 | [diff] [blame] | 12 | Py_ssize_t _Py_RefTotal; |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 13 | |
| 14 | Py_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 Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 31 | |
Mark Hammond | a290527 | 2002-07-29 13:42:14 +0000 | [diff] [blame] | 32 | int Py_DivisionWarningFlag; |
Guido van Rossum | 393661d | 2001-08-31 17:40:15 +0000 | [diff] [blame] | 33 | |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 34 | /* 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 Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 37 | |
Tim Peters | 78be799 | 2003-03-23 02:51:01 +0000 | [diff] [blame] | 38 | #ifdef Py_TRACE_REFS |
Tim Peters | 7571a0f | 2003-03-23 17:52:28 +0000 | [diff] [blame] | 39 | /* 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 Peters | 78be799 | 2003-03-23 02:51:01 +0000 | [diff] [blame] | 43 | static PyObject refchain = {&refchain, &refchain}; |
Tim Peters | 36eb4df | 2003-03-23 03:33:13 +0000 | [diff] [blame] | 44 | |
Tim Peters | 7571a0f | 2003-03-23 17:52:28 +0000 | [diff] [blame] | 45 | /* 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 Peters | 51f8d38 | 2003-03-23 18:06:08 +0000 | [diff] [blame] | 50 | * relinking it into the front. |
Tim Peters | 7571a0f | 2003-03-23 17:52:28 +0000 | [diff] [blame] | 51 | * 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 Peters | 36eb4df | 2003-03-23 03:33:13 +0000 | [diff] [blame] | 56 | void |
Tim Peters | 7571a0f | 2003-03-23 17:52:28 +0000 | [diff] [blame] | 57 | _Py_AddToAllObjects(PyObject *op, int force) |
Tim Peters | 36eb4df | 2003-03-23 03:33:13 +0000 | [diff] [blame] | 58 | { |
Tim Peters | 7571a0f | 2003-03-23 17:52:28 +0000 | [diff] [blame] | 59 | #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 Peters | 78be799 | 2003-03-23 02:51:01 +0000 | [diff] [blame] | 66 | #endif |
Tim Peters | 7571a0f | 2003-03-23 17:52:28 +0000 | [diff] [blame] | 67 | 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 Peters | 78be799 | 2003-03-23 02:51:01 +0000 | [diff] [blame] | 75 | |
Sjoerd Mullender | a9c3c22 | 1993-10-11 12:54:31 +0000 | [diff] [blame] | 76 | #ifdef COUNT_ALLOCS |
Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 77 | static PyTypeObject *type_list; |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 78 | /* 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. */ |
| 84 | int unlist_types_without_objects; |
Sjoerd Mullender | 842d2cc | 1993-10-15 16:18:48 +0000 | [diff] [blame] | 85 | extern int tuple_zero_allocs, fast_tuple_allocs; |
| 86 | extern int quick_int_allocs, quick_neg_int_allocs; |
Sjoerd Mullender | 3bb8a05 | 1993-10-22 12:04:32 +0000 | [diff] [blame] | 87 | extern int null_strings, one_strings; |
Sjoerd Mullender | a9c3c22 | 1993-10-11 12:54:31 +0000 | [diff] [blame] | 88 | void |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 89 | dump_counts(FILE* f) |
Sjoerd Mullender | a9c3c22 | 1993-10-11 12:54:31 +0000 | [diff] [blame] | 90 | { |
Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 91 | PyTypeObject *tp; |
Sjoerd Mullender | a9c3c22 | 1993-10-11 12:54:31 +0000 | [diff] [blame] | 92 | |
| 93 | for (tp = type_list; tp; tp = tp->tp_next) |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 94 | fprintf(f, "%s alloc'd: %d, freed: %d, max in use: %d\n", |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 95 | tp->tp_name, tp->tp_allocs, tp->tp_frees, |
Sjoerd Mullender | 52c1f51 | 1993-10-25 08:40:52 +0000 | [diff] [blame] | 96 | tp->tp_maxalloc); |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 97 | fprintf(f, "fast tuple allocs: %d, empty: %d\n", |
Sjoerd Mullender | 52c1f51 | 1993-10-25 08:40:52 +0000 | [diff] [blame] | 98 | fast_tuple_allocs, tuple_zero_allocs); |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 99 | fprintf(f, "fast int allocs: pos: %d, neg: %d\n", |
Sjoerd Mullender | 52c1f51 | 1993-10-25 08:40:52 +0000 | [diff] [blame] | 100 | quick_int_allocs, quick_neg_int_allocs); |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 101 | fprintf(f, "null strings: %d, 1-strings: %d\n", |
Sjoerd Mullender | 52c1f51 | 1993-10-25 08:40:52 +0000 | [diff] [blame] | 102 | null_strings, one_strings); |
Sjoerd Mullender | a9c3c22 | 1993-10-11 12:54:31 +0000 | [diff] [blame] | 103 | } |
| 104 | |
Sjoerd Mullender | 6ec3c65 | 1995-08-29 09:18:14 +0000 | [diff] [blame] | 105 | PyObject * |
Fred Drake | 100814d | 2000-07-09 15:48:49 +0000 | [diff] [blame] | 106 | get_counts(void) |
Sjoerd Mullender | 6ec3c65 | 1995-08-29 09:18:14 +0000 | [diff] [blame] | 107 | { |
| 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 Wouters | 4d70c3d | 2006-06-08 14:42:34 +0000 | [diff] [blame] | 116 | v = Py_BuildValue("(snnn)", tp->tp_name, tp->tp_allocs, |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 117 | tp->tp_frees, tp->tp_maxalloc); |
Sjoerd Mullender | 6ec3c65 | 1995-08-29 09:18:14 +0000 | [diff] [blame] | 118 | 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 Mullender | a9c3c22 | 1993-10-11 12:54:31 +0000 | [diff] [blame] | 132 | void |
Fred Drake | 100814d | 2000-07-09 15:48:49 +0000 | [diff] [blame] | 133 | inc_count(PyTypeObject *tp) |
Sjoerd Mullender | a9c3c22 | 1993-10-11 12:54:31 +0000 | [diff] [blame] | 134 | { |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 135 | if (tp->tp_next == NULL && tp->tp_prev == NULL) { |
Guido van Rossum | d8953cb | 1995-04-06 14:46:26 +0000 | [diff] [blame] | 136 | /* first time; insert in linked list */ |
Sjoerd Mullender | a9c3c22 | 1993-10-11 12:54:31 +0000 | [diff] [blame] | 137 | if (tp->tp_next != NULL) /* sanity check */ |
Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 138 | Py_FatalError("XXX inc_count sanity check"); |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 139 | if (type_list) |
| 140 | type_list->tp_prev = tp; |
Sjoerd Mullender | a9c3c22 | 1993-10-11 12:54:31 +0000 | [diff] [blame] | 141 | tp->tp_next = type_list; |
Tim Peters | c6a3ff6 | 2002-07-08 22:11:52 +0000 | [diff] [blame] | 142 | /* 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 Mullender | a9c3c22 | 1993-10-11 12:54:31 +0000 | [diff] [blame] | 151 | type_list = tp; |
Tim Peters | 3e40c7f | 2003-03-23 03:04:32 +0000 | [diff] [blame] | 152 | #ifdef Py_TRACE_REFS |
Tim Peters | 7571a0f | 2003-03-23 17:52:28 +0000 | [diff] [blame] | 153 | /* Also insert in the doubly-linked list of all objects, |
| 154 | * if not already there. |
| 155 | */ |
| 156 | _Py_AddToAllObjects((PyObject *)tp, 0); |
Tim Peters | 78be799 | 2003-03-23 02:51:01 +0000 | [diff] [blame] | 157 | #endif |
Sjoerd Mullender | a9c3c22 | 1993-10-11 12:54:31 +0000 | [diff] [blame] | 158 | } |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 159 | 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 Mullender | a9c3c22 | 1993-10-11 12:54:31 +0000 | [diff] [blame] | 162 | } |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 163 | |
| 164 | void 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 Mullender | a9c3c22 | 1993-10-11 12:54:31 +0000 | [diff] [blame] | 181 | #endif |
| 182 | |
Tim Peters | 7c321a8 | 2002-07-09 02:57:01 +0000 | [diff] [blame] | 183 | #ifdef Py_REF_DEBUG |
| 184 | /* Log a fatal error; doesn't return. */ |
| 185 | void |
| 186 | _Py_NegativeRefcount(const char *fname, int lineno, PyObject *op) |
| 187 | { |
| 188 | char buf[300]; |
| 189 | |
| 190 | PyOS_snprintf(buf, sizeof(buf), |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 191 | "%s:%i object at %p has negative ref count " |
| 192 | "%" PY_FORMAT_SIZE_T "d", |
| 193 | fname, lineno, op, op->ob_refcnt); |
Tim Peters | 7c321a8 | 2002-07-09 02:57:01 +0000 | [diff] [blame] | 194 | Py_FatalError(buf); |
| 195 | } |
| 196 | |
| 197 | #endif /* Py_REF_DEBUG */ |
| 198 | |
Thomas Heller | 1328b52 | 2004-04-22 17:23:49 +0000 | [diff] [blame] | 199 | void |
| 200 | Py_IncRef(PyObject *o) |
| 201 | { |
| 202 | Py_XINCREF(o); |
| 203 | } |
| 204 | |
| 205 | void |
| 206 | Py_DecRef(PyObject *o) |
| 207 | { |
| 208 | Py_XDECREF(o); |
| 209 | } |
| 210 | |
Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 211 | PyObject * |
Fred Drake | 100814d | 2000-07-09 15:48:49 +0000 | [diff] [blame] | 212 | PyObject_Init(PyObject *op, PyTypeObject *tp) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 213 | { |
Guido van Rossum | 6e08c14 | 2002-10-11 20:37:24 +0000 | [diff] [blame] | 214 | if (op == NULL) |
| 215 | return PyErr_NoMemory(); |
Guido van Rossum | b18618d | 2000-05-03 23:44:39 +0000 | [diff] [blame] | 216 | /* Any changes should be reflected in PyObject_INIT (objimpl.h) */ |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 217 | op->ob_type = tp; |
Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 218 | _Py_NewReference(op); |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 219 | return op; |
| 220 | } |
| 221 | |
Guido van Rossum | b18618d | 2000-05-03 23:44:39 +0000 | [diff] [blame] | 222 | PyVarObject * |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 223 | PyObject_InitVar(PyVarObject *op, PyTypeObject *tp, Py_ssize_t size) |
Guido van Rossum | b18618d | 2000-05-03 23:44:39 +0000 | [diff] [blame] | 224 | { |
Guido van Rossum | 6e08c14 | 2002-10-11 20:37:24 +0000 | [diff] [blame] | 225 | if (op == NULL) |
| 226 | return (PyVarObject *) PyErr_NoMemory(); |
Guido van Rossum | b18618d | 2000-05-03 23:44:39 +0000 | [diff] [blame] | 227 | /* 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 | |
| 234 | PyObject * |
Fred Drake | 100814d | 2000-07-09 15:48:49 +0000 | [diff] [blame] | 235 | _PyObject_New(PyTypeObject *tp) |
Guido van Rossum | b18618d | 2000-05-03 23:44:39 +0000 | [diff] [blame] | 236 | { |
| 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 Rossum | d0c87ee | 1997-05-15 21:31:03 +0000 | [diff] [blame] | 244 | PyVarObject * |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 245 | _PyObject_NewVar(PyTypeObject *tp, Py_ssize_t nitems) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 246 | { |
Guido van Rossum | b18618d | 2000-05-03 23:44:39 +0000 | [diff] [blame] | 247 | PyVarObject *op; |
Tim Peters | f2a67da | 2001-10-07 03:54:51 +0000 | [diff] [blame] | 248 | const size_t size = _PyObject_VAR_SIZE(tp, nitems); |
Tim Peters | 6d483d3 | 2001-10-06 21:27:34 +0000 | [diff] [blame] | 249 | op = (PyVarObject *) PyObject_MALLOC(size); |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 250 | if (op == NULL) |
Guido van Rossum | d0c87ee | 1997-05-15 21:31:03 +0000 | [diff] [blame] | 251 | return (PyVarObject *)PyErr_NoMemory(); |
Tim Peters | 6d483d3 | 2001-10-06 21:27:34 +0000 | [diff] [blame] | 252 | return PyObject_INIT_VAR(op, tp, nitems); |
Guido van Rossum | b18618d | 2000-05-03 23:44:39 +0000 | [diff] [blame] | 253 | } |
| 254 | |
Neal Norwitz | 1a99750 | 2003-01-13 20:13:12 +0000 | [diff] [blame] | 255 | /* Implementation of PyObject_Print with recursion checking */ |
| 256 | static int |
| 257 | internal_print(PyObject *op, FILE *fp, int flags, int nesting) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 258 | { |
Guido van Rossum | 278ef59 | 1991-07-27 21:40:24 +0000 | [diff] [blame] | 259 | int ret = 0; |
Neal Norwitz | 1a99750 | 2003-01-13 20:13:12 +0000 | [diff] [blame] | 260 | if (nesting > 10) { |
| 261 | PyErr_SetString(PyExc_RuntimeError, "print recursion"); |
| 262 | return -1; |
| 263 | } |
Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 264 | if (PyErr_CheckSignals()) |
Guido van Rossum | 9093361 | 1991-06-07 16:10:43 +0000 | [diff] [blame] | 265 | return -1; |
Guido van Rossum | 9b00dfa | 1998-04-28 16:06:54 +0000 | [diff] [blame] | 266 | #ifdef USE_STACKCHECK |
| 267 | if (PyOS_CheckStack()) { |
Fred Drake | 661ea26 | 2000-10-24 19:57:45 +0000 | [diff] [blame] | 268 | PyErr_SetString(PyExc_MemoryError, "stack overflow"); |
Guido van Rossum | 9b00dfa | 1998-04-28 16:06:54 +0000 | [diff] [blame] | 269 | return -1; |
| 270 | } |
| 271 | #endif |
Guido van Rossum | 687ef6e | 2000-01-12 16:28:58 +0000 | [diff] [blame] | 272 | clearerr(fp); /* Clear any previous error condition */ |
Guido van Rossum | 9093361 | 1991-06-07 16:10:43 +0000 | [diff] [blame] | 273 | if (op == NULL) { |
| 274 | fprintf(fp, "<nil>"); |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 275 | } |
Guido van Rossum | 9093361 | 1991-06-07 16:10:43 +0000 | [diff] [blame] | 276 | else { |
| 277 | if (op->ob_refcnt <= 0) |
Thomas Wouters | 8b87a0b | 2006-03-01 05:41:20 +0000 | [diff] [blame] | 278 | /* XXX(twouters) cast refcount to long until %zd is |
| 279 | universally available */ |
| 280 | fprintf(fp, "<refcnt %ld at %p>", |
| 281 | (long)op->ob_refcnt, op); |
Guido van Rossum | 2e8f614 | 1992-09-03 20:32:55 +0000 | [diff] [blame] | 282 | else if (op->ob_type->tp_print == NULL) { |
Guido van Rossum | 4f288ab | 2001-05-01 16:53:37 +0000 | [diff] [blame] | 283 | PyObject *s; |
| 284 | if (flags & Py_PRINT_RAW) |
| 285 | s = PyObject_Str(op); |
| 286 | else |
| 287 | s = PyObject_Repr(op); |
| 288 | if (s == NULL) |
| 289 | ret = -1; |
Guido van Rossum | 2e8f614 | 1992-09-03 20:32:55 +0000 | [diff] [blame] | 290 | else { |
Neal Norwitz | 1a99750 | 2003-01-13 20:13:12 +0000 | [diff] [blame] | 291 | ret = internal_print(s, fp, Py_PRINT_RAW, |
| 292 | nesting+1); |
Guido van Rossum | 2e8f614 | 1992-09-03 20:32:55 +0000 | [diff] [blame] | 293 | } |
Guido van Rossum | 4f288ab | 2001-05-01 16:53:37 +0000 | [diff] [blame] | 294 | Py_XDECREF(s); |
Guido van Rossum | 2e8f614 | 1992-09-03 20:32:55 +0000 | [diff] [blame] | 295 | } |
Guido van Rossum | 9093361 | 1991-06-07 16:10:43 +0000 | [diff] [blame] | 296 | else |
Guido van Rossum | 278ef59 | 1991-07-27 21:40:24 +0000 | [diff] [blame] | 297 | ret = (*op->ob_type->tp_print)(op, fp, flags); |
Guido van Rossum | 9093361 | 1991-06-07 16:10:43 +0000 | [diff] [blame] | 298 | } |
Guido van Rossum | 278ef59 | 1991-07-27 21:40:24 +0000 | [diff] [blame] | 299 | if (ret == 0) { |
| 300 | if (ferror(fp)) { |
Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 301 | PyErr_SetFromErrno(PyExc_IOError); |
Guido van Rossum | 278ef59 | 1991-07-27 21:40:24 +0000 | [diff] [blame] | 302 | clearerr(fp); |
| 303 | ret = -1; |
| 304 | } |
| 305 | } |
| 306 | return ret; |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 307 | } |
| 308 | |
Neal Norwitz | 1a99750 | 2003-01-13 20:13:12 +0000 | [diff] [blame] | 309 | int |
| 310 | PyObject_Print(PyObject *op, FILE *fp, int flags) |
| 311 | { |
| 312 | return internal_print(op, fp, flags, 0); |
| 313 | } |
| 314 | |
Guido van Rossum | 3893815 | 2006-08-21 23:36:26 +0000 | [diff] [blame] | 315 | /* For debugging convenience. Set a breakpoint here and call it from your DLL */ |
| 316 | void |
Thomas Wouters | b213704 | 2007-02-01 18:02:27 +0000 | [diff] [blame] | 317 | _Py_BreakPoint(void) |
Guido van Rossum | 3893815 | 2006-08-21 23:36:26 +0000 | [diff] [blame] | 318 | { |
| 319 | } |
| 320 | |
Neal Norwitz | 1a99750 | 2003-01-13 20:13:12 +0000 | [diff] [blame] | 321 | |
Barry Warsaw | 9bf1644 | 2001-01-23 16:24:35 +0000 | [diff] [blame] | 322 | /* For debugging convenience. See Misc/gdbinit for some useful gdb hooks */ |
Guido van Rossum | 3893815 | 2006-08-21 23:36:26 +0000 | [diff] [blame] | 323 | void |
| 324 | _PyObject_Dump(PyObject* op) |
Barry Warsaw | 9bf1644 | 2001-01-23 16:24:35 +0000 | [diff] [blame] | 325 | { |
Barry Warsaw | eefb107 | 2001-02-22 22:39:18 +0000 | [diff] [blame] | 326 | if (op == NULL) |
| 327 | fprintf(stderr, "NULL\n"); |
| 328 | else { |
Guido van Rossum | 5f5512d | 2001-09-14 15:50:08 +0000 | [diff] [blame] | 329 | fprintf(stderr, "object : "); |
Barry Warsaw | eefb107 | 2001-02-22 22:39:18 +0000 | [diff] [blame] | 330 | (void)PyObject_Print(op, stderr, 0); |
Thomas Wouters | 8b87a0b | 2006-03-01 05:41:20 +0000 | [diff] [blame] | 331 | /* XXX(twouters) cast refcount to long until %zd is |
| 332 | universally available */ |
Guido van Rossum | 5f5512d | 2001-09-14 15:50:08 +0000 | [diff] [blame] | 333 | fprintf(stderr, "\n" |
| 334 | "type : %s\n" |
Thomas Wouters | 8b87a0b | 2006-03-01 05:41:20 +0000 | [diff] [blame] | 335 | "refcount: %ld\n" |
Guido van Rossum | 5f5512d | 2001-09-14 15:50:08 +0000 | [diff] [blame] | 336 | "address : %p\n", |
| 337 | op->ob_type==NULL ? "NULL" : op->ob_type->tp_name, |
Thomas Wouters | 8b87a0b | 2006-03-01 05:41:20 +0000 | [diff] [blame] | 338 | (long)op->ob_refcnt, |
Guido van Rossum | 5f5512d | 2001-09-14 15:50:08 +0000 | [diff] [blame] | 339 | op); |
Barry Warsaw | eefb107 | 2001-02-22 22:39:18 +0000 | [diff] [blame] | 340 | } |
Barry Warsaw | 9bf1644 | 2001-01-23 16:24:35 +0000 | [diff] [blame] | 341 | } |
Barry Warsaw | 903138f | 2001-01-23 16:33:18 +0000 | [diff] [blame] | 342 | |
Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 343 | PyObject * |
Fred Drake | 100814d | 2000-07-09 15:48:49 +0000 | [diff] [blame] | 344 | PyObject_Repr(PyObject *v) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 345 | { |
Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 346 | if (PyErr_CheckSignals()) |
Guido van Rossum | 9093361 | 1991-06-07 16:10:43 +0000 | [diff] [blame] | 347 | return NULL; |
Guido van Rossum | 9b00dfa | 1998-04-28 16:06:54 +0000 | [diff] [blame] | 348 | #ifdef USE_STACKCHECK |
| 349 | if (PyOS_CheckStack()) { |
Fred Drake | 661ea26 | 2000-10-24 19:57:45 +0000 | [diff] [blame] | 350 | PyErr_SetString(PyExc_MemoryError, "stack overflow"); |
Guido van Rossum | 9b00dfa | 1998-04-28 16:06:54 +0000 | [diff] [blame] | 351 | return NULL; |
| 352 | } |
| 353 | #endif |
Guido van Rossum | 9093361 | 1991-06-07 16:10:43 +0000 | [diff] [blame] | 354 | if (v == NULL) |
Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 355 | return PyString_FromString("<NULL>"); |
Barry Warsaw | 7ce3694 | 2001-08-24 18:34:26 +0000 | [diff] [blame] | 356 | else if (v->ob_type->tp_repr == NULL) |
Guido van Rossum | 21922aa | 2001-08-30 20:26:05 +0000 | [diff] [blame] | 357 | return PyString_FromFormat("<%s object at %p>", |
Barry Warsaw | 7ce3694 | 2001-08-24 18:34:26 +0000 | [diff] [blame] | 358 | v->ob_type->tp_name, v); |
Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 359 | else { |
| 360 | PyObject *res; |
| 361 | res = (*v->ob_type->tp_repr)(v); |
| 362 | if (res == NULL) |
| 363 | return NULL; |
Fredrik Lundh | efecc7d | 2000-07-01 14:31:09 +0000 | [diff] [blame] | 364 | if (PyUnicode_Check(res)) { |
| 365 | PyObject* str; |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 366 | str = PyUnicode_AsEncodedString(res, NULL, NULL); |
Marc-André Lemburg | 891bc65 | 2000-07-03 09:57:53 +0000 | [diff] [blame] | 367 | Py_DECREF(res); |
| 368 | if (str) |
Fredrik Lundh | efecc7d | 2000-07-01 14:31:09 +0000 | [diff] [blame] | 369 | res = str; |
Marc-André Lemburg | 891bc65 | 2000-07-03 09:57:53 +0000 | [diff] [blame] | 370 | else |
| 371 | return NULL; |
Fredrik Lundh | efecc7d | 2000-07-01 14:31:09 +0000 | [diff] [blame] | 372 | } |
Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 373 | if (!PyString_Check(res)) { |
| 374 | PyErr_Format(PyExc_TypeError, |
Guido van Rossum | 5db862d | 2000-04-10 12:46:51 +0000 | [diff] [blame] | 375 | "__repr__ returned non-string (type %.200s)", |
Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 376 | res->ob_type->tp_name); |
| 377 | Py_DECREF(res); |
| 378 | return NULL; |
| 379 | } |
| 380 | return res; |
| 381 | } |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 382 | } |
| 383 | |
Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 384 | PyObject * |
Neil Schemenauer | cf52c07 | 2005-08-12 17:34:58 +0000 | [diff] [blame] | 385 | _PyObject_Str(PyObject *v) |
Guido van Rossum | c600411 | 1993-11-05 10:22:19 +0000 | [diff] [blame] | 386 | { |
Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 387 | PyObject *res; |
Neil Schemenauer | cf52c07 | 2005-08-12 17:34:58 +0000 | [diff] [blame] | 388 | int type_ok; |
Guido van Rossum | c600411 | 1993-11-05 10:22:19 +0000 | [diff] [blame] | 389 | if (v == NULL) |
Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 390 | return PyString_FromString("<NULL>"); |
Tim Peters | 5a49ade | 2001-09-11 01:41:59 +0000 | [diff] [blame] | 391 | if (PyString_CheckExact(v)) { |
Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 392 | Py_INCREF(v); |
Guido van Rossum | c600411 | 1993-11-05 10:22:19 +0000 | [diff] [blame] | 393 | return v; |
| 394 | } |
Neil Schemenauer | cf52c07 | 2005-08-12 17:34:58 +0000 | [diff] [blame] | 395 | if (PyUnicode_CheckExact(v)) { |
| 396 | Py_INCREF(v); |
| 397 | return v; |
| 398 | } |
Guido van Rossum | 4f288ab | 2001-05-01 16:53:37 +0000 | [diff] [blame] | 399 | if (v->ob_type->tp_str == NULL) |
| 400 | return PyObject_Repr(v); |
| 401 | |
| 402 | res = (*v->ob_type->tp_str)(v); |
Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 403 | if (res == NULL) |
| 404 | return NULL; |
Neil Schemenauer | cf52c07 | 2005-08-12 17:34:58 +0000 | [diff] [blame] | 405 | type_ok = PyString_Check(res); |
Neil Schemenauer | cf52c07 | 2005-08-12 17:34:58 +0000 | [diff] [blame] | 406 | type_ok = type_ok || PyUnicode_Check(res); |
Neil Schemenauer | cf52c07 | 2005-08-12 17:34:58 +0000 | [diff] [blame] | 407 | if (!type_ok) { |
| 408 | PyErr_Format(PyExc_TypeError, |
| 409 | "__str__ returned non-string (type %.200s)", |
| 410 | res->ob_type->tp_name); |
| 411 | Py_DECREF(res); |
| 412 | return NULL; |
| 413 | } |
| 414 | return res; |
| 415 | } |
| 416 | |
| 417 | PyObject * |
| 418 | PyObject_Str(PyObject *v) |
| 419 | { |
| 420 | PyObject *res = _PyObject_Str(v); |
| 421 | if (res == NULL) |
| 422 | return NULL; |
Marc-André Lemburg | 891bc65 | 2000-07-03 09:57:53 +0000 | [diff] [blame] | 423 | if (PyUnicode_Check(res)) { |
| 424 | PyObject* str; |
| 425 | str = PyUnicode_AsEncodedString(res, NULL, NULL); |
| 426 | Py_DECREF(res); |
| 427 | if (str) |
| 428 | res = str; |
| 429 | else |
| 430 | return NULL; |
| 431 | } |
Neil Schemenauer | cf52c07 | 2005-08-12 17:34:58 +0000 | [diff] [blame] | 432 | assert(PyString_Check(res)); |
Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 433 | return res; |
Guido van Rossum | c600411 | 1993-11-05 10:22:19 +0000 | [diff] [blame] | 434 | } |
| 435 | |
Guido van Rossum | a3af41d | 2001-01-18 22:07:06 +0000 | [diff] [blame] | 436 | PyObject * |
| 437 | PyObject_Unicode(PyObject *v) |
| 438 | { |
| 439 | PyObject *res; |
Brett Cannon | c3647ac | 2005-04-26 03:45:26 +0000 | [diff] [blame] | 440 | PyObject *func; |
Neal Norwitz | 7580146 | 2006-03-14 06:02:16 +0000 | [diff] [blame] | 441 | PyObject *str; |
Brett Cannon | c3647ac | 2005-04-26 03:45:26 +0000 | [diff] [blame] | 442 | static PyObject *unicodestr; |
Tim Peters | 803526b | 2002-07-07 05:13:56 +0000 | [diff] [blame] | 443 | |
Georg Brandl | 3daf758 | 2006-03-13 22:22:11 +0000 | [diff] [blame] | 444 | if (v == NULL) { |
Guido van Rossum | a3af41d | 2001-01-18 22:07:06 +0000 | [diff] [blame] | 445 | res = PyString_FromString("<NULL>"); |
Neal Norwitz | 7580146 | 2006-03-14 06:02:16 +0000 | [diff] [blame] | 446 | if (res == NULL) |
| 447 | return NULL; |
| 448 | str = PyUnicode_FromEncodedObject(res, NULL, "strict"); |
| 449 | Py_DECREF(res); |
| 450 | return str; |
Georg Brandl | 3daf758 | 2006-03-13 22:22:11 +0000 | [diff] [blame] | 451 | } else if (PyUnicode_CheckExact(v)) { |
Guido van Rossum | a3af41d | 2001-01-18 22:07:06 +0000 | [diff] [blame] | 452 | Py_INCREF(v); |
| 453 | return v; |
| 454 | } |
Brett Cannon | c3647ac | 2005-04-26 03:45:26 +0000 | [diff] [blame] | 455 | /* XXX As soon as we have a tp_unicode slot, we should |
| 456 | check this before trying the __unicode__ |
| 457 | method. */ |
| 458 | if (unicodestr == NULL) { |
| 459 | unicodestr= PyString_InternFromString("__unicode__"); |
| 460 | if (unicodestr == NULL) |
| 461 | return NULL; |
Guido van Rossum | b8c65bc | 2001-10-19 02:01:31 +0000 | [diff] [blame] | 462 | } |
Brett Cannon | c3647ac | 2005-04-26 03:45:26 +0000 | [diff] [blame] | 463 | func = PyObject_GetAttr(v, unicodestr); |
| 464 | if (func != NULL) { |
| 465 | res = PyEval_CallObject(func, (PyObject *)NULL); |
| 466 | Py_DECREF(func); |
| 467 | } |
Guido van Rossum | a3af41d | 2001-01-18 22:07:06 +0000 | [diff] [blame] | 468 | else { |
Brett Cannon | c3647ac | 2005-04-26 03:45:26 +0000 | [diff] [blame] | 469 | PyErr_Clear(); |
| 470 | if (PyUnicode_Check(v)) { |
| 471 | /* For a Unicode subtype that's didn't overwrite __unicode__, |
| 472 | return a true Unicode object with the same data. */ |
| 473 | return PyUnicode_FromUnicode(PyUnicode_AS_UNICODE(v), |
| 474 | PyUnicode_GET_SIZE(v)); |
Guido van Rossum | a3af41d | 2001-01-18 22:07:06 +0000 | [diff] [blame] | 475 | } |
Brett Cannon | c3647ac | 2005-04-26 03:45:26 +0000 | [diff] [blame] | 476 | if (PyString_CheckExact(v)) { |
| 477 | Py_INCREF(v); |
| 478 | res = v; |
Guido van Rossum | a3af41d | 2001-01-18 22:07:06 +0000 | [diff] [blame] | 479 | } |
Guido van Rossum | b8c65bc | 2001-10-19 02:01:31 +0000 | [diff] [blame] | 480 | else { |
Guido van Rossum | b8c65bc | 2001-10-19 02:01:31 +0000 | [diff] [blame] | 481 | if (v->ob_type->tp_str != NULL) |
| 482 | res = (*v->ob_type->tp_str)(v); |
| 483 | else |
| 484 | res = PyObject_Repr(v); |
| 485 | } |
Guido van Rossum | a3af41d | 2001-01-18 22:07:06 +0000 | [diff] [blame] | 486 | } |
| 487 | if (res == NULL) |
| 488 | return NULL; |
| 489 | if (!PyUnicode_Check(res)) { |
Guido van Rossum | b8c65bc | 2001-10-19 02:01:31 +0000 | [diff] [blame] | 490 | str = PyUnicode_FromEncodedObject(res, NULL, "strict"); |
Guido van Rossum | a3af41d | 2001-01-18 22:07:06 +0000 | [diff] [blame] | 491 | Py_DECREF(res); |
Neal Norwitz | 7580146 | 2006-03-14 06:02:16 +0000 | [diff] [blame] | 492 | res = str; |
Guido van Rossum | a3af41d | 2001-01-18 22:07:06 +0000 | [diff] [blame] | 493 | } |
| 494 | return res; |
| 495 | } |
| 496 | |
| 497 | |
Guido van Rossum | 47b9ff6 | 2006-08-24 00:41:19 +0000 | [diff] [blame] | 498 | /* The new comparison philosophy is: we completely separate three-way |
| 499 | comparison from rich comparison. That is, PyObject_Compare() and |
| 500 | PyObject_Cmp() *just* use the tp_compare slot. And PyObject_RichCompare() |
| 501 | and PyObject_RichCompareBool() *just* use the tp_richcompare slot. |
| 502 | |
| 503 | See (*) below for practical amendments. |
| 504 | |
| 505 | IOW, only cmp() uses tp_compare; the comparison operators (==, !=, <=, <, |
| 506 | >=, >) only use tp_richcompare. Note that list.sort() only uses <. |
| 507 | |
| 508 | (And yes, eventually we'll rip out cmp() and tp_compare.) |
| 509 | |
| 510 | The calling conventions are different: tp_compare only gets called with two |
| 511 | objects of the appropriate type; tp_richcompare gets called with a first |
| 512 | argument of the appropriate type and a second object of an arbitrary type. |
| 513 | We never do any kind of coercion. |
| 514 | |
| 515 | The return conventions are also different. |
| 516 | |
| 517 | The tp_compare slot should return a C int, as follows: |
| 518 | |
| 519 | -1 if a < b or if an exception occurred |
| 520 | 0 if a == b |
| 521 | +1 if a > b |
| 522 | |
| 523 | No other return values are allowed. PyObject_Compare() has the same |
| 524 | calling convention. |
| 525 | |
| 526 | The tp_richcompare slot should return an object, as follows: |
| 527 | |
| 528 | NULL if an exception occurred |
| 529 | NotImplemented if the requested comparison is not implemented |
| 530 | any other false value if the requested comparison is false |
| 531 | any other true value if the requested comparison is true |
| 532 | |
| 533 | The PyObject_RichCompare[Bool]() wrappers raise TypeError when they get |
| 534 | NotImplemented. |
| 535 | |
| 536 | (*) Practical amendments: |
| 537 | |
| 538 | - If rich comparison returns NotImplemented, == and != are decided by |
| 539 | comparing the object pointer (i.e. falling back to the base object |
| 540 | implementation). |
| 541 | |
| 542 | - If three-way comparison is not implemented, it falls back on rich |
| 543 | comparison (but not the other way around!). |
| 544 | |
Guido van Rossum | a407300 | 2002-05-31 20:03:54 +0000 | [diff] [blame] | 545 | */ |
Guido van Rossum | 47b9ff6 | 2006-08-24 00:41:19 +0000 | [diff] [blame] | 546 | |
| 547 | /* Forward */ |
| 548 | static PyObject *do_richcompare(PyObject *v, PyObject *w, int op); |
| 549 | |
| 550 | /* Perform a three-way comparison, raising TypeError if three-way comparison |
| 551 | is not supported. */ |
Guido van Rossum | a407300 | 2002-05-31 20:03:54 +0000 | [diff] [blame] | 552 | static int |
Guido van Rossum | 47b9ff6 | 2006-08-24 00:41:19 +0000 | [diff] [blame] | 553 | do_compare(PyObject *v, PyObject *w) |
Guido van Rossum | a407300 | 2002-05-31 20:03:54 +0000 | [diff] [blame] | 554 | { |
Guido van Rossum | 47b9ff6 | 2006-08-24 00:41:19 +0000 | [diff] [blame] | 555 | cmpfunc f; |
| 556 | int ok; |
| 557 | |
| 558 | if (v->ob_type == w->ob_type && |
| 559 | (f = v->ob_type->tp_compare) != NULL) { |
| 560 | return (*f)(v, w); |
Guido van Rossum | a407300 | 2002-05-31 20:03:54 +0000 | [diff] [blame] | 561 | } |
Guido van Rossum | 47b9ff6 | 2006-08-24 00:41:19 +0000 | [diff] [blame] | 562 | |
| 563 | /* Now try three-way compare before giving up. This is intentionally |
| 564 | elaborate; if you have a it will raise TypeError if it detects two |
| 565 | objects that aren't ordered with respect to each other. */ |
| 566 | ok = PyObject_RichCompareBool(v, w, Py_LT); |
| 567 | if (ok < 0) |
| 568 | return -1; /* Error */ |
| 569 | if (ok) |
| 570 | return -1; /* Less than */ |
| 571 | ok = PyObject_RichCompareBool(v, w, Py_GT); |
| 572 | if (ok < 0) |
| 573 | return -1; /* Error */ |
| 574 | if (ok) |
| 575 | return 1; /* Greater than */ |
| 576 | ok = PyObject_RichCompareBool(v, w, Py_EQ); |
| 577 | if (ok < 0) |
| 578 | return -1; /* Error */ |
| 579 | if (ok) |
| 580 | return 0; /* Equal */ |
| 581 | |
| 582 | /* Give up */ |
| 583 | PyErr_Format(PyExc_TypeError, |
Neal Norwitz | 3bd844e | 2006-08-29 04:39:12 +0000 | [diff] [blame] | 584 | "unorderable types: '%.100s' != '%.100s'", |
Guido van Rossum | 47b9ff6 | 2006-08-24 00:41:19 +0000 | [diff] [blame] | 585 | v->ob_type->tp_name, |
| 586 | w->ob_type->tp_name); |
| 587 | return -1; |
Guido van Rossum | a407300 | 2002-05-31 20:03:54 +0000 | [diff] [blame] | 588 | } |
| 589 | |
Guido van Rossum | 47b9ff6 | 2006-08-24 00:41:19 +0000 | [diff] [blame] | 590 | /* Perform a three-way comparison. This wraps do_compare() with a check for |
| 591 | NULL arguments and a recursion check. */ |
| 592 | int |
| 593 | PyObject_Compare(PyObject *v, PyObject *w) |
| 594 | { |
| 595 | int res; |
Guido van Rossum | a407300 | 2002-05-31 20:03:54 +0000 | [diff] [blame] | 596 | |
Guido van Rossum | 47b9ff6 | 2006-08-24 00:41:19 +0000 | [diff] [blame] | 597 | if (v == NULL || w == NULL) { |
| 598 | if (!PyErr_Occurred()) |
| 599 | PyErr_BadInternalCall(); |
| 600 | return -1; |
| 601 | } |
| 602 | if (Py_EnterRecursiveCall(" in cmp")) |
| 603 | return -1; |
| 604 | res = do_compare(v, w); |
| 605 | Py_LeaveRecursiveCall(); |
| 606 | return res < 0 ? -1 : res; |
| 607 | } |
Guido van Rossum | d1f06b9 | 2001-01-24 22:14:43 +0000 | [diff] [blame] | 608 | |
Guido van Rossum | 47b9ff6 | 2006-08-24 00:41:19 +0000 | [diff] [blame] | 609 | /* Map rich comparison operators to their swapped version, e.g. LT <--> GT */ |
Brett Cannon | a5ca2e7 | 2004-09-25 01:37:24 +0000 | [diff] [blame] | 610 | int _Py_SwappedOp[] = {Py_GT, Py_GE, Py_EQ, Py_NE, Py_LT, Py_LE}; |
Neil Schemenauer | 5ed85ec | 2001-01-04 01:48:10 +0000 | [diff] [blame] | 611 | |
Guido van Rossum | 9a4e95c | 2006-12-19 21:35:46 +0000 | [diff] [blame] | 612 | static char *opstrings[] = {"<", "<=", "==", "!=", ">", ">="}; |
Guido van Rossum | 47b9ff6 | 2006-08-24 00:41:19 +0000 | [diff] [blame] | 613 | |
| 614 | /* Perform a rich comparison, raising TypeError when the requested comparison |
| 615 | operator is not supported. */ |
Guido van Rossum | e797ec1 | 2001-01-17 15:24:28 +0000 | [diff] [blame] | 616 | static PyObject * |
Guido van Rossum | 47b9ff6 | 2006-08-24 00:41:19 +0000 | [diff] [blame] | 617 | do_richcompare(PyObject *v, PyObject *w, int op) |
Guido van Rossum | e797ec1 | 2001-01-17 15:24:28 +0000 | [diff] [blame] | 618 | { |
| 619 | richcmpfunc f; |
| 620 | PyObject *res; |
| 621 | |
Guido van Rossum | 2ed6bf8 | 2001-09-27 20:30:07 +0000 | [diff] [blame] | 622 | if (v->ob_type != w->ob_type && |
| 623 | PyType_IsSubtype(w->ob_type, v->ob_type) && |
Guido van Rossum | 47b9ff6 | 2006-08-24 00:41:19 +0000 | [diff] [blame] | 624 | (f = w->ob_type->tp_richcompare) != NULL) { |
Tim Peters | f4aca75 | 2004-09-23 02:39:37 +0000 | [diff] [blame] | 625 | res = (*f)(w, v, _Py_SwappedOp[op]); |
Guido van Rossum | 2ed6bf8 | 2001-09-27 20:30:07 +0000 | [diff] [blame] | 626 | if (res != Py_NotImplemented) |
| 627 | return res; |
| 628 | Py_DECREF(res); |
| 629 | } |
Guido van Rossum | 47b9ff6 | 2006-08-24 00:41:19 +0000 | [diff] [blame] | 630 | if ((f = v->ob_type->tp_richcompare) != NULL) { |
Guido van Rossum | e797ec1 | 2001-01-17 15:24:28 +0000 | [diff] [blame] | 631 | res = (*f)(v, w, op); |
| 632 | if (res != Py_NotImplemented) |
| 633 | return res; |
| 634 | Py_DECREF(res); |
| 635 | } |
Guido van Rossum | 47b9ff6 | 2006-08-24 00:41:19 +0000 | [diff] [blame] | 636 | if ((f = w->ob_type->tp_richcompare) != NULL) { |
| 637 | res = (*f)(w, v, _Py_SwappedOp[op]); |
| 638 | if (res != Py_NotImplemented) |
| 639 | return res; |
| 640 | Py_DECREF(res); |
Guido van Rossum | e797ec1 | 2001-01-17 15:24:28 +0000 | [diff] [blame] | 641 | } |
Guido van Rossum | 47b9ff6 | 2006-08-24 00:41:19 +0000 | [diff] [blame] | 642 | /* If neither object implements it, provide a sensible default |
| 643 | for == and !=, but raise an exception for ordering. */ |
| 644 | switch (op) { |
| 645 | case Py_EQ: |
| 646 | res = (v == w) ? Py_True : Py_False; |
| 647 | break; |
| 648 | case Py_NE: |
| 649 | res = (v != w) ? Py_True : Py_False; |
| 650 | break; |
| 651 | default: |
Guido van Rossum | 9a4e95c | 2006-12-19 21:35:46 +0000 | [diff] [blame] | 652 | /* XXX Special-case None so it doesn't show as NoneType() */ |
Guido van Rossum | 47b9ff6 | 2006-08-24 00:41:19 +0000 | [diff] [blame] | 653 | PyErr_Format(PyExc_TypeError, |
| 654 | "unorderable types: %.100s() %s %.100s()", |
| 655 | v->ob_type->tp_name, |
| 656 | opstrings[op], |
| 657 | w->ob_type->tp_name); |
| 658 | return NULL; |
| 659 | } |
Guido van Rossum | e797ec1 | 2001-01-17 15:24:28 +0000 | [diff] [blame] | 660 | Py_INCREF(res); |
| 661 | return res; |
| 662 | } |
| 663 | |
Guido van Rossum | 47b9ff6 | 2006-08-24 00:41:19 +0000 | [diff] [blame] | 664 | /* Perform a rich comparison with object result. This wraps do_richcompare() |
| 665 | with a check for NULL arguments and a recursion check. */ |
Guido van Rossum | e797ec1 | 2001-01-17 15:24:28 +0000 | [diff] [blame] | 666 | |
Guido van Rossum | e797ec1 | 2001-01-17 15:24:28 +0000 | [diff] [blame] | 667 | PyObject * |
| 668 | PyObject_RichCompare(PyObject *v, PyObject *w, int op) |
| 669 | { |
| 670 | PyObject *res; |
| 671 | |
| 672 | assert(Py_LT <= op && op <= Py_GE); |
Guido van Rossum | 47b9ff6 | 2006-08-24 00:41:19 +0000 | [diff] [blame] | 673 | if (v == NULL || w == NULL) { |
| 674 | if (!PyErr_Occurred()) |
| 675 | PyErr_BadInternalCall(); |
| 676 | return NULL; |
| 677 | } |
Armin Rigo | 2b3eb40 | 2003-10-28 12:05:48 +0000 | [diff] [blame] | 678 | if (Py_EnterRecursiveCall(" in cmp")) |
| 679 | return NULL; |
Guido van Rossum | 47b9ff6 | 2006-08-24 00:41:19 +0000 | [diff] [blame] | 680 | res = do_richcompare(v, w, op); |
Armin Rigo | 2b3eb40 | 2003-10-28 12:05:48 +0000 | [diff] [blame] | 681 | Py_LeaveRecursiveCall(); |
Guido van Rossum | e797ec1 | 2001-01-17 15:24:28 +0000 | [diff] [blame] | 682 | return res; |
| 683 | } |
| 684 | |
Guido van Rossum | 47b9ff6 | 2006-08-24 00:41:19 +0000 | [diff] [blame] | 685 | /* Perform a rich comparison with integer result. This wraps |
| 686 | PyObject_RichCompare(), returning -1 for error, 0 for false, 1 for true. */ |
Guido van Rossum | e797ec1 | 2001-01-17 15:24:28 +0000 | [diff] [blame] | 687 | int |
| 688 | PyObject_RichCompareBool(PyObject *v, PyObject *w, int op) |
| 689 | { |
Raymond Hettinger | 93d4481 | 2004-03-21 17:01:44 +0000 | [diff] [blame] | 690 | PyObject *res; |
Guido van Rossum | e797ec1 | 2001-01-17 15:24:28 +0000 | [diff] [blame] | 691 | int ok; |
| 692 | |
Raymond Hettinger | 93d4481 | 2004-03-21 17:01:44 +0000 | [diff] [blame] | 693 | res = PyObject_RichCompare(v, w, op); |
Guido van Rossum | e797ec1 | 2001-01-17 15:24:28 +0000 | [diff] [blame] | 694 | if (res == NULL) |
| 695 | return -1; |
Guido van Rossum | 81912d4 | 2002-08-24 05:33:28 +0000 | [diff] [blame] | 696 | if (PyBool_Check(res)) |
| 697 | ok = (res == Py_True); |
| 698 | else |
| 699 | ok = PyObject_IsTrue(res); |
Guido van Rossum | e797ec1 | 2001-01-17 15:24:28 +0000 | [diff] [blame] | 700 | Py_DECREF(res); |
| 701 | return ok; |
| 702 | } |
Fred Drake | 13634cf | 2000-06-29 19:17:04 +0000 | [diff] [blame] | 703 | |
Guido van Rossum | 47b9ff6 | 2006-08-24 00:41:19 +0000 | [diff] [blame] | 704 | /* Turn the result of a three-way comparison into the result expected by a |
| 705 | rich comparison. */ |
| 706 | PyObject * |
| 707 | Py_CmpToRich(int op, int cmp) |
| 708 | { |
| 709 | PyObject *res; |
| 710 | int ok; |
| 711 | |
| 712 | if (PyErr_Occurred()) |
| 713 | return NULL; |
| 714 | switch (op) { |
| 715 | case Py_LT: |
| 716 | ok = cmp < 0; |
| 717 | break; |
| 718 | case Py_LE: |
| 719 | ok = cmp <= 0; |
| 720 | break; |
| 721 | case Py_EQ: |
| 722 | ok = cmp == 0; |
| 723 | break; |
| 724 | case Py_NE: |
| 725 | ok = cmp != 0; |
| 726 | break; |
| 727 | case Py_GT: |
| 728 | ok = cmp > 0; |
| 729 | break; |
| 730 | case Py_GE: |
| 731 | ok = cmp >= 0; |
| 732 | break; |
| 733 | default: |
| 734 | PyErr_BadArgument(); |
| 735 | return NULL; |
| 736 | } |
| 737 | res = ok ? Py_True : Py_False; |
| 738 | Py_INCREF(res); |
| 739 | return res; |
| 740 | } |
| 741 | |
Fred Drake | 13634cf | 2000-06-29 19:17:04 +0000 | [diff] [blame] | 742 | /* Set of hash utility functions to help maintaining the invariant that |
Raymond Hettinger | 8183fa4 | 2004-03-21 17:35:06 +0000 | [diff] [blame] | 743 | if a==b then hash(a)==hash(b) |
Fred Drake | 13634cf | 2000-06-29 19:17:04 +0000 | [diff] [blame] | 744 | |
| 745 | All the utility functions (_Py_Hash*()) return "-1" to signify an error. |
| 746 | */ |
| 747 | |
| 748 | long |
Fred Drake | 100814d | 2000-07-09 15:48:49 +0000 | [diff] [blame] | 749 | _Py_HashDouble(double v) |
Fred Drake | 13634cf | 2000-06-29 19:17:04 +0000 | [diff] [blame] | 750 | { |
Tim Peters | 39dce29 | 2000-08-15 03:34:48 +0000 | [diff] [blame] | 751 | double intpart, fractpart; |
| 752 | int expo; |
| 753 | long hipart; |
| 754 | long x; /* the final hash value */ |
| 755 | /* This is designed so that Python numbers of different types |
| 756 | * that compare equal hash to the same value; otherwise comparisons |
| 757 | * of mapping keys will turn out weird. |
| 758 | */ |
| 759 | |
Tim Peters | 39dce29 | 2000-08-15 03:34:48 +0000 | [diff] [blame] | 760 | fractpart = modf(v, &intpart); |
Tim Peters | 39dce29 | 2000-08-15 03:34:48 +0000 | [diff] [blame] | 761 | if (fractpart == 0.0) { |
| 762 | /* This must return the same hash as an equal int or long. */ |
| 763 | if (intpart > LONG_MAX || -intpart > LONG_MAX) { |
| 764 | /* Convert to long and use its hash. */ |
| 765 | PyObject *plong; /* converted to Python long */ |
| 766 | if (Py_IS_INFINITY(intpart)) |
| 767 | /* can't convert to long int -- arbitrary */ |
| 768 | v = v < 0 ? -271828.0 : 314159.0; |
| 769 | plong = PyLong_FromDouble(v); |
| 770 | if (plong == NULL) |
| 771 | return -1; |
| 772 | x = PyObject_Hash(plong); |
| 773 | Py_DECREF(plong); |
| 774 | return x; |
| 775 | } |
| 776 | /* Fits in a C long == a Python int, so is its own hash. */ |
| 777 | x = (long)intpart; |
| 778 | if (x == -1) |
| 779 | x = -2; |
| 780 | return x; |
| 781 | } |
| 782 | /* The fractional part is non-zero, so we don't have to worry about |
| 783 | * making this match the hash of some other type. |
| 784 | * Use frexp to get at the bits in the double. |
Fred Drake | 13634cf | 2000-06-29 19:17:04 +0000 | [diff] [blame] | 785 | * Since the VAX D double format has 56 mantissa bits, which is the |
| 786 | * most of any double format in use, each of these parts may have as |
| 787 | * many as (but no more than) 56 significant bits. |
Tim Peters | 39dce29 | 2000-08-15 03:34:48 +0000 | [diff] [blame] | 788 | * So, assuming sizeof(long) >= 4, each part can be broken into two |
| 789 | * longs; frexp and multiplication are used to do that. |
| 790 | * Also, since the Cray double format has 15 exponent bits, which is |
| 791 | * the most of any double format in use, shifting the exponent field |
| 792 | * left by 15 won't overflow a long (again assuming sizeof(long) >= 4). |
Fred Drake | 13634cf | 2000-06-29 19:17:04 +0000 | [diff] [blame] | 793 | */ |
Tim Peters | 39dce29 | 2000-08-15 03:34:48 +0000 | [diff] [blame] | 794 | v = frexp(v, &expo); |
| 795 | v *= 2147483648.0; /* 2**31 */ |
| 796 | hipart = (long)v; /* take the top 32 bits */ |
| 797 | v = (v - (double)hipart) * 2147483648.0; /* get the next 32 bits */ |
| 798 | x = hipart + (long)v + (expo << 15); |
| 799 | if (x == -1) |
| 800 | x = -2; |
| 801 | return x; |
Fred Drake | 13634cf | 2000-06-29 19:17:04 +0000 | [diff] [blame] | 802 | } |
| 803 | |
| 804 | long |
Fred Drake | 100814d | 2000-07-09 15:48:49 +0000 | [diff] [blame] | 805 | _Py_HashPointer(void *p) |
Fred Drake | 13634cf | 2000-06-29 19:17:04 +0000 | [diff] [blame] | 806 | { |
| 807 | #if SIZEOF_LONG >= SIZEOF_VOID_P |
| 808 | return (long)p; |
| 809 | #else |
| 810 | /* convert to a Python long and hash that */ |
| 811 | PyObject* longobj; |
| 812 | long x; |
Tim Peters | 803526b | 2002-07-07 05:13:56 +0000 | [diff] [blame] | 813 | |
Fred Drake | 13634cf | 2000-06-29 19:17:04 +0000 | [diff] [blame] | 814 | if ((longobj = PyLong_FromVoidPtr(p)) == NULL) { |
| 815 | x = -1; |
| 816 | goto finally; |
| 817 | } |
| 818 | x = PyObject_Hash(longobj); |
Tim Peters | 803526b | 2002-07-07 05:13:56 +0000 | [diff] [blame] | 819 | |
Fred Drake | 13634cf | 2000-06-29 19:17:04 +0000 | [diff] [blame] | 820 | finally: |
| 821 | Py_XDECREF(longobj); |
| 822 | return x; |
| 823 | #endif |
| 824 | } |
| 825 | |
| 826 | |
Guido van Rossum | 9bfef44 | 1993-03-29 10:43:31 +0000 | [diff] [blame] | 827 | long |
Fred Drake | 100814d | 2000-07-09 15:48:49 +0000 | [diff] [blame] | 828 | PyObject_Hash(PyObject *v) |
Guido van Rossum | 9bfef44 | 1993-03-29 10:43:31 +0000 | [diff] [blame] | 829 | { |
Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 830 | PyTypeObject *tp = v->ob_type; |
Guido van Rossum | 9bfef44 | 1993-03-29 10:43:31 +0000 | [diff] [blame] | 831 | if (tp->tp_hash != NULL) |
| 832 | return (*tp->tp_hash)(v); |
Guido van Rossum | 50e9fb9 | 2006-08-17 05:42:55 +0000 | [diff] [blame] | 833 | /* Otherwise, the object can't be hashed */ |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 834 | PyErr_Format(PyExc_TypeError, "unhashable type: '%.200s'", |
| 835 | v->ob_type->tp_name); |
Guido van Rossum | 9bfef44 | 1993-03-29 10:43:31 +0000 | [diff] [blame] | 836 | return -1; |
| 837 | } |
| 838 | |
Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 839 | PyObject * |
Jeremy Hylton | af68c87 | 2005-12-10 18:50:16 +0000 | [diff] [blame] | 840 | PyObject_GetAttrString(PyObject *v, const char *name) |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 841 | { |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 842 | PyObject *w, *res; |
Guido van Rossum | d8eb1b3 | 1996-08-09 20:52:03 +0000 | [diff] [blame] | 843 | |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 844 | if (v->ob_type->tp_getattr != NULL) |
Martin v. Löwis | 15e6274 | 2006-02-27 16:46:16 +0000 | [diff] [blame] | 845 | return (*v->ob_type->tp_getattr)(v, (char*)name); |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 846 | w = PyString_InternFromString(name); |
| 847 | if (w == NULL) |
| 848 | return NULL; |
| 849 | res = PyObject_GetAttr(v, w); |
| 850 | Py_XDECREF(w); |
| 851 | return res; |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 852 | } |
| 853 | |
| 854 | int |
Jeremy Hylton | af68c87 | 2005-12-10 18:50:16 +0000 | [diff] [blame] | 855 | PyObject_HasAttrString(PyObject *v, const char *name) |
Guido van Rossum | ed18fdc | 1993-07-11 19:55:34 +0000 | [diff] [blame] | 856 | { |
Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 857 | PyObject *res = PyObject_GetAttrString(v, name); |
Guido van Rossum | ed18fdc | 1993-07-11 19:55:34 +0000 | [diff] [blame] | 858 | if (res != NULL) { |
Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 859 | Py_DECREF(res); |
Guido van Rossum | ed18fdc | 1993-07-11 19:55:34 +0000 | [diff] [blame] | 860 | return 1; |
| 861 | } |
Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 862 | PyErr_Clear(); |
Guido van Rossum | ed18fdc | 1993-07-11 19:55:34 +0000 | [diff] [blame] | 863 | return 0; |
| 864 | } |
| 865 | |
| 866 | int |
Jeremy Hylton | af68c87 | 2005-12-10 18:50:16 +0000 | [diff] [blame] | 867 | PyObject_SetAttrString(PyObject *v, const char *name, PyObject *w) |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 868 | { |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 869 | PyObject *s; |
| 870 | int res; |
Guido van Rossum | d8eb1b3 | 1996-08-09 20:52:03 +0000 | [diff] [blame] | 871 | |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 872 | if (v->ob_type->tp_setattr != NULL) |
Martin v. Löwis | 15e6274 | 2006-02-27 16:46:16 +0000 | [diff] [blame] | 873 | return (*v->ob_type->tp_setattr)(v, (char*)name, w); |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 874 | s = PyString_InternFromString(name); |
| 875 | if (s == NULL) |
| 876 | return -1; |
| 877 | res = PyObject_SetAttr(v, s, w); |
| 878 | Py_XDECREF(s); |
| 879 | return res; |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 880 | } |
| 881 | |
Guido van Rossum | 98ff96a | 1997-05-20 18:34:44 +0000 | [diff] [blame] | 882 | PyObject * |
Fred Drake | 100814d | 2000-07-09 15:48:49 +0000 | [diff] [blame] | 883 | PyObject_GetAttr(PyObject *v, PyObject *name) |
Guido van Rossum | 98ff96a | 1997-05-20 18:34:44 +0000 | [diff] [blame] | 884 | { |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 885 | PyTypeObject *tp = v->ob_type; |
| 886 | |
Jeremy Hylton | 99a8f90 | 2000-06-23 14:36:32 +0000 | [diff] [blame] | 887 | if (!PyString_Check(name)) { |
Martin v. Löwis | 0c160a0 | 2002-03-15 13:40:30 +0000 | [diff] [blame] | 888 | /* The Unicode to string conversion is done here because the |
| 889 | existing tp_getattro slots expect a string object as name |
| 890 | and we wouldn't want to break those. */ |
| 891 | if (PyUnicode_Check(name)) { |
| 892 | name = _PyUnicode_AsDefaultEncodedString(name, NULL); |
| 893 | if (name == NULL) |
| 894 | return NULL; |
| 895 | } |
| 896 | else |
Martin v. Löwis | 0c160a0 | 2002-03-15 13:40:30 +0000 | [diff] [blame] | 897 | { |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 898 | PyErr_Format(PyExc_TypeError, |
| 899 | "attribute name must be string, not '%.200s'", |
| 900 | name->ob_type->tp_name); |
Martin v. Löwis | 0c160a0 | 2002-03-15 13:40:30 +0000 | [diff] [blame] | 901 | return NULL; |
| 902 | } |
Jeremy Hylton | 99a8f90 | 2000-06-23 14:36:32 +0000 | [diff] [blame] | 903 | } |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 904 | if (tp->tp_getattro != NULL) |
| 905 | return (*tp->tp_getattro)(v, name); |
| 906 | if (tp->tp_getattr != NULL) |
| 907 | return (*tp->tp_getattr)(v, PyString_AS_STRING(name)); |
| 908 | PyErr_Format(PyExc_AttributeError, |
| 909 | "'%.50s' object has no attribute '%.400s'", |
| 910 | tp->tp_name, PyString_AS_STRING(name)); |
| 911 | return NULL; |
Guido van Rossum | 98ff96a | 1997-05-20 18:34:44 +0000 | [diff] [blame] | 912 | } |
| 913 | |
| 914 | int |
Fred Drake | 100814d | 2000-07-09 15:48:49 +0000 | [diff] [blame] | 915 | PyObject_HasAttr(PyObject *v, PyObject *name) |
Guido van Rossum | 98ff96a | 1997-05-20 18:34:44 +0000 | [diff] [blame] | 916 | { |
| 917 | PyObject *res = PyObject_GetAttr(v, name); |
| 918 | if (res != NULL) { |
| 919 | Py_DECREF(res); |
| 920 | return 1; |
| 921 | } |
| 922 | PyErr_Clear(); |
| 923 | return 0; |
| 924 | } |
| 925 | |
| 926 | int |
Fred Drake | 100814d | 2000-07-09 15:48:49 +0000 | [diff] [blame] | 927 | PyObject_SetAttr(PyObject *v, PyObject *name, PyObject *value) |
Guido van Rossum | 98ff96a | 1997-05-20 18:34:44 +0000 | [diff] [blame] | 928 | { |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 929 | PyTypeObject *tp = v->ob_type; |
Guido van Rossum | 98ff96a | 1997-05-20 18:34:44 +0000 | [diff] [blame] | 930 | int err; |
Marc-André Lemburg | e44e507 | 2000-09-18 16:20:57 +0000 | [diff] [blame] | 931 | |
Martin v. Löwis | 339d0f7 | 2001-08-17 18:39:25 +0000 | [diff] [blame] | 932 | if (!PyString_Check(name)){ |
Martin v. Löwis | 0c160a0 | 2002-03-15 13:40:30 +0000 | [diff] [blame] | 933 | /* The Unicode to string conversion is done here because the |
| 934 | existing tp_setattro slots expect a string object as name |
| 935 | and we wouldn't want to break those. */ |
| 936 | if (PyUnicode_Check(name)) { |
| 937 | name = PyUnicode_AsEncodedString(name, NULL, NULL); |
| 938 | if (name == NULL) |
| 939 | return -1; |
| 940 | } |
Tim Peters | 803526b | 2002-07-07 05:13:56 +0000 | [diff] [blame] | 941 | else |
Martin v. Löwis | 0c160a0 | 2002-03-15 13:40:30 +0000 | [diff] [blame] | 942 | { |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 943 | PyErr_Format(PyExc_TypeError, |
| 944 | "attribute name must be string, not '%.200s'", |
| 945 | name->ob_type->tp_name); |
Martin v. Löwis | 0c160a0 | 2002-03-15 13:40:30 +0000 | [diff] [blame] | 946 | return -1; |
| 947 | } |
Jeremy Hylton | 99a8f90 | 2000-06-23 14:36:32 +0000 | [diff] [blame] | 948 | } |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 949 | else |
| 950 | Py_INCREF(name); |
| 951 | |
| 952 | PyString_InternInPlace(&name); |
| 953 | if (tp->tp_setattro != NULL) { |
| 954 | err = (*tp->tp_setattro)(v, name, value); |
| 955 | Py_DECREF(name); |
| 956 | return err; |
Marc-André Lemburg | e44e507 | 2000-09-18 16:20:57 +0000 | [diff] [blame] | 957 | } |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 958 | if (tp->tp_setattr != NULL) { |
| 959 | err = (*tp->tp_setattr)(v, PyString_AS_STRING(name), value); |
| 960 | Py_DECREF(name); |
| 961 | return err; |
| 962 | } |
Guido van Rossum | 98ff96a | 1997-05-20 18:34:44 +0000 | [diff] [blame] | 963 | Py_DECREF(name); |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 964 | if (tp->tp_getattr == NULL && tp->tp_getattro == NULL) |
| 965 | PyErr_Format(PyExc_TypeError, |
| 966 | "'%.100s' object has no attributes " |
| 967 | "(%s .%.100s)", |
| 968 | tp->tp_name, |
| 969 | value==NULL ? "del" : "assign to", |
| 970 | PyString_AS_STRING(name)); |
| 971 | else |
| 972 | PyErr_Format(PyExc_TypeError, |
| 973 | "'%.100s' object has only read-only attributes " |
| 974 | "(%s .%.100s)", |
| 975 | tp->tp_name, |
| 976 | value==NULL ? "del" : "assign to", |
| 977 | PyString_AS_STRING(name)); |
| 978 | return -1; |
| 979 | } |
| 980 | |
| 981 | /* Helper to get a pointer to an object's __dict__ slot, if any */ |
| 982 | |
| 983 | PyObject ** |
| 984 | _PyObject_GetDictPtr(PyObject *obj) |
| 985 | { |
Martin v. Löwis | 725507b | 2006-03-07 12:08:51 +0000 | [diff] [blame] | 986 | Py_ssize_t dictoffset; |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 987 | PyTypeObject *tp = obj->ob_type; |
| 988 | |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 989 | dictoffset = tp->tp_dictoffset; |
| 990 | if (dictoffset == 0) |
| 991 | return NULL; |
| 992 | if (dictoffset < 0) { |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 993 | Py_ssize_t tsize; |
Guido van Rossum | 2eb0b87 | 2002-03-01 22:24:49 +0000 | [diff] [blame] | 994 | size_t size; |
| 995 | |
| 996 | tsize = ((PyVarObject *)obj)->ob_size; |
| 997 | if (tsize < 0) |
| 998 | tsize = -tsize; |
| 999 | size = _PyObject_VAR_SIZE(tp, tsize); |
| 1000 | |
Tim Peters | 6d483d3 | 2001-10-06 21:27:34 +0000 | [diff] [blame] | 1001 | dictoffset += (long)size; |
| 1002 | assert(dictoffset > 0); |
| 1003 | assert(dictoffset % SIZEOF_VOID_P == 0); |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 1004 | } |
| 1005 | return (PyObject **) ((char *)obj + dictoffset); |
| 1006 | } |
| 1007 | |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 1008 | PyObject * |
Raymond Hettinger | 1da1dbf | 2003-03-17 19:46:11 +0000 | [diff] [blame] | 1009 | PyObject_SelfIter(PyObject *obj) |
Raymond Hettinger | 0153826 | 2003-03-17 08:24:35 +0000 | [diff] [blame] | 1010 | { |
| 1011 | Py_INCREF(obj); |
| 1012 | return obj; |
| 1013 | } |
| 1014 | |
Michael W. Hudson | 1593f50 | 2004-09-14 17:09:47 +0000 | [diff] [blame] | 1015 | /* Generic GetAttr functions - put these in your tp_[gs]etattro slot */ |
| 1016 | |
Raymond Hettinger | 0153826 | 2003-03-17 08:24:35 +0000 | [diff] [blame] | 1017 | PyObject * |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 1018 | PyObject_GenericGetAttr(PyObject *obj, PyObject *name) |
| 1019 | { |
| 1020 | PyTypeObject *tp = obj->ob_type; |
Guido van Rossum | 056fbf4 | 2002-08-19 19:22:50 +0000 | [diff] [blame] | 1021 | PyObject *descr = NULL; |
Guido van Rossum | ebca9fc | 2001-12-04 15:54:53 +0000 | [diff] [blame] | 1022 | PyObject *res = NULL; |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 1023 | descrgetfunc f; |
Martin v. Löwis | 725507b | 2006-03-07 12:08:51 +0000 | [diff] [blame] | 1024 | Py_ssize_t dictoffset; |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 1025 | PyObject **dictptr; |
| 1026 | |
Guido van Rossum | ebca9fc | 2001-12-04 15:54:53 +0000 | [diff] [blame] | 1027 | if (!PyString_Check(name)){ |
Martin v. Löwis | 0c160a0 | 2002-03-15 13:40:30 +0000 | [diff] [blame] | 1028 | /* The Unicode to string conversion is done here because the |
| 1029 | existing tp_setattro slots expect a string object as name |
| 1030 | and we wouldn't want to break those. */ |
| 1031 | if (PyUnicode_Check(name)) { |
| 1032 | name = PyUnicode_AsEncodedString(name, NULL, NULL); |
| 1033 | if (name == NULL) |
| 1034 | return NULL; |
| 1035 | } |
Tim Peters | 803526b | 2002-07-07 05:13:56 +0000 | [diff] [blame] | 1036 | else |
Martin v. Löwis | 0c160a0 | 2002-03-15 13:40:30 +0000 | [diff] [blame] | 1037 | { |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 1038 | PyErr_Format(PyExc_TypeError, |
| 1039 | "attribute name must be string, not '%.200s'", |
| 1040 | name->ob_type->tp_name); |
Martin v. Löwis | 0c160a0 | 2002-03-15 13:40:30 +0000 | [diff] [blame] | 1041 | return NULL; |
| 1042 | } |
Guido van Rossum | ebca9fc | 2001-12-04 15:54:53 +0000 | [diff] [blame] | 1043 | } |
| 1044 | else |
| 1045 | Py_INCREF(name); |
| 1046 | |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 1047 | if (tp->tp_dict == NULL) { |
Guido van Rossum | 528b7eb | 2001-08-07 17:24:28 +0000 | [diff] [blame] | 1048 | if (PyType_Ready(tp) < 0) |
Guido van Rossum | ebca9fc | 2001-12-04 15:54:53 +0000 | [diff] [blame] | 1049 | goto done; |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 1050 | } |
| 1051 | |
Guido van Rossum | 056fbf4 | 2002-08-19 19:22:50 +0000 | [diff] [blame] | 1052 | /* Inline _PyType_Lookup */ |
| 1053 | { |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 1054 | Py_ssize_t i, n; |
Guido van Rossum | 056fbf4 | 2002-08-19 19:22:50 +0000 | [diff] [blame] | 1055 | PyObject *mro, *base, *dict; |
| 1056 | |
| 1057 | /* Look in tp_dict of types in MRO */ |
| 1058 | mro = tp->tp_mro; |
| 1059 | assert(mro != NULL); |
| 1060 | assert(PyTuple_Check(mro)); |
| 1061 | n = PyTuple_GET_SIZE(mro); |
| 1062 | for (i = 0; i < n; i++) { |
| 1063 | base = PyTuple_GET_ITEM(mro, i); |
Guido van Rossum | 50e9fb9 | 2006-08-17 05:42:55 +0000 | [diff] [blame] | 1064 | assert(PyType_Check(base)); |
| 1065 | dict = ((PyTypeObject *)base)->tp_dict; |
Guido van Rossum | 056fbf4 | 2002-08-19 19:22:50 +0000 | [diff] [blame] | 1066 | assert(dict && PyDict_Check(dict)); |
| 1067 | descr = PyDict_GetItem(dict, name); |
| 1068 | if (descr != NULL) |
| 1069 | break; |
| 1070 | } |
| 1071 | } |
| 1072 | |
Michael W. Hudson | b2c7de4 | 2003-08-15 13:07:47 +0000 | [diff] [blame] | 1073 | Py_XINCREF(descr); |
| 1074 | |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 1075 | f = NULL; |
Guido van Rossum | 3cf5b1e | 2006-07-27 21:53:35 +0000 | [diff] [blame] | 1076 | if (descr != NULL) { |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 1077 | f = descr->ob_type->tp_descr_get; |
Guido van Rossum | ebca9fc | 2001-12-04 15:54:53 +0000 | [diff] [blame] | 1078 | if (f != NULL && PyDescr_IsData(descr)) { |
| 1079 | res = f(descr, obj, (PyObject *)obj->ob_type); |
Michael W. Hudson | b2c7de4 | 2003-08-15 13:07:47 +0000 | [diff] [blame] | 1080 | Py_DECREF(descr); |
Guido van Rossum | ebca9fc | 2001-12-04 15:54:53 +0000 | [diff] [blame] | 1081 | goto done; |
| 1082 | } |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 1083 | } |
| 1084 | |
Guido van Rossum | c66ff44 | 2002-08-19 16:50:48 +0000 | [diff] [blame] | 1085 | /* Inline _PyObject_GetDictPtr */ |
| 1086 | dictoffset = tp->tp_dictoffset; |
| 1087 | if (dictoffset != 0) { |
| 1088 | PyObject *dict; |
| 1089 | if (dictoffset < 0) { |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 1090 | Py_ssize_t tsize; |
Guido van Rossum | c66ff44 | 2002-08-19 16:50:48 +0000 | [diff] [blame] | 1091 | size_t size; |
| 1092 | |
| 1093 | tsize = ((PyVarObject *)obj)->ob_size; |
| 1094 | if (tsize < 0) |
| 1095 | tsize = -tsize; |
| 1096 | size = _PyObject_VAR_SIZE(tp, tsize); |
| 1097 | |
| 1098 | dictoffset += (long)size; |
| 1099 | assert(dictoffset > 0); |
| 1100 | assert(dictoffset % SIZEOF_VOID_P == 0); |
| 1101 | } |
| 1102 | dictptr = (PyObject **) ((char *)obj + dictoffset); |
| 1103 | dict = *dictptr; |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 1104 | if (dict != NULL) { |
Guido van Rossum | ebca9fc | 2001-12-04 15:54:53 +0000 | [diff] [blame] | 1105 | res = PyDict_GetItem(dict, name); |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 1106 | if (res != NULL) { |
| 1107 | Py_INCREF(res); |
Michael W. Hudson | b2c7de4 | 2003-08-15 13:07:47 +0000 | [diff] [blame] | 1108 | Py_XDECREF(descr); |
Guido van Rossum | ebca9fc | 2001-12-04 15:54:53 +0000 | [diff] [blame] | 1109 | goto done; |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 1110 | } |
| 1111 | } |
| 1112 | } |
| 1113 | |
Guido van Rossum | ebca9fc | 2001-12-04 15:54:53 +0000 | [diff] [blame] | 1114 | if (f != NULL) { |
| 1115 | res = f(descr, obj, (PyObject *)obj->ob_type); |
Michael W. Hudson | b2c7de4 | 2003-08-15 13:07:47 +0000 | [diff] [blame] | 1116 | Py_DECREF(descr); |
Guido van Rossum | ebca9fc | 2001-12-04 15:54:53 +0000 | [diff] [blame] | 1117 | goto done; |
| 1118 | } |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 1119 | |
| 1120 | if (descr != NULL) { |
Guido van Rossum | ebca9fc | 2001-12-04 15:54:53 +0000 | [diff] [blame] | 1121 | res = descr; |
Michael W. Hudson | b2c7de4 | 2003-08-15 13:07:47 +0000 | [diff] [blame] | 1122 | /* descr was already increfed above */ |
Guido van Rossum | ebca9fc | 2001-12-04 15:54:53 +0000 | [diff] [blame] | 1123 | goto done; |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 1124 | } |
| 1125 | |
| 1126 | PyErr_Format(PyExc_AttributeError, |
| 1127 | "'%.50s' object has no attribute '%.400s'", |
| 1128 | tp->tp_name, PyString_AS_STRING(name)); |
Guido van Rossum | ebca9fc | 2001-12-04 15:54:53 +0000 | [diff] [blame] | 1129 | done: |
| 1130 | Py_DECREF(name); |
| 1131 | return res; |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 1132 | } |
| 1133 | |
| 1134 | int |
| 1135 | PyObject_GenericSetAttr(PyObject *obj, PyObject *name, PyObject *value) |
| 1136 | { |
| 1137 | PyTypeObject *tp = obj->ob_type; |
| 1138 | PyObject *descr; |
| 1139 | descrsetfunc f; |
| 1140 | PyObject **dictptr; |
Guido van Rossum | ebca9fc | 2001-12-04 15:54:53 +0000 | [diff] [blame] | 1141 | int res = -1; |
| 1142 | |
Guido van Rossum | ebca9fc | 2001-12-04 15:54:53 +0000 | [diff] [blame] | 1143 | if (!PyString_Check(name)){ |
Martin v. Löwis | 0c160a0 | 2002-03-15 13:40:30 +0000 | [diff] [blame] | 1144 | /* The Unicode to string conversion is done here because the |
| 1145 | existing tp_setattro slots expect a string object as name |
| 1146 | and we wouldn't want to break those. */ |
| 1147 | if (PyUnicode_Check(name)) { |
| 1148 | name = PyUnicode_AsEncodedString(name, NULL, NULL); |
| 1149 | if (name == NULL) |
| 1150 | return -1; |
| 1151 | } |
Tim Peters | 803526b | 2002-07-07 05:13:56 +0000 | [diff] [blame] | 1152 | else |
Martin v. Löwis | 0c160a0 | 2002-03-15 13:40:30 +0000 | [diff] [blame] | 1153 | { |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 1154 | PyErr_Format(PyExc_TypeError, |
| 1155 | "attribute name must be string, not '%.200s'", |
| 1156 | name->ob_type->tp_name); |
Martin v. Löwis | 0c160a0 | 2002-03-15 13:40:30 +0000 | [diff] [blame] | 1157 | return -1; |
| 1158 | } |
Guido van Rossum | ebca9fc | 2001-12-04 15:54:53 +0000 | [diff] [blame] | 1159 | } |
| 1160 | else |
| 1161 | Py_INCREF(name); |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 1162 | |
| 1163 | if (tp->tp_dict == NULL) { |
Guido van Rossum | 528b7eb | 2001-08-07 17:24:28 +0000 | [diff] [blame] | 1164 | if (PyType_Ready(tp) < 0) |
Guido van Rossum | ebca9fc | 2001-12-04 15:54:53 +0000 | [diff] [blame] | 1165 | goto done; |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 1166 | } |
| 1167 | |
| 1168 | descr = _PyType_Lookup(tp, name); |
| 1169 | f = NULL; |
Guido van Rossum | 3cf5b1e | 2006-07-27 21:53:35 +0000 | [diff] [blame] | 1170 | if (descr != NULL) { |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 1171 | f = descr->ob_type->tp_descr_set; |
Guido van Rossum | ebca9fc | 2001-12-04 15:54:53 +0000 | [diff] [blame] | 1172 | if (f != NULL && PyDescr_IsData(descr)) { |
| 1173 | res = f(descr, obj, value); |
| 1174 | goto done; |
| 1175 | } |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 1176 | } |
| 1177 | |
| 1178 | dictptr = _PyObject_GetDictPtr(obj); |
| 1179 | if (dictptr != NULL) { |
| 1180 | PyObject *dict = *dictptr; |
| 1181 | if (dict == NULL && value != NULL) { |
| 1182 | dict = PyDict_New(); |
| 1183 | if (dict == NULL) |
Guido van Rossum | ebca9fc | 2001-12-04 15:54:53 +0000 | [diff] [blame] | 1184 | goto done; |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 1185 | *dictptr = dict; |
| 1186 | } |
| 1187 | if (dict != NULL) { |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 1188 | if (value == NULL) |
| 1189 | res = PyDict_DelItem(dict, name); |
| 1190 | else |
| 1191 | res = PyDict_SetItem(dict, name, value); |
| 1192 | if (res < 0 && PyErr_ExceptionMatches(PyExc_KeyError)) |
| 1193 | PyErr_SetObject(PyExc_AttributeError, name); |
Guido van Rossum | ebca9fc | 2001-12-04 15:54:53 +0000 | [diff] [blame] | 1194 | goto done; |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 1195 | } |
| 1196 | } |
| 1197 | |
Guido van Rossum | ebca9fc | 2001-12-04 15:54:53 +0000 | [diff] [blame] | 1198 | if (f != NULL) { |
| 1199 | res = f(descr, obj, value); |
| 1200 | goto done; |
| 1201 | } |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 1202 | |
| 1203 | if (descr == NULL) { |
| 1204 | PyErr_Format(PyExc_AttributeError, |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 1205 | "'%.100s' object has no attribute '%.200s'", |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 1206 | tp->tp_name, PyString_AS_STRING(name)); |
Guido van Rossum | ebca9fc | 2001-12-04 15:54:53 +0000 | [diff] [blame] | 1207 | goto done; |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 1208 | } |
| 1209 | |
| 1210 | PyErr_Format(PyExc_AttributeError, |
| 1211 | "'%.50s' object attribute '%.400s' is read-only", |
| 1212 | tp->tp_name, PyString_AS_STRING(name)); |
Guido van Rossum | ebca9fc | 2001-12-04 15:54:53 +0000 | [diff] [blame] | 1213 | done: |
| 1214 | Py_DECREF(name); |
| 1215 | return res; |
Guido van Rossum | 98ff96a | 1997-05-20 18:34:44 +0000 | [diff] [blame] | 1216 | } |
| 1217 | |
Guido van Rossum | 6ac258d | 1993-05-12 08:24:20 +0000 | [diff] [blame] | 1218 | /* Test a value used as condition, e.g., in a for or if statement. |
| 1219 | Return -1 if an error occurred */ |
| 1220 | |
| 1221 | int |
Fred Drake | 100814d | 2000-07-09 15:48:49 +0000 | [diff] [blame] | 1222 | PyObject_IsTrue(PyObject *v) |
Guido van Rossum | 6ac258d | 1993-05-12 08:24:20 +0000 | [diff] [blame] | 1223 | { |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 1224 | Py_ssize_t res; |
Guido van Rossum | 6248f44 | 2002-08-24 06:31:34 +0000 | [diff] [blame] | 1225 | if (v == Py_True) |
| 1226 | return 1; |
| 1227 | if (v == Py_False) |
| 1228 | return 0; |
Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 1229 | if (v == Py_None) |
Neal Norwitz | 51290d3 | 2002-06-13 21:32:44 +0000 | [diff] [blame] | 1230 | return 0; |
Guido van Rossum | 1c4f458 | 1998-05-22 00:53:24 +0000 | [diff] [blame] | 1231 | else if (v->ob_type->tp_as_number != NULL && |
Jack Diederich | 4dafcc4 | 2006-11-28 19:15:13 +0000 | [diff] [blame] | 1232 | v->ob_type->tp_as_number->nb_bool != NULL) |
| 1233 | res = (*v->ob_type->tp_as_number->nb_bool)(v); |
Guido van Rossum | 1c4f458 | 1998-05-22 00:53:24 +0000 | [diff] [blame] | 1234 | else if (v->ob_type->tp_as_mapping != NULL && |
| 1235 | v->ob_type->tp_as_mapping->mp_length != NULL) |
Guido van Rossum | 6ac258d | 1993-05-12 08:24:20 +0000 | [diff] [blame] | 1236 | res = (*v->ob_type->tp_as_mapping->mp_length)(v); |
Guido van Rossum | 1c4f458 | 1998-05-22 00:53:24 +0000 | [diff] [blame] | 1237 | else if (v->ob_type->tp_as_sequence != NULL && |
| 1238 | v->ob_type->tp_as_sequence->sq_length != NULL) |
Guido van Rossum | 6ac258d | 1993-05-12 08:24:20 +0000 | [diff] [blame] | 1239 | res = (*v->ob_type->tp_as_sequence->sq_length)(v); |
| 1240 | else |
Neal Norwitz | 51290d3 | 2002-06-13 21:32:44 +0000 | [diff] [blame] | 1241 | return 1; |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 1242 | /* if it is negative, it should be either -1 or -2 */ |
| 1243 | return (res > 0) ? 1 : Py_SAFE_DOWNCAST(res, Py_ssize_t, int); |
Guido van Rossum | 6ac258d | 1993-05-12 08:24:20 +0000 | [diff] [blame] | 1244 | } |
| 1245 | |
Tim Peters | 803526b | 2002-07-07 05:13:56 +0000 | [diff] [blame] | 1246 | /* equivalent of 'not v' |
Guido van Rossum | c3d3f96 | 1998-04-09 17:53:59 +0000 | [diff] [blame] | 1247 | Return -1 if an error occurred */ |
| 1248 | |
| 1249 | int |
Fred Drake | 100814d | 2000-07-09 15:48:49 +0000 | [diff] [blame] | 1250 | PyObject_Not(PyObject *v) |
Guido van Rossum | c3d3f96 | 1998-04-09 17:53:59 +0000 | [diff] [blame] | 1251 | { |
| 1252 | int res; |
| 1253 | res = PyObject_IsTrue(v); |
| 1254 | if (res < 0) |
| 1255 | return res; |
| 1256 | return res == 0; |
| 1257 | } |
| 1258 | |
Guido van Rossum | 49b11fe | 1995-01-26 00:38:22 +0000 | [diff] [blame] | 1259 | /* Test whether an object can be called */ |
| 1260 | |
| 1261 | int |
Fred Drake | 100814d | 2000-07-09 15:48:49 +0000 | [diff] [blame] | 1262 | PyCallable_Check(PyObject *x) |
Guido van Rossum | 49b11fe | 1995-01-26 00:38:22 +0000 | [diff] [blame] | 1263 | { |
| 1264 | if (x == NULL) |
| 1265 | return 0; |
Guido van Rossum | 50e9fb9 | 2006-08-17 05:42:55 +0000 | [diff] [blame] | 1266 | return x->ob_type->tp_call != NULL; |
Guido van Rossum | 49b11fe | 1995-01-26 00:38:22 +0000 | [diff] [blame] | 1267 | } |
| 1268 | |
Georg Brandl | e32b422 | 2007-03-10 22:13:27 +0000 | [diff] [blame] | 1269 | /* ------------------------- PyObject_Dir() helpers ------------------------- */ |
| 1270 | |
Tim Peters | 7eea37e | 2001-09-04 22:08:56 +0000 | [diff] [blame] | 1271 | /* Helper for PyObject_Dir. |
| 1272 | Merge the __dict__ of aclass into dict, and recursively also all |
| 1273 | the __dict__s of aclass's base classes. The order of merging isn't |
| 1274 | defined, as it's expected that only the final set of dict keys is |
| 1275 | interesting. |
| 1276 | Return 0 on success, -1 on error. |
| 1277 | */ |
| 1278 | |
| 1279 | static int |
| 1280 | merge_class_dict(PyObject* dict, PyObject* aclass) |
| 1281 | { |
| 1282 | PyObject *classdict; |
| 1283 | PyObject *bases; |
| 1284 | |
| 1285 | assert(PyDict_Check(dict)); |
| 1286 | assert(aclass); |
| 1287 | |
| 1288 | /* Merge in the type's dict (if any). */ |
| 1289 | classdict = PyObject_GetAttrString(aclass, "__dict__"); |
| 1290 | if (classdict == NULL) |
| 1291 | PyErr_Clear(); |
| 1292 | else { |
| 1293 | int status = PyDict_Update(dict, classdict); |
| 1294 | Py_DECREF(classdict); |
| 1295 | if (status < 0) |
| 1296 | return -1; |
| 1297 | } |
| 1298 | |
| 1299 | /* Recursively merge in the base types' (if any) dicts. */ |
| 1300 | bases = PyObject_GetAttrString(aclass, "__bases__"); |
Tim Peters | bc7e863 | 2001-09-16 20:33:22 +0000 | [diff] [blame] | 1301 | if (bases == NULL) |
| 1302 | PyErr_Clear(); |
| 1303 | else { |
Guido van Rossum | 4402241 | 2002-05-13 18:29:46 +0000 | [diff] [blame] | 1304 | /* We have no guarantee that bases is a real tuple */ |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 1305 | Py_ssize_t i, n; |
Guido van Rossum | 4402241 | 2002-05-13 18:29:46 +0000 | [diff] [blame] | 1306 | n = PySequence_Size(bases); /* This better be right */ |
| 1307 | if (n < 0) |
| 1308 | PyErr_Clear(); |
| 1309 | else { |
| 1310 | for (i = 0; i < n; i++) { |
Tim Peters | 18e7083 | 2003-02-05 19:35:19 +0000 | [diff] [blame] | 1311 | int status; |
Guido van Rossum | 4402241 | 2002-05-13 18:29:46 +0000 | [diff] [blame] | 1312 | PyObject *base = PySequence_GetItem(bases, i); |
| 1313 | if (base == NULL) { |
| 1314 | Py_DECREF(bases); |
| 1315 | return -1; |
| 1316 | } |
Tim Peters | 18e7083 | 2003-02-05 19:35:19 +0000 | [diff] [blame] | 1317 | status = merge_class_dict(dict, base); |
| 1318 | Py_DECREF(base); |
| 1319 | if (status < 0) { |
Guido van Rossum | 4402241 | 2002-05-13 18:29:46 +0000 | [diff] [blame] | 1320 | Py_DECREF(bases); |
| 1321 | return -1; |
| 1322 | } |
Tim Peters | 7eea37e | 2001-09-04 22:08:56 +0000 | [diff] [blame] | 1323 | } |
| 1324 | } |
| 1325 | Py_DECREF(bases); |
| 1326 | } |
| 1327 | return 0; |
| 1328 | } |
| 1329 | |
Georg Brandl | e32b422 | 2007-03-10 22:13:27 +0000 | [diff] [blame] | 1330 | /* Helper for PyObject_Dir without arguments: returns the local scope. */ |
| 1331 | static PyObject * |
Guido van Rossum | ad7d8d1 | 2007-04-13 01:39:34 +0000 | [diff] [blame] | 1332 | _dir_locals(void) |
Tim Peters | 305b585 | 2001-09-17 02:38:46 +0000 | [diff] [blame] | 1333 | { |
Georg Brandl | ed3b838 | 2007-03-12 13:15:14 +0000 | [diff] [blame] | 1334 | PyObject *names; |
Georg Brandl | e32b422 | 2007-03-10 22:13:27 +0000 | [diff] [blame] | 1335 | PyObject *locals = PyEval_GetLocals(); |
Tim Peters | 305b585 | 2001-09-17 02:38:46 +0000 | [diff] [blame] | 1336 | |
Georg Brandl | e32b422 | 2007-03-10 22:13:27 +0000 | [diff] [blame] | 1337 | if (locals == NULL) { |
| 1338 | PyErr_SetString(PyExc_SystemError, "frame does not exist"); |
| 1339 | return NULL; |
Tim Peters | 305b585 | 2001-09-17 02:38:46 +0000 | [diff] [blame] | 1340 | } |
| 1341 | |
Georg Brandl | ed3b838 | 2007-03-12 13:15:14 +0000 | [diff] [blame] | 1342 | names = PyMapping_Keys(locals); |
| 1343 | if (!names) |
| 1344 | return NULL; |
| 1345 | if (!PyList_Check(names)) { |
| 1346 | PyErr_Format(PyExc_TypeError, |
| 1347 | "dir(): expected keys() of locals to be a list, " |
| 1348 | "not '%.200s'", names->ob_type->tp_name); |
| 1349 | Py_DECREF(names); |
| 1350 | return NULL; |
| 1351 | } |
Georg Brandl | e32b422 | 2007-03-10 22:13:27 +0000 | [diff] [blame] | 1352 | /* the locals don't need to be DECREF'd */ |
Georg Brandl | ed3b838 | 2007-03-12 13:15:14 +0000 | [diff] [blame] | 1353 | return names; |
Georg Brandl | e32b422 | 2007-03-10 22:13:27 +0000 | [diff] [blame] | 1354 | } |
| 1355 | |
| 1356 | /* Helper for PyObject_Dir of type objects: returns __dict__ and __bases__. |
| 1357 | We deliberately don't suck up its __class__, as methods belonging to the |
| 1358 | metaclass would probably be more confusing than helpful. |
| 1359 | */ |
| 1360 | static PyObject * |
| 1361 | _specialized_dir_type(PyObject *obj) |
| 1362 | { |
| 1363 | PyObject *result = NULL; |
| 1364 | PyObject *dict = PyDict_New(); |
| 1365 | |
| 1366 | if (dict != NULL && merge_class_dict(dict, obj) == 0) |
| 1367 | result = PyDict_Keys(dict); |
| 1368 | |
| 1369 | Py_XDECREF(dict); |
Tim Peters | 305b585 | 2001-09-17 02:38:46 +0000 | [diff] [blame] | 1370 | return result; |
| 1371 | } |
| 1372 | |
Georg Brandl | e32b422 | 2007-03-10 22:13:27 +0000 | [diff] [blame] | 1373 | /* Helper for PyObject_Dir of module objects: returns the module's __dict__. */ |
| 1374 | static PyObject * |
| 1375 | _specialized_dir_module(PyObject *obj) |
Tim Peters | 7eea37e | 2001-09-04 22:08:56 +0000 | [diff] [blame] | 1376 | { |
Georg Brandl | e32b422 | 2007-03-10 22:13:27 +0000 | [diff] [blame] | 1377 | PyObject *result = NULL; |
| 1378 | PyObject *dict = PyObject_GetAttrString(obj, "__dict__"); |
Tim Peters | 7eea37e | 2001-09-04 22:08:56 +0000 | [diff] [blame] | 1379 | |
Georg Brandl | e32b422 | 2007-03-10 22:13:27 +0000 | [diff] [blame] | 1380 | if (dict != NULL) { |
| 1381 | if (PyDict_Check(dict)) |
| 1382 | result = PyDict_Keys(dict); |
| 1383 | else { |
| 1384 | PyErr_Format(PyExc_TypeError, |
| 1385 | "%.200s.__dict__ is not a dictionary", |
| 1386 | PyModule_GetName(obj)); |
Guido van Rossum | 8dbd3d8 | 2001-09-10 18:27:43 +0000 | [diff] [blame] | 1387 | } |
Tim Peters | 7eea37e | 2001-09-04 22:08:56 +0000 | [diff] [blame] | 1388 | } |
| 1389 | |
Georg Brandl | e32b422 | 2007-03-10 22:13:27 +0000 | [diff] [blame] | 1390 | Py_XDECREF(dict); |
| 1391 | return result; |
| 1392 | } |
Tim Peters | 7eea37e | 2001-09-04 22:08:56 +0000 | [diff] [blame] | 1393 | |
Georg Brandl | e32b422 | 2007-03-10 22:13:27 +0000 | [diff] [blame] | 1394 | /* Helper for PyObject_Dir of generic objects: returns __dict__, __class__, |
| 1395 | and recursively up the __class__.__bases__ chain. |
| 1396 | */ |
| 1397 | static PyObject * |
| 1398 | _generic_dir(PyObject *obj) |
| 1399 | { |
| 1400 | PyObject *result = NULL; |
| 1401 | PyObject *dict = NULL; |
| 1402 | PyObject *itsclass = NULL; |
| 1403 | |
| 1404 | /* Get __dict__ (which may or may not be a real dict...) */ |
| 1405 | dict = PyObject_GetAttrString(obj, "__dict__"); |
| 1406 | if (dict == NULL) { |
| 1407 | PyErr_Clear(); |
| 1408 | dict = PyDict_New(); |
| 1409 | } |
| 1410 | else if (!PyDict_Check(dict)) { |
| 1411 | Py_DECREF(dict); |
| 1412 | dict = PyDict_New(); |
| 1413 | } |
Tim Peters | 7eea37e | 2001-09-04 22:08:56 +0000 | [diff] [blame] | 1414 | else { |
Georg Brandl | e32b422 | 2007-03-10 22:13:27 +0000 | [diff] [blame] | 1415 | /* Copy __dict__ to avoid mutating it. */ |
| 1416 | PyObject *temp = PyDict_Copy(dict); |
| 1417 | Py_DECREF(dict); |
| 1418 | dict = temp; |
Tim Peters | 7eea37e | 2001-09-04 22:08:56 +0000 | [diff] [blame] | 1419 | } |
| 1420 | |
Georg Brandl | e32b422 | 2007-03-10 22:13:27 +0000 | [diff] [blame] | 1421 | if (dict == NULL) |
Raymond Hettinger | 2a7dede | 2004-08-07 04:55:30 +0000 | [diff] [blame] | 1422 | goto error; |
Tim Peters | 7eea37e | 2001-09-04 22:08:56 +0000 | [diff] [blame] | 1423 | |
Georg Brandl | e32b422 | 2007-03-10 22:13:27 +0000 | [diff] [blame] | 1424 | /* Merge in attrs reachable from its class. */ |
| 1425 | itsclass = PyObject_GetAttrString(obj, "__class__"); |
| 1426 | if (itsclass == NULL) |
| 1427 | /* XXX(tomer): Perhaps fall back to obj->ob_type if no |
| 1428 | __class__ exists? */ |
| 1429 | PyErr_Clear(); |
| 1430 | else { |
| 1431 | if (merge_class_dict(dict, itsclass) != 0) |
| 1432 | goto error; |
| 1433 | } |
| 1434 | |
| 1435 | result = PyDict_Keys(dict); |
Tim Peters | 7eea37e | 2001-09-04 22:08:56 +0000 | [diff] [blame] | 1436 | /* fall through */ |
Georg Brandl | e32b422 | 2007-03-10 22:13:27 +0000 | [diff] [blame] | 1437 | error: |
| 1438 | Py_XDECREF(itsclass); |
| 1439 | Py_XDECREF(dict); |
| 1440 | return result; |
| 1441 | } |
| 1442 | |
| 1443 | /* Helper for PyObject_Dir: object introspection. |
| 1444 | This calls one of the above specialized versions if no __dir__ method |
| 1445 | exists. */ |
| 1446 | static PyObject * |
| 1447 | _dir_object(PyObject *obj) |
| 1448 | { |
| 1449 | PyObject * result = NULL; |
| 1450 | PyObject * dirfunc = PyObject_GetAttrString((PyObject*)obj->ob_type, |
| 1451 | "__dir__"); |
| 1452 | |
| 1453 | assert(obj); |
| 1454 | if (dirfunc == NULL) { |
| 1455 | /* use default implementation */ |
| 1456 | PyErr_Clear(); |
| 1457 | if (PyModule_Check(obj)) |
| 1458 | result = _specialized_dir_module(obj); |
| 1459 | else if (PyType_Check(obj)) |
| 1460 | result = _specialized_dir_type(obj); |
| 1461 | else |
| 1462 | result = _generic_dir(obj); |
| 1463 | } |
| 1464 | else { |
| 1465 | /* use __dir__ */ |
| 1466 | result = PyObject_CallFunctionObjArgs(dirfunc, obj, NULL); |
| 1467 | Py_DECREF(dirfunc); |
| 1468 | if (result == NULL) |
| 1469 | return NULL; |
| 1470 | |
| 1471 | /* result must be a list */ |
| 1472 | /* XXX(gbrandl): could also check if all items are strings */ |
| 1473 | if (!PyList_Check(result)) { |
| 1474 | PyErr_Format(PyExc_TypeError, |
| 1475 | "__dir__() must return a list, not %.200s", |
| 1476 | result->ob_type->tp_name); |
| 1477 | Py_DECREF(result); |
| 1478 | result = NULL; |
| 1479 | } |
| 1480 | } |
| 1481 | |
| 1482 | return result; |
| 1483 | } |
| 1484 | |
| 1485 | /* Implementation of dir() -- if obj is NULL, returns the names in the current |
| 1486 | (local) scope. Otherwise, performs introspection of the object: returns a |
| 1487 | sorted list of attribute names (supposedly) accessible from the object |
| 1488 | */ |
| 1489 | PyObject * |
| 1490 | PyObject_Dir(PyObject *obj) |
| 1491 | { |
| 1492 | PyObject * result; |
| 1493 | |
| 1494 | if (obj == NULL) |
| 1495 | /* no object -- introspect the locals */ |
| 1496 | result = _dir_locals(); |
| 1497 | else |
| 1498 | /* object -- introspect the object */ |
| 1499 | result = _dir_object(obj); |
| 1500 | |
| 1501 | assert(result == NULL || PyList_Check(result)); |
| 1502 | |
| 1503 | if (result != NULL && PyList_Sort(result) != 0) { |
| 1504 | /* sorting the list failed */ |
| 1505 | Py_DECREF(result); |
| 1506 | result = NULL; |
| 1507 | } |
| 1508 | |
Tim Peters | 7eea37e | 2001-09-04 22:08:56 +0000 | [diff] [blame] | 1509 | return result; |
| 1510 | } |
Guido van Rossum | 49b11fe | 1995-01-26 00:38:22 +0000 | [diff] [blame] | 1511 | |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1512 | /* |
| 1513 | NoObject is usable as a non-NULL undefined value, used by the macro None. |
| 1514 | There is (and should be!) no way to create other objects of this type, |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 1515 | so there is exactly one (which is indestructible, by the way). |
Guido van Rossum | ba21a49 | 2001-08-16 08:17:26 +0000 | [diff] [blame] | 1516 | (XXX This type and the type of NotImplemented below should be unified.) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1517 | */ |
| 1518 | |
Guido van Rossum | 0c182a1 | 1992-03-27 17:26:13 +0000 | [diff] [blame] | 1519 | /* ARGSUSED */ |
Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 1520 | static PyObject * |
Fred Drake | 100814d | 2000-07-09 15:48:49 +0000 | [diff] [blame] | 1521 | none_repr(PyObject *op) |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 1522 | { |
Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 1523 | return PyString_FromString("None"); |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1524 | } |
| 1525 | |
Barry Warsaw | 9bf1644 | 2001-01-23 16:24:35 +0000 | [diff] [blame] | 1526 | /* ARGUSED */ |
| 1527 | static void |
Tim Peters | 803526b | 2002-07-07 05:13:56 +0000 | [diff] [blame] | 1528 | none_dealloc(PyObject* ignore) |
Barry Warsaw | 9bf1644 | 2001-01-23 16:24:35 +0000 | [diff] [blame] | 1529 | { |
| 1530 | /* This should never get called, but we also don't want to SEGV if |
| 1531 | * we accidently decref None out of existance. |
| 1532 | */ |
Martin v. Löwis | 3f19b10 | 2002-08-07 16:21:51 +0000 | [diff] [blame] | 1533 | Py_FatalError("deallocating None"); |
Barry Warsaw | 9bf1644 | 2001-01-23 16:24:35 +0000 | [diff] [blame] | 1534 | } |
| 1535 | |
| 1536 | |
Guido van Rossum | ba21a49 | 2001-08-16 08:17:26 +0000 | [diff] [blame] | 1537 | static PyTypeObject PyNone_Type = { |
Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 1538 | PyObject_HEAD_INIT(&PyType_Type) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1539 | 0, |
Guido van Rossum | ba21a49 | 2001-08-16 08:17:26 +0000 | [diff] [blame] | 1540 | "NoneType", |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1541 | 0, |
| 1542 | 0, |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1543 | none_dealloc, /*tp_dealloc*/ /*never called*/ |
Guido van Rossum | 7066dd7 | 1992-09-17 17:54:56 +0000 | [diff] [blame] | 1544 | 0, /*tp_print*/ |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 1545 | 0, /*tp_getattr*/ |
| 1546 | 0, /*tp_setattr*/ |
| 1547 | 0, /*tp_compare*/ |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1548 | none_repr, /*tp_repr*/ |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 1549 | 0, /*tp_as_number*/ |
| 1550 | 0, /*tp_as_sequence*/ |
| 1551 | 0, /*tp_as_mapping*/ |
Guido van Rossum | 9bfef44 | 1993-03-29 10:43:31 +0000 | [diff] [blame] | 1552 | 0, /*tp_hash */ |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1553 | }; |
| 1554 | |
Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 1555 | PyObject _Py_NoneStruct = { |
Guido van Rossum | ba21a49 | 2001-08-16 08:17:26 +0000 | [diff] [blame] | 1556 | PyObject_HEAD_INIT(&PyNone_Type) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1557 | }; |
| 1558 | |
Neil Schemenauer | 5ed85ec | 2001-01-04 01:48:10 +0000 | [diff] [blame] | 1559 | /* NotImplemented is an object that can be used to signal that an |
| 1560 | operation is not implemented for the given type combination. */ |
| 1561 | |
| 1562 | static PyObject * |
| 1563 | NotImplemented_repr(PyObject *op) |
| 1564 | { |
| 1565 | return PyString_FromString("NotImplemented"); |
| 1566 | } |
| 1567 | |
| 1568 | static PyTypeObject PyNotImplemented_Type = { |
| 1569 | PyObject_HEAD_INIT(&PyType_Type) |
| 1570 | 0, |
Guido van Rossum | ba21a49 | 2001-08-16 08:17:26 +0000 | [diff] [blame] | 1571 | "NotImplementedType", |
Neil Schemenauer | 5ed85ec | 2001-01-04 01:48:10 +0000 | [diff] [blame] | 1572 | 0, |
| 1573 | 0, |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1574 | none_dealloc, /*tp_dealloc*/ /*never called*/ |
Neil Schemenauer | 5ed85ec | 2001-01-04 01:48:10 +0000 | [diff] [blame] | 1575 | 0, /*tp_print*/ |
| 1576 | 0, /*tp_getattr*/ |
| 1577 | 0, /*tp_setattr*/ |
| 1578 | 0, /*tp_compare*/ |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1579 | NotImplemented_repr, /*tp_repr*/ |
Neil Schemenauer | 5ed85ec | 2001-01-04 01:48:10 +0000 | [diff] [blame] | 1580 | 0, /*tp_as_number*/ |
| 1581 | 0, /*tp_as_sequence*/ |
| 1582 | 0, /*tp_as_mapping*/ |
| 1583 | 0, /*tp_hash */ |
| 1584 | }; |
| 1585 | |
| 1586 | PyObject _Py_NotImplementedStruct = { |
| 1587 | PyObject_HEAD_INIT(&PyNotImplemented_Type) |
| 1588 | }; |
| 1589 | |
Guido van Rossum | ba21a49 | 2001-08-16 08:17:26 +0000 | [diff] [blame] | 1590 | void |
| 1591 | _Py_ReadyTypes(void) |
| 1592 | { |
| 1593 | if (PyType_Ready(&PyType_Type) < 0) |
| 1594 | Py_FatalError("Can't initialize 'type'"); |
| 1595 | |
Fred Drake | 0a4dd39 | 2004-07-02 18:57:45 +0000 | [diff] [blame] | 1596 | if (PyType_Ready(&_PyWeakref_RefType) < 0) |
| 1597 | Py_FatalError("Can't initialize 'weakref'"); |
| 1598 | |
Guido van Rossum | 77f6a65 | 2002-04-03 22:41:51 +0000 | [diff] [blame] | 1599 | if (PyType_Ready(&PyBool_Type) < 0) |
| 1600 | Py_FatalError("Can't initialize 'bool'"); |
| 1601 | |
Guido van Rossum | 4dfe8a1 | 2006-04-22 23:28:04 +0000 | [diff] [blame] | 1602 | if (PyType_Ready(&PyBytes_Type) < 0) |
| 1603 | Py_FatalError("Can't initialize 'bytes'"); |
| 1604 | |
Guido van Rossum | cacfc07 | 2002-05-24 19:01:59 +0000 | [diff] [blame] | 1605 | if (PyType_Ready(&PyString_Type) < 0) |
| 1606 | Py_FatalError("Can't initialize 'str'"); |
| 1607 | |
Guido van Rossum | ba21a49 | 2001-08-16 08:17:26 +0000 | [diff] [blame] | 1608 | if (PyType_Ready(&PyList_Type) < 0) |
| 1609 | Py_FatalError("Can't initialize 'list'"); |
| 1610 | |
| 1611 | if (PyType_Ready(&PyNone_Type) < 0) |
| 1612 | Py_FatalError("Can't initialize type(None)"); |
| 1613 | |
Guido van Rossum | 50e9fb9 | 2006-08-17 05:42:55 +0000 | [diff] [blame] | 1614 | if (PyType_Ready(Py_Ellipsis->ob_type) < 0) |
| 1615 | Py_FatalError("Can't initialize type(Ellipsis)"); |
| 1616 | |
Guido van Rossum | ba21a49 | 2001-08-16 08:17:26 +0000 | [diff] [blame] | 1617 | if (PyType_Ready(&PyNotImplemented_Type) < 0) |
| 1618 | Py_FatalError("Can't initialize type(NotImplemented)"); |
Guido van Rossum | 47b9ff6 | 2006-08-24 00:41:19 +0000 | [diff] [blame] | 1619 | |
| 1620 | if (PyType_Ready(&PyCode_Type) < 0) |
| 1621 | Py_FatalError("Can't initialize 'code'"); |
Guido van Rossum | ba21a49 | 2001-08-16 08:17:26 +0000 | [diff] [blame] | 1622 | } |
| 1623 | |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1624 | |
Guido van Rossum | 84a9032 | 1996-05-22 16:34:47 +0000 | [diff] [blame] | 1625 | #ifdef Py_TRACE_REFS |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1626 | |
Guido van Rossum | aacdc9d | 1996-08-12 21:32:12 +0000 | [diff] [blame] | 1627 | void |
Fred Drake | 100814d | 2000-07-09 15:48:49 +0000 | [diff] [blame] | 1628 | _Py_NewReference(PyObject *op) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1629 | { |
Tim Peters | 3459251 | 2002-07-11 06:23:50 +0000 | [diff] [blame] | 1630 | _Py_INC_REFTOTAL; |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1631 | op->ob_refcnt = 1; |
Tim Peters | 7571a0f | 2003-03-23 17:52:28 +0000 | [diff] [blame] | 1632 | _Py_AddToAllObjects(op, 1); |
Tim Peters | 3459251 | 2002-07-11 06:23:50 +0000 | [diff] [blame] | 1633 | _Py_INC_TPALLOCS(op); |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1634 | } |
| 1635 | |
Guido van Rossum | aacdc9d | 1996-08-12 21:32:12 +0000 | [diff] [blame] | 1636 | void |
Fred Drake | 100814d | 2000-07-09 15:48:49 +0000 | [diff] [blame] | 1637 | _Py_ForgetReference(register PyObject *op) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1638 | { |
Guido van Rossum | bffd683 | 2000-01-20 22:32:56 +0000 | [diff] [blame] | 1639 | #ifdef SLOW_UNREF_CHECK |
Guido van Rossum | 4c08d55 | 2000-03-10 22:55:18 +0000 | [diff] [blame] | 1640 | register PyObject *p; |
Guido van Rossum | bffd683 | 2000-01-20 22:32:56 +0000 | [diff] [blame] | 1641 | #endif |
Guido van Rossum | d7047b3 | 1995-01-02 19:07:15 +0000 | [diff] [blame] | 1642 | if (op->ob_refcnt < 0) |
Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 1643 | Py_FatalError("UNREF negative refcnt"); |
Guido van Rossum | 2e8f614 | 1992-09-03 20:32:55 +0000 | [diff] [blame] | 1644 | if (op == &refchain || |
Guido van Rossum | d7047b3 | 1995-01-02 19:07:15 +0000 | [diff] [blame] | 1645 | op->_ob_prev->_ob_next != op || op->_ob_next->_ob_prev != op) |
Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 1646 | Py_FatalError("UNREF invalid object"); |
Guido van Rossum | 2e8f614 | 1992-09-03 20:32:55 +0000 | [diff] [blame] | 1647 | #ifdef SLOW_UNREF_CHECK |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 1648 | for (p = refchain._ob_next; p != &refchain; p = p->_ob_next) { |
| 1649 | if (p == op) |
| 1650 | break; |
| 1651 | } |
Guido van Rossum | d7047b3 | 1995-01-02 19:07:15 +0000 | [diff] [blame] | 1652 | if (p == &refchain) /* Not found */ |
Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 1653 | Py_FatalError("UNREF unknown object"); |
Guido van Rossum | 2e8f614 | 1992-09-03 20:32:55 +0000 | [diff] [blame] | 1654 | #endif |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1655 | op->_ob_next->_ob_prev = op->_ob_prev; |
| 1656 | op->_ob_prev->_ob_next = op->_ob_next; |
Guido van Rossum | 2e8f614 | 1992-09-03 20:32:55 +0000 | [diff] [blame] | 1657 | op->_ob_next = op->_ob_prev = NULL; |
Tim Peters | 3459251 | 2002-07-11 06:23:50 +0000 | [diff] [blame] | 1658 | _Py_INC_TPFREES(op); |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 1659 | } |
| 1660 | |
Guido van Rossum | aacdc9d | 1996-08-12 21:32:12 +0000 | [diff] [blame] | 1661 | void |
Fred Drake | 100814d | 2000-07-09 15:48:49 +0000 | [diff] [blame] | 1662 | _Py_Dealloc(PyObject *op) |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 1663 | { |
Guido van Rossum | 9776adf | 1994-09-07 14:36:45 +0000 | [diff] [blame] | 1664 | destructor dealloc = op->ob_type->tp_dealloc; |
Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 1665 | _Py_ForgetReference(op); |
Guido van Rossum | 9776adf | 1994-09-07 14:36:45 +0000 | [diff] [blame] | 1666 | (*dealloc)(op); |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1667 | } |
| 1668 | |
Tim Peters | 269b2a6 | 2003-04-17 19:52:29 +0000 | [diff] [blame] | 1669 | /* Print all live objects. Because PyObject_Print is called, the |
| 1670 | * interpreter must be in a healthy state. |
| 1671 | */ |
Guido van Rossum | aacdc9d | 1996-08-12 21:32:12 +0000 | [diff] [blame] | 1672 | void |
Fred Drake | 100814d | 2000-07-09 15:48:49 +0000 | [diff] [blame] | 1673 | _Py_PrintReferences(FILE *fp) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1674 | { |
Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 1675 | PyObject *op; |
Guido van Rossum | e09fb55 | 1997-08-05 02:04:34 +0000 | [diff] [blame] | 1676 | fprintf(fp, "Remaining objects:\n"); |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1677 | for (op = refchain._ob_next; op != &refchain; op = op->_ob_next) { |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1678 | fprintf(fp, "%p [%" PY_FORMAT_SIZE_T "d] ", op, op->ob_refcnt); |
Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 1679 | if (PyObject_Print(op, fp, 0) != 0) |
| 1680 | PyErr_Clear(); |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1681 | putc('\n', fp); |
| 1682 | } |
| 1683 | } |
| 1684 | |
Tim Peters | 269b2a6 | 2003-04-17 19:52:29 +0000 | [diff] [blame] | 1685 | /* Print the addresses of all live objects. Unlike _Py_PrintReferences, this |
| 1686 | * doesn't make any calls to the Python C API, so is always safe to call. |
| 1687 | */ |
| 1688 | void |
| 1689 | _Py_PrintReferenceAddresses(FILE *fp) |
| 1690 | { |
| 1691 | PyObject *op; |
| 1692 | fprintf(fp, "Remaining object addresses:\n"); |
| 1693 | for (op = refchain._ob_next; op != &refchain; op = op->_ob_next) |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1694 | fprintf(fp, "%p [%" PY_FORMAT_SIZE_T "d] %s\n", op, |
| 1695 | op->ob_refcnt, op->ob_type->tp_name); |
Tim Peters | 269b2a6 | 2003-04-17 19:52:29 +0000 | [diff] [blame] | 1696 | } |
| 1697 | |
Sjoerd Mullender | 6ec3c65 | 1995-08-29 09:18:14 +0000 | [diff] [blame] | 1698 | PyObject * |
Fred Drake | 100814d | 2000-07-09 15:48:49 +0000 | [diff] [blame] | 1699 | _Py_GetObjects(PyObject *self, PyObject *args) |
Sjoerd Mullender | 6ec3c65 | 1995-08-29 09:18:14 +0000 | [diff] [blame] | 1700 | { |
| 1701 | int i, n; |
| 1702 | PyObject *t = NULL; |
| 1703 | PyObject *res, *op; |
| 1704 | |
| 1705 | if (!PyArg_ParseTuple(args, "i|O", &n, &t)) |
| 1706 | return NULL; |
| 1707 | op = refchain._ob_next; |
| 1708 | res = PyList_New(0); |
| 1709 | if (res == NULL) |
| 1710 | return NULL; |
| 1711 | for (i = 0; (n == 0 || i < n) && op != &refchain; i++) { |
| 1712 | while (op == self || op == args || op == res || op == t || |
Guido van Rossum | 3c29602 | 2001-07-14 17:58:00 +0000 | [diff] [blame] | 1713 | (t != NULL && op->ob_type != (PyTypeObject *) t)) { |
Sjoerd Mullender | 6ec3c65 | 1995-08-29 09:18:14 +0000 | [diff] [blame] | 1714 | op = op->_ob_next; |
| 1715 | if (op == &refchain) |
| 1716 | return res; |
| 1717 | } |
| 1718 | if (PyList_Append(res, op) < 0) { |
| 1719 | Py_DECREF(res); |
| 1720 | return NULL; |
| 1721 | } |
| 1722 | op = op->_ob_next; |
| 1723 | } |
| 1724 | return res; |
| 1725 | } |
| 1726 | |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1727 | #endif |
Guido van Rossum | 97ead3f | 1996-01-12 01:24:09 +0000 | [diff] [blame] | 1728 | |
| 1729 | |
| 1730 | /* Hack to force loading of cobject.o */ |
Guido van Rossum | da9c271 | 1996-12-05 21:58:58 +0000 | [diff] [blame] | 1731 | PyTypeObject *_Py_cobject_hack = &PyCObject_Type; |
Guido van Rossum | 84a9032 | 1996-05-22 16:34:47 +0000 | [diff] [blame] | 1732 | |
| 1733 | |
| 1734 | /* Hack to force loading of abstract.o */ |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 1735 | Py_ssize_t (*_Py_abstract_hack)(PyObject *) = PyObject_Size; |
Guido van Rossum | e09fb55 | 1997-08-05 02:04:34 +0000 | [diff] [blame] | 1736 | |
| 1737 | |
Andrew M. Kuchling | 1582a3a | 2000-08-16 12:27:23 +0000 | [diff] [blame] | 1738 | /* Python's malloc wrappers (see pymem.h) */ |
Guido van Rossum | e09fb55 | 1997-08-05 02:04:34 +0000 | [diff] [blame] | 1739 | |
Thomas Wouters | 334fb89 | 2000-07-25 12:56:38 +0000 | [diff] [blame] | 1740 | void * |
Fred Drake | 100814d | 2000-07-09 15:48:49 +0000 | [diff] [blame] | 1741 | PyMem_Malloc(size_t nbytes) |
Guido van Rossum | e09fb55 | 1997-08-05 02:04:34 +0000 | [diff] [blame] | 1742 | { |
Guido van Rossum | b18618d | 2000-05-03 23:44:39 +0000 | [diff] [blame] | 1743 | return PyMem_MALLOC(nbytes); |
Guido van Rossum | e09fb55 | 1997-08-05 02:04:34 +0000 | [diff] [blame] | 1744 | } |
| 1745 | |
Thomas Wouters | 334fb89 | 2000-07-25 12:56:38 +0000 | [diff] [blame] | 1746 | void * |
| 1747 | PyMem_Realloc(void *p, size_t nbytes) |
Guido van Rossum | e09fb55 | 1997-08-05 02:04:34 +0000 | [diff] [blame] | 1748 | { |
Tim Peters | af3e8de | 2002-04-12 07:22:56 +0000 | [diff] [blame] | 1749 | return PyMem_REALLOC(p, nbytes); |
Guido van Rossum | e09fb55 | 1997-08-05 02:04:34 +0000 | [diff] [blame] | 1750 | } |
| 1751 | |
| 1752 | void |
Thomas Wouters | 334fb89 | 2000-07-25 12:56:38 +0000 | [diff] [blame] | 1753 | PyMem_Free(void *p) |
Guido van Rossum | e09fb55 | 1997-08-05 02:04:34 +0000 | [diff] [blame] | 1754 | { |
Guido van Rossum | b18618d | 2000-05-03 23:44:39 +0000 | [diff] [blame] | 1755 | PyMem_FREE(p); |
| 1756 | } |
| 1757 | |
| 1758 | |
Guido van Rossum | 8661036 | 1998-04-10 22:32:46 +0000 | [diff] [blame] | 1759 | /* These methods are used to control infinite recursion in repr, str, print, |
| 1760 | etc. Container objects that may recursively contain themselves, |
| 1761 | e.g. builtin dictionaries and lists, should used Py_ReprEnter() and |
| 1762 | Py_ReprLeave() to avoid infinite recursion. |
| 1763 | |
| 1764 | Py_ReprEnter() returns 0 the first time it is called for a particular |
| 1765 | object and 1 every time thereafter. It returns -1 if an exception |
| 1766 | occurred. Py_ReprLeave() has no return value. |
| 1767 | |
| 1768 | See dictobject.c and listobject.c for examples of use. |
| 1769 | */ |
| 1770 | |
| 1771 | #define KEY "Py_Repr" |
| 1772 | |
| 1773 | int |
Fred Drake | 100814d | 2000-07-09 15:48:49 +0000 | [diff] [blame] | 1774 | Py_ReprEnter(PyObject *obj) |
Guido van Rossum | 8661036 | 1998-04-10 22:32:46 +0000 | [diff] [blame] | 1775 | { |
| 1776 | PyObject *dict; |
| 1777 | PyObject *list; |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 1778 | Py_ssize_t i; |
Guido van Rossum | 8661036 | 1998-04-10 22:32:46 +0000 | [diff] [blame] | 1779 | |
| 1780 | dict = PyThreadState_GetDict(); |
| 1781 | if (dict == NULL) |
Guido van Rossum | 0fc8f00 | 2003-04-15 15:12:39 +0000 | [diff] [blame] | 1782 | return 0; |
Guido van Rossum | 8661036 | 1998-04-10 22:32:46 +0000 | [diff] [blame] | 1783 | list = PyDict_GetItemString(dict, KEY); |
| 1784 | if (list == NULL) { |
| 1785 | list = PyList_New(0); |
| 1786 | if (list == NULL) |
| 1787 | return -1; |
| 1788 | if (PyDict_SetItemString(dict, KEY, list) < 0) |
| 1789 | return -1; |
| 1790 | Py_DECREF(list); |
| 1791 | } |
| 1792 | i = PyList_GET_SIZE(list); |
| 1793 | while (--i >= 0) { |
| 1794 | if (PyList_GET_ITEM(list, i) == obj) |
| 1795 | return 1; |
| 1796 | } |
| 1797 | PyList_Append(list, obj); |
| 1798 | return 0; |
| 1799 | } |
| 1800 | |
| 1801 | void |
Fred Drake | 100814d | 2000-07-09 15:48:49 +0000 | [diff] [blame] | 1802 | Py_ReprLeave(PyObject *obj) |
Guido van Rossum | 8661036 | 1998-04-10 22:32:46 +0000 | [diff] [blame] | 1803 | { |
| 1804 | PyObject *dict; |
| 1805 | PyObject *list; |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 1806 | Py_ssize_t i; |
Guido van Rossum | 8661036 | 1998-04-10 22:32:46 +0000 | [diff] [blame] | 1807 | |
| 1808 | dict = PyThreadState_GetDict(); |
Guido van Rossum | eb90946 | 1998-04-11 15:17:34 +0000 | [diff] [blame] | 1809 | if (dict == NULL) |
| 1810 | return; |
Guido van Rossum | 8661036 | 1998-04-10 22:32:46 +0000 | [diff] [blame] | 1811 | list = PyDict_GetItemString(dict, KEY); |
Guido van Rossum | eb90946 | 1998-04-11 15:17:34 +0000 | [diff] [blame] | 1812 | if (list == NULL || !PyList_Check(list)) |
| 1813 | return; |
Guido van Rossum | 8661036 | 1998-04-10 22:32:46 +0000 | [diff] [blame] | 1814 | i = PyList_GET_SIZE(list); |
| 1815 | /* Count backwards because we always expect obj to be list[-1] */ |
| 1816 | while (--i >= 0) { |
| 1817 | if (PyList_GET_ITEM(list, i) == obj) { |
| 1818 | PyList_SetSlice(list, i, i + 1, NULL); |
| 1819 | break; |
| 1820 | } |
| 1821 | } |
| 1822 | } |
Guido van Rossum | d724b23 | 2000-03-13 16:01:29 +0000 | [diff] [blame] | 1823 | |
Tim Peters | 803526b | 2002-07-07 05:13:56 +0000 | [diff] [blame] | 1824 | /* Trashcan support. */ |
Guido van Rossum | d724b23 | 2000-03-13 16:01:29 +0000 | [diff] [blame] | 1825 | |
Tim Peters | 803526b | 2002-07-07 05:13:56 +0000 | [diff] [blame] | 1826 | /* Current call-stack depth of tp_dealloc calls. */ |
Guido van Rossum | d724b23 | 2000-03-13 16:01:29 +0000 | [diff] [blame] | 1827 | int _PyTrash_delete_nesting = 0; |
Guido van Rossum | e92e610 | 2000-04-24 15:40:53 +0000 | [diff] [blame] | 1828 | |
Tim Peters | 803526b | 2002-07-07 05:13:56 +0000 | [diff] [blame] | 1829 | /* List of objects that still need to be cleaned up, singly linked via their |
| 1830 | * gc headers' gc_prev pointers. |
| 1831 | */ |
| 1832 | PyObject *_PyTrash_delete_later = NULL; |
Guido van Rossum | d724b23 | 2000-03-13 16:01:29 +0000 | [diff] [blame] | 1833 | |
Tim Peters | 803526b | 2002-07-07 05:13:56 +0000 | [diff] [blame] | 1834 | /* Add op to the _PyTrash_delete_later list. Called when the current |
| 1835 | * call-stack depth gets large. op must be a currently untracked gc'ed |
| 1836 | * object, with refcount 0. Py_DECREF must already have been called on it. |
| 1837 | */ |
Guido van Rossum | d724b23 | 2000-03-13 16:01:29 +0000 | [diff] [blame] | 1838 | void |
Fred Drake | 100814d | 2000-07-09 15:48:49 +0000 | [diff] [blame] | 1839 | _PyTrash_deposit_object(PyObject *op) |
Guido van Rossum | d724b23 | 2000-03-13 16:01:29 +0000 | [diff] [blame] | 1840 | { |
Tim Peters | 803526b | 2002-07-07 05:13:56 +0000 | [diff] [blame] | 1841 | assert(PyObject_IS_GC(op)); |
| 1842 | assert(_Py_AS_GC(op)->gc.gc_refs == _PyGC_REFS_UNTRACKED); |
| 1843 | assert(op->ob_refcnt == 0); |
Neil Schemenauer | f589c05 | 2002-03-29 03:05:54 +0000 | [diff] [blame] | 1844 | _Py_AS_GC(op)->gc.gc_prev = (PyGC_Head *)_PyTrash_delete_later; |
Guido van Rossum | e92e610 | 2000-04-24 15:40:53 +0000 | [diff] [blame] | 1845 | _PyTrash_delete_later = op; |
Guido van Rossum | d724b23 | 2000-03-13 16:01:29 +0000 | [diff] [blame] | 1846 | } |
| 1847 | |
Tim Peters | 803526b | 2002-07-07 05:13:56 +0000 | [diff] [blame] | 1848 | /* Dealloccate all the objects in the _PyTrash_delete_later list. Called when |
| 1849 | * the call-stack unwinds again. |
| 1850 | */ |
Guido van Rossum | d724b23 | 2000-03-13 16:01:29 +0000 | [diff] [blame] | 1851 | void |
Fred Drake | 100814d | 2000-07-09 15:48:49 +0000 | [diff] [blame] | 1852 | _PyTrash_destroy_chain(void) |
Guido van Rossum | d724b23 | 2000-03-13 16:01:29 +0000 | [diff] [blame] | 1853 | { |
| 1854 | while (_PyTrash_delete_later) { |
Tim Peters | 803526b | 2002-07-07 05:13:56 +0000 | [diff] [blame] | 1855 | PyObject *op = _PyTrash_delete_later; |
| 1856 | destructor dealloc = op->ob_type->tp_dealloc; |
Neil Schemenauer | f589c05 | 2002-03-29 03:05:54 +0000 | [diff] [blame] | 1857 | |
Neil Schemenauer | f589c05 | 2002-03-29 03:05:54 +0000 | [diff] [blame] | 1858 | _PyTrash_delete_later = |
Tim Peters | 803526b | 2002-07-07 05:13:56 +0000 | [diff] [blame] | 1859 | (PyObject*) _Py_AS_GC(op)->gc.gc_prev; |
Neil Schemenauer | f589c05 | 2002-03-29 03:05:54 +0000 | [diff] [blame] | 1860 | |
Tim Peters | 803526b | 2002-07-07 05:13:56 +0000 | [diff] [blame] | 1861 | /* Call the deallocator directly. This used to try to |
| 1862 | * fool Py_DECREF into calling it indirectly, but |
| 1863 | * Py_DECREF was already called on this object, and in |
| 1864 | * assorted non-release builds calling Py_DECREF again ends |
| 1865 | * up distorting allocation statistics. |
| 1866 | */ |
| 1867 | assert(op->ob_refcnt == 0); |
Guido van Rossum | d724b23 | 2000-03-13 16:01:29 +0000 | [diff] [blame] | 1868 | ++_PyTrash_delete_nesting; |
Tim Peters | 803526b | 2002-07-07 05:13:56 +0000 | [diff] [blame] | 1869 | (*dealloc)(op); |
Guido van Rossum | d724b23 | 2000-03-13 16:01:29 +0000 | [diff] [blame] | 1870 | --_PyTrash_delete_nesting; |
| 1871 | } |
| 1872 | } |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1873 | |
| 1874 | #ifdef __cplusplus |
| 1875 | } |
| 1876 | #endif |