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