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