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