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" |
Benjamin Peterson | 01c6e6f | 2009-04-18 22:15:26 +0000 | [diff] [blame] | 5 | #include "frameobject.h" |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 6 | |
Anthony Baxter | ac6bd46 | 2006-04-13 02:06:09 +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; |
Armin Rigo | e170937 | 2006-04-12 17:06:05 +0000 | [diff] [blame] | 13 | |
| 14 | Py_ssize_t |
| 15 | _Py_GetRefTotal(void) |
| 16 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 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; |
Armin Rigo | e170937 | 2006-04-12 17:06:05 +0000 | [diff] [blame] | 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; |
Neal Norwitz | 8b2bfbc | 2007-05-23 06:35:32 +0000 | [diff] [blame] | 33 | int Py_Py3kWarningFlag; |
Guido van Rossum | 393661d | 2001-08-31 17:40:15 +0000 | [diff] [blame] | 34 | |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 35 | /* Object allocation routines used by NEWOBJ and NEWVAROBJ macros. |
| 36 | These are used by the individual routines for object creation. |
| 37 | Do not call them otherwise, they do not initialize the object! */ |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 38 | |
Tim Peters | 78be799 | 2003-03-23 02:51:01 +0000 | [diff] [blame] | 39 | #ifdef Py_TRACE_REFS |
Tim Peters | 7571a0f | 2003-03-23 17:52:28 +0000 | [diff] [blame] | 40 | /* Head of circular doubly-linked list of all objects. These are linked |
| 41 | * together via the _ob_prev and _ob_next members of a PyObject, which |
| 42 | * exist only in a Py_TRACE_REFS build. |
| 43 | */ |
Tim Peters | 78be799 | 2003-03-23 02:51:01 +0000 | [diff] [blame] | 44 | static PyObject refchain = {&refchain, &refchain}; |
Tim Peters | 36eb4df | 2003-03-23 03:33:13 +0000 | [diff] [blame] | 45 | |
Tim Peters | 7571a0f | 2003-03-23 17:52:28 +0000 | [diff] [blame] | 46 | /* Insert op at the front of the list of all objects. If force is true, |
| 47 | * op is added even if _ob_prev and _ob_next are non-NULL already. If |
| 48 | * force is false amd _ob_prev or _ob_next are non-NULL, do nothing. |
| 49 | * force should be true if and only if op points to freshly allocated, |
| 50 | * uninitialized memory, or you've unlinked op from the list and are |
Tim Peters | 51f8d38 | 2003-03-23 18:06:08 +0000 | [diff] [blame] | 51 | * relinking it into the front. |
Tim Peters | 7571a0f | 2003-03-23 17:52:28 +0000 | [diff] [blame] | 52 | * Note that objects are normally added to the list via _Py_NewReference, |
| 53 | * which is called by PyObject_Init. Not all objects are initialized that |
| 54 | * way, though; exceptions include statically allocated type objects, and |
| 55 | * statically allocated singletons (like Py_True and Py_None). |
| 56 | */ |
Tim Peters | 36eb4df | 2003-03-23 03:33:13 +0000 | [diff] [blame] | 57 | void |
Tim Peters | 7571a0f | 2003-03-23 17:52:28 +0000 | [diff] [blame] | 58 | _Py_AddToAllObjects(PyObject *op, int force) |
Tim Peters | 36eb4df | 2003-03-23 03:33:13 +0000 | [diff] [blame] | 59 | { |
Tim Peters | 7571a0f | 2003-03-23 17:52:28 +0000 | [diff] [blame] | 60 | #ifdef Py_DEBUG |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 61 | if (!force) { |
| 62 | /* If it's initialized memory, op must be in or out of |
| 63 | * the list unambiguously. |
| 64 | */ |
| 65 | assert((op->_ob_prev == NULL) == (op->_ob_next == NULL)); |
| 66 | } |
Tim Peters | 78be799 | 2003-03-23 02:51:01 +0000 | [diff] [blame] | 67 | #endif |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 68 | if (force || op->_ob_prev == NULL) { |
| 69 | op->_ob_next = refchain._ob_next; |
| 70 | op->_ob_prev = &refchain; |
| 71 | refchain._ob_next->_ob_prev = op; |
| 72 | refchain._ob_next = op; |
| 73 | } |
Tim Peters | 7571a0f | 2003-03-23 17:52:28 +0000 | [diff] [blame] | 74 | } |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 75 | #endif /* Py_TRACE_REFS */ |
Tim Peters | 78be799 | 2003-03-23 02:51:01 +0000 | [diff] [blame] | 76 | |
Sjoerd Mullender | a9c3c22 | 1993-10-11 12:54:31 +0000 | [diff] [blame] | 77 | #ifdef COUNT_ALLOCS |
Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 78 | static PyTypeObject *type_list; |
Andrew M. Kuchling | 2060d1b | 2006-04-18 11:49:53 +0000 | [diff] [blame] | 79 | /* All types are added to type_list, at least when |
Martin v. Löwis | 45294a9 | 2006-04-18 06:24:08 +0000 | [diff] [blame] | 80 | they get one object created. That makes them |
| 81 | immortal, which unfortunately contributes to |
| 82 | garbage itself. If unlist_types_without_objects |
| 83 | is set, they will be removed from the type_list |
| 84 | once the last object is deallocated. */ |
Martin v. Löwis | b90304a | 2009-01-07 18:40:40 +0000 | [diff] [blame] | 85 | static int unlist_types_without_objects; |
| 86 | extern Py_ssize_t tuple_zero_allocs, fast_tuple_allocs; |
| 87 | extern Py_ssize_t quick_int_allocs, quick_neg_int_allocs; |
| 88 | extern Py_ssize_t null_strings, one_strings; |
Sjoerd Mullender | a9c3c22 | 1993-10-11 12:54:31 +0000 | [diff] [blame] | 89 | void |
Martin v. Löwis | 45294a9 | 2006-04-18 06:24:08 +0000 | [diff] [blame] | 90 | dump_counts(FILE* f) |
Sjoerd Mullender | a9c3c22 | 1993-10-11 12:54:31 +0000 | [diff] [blame] | 91 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 92 | PyTypeObject *tp; |
Sjoerd Mullender | a9c3c22 | 1993-10-11 12:54:31 +0000 | [diff] [blame] | 93 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 94 | for (tp = type_list; tp; tp = tp->tp_next) |
| 95 | fprintf(f, "%s alloc'd: %" PY_FORMAT_SIZE_T "d, " |
| 96 | "freed: %" PY_FORMAT_SIZE_T "d, " |
| 97 | "max in use: %" PY_FORMAT_SIZE_T "d\n", |
| 98 | tp->tp_name, tp->tp_allocs, tp->tp_frees, |
| 99 | tp->tp_maxalloc); |
| 100 | fprintf(f, "fast tuple allocs: %" PY_FORMAT_SIZE_T "d, " |
| 101 | "empty: %" PY_FORMAT_SIZE_T "d\n", |
| 102 | fast_tuple_allocs, tuple_zero_allocs); |
| 103 | fprintf(f, "fast int allocs: pos: %" PY_FORMAT_SIZE_T "d, " |
| 104 | "neg: %" PY_FORMAT_SIZE_T "d\n", |
| 105 | quick_int_allocs, quick_neg_int_allocs); |
| 106 | fprintf(f, "null strings: %" PY_FORMAT_SIZE_T "d, " |
| 107 | "1-strings: %" PY_FORMAT_SIZE_T "d\n", |
| 108 | null_strings, one_strings); |
Sjoerd Mullender | a9c3c22 | 1993-10-11 12:54:31 +0000 | [diff] [blame] | 109 | } |
| 110 | |
Sjoerd Mullender | 6ec3c65 | 1995-08-29 09:18:14 +0000 | [diff] [blame] | 111 | PyObject * |
Fred Drake | 100814d | 2000-07-09 15:48:49 +0000 | [diff] [blame] | 112 | get_counts(void) |
Sjoerd Mullender | 6ec3c65 | 1995-08-29 09:18:14 +0000 | [diff] [blame] | 113 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 114 | PyTypeObject *tp; |
| 115 | PyObject *result; |
| 116 | PyObject *v; |
Sjoerd Mullender | 6ec3c65 | 1995-08-29 09:18:14 +0000 | [diff] [blame] | 117 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 118 | result = PyList_New(0); |
| 119 | if (result == NULL) |
| 120 | return NULL; |
| 121 | for (tp = type_list; tp; tp = tp->tp_next) { |
| 122 | v = Py_BuildValue("(snnn)", tp->tp_name, tp->tp_allocs, |
| 123 | tp->tp_frees, tp->tp_maxalloc); |
| 124 | if (v == NULL) { |
| 125 | Py_DECREF(result); |
| 126 | return NULL; |
| 127 | } |
| 128 | if (PyList_Append(result, v) < 0) { |
| 129 | Py_DECREF(v); |
| 130 | Py_DECREF(result); |
| 131 | return NULL; |
| 132 | } |
| 133 | Py_DECREF(v); |
| 134 | } |
| 135 | return result; |
Sjoerd Mullender | 6ec3c65 | 1995-08-29 09:18:14 +0000 | [diff] [blame] | 136 | } |
| 137 | |
Sjoerd Mullender | a9c3c22 | 1993-10-11 12:54:31 +0000 | [diff] [blame] | 138 | void |
Fred Drake | 100814d | 2000-07-09 15:48:49 +0000 | [diff] [blame] | 139 | inc_count(PyTypeObject *tp) |
Sjoerd Mullender | a9c3c22 | 1993-10-11 12:54:31 +0000 | [diff] [blame] | 140 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 141 | if (tp->tp_next == NULL && tp->tp_prev == NULL) { |
| 142 | /* first time; insert in linked list */ |
| 143 | if (tp->tp_next != NULL) /* sanity check */ |
| 144 | Py_FatalError("XXX inc_count sanity check"); |
| 145 | if (type_list) |
| 146 | type_list->tp_prev = tp; |
| 147 | tp->tp_next = type_list; |
| 148 | /* Note that as of Python 2.2, heap-allocated type objects |
| 149 | * can go away, but this code requires that they stay alive |
| 150 | * until program exit. That's why we're careful with |
| 151 | * refcounts here. type_list gets a new reference to tp, |
| 152 | * while ownership of the reference type_list used to hold |
| 153 | * (if any) was transferred to tp->tp_next in the line above. |
| 154 | * tp is thus effectively immortal after this. |
| 155 | */ |
| 156 | Py_INCREF(tp); |
| 157 | type_list = tp; |
Tim Peters | 3e40c7f | 2003-03-23 03:04:32 +0000 | [diff] [blame] | 158 | #ifdef Py_TRACE_REFS |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 159 | /* Also insert in the doubly-linked list of all objects, |
| 160 | * if not already there. |
| 161 | */ |
| 162 | _Py_AddToAllObjects((PyObject *)tp, 0); |
Tim Peters | 78be799 | 2003-03-23 02:51:01 +0000 | [diff] [blame] | 163 | #endif |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 164 | } |
| 165 | tp->tp_allocs++; |
| 166 | if (tp->tp_allocs - tp->tp_frees > tp->tp_maxalloc) |
| 167 | tp->tp_maxalloc = tp->tp_allocs - tp->tp_frees; |
Sjoerd Mullender | a9c3c22 | 1993-10-11 12:54:31 +0000 | [diff] [blame] | 168 | } |
Martin v. Löwis | 45294a9 | 2006-04-18 06:24:08 +0000 | [diff] [blame] | 169 | |
| 170 | void dec_count(PyTypeObject *tp) |
| 171 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 172 | tp->tp_frees++; |
| 173 | if (unlist_types_without_objects && |
| 174 | tp->tp_allocs == tp->tp_frees) { |
| 175 | /* unlink the type from type_list */ |
| 176 | if (tp->tp_prev) |
| 177 | tp->tp_prev->tp_next = tp->tp_next; |
| 178 | else |
| 179 | type_list = tp->tp_next; |
| 180 | if (tp->tp_next) |
| 181 | tp->tp_next->tp_prev = tp->tp_prev; |
| 182 | tp->tp_next = tp->tp_prev = NULL; |
| 183 | Py_DECREF(tp); |
| 184 | } |
Martin v. Löwis | 45294a9 | 2006-04-18 06:24:08 +0000 | [diff] [blame] | 185 | } |
| 186 | |
Sjoerd Mullender | a9c3c22 | 1993-10-11 12:54:31 +0000 | [diff] [blame] | 187 | #endif |
| 188 | |
Tim Peters | 7c321a8 | 2002-07-09 02:57:01 +0000 | [diff] [blame] | 189 | #ifdef Py_REF_DEBUG |
| 190 | /* Log a fatal error; doesn't return. */ |
| 191 | void |
| 192 | _Py_NegativeRefcount(const char *fname, int lineno, PyObject *op) |
| 193 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 194 | char buf[300]; |
Tim Peters | 7c321a8 | 2002-07-09 02:57:01 +0000 | [diff] [blame] | 195 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 196 | PyOS_snprintf(buf, sizeof(buf), |
| 197 | "%s:%i object at %p has negative ref count " |
| 198 | "%" PY_FORMAT_SIZE_T "d", |
| 199 | fname, lineno, op, op->ob_refcnt); |
| 200 | Py_FatalError(buf); |
Tim Peters | 7c321a8 | 2002-07-09 02:57:01 +0000 | [diff] [blame] | 201 | } |
| 202 | |
| 203 | #endif /* Py_REF_DEBUG */ |
| 204 | |
Thomas Heller | 1328b52 | 2004-04-22 17:23:49 +0000 | [diff] [blame] | 205 | void |
| 206 | Py_IncRef(PyObject *o) |
| 207 | { |
| 208 | Py_XINCREF(o); |
| 209 | } |
| 210 | |
| 211 | void |
| 212 | Py_DecRef(PyObject *o) |
| 213 | { |
| 214 | Py_XDECREF(o); |
| 215 | } |
| 216 | |
Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 217 | PyObject * |
Fred Drake | 100814d | 2000-07-09 15:48:49 +0000 | [diff] [blame] | 218 | PyObject_Init(PyObject *op, PyTypeObject *tp) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 219 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 220 | if (op == NULL) |
| 221 | return PyErr_NoMemory(); |
| 222 | /* Any changes should be reflected in PyObject_INIT (objimpl.h) */ |
| 223 | Py_TYPE(op) = tp; |
| 224 | _Py_NewReference(op); |
| 225 | return op; |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 226 | } |
| 227 | |
Guido van Rossum | b18618d | 2000-05-03 23:44:39 +0000 | [diff] [blame] | 228 | PyVarObject * |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 229 | PyObject_InitVar(PyVarObject *op, PyTypeObject *tp, Py_ssize_t size) |
Guido van Rossum | b18618d | 2000-05-03 23:44:39 +0000 | [diff] [blame] | 230 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 231 | if (op == NULL) |
| 232 | return (PyVarObject *) PyErr_NoMemory(); |
| 233 | /* Any changes should be reflected in PyObject_INIT_VAR */ |
| 234 | op->ob_size = size; |
| 235 | Py_TYPE(op) = tp; |
| 236 | _Py_NewReference((PyObject *)op); |
| 237 | return op; |
Guido van Rossum | b18618d | 2000-05-03 23:44:39 +0000 | [diff] [blame] | 238 | } |
| 239 | |
| 240 | PyObject * |
Fred Drake | 100814d | 2000-07-09 15:48:49 +0000 | [diff] [blame] | 241 | _PyObject_New(PyTypeObject *tp) |
Guido van Rossum | b18618d | 2000-05-03 23:44:39 +0000 | [diff] [blame] | 242 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 243 | PyObject *op; |
| 244 | op = (PyObject *) PyObject_MALLOC(_PyObject_SIZE(tp)); |
| 245 | if (op == NULL) |
| 246 | return PyErr_NoMemory(); |
| 247 | return PyObject_INIT(op, tp); |
Guido van Rossum | b18618d | 2000-05-03 23:44:39 +0000 | [diff] [blame] | 248 | } |
| 249 | |
Guido van Rossum | d0c87ee | 1997-05-15 21:31:03 +0000 | [diff] [blame] | 250 | PyVarObject * |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 251 | _PyObject_NewVar(PyTypeObject *tp, Py_ssize_t nitems) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 252 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 253 | PyVarObject *op; |
| 254 | const size_t size = _PyObject_VAR_SIZE(tp, nitems); |
| 255 | op = (PyVarObject *) PyObject_MALLOC(size); |
| 256 | if (op == NULL) |
| 257 | return (PyVarObject *)PyErr_NoMemory(); |
| 258 | return PyObject_INIT_VAR(op, tp, nitems); |
Guido van Rossum | b18618d | 2000-05-03 23:44:39 +0000 | [diff] [blame] | 259 | } |
| 260 | |
Neil Schemenauer | bdf0eed | 2002-04-12 03:08:42 +0000 | [diff] [blame] | 261 | /* for binary compatibility with 2.2 */ |
| 262 | #undef _PyObject_Del |
Guido van Rossum | b18618d | 2000-05-03 23:44:39 +0000 | [diff] [blame] | 263 | void |
Fred Drake | 100814d | 2000-07-09 15:48:49 +0000 | [diff] [blame] | 264 | _PyObject_Del(PyObject *op) |
Guido van Rossum | b18618d | 2000-05-03 23:44:39 +0000 | [diff] [blame] | 265 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 266 | PyObject_FREE(op); |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 267 | } |
| 268 | |
Neal Norwitz | 1a99750 | 2003-01-13 20:13:12 +0000 | [diff] [blame] | 269 | /* Implementation of PyObject_Print with recursion checking */ |
| 270 | static int |
| 271 | internal_print(PyObject *op, FILE *fp, int flags, int nesting) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 272 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 273 | int ret = 0; |
| 274 | if (nesting > 10) { |
| 275 | PyErr_SetString(PyExc_RuntimeError, "print recursion"); |
| 276 | return -1; |
| 277 | } |
| 278 | if (PyErr_CheckSignals()) |
| 279 | return -1; |
Guido van Rossum | 9b00dfa | 1998-04-28 16:06:54 +0000 | [diff] [blame] | 280 | #ifdef USE_STACKCHECK |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 281 | if (PyOS_CheckStack()) { |
| 282 | PyErr_SetString(PyExc_MemoryError, "stack overflow"); |
| 283 | return -1; |
| 284 | } |
Guido van Rossum | 9b00dfa | 1998-04-28 16:06:54 +0000 | [diff] [blame] | 285 | #endif |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 286 | clearerr(fp); /* Clear any previous error condition */ |
| 287 | if (op == NULL) { |
| 288 | Py_BEGIN_ALLOW_THREADS |
| 289 | fprintf(fp, "<nil>"); |
| 290 | Py_END_ALLOW_THREADS |
| 291 | } |
| 292 | else { |
| 293 | if (op->ob_refcnt <= 0) |
| 294 | /* XXX(twouters) cast refcount to long until %zd is |
| 295 | universally available */ |
| 296 | Py_BEGIN_ALLOW_THREADS |
| 297 | fprintf(fp, "<refcnt %ld at %p>", |
| 298 | (long)op->ob_refcnt, op); |
| 299 | Py_END_ALLOW_THREADS |
| 300 | else if (Py_TYPE(op)->tp_print == NULL) { |
| 301 | PyObject *s; |
| 302 | if (flags & Py_PRINT_RAW) |
| 303 | s = PyObject_Str(op); |
| 304 | else |
| 305 | s = PyObject_Repr(op); |
| 306 | if (s == NULL) |
| 307 | ret = -1; |
| 308 | else { |
| 309 | ret = internal_print(s, fp, Py_PRINT_RAW, |
| 310 | nesting+1); |
| 311 | } |
| 312 | Py_XDECREF(s); |
| 313 | } |
| 314 | else |
| 315 | ret = (*Py_TYPE(op)->tp_print)(op, fp, flags); |
| 316 | } |
| 317 | if (ret == 0) { |
| 318 | if (ferror(fp)) { |
| 319 | PyErr_SetFromErrno(PyExc_IOError); |
| 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 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 330 | return internal_print(op, fp, flags, 0); |
Neal Norwitz | 1a99750 | 2003-01-13 20:13:12 +0000 | [diff] [blame] | 331 | } |
| 332 | |
| 333 | |
Barry Warsaw | 9bf1644 | 2001-01-23 16:24:35 +0000 | [diff] [blame] | 334 | /* For debugging convenience. See Misc/gdbinit for some useful gdb hooks */ |
Tim Peters | 803526b | 2002-07-07 05:13:56 +0000 | [diff] [blame] | 335 | void _PyObject_Dump(PyObject* op) |
Barry Warsaw | 9bf1644 | 2001-01-23 16:24:35 +0000 | [diff] [blame] | 336 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 337 | if (op == NULL) |
| 338 | fprintf(stderr, "NULL\n"); |
| 339 | else { |
Georg Brandl | d3eaa74 | 2009-04-05 11:07:14 +0000 | [diff] [blame] | 340 | #ifdef WITH_THREAD |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 341 | PyGILState_STATE gil; |
Georg Brandl | d3eaa74 | 2009-04-05 11:07:14 +0000 | [diff] [blame] | 342 | #endif |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 343 | fprintf(stderr, "object : "); |
Georg Brandl | d3eaa74 | 2009-04-05 11:07:14 +0000 | [diff] [blame] | 344 | #ifdef WITH_THREAD |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 345 | gil = PyGILState_Ensure(); |
Georg Brandl | d3eaa74 | 2009-04-05 11:07:14 +0000 | [diff] [blame] | 346 | #endif |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 347 | (void)PyObject_Print(op, stderr, 0); |
Georg Brandl | d3eaa74 | 2009-04-05 11:07:14 +0000 | [diff] [blame] | 348 | #ifdef WITH_THREAD |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 349 | PyGILState_Release(gil); |
Georg Brandl | d3eaa74 | 2009-04-05 11:07:14 +0000 | [diff] [blame] | 350 | #endif |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 351 | /* XXX(twouters) cast refcount to long until %zd is |
| 352 | universally available */ |
| 353 | fprintf(stderr, "\n" |
| 354 | "type : %s\n" |
| 355 | "refcount: %ld\n" |
| 356 | "address : %p\n", |
| 357 | Py_TYPE(op)==NULL ? "NULL" : Py_TYPE(op)->tp_name, |
| 358 | (long)op->ob_refcnt, |
| 359 | op); |
| 360 | } |
Barry Warsaw | 9bf1644 | 2001-01-23 16:24:35 +0000 | [diff] [blame] | 361 | } |
Barry Warsaw | 903138f | 2001-01-23 16:33:18 +0000 | [diff] [blame] | 362 | |
Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 363 | PyObject * |
Fred Drake | 100814d | 2000-07-09 15:48:49 +0000 | [diff] [blame] | 364 | PyObject_Repr(PyObject *v) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 365 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 366 | if (PyErr_CheckSignals()) |
| 367 | return NULL; |
Guido van Rossum | 9b00dfa | 1998-04-28 16:06:54 +0000 | [diff] [blame] | 368 | #ifdef USE_STACKCHECK |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 369 | if (PyOS_CheckStack()) { |
| 370 | PyErr_SetString(PyExc_MemoryError, "stack overflow"); |
| 371 | return NULL; |
| 372 | } |
Guido van Rossum | 9b00dfa | 1998-04-28 16:06:54 +0000 | [diff] [blame] | 373 | #endif |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 374 | if (v == NULL) |
| 375 | return PyString_FromString("<NULL>"); |
| 376 | else if (Py_TYPE(v)->tp_repr == NULL) |
| 377 | return PyString_FromFormat("<%s object at %p>", |
| 378 | Py_TYPE(v)->tp_name, v); |
| 379 | else { |
| 380 | PyObject *res; |
| 381 | res = (*Py_TYPE(v)->tp_repr)(v); |
| 382 | if (res == NULL) |
| 383 | return NULL; |
Martin v. Löwis | 339d0f7 | 2001-08-17 18:39:25 +0000 | [diff] [blame] | 384 | #ifdef Py_USING_UNICODE |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 385 | if (PyUnicode_Check(res)) { |
| 386 | PyObject* str; |
| 387 | str = PyUnicode_AsEncodedString(res, NULL, NULL); |
| 388 | Py_DECREF(res); |
| 389 | if (str) |
| 390 | res = str; |
| 391 | else |
| 392 | return NULL; |
| 393 | } |
Martin v. Löwis | 339d0f7 | 2001-08-17 18:39:25 +0000 | [diff] [blame] | 394 | #endif |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 395 | if (!PyString_Check(res)) { |
| 396 | PyErr_Format(PyExc_TypeError, |
| 397 | "__repr__ returned non-string (type %.200s)", |
| 398 | Py_TYPE(res)->tp_name); |
| 399 | Py_DECREF(res); |
| 400 | return NULL; |
| 401 | } |
| 402 | return res; |
| 403 | } |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 404 | } |
| 405 | |
Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 406 | PyObject * |
Neil Schemenauer | cf52c07 | 2005-08-12 17:34:58 +0000 | [diff] [blame] | 407 | _PyObject_Str(PyObject *v) |
Guido van Rossum | c600411 | 1993-11-05 10:22:19 +0000 | [diff] [blame] | 408 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 409 | PyObject *res; |
| 410 | int type_ok; |
| 411 | if (v == NULL) |
| 412 | return PyString_FromString("<NULL>"); |
| 413 | if (PyString_CheckExact(v)) { |
| 414 | Py_INCREF(v); |
| 415 | return v; |
| 416 | } |
Neil Schemenauer | cf52c07 | 2005-08-12 17:34:58 +0000 | [diff] [blame] | 417 | #ifdef Py_USING_UNICODE |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 418 | if (PyUnicode_CheckExact(v)) { |
| 419 | Py_INCREF(v); |
| 420 | return v; |
| 421 | } |
Neil Schemenauer | cf52c07 | 2005-08-12 17:34:58 +0000 | [diff] [blame] | 422 | #endif |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 423 | if (Py_TYPE(v)->tp_str == NULL) |
| 424 | return PyObject_Repr(v); |
Guido van Rossum | 4f288ab | 2001-05-01 16:53:37 +0000 | [diff] [blame] | 425 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 426 | /* It is possible for a type to have a tp_str representation that loops |
| 427 | infinitely. */ |
| 428 | if (Py_EnterRecursiveCall(" while getting the str of an object")) |
| 429 | return NULL; |
| 430 | res = (*Py_TYPE(v)->tp_str)(v); |
| 431 | Py_LeaveRecursiveCall(); |
| 432 | if (res == NULL) |
| 433 | return NULL; |
| 434 | type_ok = PyString_Check(res); |
Neil Schemenauer | cf52c07 | 2005-08-12 17:34:58 +0000 | [diff] [blame] | 435 | #ifdef Py_USING_UNICODE |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 436 | type_ok = type_ok || PyUnicode_Check(res); |
Neil Schemenauer | cf52c07 | 2005-08-12 17:34:58 +0000 | [diff] [blame] | 437 | #endif |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 438 | if (!type_ok) { |
| 439 | PyErr_Format(PyExc_TypeError, |
| 440 | "__str__ returned non-string (type %.200s)", |
| 441 | Py_TYPE(res)->tp_name); |
| 442 | Py_DECREF(res); |
| 443 | return NULL; |
| 444 | } |
| 445 | return res; |
Neil Schemenauer | cf52c07 | 2005-08-12 17:34:58 +0000 | [diff] [blame] | 446 | } |
| 447 | |
| 448 | PyObject * |
| 449 | PyObject_Str(PyObject *v) |
| 450 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 451 | PyObject *res = _PyObject_Str(v); |
| 452 | if (res == NULL) |
| 453 | return NULL; |
Martin v. Löwis | 339d0f7 | 2001-08-17 18:39:25 +0000 | [diff] [blame] | 454 | #ifdef Py_USING_UNICODE |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 455 | if (PyUnicode_Check(res)) { |
| 456 | PyObject* str; |
| 457 | str = PyUnicode_AsEncodedString(res, NULL, NULL); |
| 458 | Py_DECREF(res); |
| 459 | if (str) |
| 460 | res = str; |
| 461 | else |
| 462 | return NULL; |
| 463 | } |
Martin v. Löwis | 339d0f7 | 2001-08-17 18:39:25 +0000 | [diff] [blame] | 464 | #endif |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 465 | assert(PyString_Check(res)); |
| 466 | return res; |
Guido van Rossum | c600411 | 1993-11-05 10:22:19 +0000 | [diff] [blame] | 467 | } |
| 468 | |
Martin v. Löwis | 339d0f7 | 2001-08-17 18:39:25 +0000 | [diff] [blame] | 469 | #ifdef Py_USING_UNICODE |
Guido van Rossum | a3af41d | 2001-01-18 22:07:06 +0000 | [diff] [blame] | 470 | PyObject * |
| 471 | PyObject_Unicode(PyObject *v) |
| 472 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 473 | PyObject *res; |
| 474 | PyObject *func; |
| 475 | PyObject *str; |
| 476 | int unicode_method_found = 0; |
Benjamin Peterson | 6b3f8d3 | 2013-01-02 09:36:23 -0600 | [diff] [blame] | 477 | static PyObject *unicodestr = NULL; |
Tim Peters | 803526b | 2002-07-07 05:13:56 +0000 | [diff] [blame] | 478 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 479 | if (v == NULL) { |
| 480 | res = PyString_FromString("<NULL>"); |
| 481 | if (res == NULL) |
| 482 | return NULL; |
| 483 | str = PyUnicode_FromEncodedObject(res, NULL, "strict"); |
| 484 | Py_DECREF(res); |
| 485 | return str; |
| 486 | } else if (PyUnicode_CheckExact(v)) { |
| 487 | Py_INCREF(v); |
| 488 | return v; |
| 489 | } |
Nick Coghlan | 524b777 | 2008-07-08 14:08:04 +0000 | [diff] [blame] | 490 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 491 | if (PyInstance_Check(v)) { |
| 492 | /* We're an instance of a classic class */ |
| 493 | /* Try __unicode__ from the instance -- alas we have no type */ |
Benjamin Peterson | 6b3f8d3 | 2013-01-02 09:36:23 -0600 | [diff] [blame] | 494 | if (!unicodestr) { |
| 495 | unicodestr = PyString_InternFromString("__unicode__"); |
| 496 | if (!unicodestr) |
| 497 | return NULL; |
| 498 | } |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 499 | func = PyObject_GetAttr(v, unicodestr); |
| 500 | if (func != NULL) { |
| 501 | unicode_method_found = 1; |
| 502 | res = PyObject_CallFunctionObjArgs(func, NULL); |
| 503 | Py_DECREF(func); |
| 504 | } |
| 505 | else { |
| 506 | PyErr_Clear(); |
| 507 | } |
| 508 | } |
| 509 | else { |
| 510 | /* Not a classic class instance, try __unicode__. */ |
| 511 | func = _PyObject_LookupSpecial(v, "__unicode__", &unicodestr); |
| 512 | if (func != NULL) { |
| 513 | unicode_method_found = 1; |
| 514 | res = PyObject_CallFunctionObjArgs(func, NULL); |
| 515 | Py_DECREF(func); |
| 516 | } |
| 517 | else if (PyErr_Occurred()) |
| 518 | return NULL; |
| 519 | } |
Nick Coghlan | 524b777 | 2008-07-08 14:08:04 +0000 | [diff] [blame] | 520 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 521 | /* Didn't find __unicode__ */ |
| 522 | if (!unicode_method_found) { |
| 523 | if (PyUnicode_Check(v)) { |
| 524 | /* For a Unicode subtype that's didn't overwrite __unicode__, |
| 525 | return a true Unicode object with the same data. */ |
| 526 | return PyUnicode_FromUnicode(PyUnicode_AS_UNICODE(v), |
| 527 | PyUnicode_GET_SIZE(v)); |
| 528 | } |
| 529 | if (PyString_CheckExact(v)) { |
| 530 | Py_INCREF(v); |
| 531 | res = v; |
| 532 | } |
| 533 | else { |
| 534 | if (Py_TYPE(v)->tp_str != NULL) |
| 535 | res = (*Py_TYPE(v)->tp_str)(v); |
| 536 | else |
| 537 | res = PyObject_Repr(v); |
| 538 | } |
| 539 | } |
Nick Coghlan | 524b777 | 2008-07-08 14:08:04 +0000 | [diff] [blame] | 540 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 541 | if (res == NULL) |
| 542 | return NULL; |
| 543 | if (!PyUnicode_Check(res)) { |
| 544 | str = PyUnicode_FromEncodedObject(res, NULL, "strict"); |
| 545 | Py_DECREF(res); |
| 546 | res = str; |
| 547 | } |
| 548 | return res; |
Guido van Rossum | a3af41d | 2001-01-18 22:07:06 +0000 | [diff] [blame] | 549 | } |
Martin v. Löwis | 339d0f7 | 2001-08-17 18:39:25 +0000 | [diff] [blame] | 550 | #endif |
Guido van Rossum | a3af41d | 2001-01-18 22:07:06 +0000 | [diff] [blame] | 551 | |
| 552 | |
Guido van Rossum | a407300 | 2002-05-31 20:03:54 +0000 | [diff] [blame] | 553 | /* Helper to warn about deprecated tp_compare return values. Return: |
| 554 | -2 for an exception; |
| 555 | -1 if v < w; |
| 556 | 0 if v == w; |
| 557 | 1 if v > w. |
| 558 | (This function cannot return 2.) |
| 559 | */ |
| 560 | static int |
| 561 | adjust_tp_compare(int c) |
| 562 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 563 | if (PyErr_Occurred()) { |
| 564 | if (c != -1 && c != -2) { |
| 565 | PyObject *t, *v, *tb; |
| 566 | PyErr_Fetch(&t, &v, &tb); |
| 567 | if (PyErr_Warn(PyExc_RuntimeWarning, |
| 568 | "tp_compare didn't return -1 or -2 " |
| 569 | "for exception") < 0) { |
| 570 | Py_XDECREF(t); |
| 571 | Py_XDECREF(v); |
| 572 | Py_XDECREF(tb); |
| 573 | } |
| 574 | else |
| 575 | PyErr_Restore(t, v, tb); |
| 576 | } |
| 577 | return -2; |
| 578 | } |
| 579 | else if (c < -1 || c > 1) { |
| 580 | if (PyErr_Warn(PyExc_RuntimeWarning, |
| 581 | "tp_compare didn't return -1, 0 or 1") < 0) |
| 582 | return -2; |
| 583 | else |
| 584 | return c < -1 ? -1 : 1; |
| 585 | } |
| 586 | else { |
| 587 | assert(c >= -1 && c <= 1); |
| 588 | return c; |
| 589 | } |
Guido van Rossum | a407300 | 2002-05-31 20:03:54 +0000 | [diff] [blame] | 590 | } |
| 591 | |
| 592 | |
Guido van Rossum | d1f06b9 | 2001-01-24 22:14:43 +0000 | [diff] [blame] | 593 | /* Macro to get the tp_richcompare field of a type if defined */ |
| 594 | #define RICHCOMPARE(t) (PyType_HasFeature((t), Py_TPFLAGS_HAVE_RICHCOMPARE) \ |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 595 | ? (t)->tp_richcompare : NULL) |
Guido van Rossum | d1f06b9 | 2001-01-24 22:14:43 +0000 | [diff] [blame] | 596 | |
Guido van Rossum | e797ec1 | 2001-01-17 15:24:28 +0000 | [diff] [blame] | 597 | /* Map rich comparison operators to their swapped version, e.g. LT --> GT */ |
Brett Cannon | a5ca2e7 | 2004-09-25 01:37:24 +0000 | [diff] [blame] | 598 | 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] | 599 | |
Guido van Rossum | e797ec1 | 2001-01-17 15:24:28 +0000 | [diff] [blame] | 600 | /* Try a genuine rich comparison, returning an object. Return: |
| 601 | NULL for exception; |
| 602 | NotImplemented if this particular rich comparison is not implemented or |
| 603 | undefined; |
| 604 | some object not equal to NotImplemented if it is implemented |
| 605 | (this latter object may not be a Boolean). |
| 606 | */ |
| 607 | static PyObject * |
| 608 | try_rich_compare(PyObject *v, PyObject *w, int op) |
| 609 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 610 | richcmpfunc f; |
| 611 | PyObject *res; |
Guido van Rossum | e797ec1 | 2001-01-17 15:24:28 +0000 | [diff] [blame] | 612 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 613 | if (v->ob_type != w->ob_type && |
| 614 | PyType_IsSubtype(w->ob_type, v->ob_type) && |
| 615 | (f = RICHCOMPARE(w->ob_type)) != NULL) { |
| 616 | res = (*f)(w, v, _Py_SwappedOp[op]); |
| 617 | if (res != Py_NotImplemented) |
| 618 | return res; |
| 619 | Py_DECREF(res); |
| 620 | } |
| 621 | if ((f = RICHCOMPARE(v->ob_type)) != NULL) { |
| 622 | res = (*f)(v, w, op); |
| 623 | if (res != Py_NotImplemented) |
| 624 | return res; |
| 625 | Py_DECREF(res); |
| 626 | } |
| 627 | if ((f = RICHCOMPARE(w->ob_type)) != NULL) { |
| 628 | return (*f)(w, v, _Py_SwappedOp[op]); |
| 629 | } |
| 630 | res = Py_NotImplemented; |
| 631 | Py_INCREF(res); |
| 632 | return res; |
Guido van Rossum | e797ec1 | 2001-01-17 15:24:28 +0000 | [diff] [blame] | 633 | } |
| 634 | |
| 635 | /* Try a genuine rich comparison, returning an int. Return: |
| 636 | -1 for exception (including the case where try_rich_compare() returns an |
| 637 | object that's not a Boolean); |
Tim Peters | c99213f | 2001-11-04 05:57:16 +0000 | [diff] [blame] | 638 | 0 if the outcome is false; |
| 639 | 1 if the outcome is true; |
| 640 | 2 if this particular rich comparison is not implemented or undefined. |
Guido van Rossum | e797ec1 | 2001-01-17 15:24:28 +0000 | [diff] [blame] | 641 | */ |
Neil Schemenauer | 5ed85ec | 2001-01-04 01:48:10 +0000 | [diff] [blame] | 642 | static int |
Guido van Rossum | e797ec1 | 2001-01-17 15:24:28 +0000 | [diff] [blame] | 643 | try_rich_compare_bool(PyObject *v, PyObject *w, int op) |
| 644 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 645 | PyObject *res; |
| 646 | int ok; |
Guido van Rossum | e797ec1 | 2001-01-17 15:24:28 +0000 | [diff] [blame] | 647 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 648 | if (RICHCOMPARE(v->ob_type) == NULL && RICHCOMPARE(w->ob_type) == NULL) |
| 649 | return 2; /* Shortcut, avoid INCREF+DECREF */ |
| 650 | res = try_rich_compare(v, w, op); |
| 651 | if (res == NULL) |
| 652 | return -1; |
| 653 | if (res == Py_NotImplemented) { |
| 654 | Py_DECREF(res); |
| 655 | return 2; |
| 656 | } |
| 657 | ok = PyObject_IsTrue(res); |
| 658 | Py_DECREF(res); |
| 659 | return ok; |
Guido van Rossum | e797ec1 | 2001-01-17 15:24:28 +0000 | [diff] [blame] | 660 | } |
| 661 | |
| 662 | /* Try rich comparisons to determine a 3-way comparison. Return: |
| 663 | -2 for an exception; |
Tim Peters | c99213f | 2001-11-04 05:57:16 +0000 | [diff] [blame] | 664 | -1 if v < w; |
| 665 | 0 if v == w; |
| 666 | 1 if v > w; |
| 667 | 2 if this particular rich comparison is not implemented or undefined. |
Guido van Rossum | e797ec1 | 2001-01-17 15:24:28 +0000 | [diff] [blame] | 668 | */ |
| 669 | static int |
| 670 | try_rich_to_3way_compare(PyObject *v, PyObject *w) |
| 671 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 672 | static struct { int op; int outcome; } tries[3] = { |
| 673 | /* Try this operator, and if it is true, use this outcome: */ |
| 674 | {Py_EQ, 0}, |
| 675 | {Py_LT, -1}, |
| 676 | {Py_GT, 1}, |
| 677 | }; |
| 678 | int i; |
Guido van Rossum | 2ffbf6b | 2001-01-17 21:27:02 +0000 | [diff] [blame] | 679 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 680 | if (RICHCOMPARE(v->ob_type) == NULL && RICHCOMPARE(w->ob_type) == NULL) |
| 681 | return 2; /* Shortcut */ |
Guido van Rossum | 2ffbf6b | 2001-01-17 21:27:02 +0000 | [diff] [blame] | 682 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 683 | for (i = 0; i < 3; i++) { |
| 684 | switch (try_rich_compare_bool(v, w, tries[i].op)) { |
| 685 | case -1: |
| 686 | return -2; |
| 687 | case 1: |
| 688 | return tries[i].outcome; |
| 689 | } |
| 690 | } |
Guido van Rossum | 2ffbf6b | 2001-01-17 21:27:02 +0000 | [diff] [blame] | 691 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 692 | return 2; |
Guido van Rossum | e797ec1 | 2001-01-17 15:24:28 +0000 | [diff] [blame] | 693 | } |
| 694 | |
| 695 | /* Try a 3-way comparison, returning an int. Return: |
| 696 | -2 for an exception; |
Tim Peters | c99213f | 2001-11-04 05:57:16 +0000 | [diff] [blame] | 697 | -1 if v < w; |
| 698 | 0 if v == w; |
| 699 | 1 if v > w; |
| 700 | 2 if this particular 3-way comparison is not implemented or undefined. |
Guido van Rossum | e797ec1 | 2001-01-17 15:24:28 +0000 | [diff] [blame] | 701 | */ |
| 702 | static int |
| 703 | try_3way_compare(PyObject *v, PyObject *w) |
Neil Schemenauer | 5ed85ec | 2001-01-04 01:48:10 +0000 | [diff] [blame] | 704 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 705 | int c; |
| 706 | cmpfunc f; |
Guido van Rossum | e797ec1 | 2001-01-17 15:24:28 +0000 | [diff] [blame] | 707 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 708 | /* Comparisons involving instances are given to instance_compare, |
| 709 | which has the same return conventions as this function. */ |
Guido van Rossum | e797ec1 | 2001-01-17 15:24:28 +0000 | [diff] [blame] | 710 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 711 | f = v->ob_type->tp_compare; |
| 712 | if (PyInstance_Check(v)) |
| 713 | return (*f)(v, w); |
| 714 | if (PyInstance_Check(w)) |
| 715 | return (*w->ob_type->tp_compare)(v, w); |
Guido van Rossum | e797ec1 | 2001-01-17 15:24:28 +0000 | [diff] [blame] | 716 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 717 | /* If both have the same (non-NULL) tp_compare, use it. */ |
| 718 | if (f != NULL && f == w->ob_type->tp_compare) { |
| 719 | c = (*f)(v, w); |
| 720 | return adjust_tp_compare(c); |
| 721 | } |
Guido van Rossum | ab3b034 | 2001-09-18 20:38:53 +0000 | [diff] [blame] | 722 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 723 | /* If either tp_compare is _PyObject_SlotCompare, that's safe. */ |
| 724 | if (f == _PyObject_SlotCompare || |
| 725 | w->ob_type->tp_compare == _PyObject_SlotCompare) |
| 726 | return _PyObject_SlotCompare(v, w); |
Guido van Rossum | ab3b034 | 2001-09-18 20:38:53 +0000 | [diff] [blame] | 727 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 728 | /* If we're here, v and w, |
| 729 | a) are not instances; |
| 730 | b) have different types or a type without tp_compare; and |
| 731 | c) don't have a user-defined tp_compare. |
| 732 | tp_compare implementations in C assume that both arguments |
| 733 | have their type, so we give up if the coercion fails or if |
| 734 | it yields types which are still incompatible (which can |
| 735 | happen with a user-defined nb_coerce). |
| 736 | */ |
| 737 | c = PyNumber_CoerceEx(&v, &w); |
| 738 | if (c < 0) |
| 739 | return -2; |
| 740 | if (c > 0) |
| 741 | return 2; |
| 742 | f = v->ob_type->tp_compare; |
| 743 | if (f != NULL && f == w->ob_type->tp_compare) { |
| 744 | c = (*f)(v, w); |
| 745 | Py_DECREF(v); |
| 746 | Py_DECREF(w); |
| 747 | return adjust_tp_compare(c); |
| 748 | } |
Guido van Rossum | e797ec1 | 2001-01-17 15:24:28 +0000 | [diff] [blame] | 749 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 750 | /* No comparison defined */ |
| 751 | Py_DECREF(v); |
| 752 | Py_DECREF(w); |
| 753 | return 2; |
Neil Schemenauer | 5ed85ec | 2001-01-04 01:48:10 +0000 | [diff] [blame] | 754 | } |
| 755 | |
Guido van Rossum | e797ec1 | 2001-01-17 15:24:28 +0000 | [diff] [blame] | 756 | /* Final fallback 3-way comparison, returning an int. Return: |
| 757 | -2 if an error occurred; |
Tim Peters | c99213f | 2001-11-04 05:57:16 +0000 | [diff] [blame] | 758 | -1 if v < w; |
| 759 | 0 if v == w; |
| 760 | 1 if v > w. |
Guido van Rossum | e797ec1 | 2001-01-17 15:24:28 +0000 | [diff] [blame] | 761 | */ |
| 762 | static int |
| 763 | default_3way_compare(PyObject *v, PyObject *w) |
| 764 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 765 | int c; |
| 766 | const char *vname, *wname; |
Guido van Rossum | e797ec1 | 2001-01-17 15:24:28 +0000 | [diff] [blame] | 767 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 768 | if (v->ob_type == w->ob_type) { |
| 769 | /* When comparing these pointers, they must be cast to |
| 770 | * integer types (i.e. Py_uintptr_t, our spelling of C9X's |
| 771 | * uintptr_t). ANSI specifies that pointer compares other |
| 772 | * than == and != to non-related structures are undefined. |
| 773 | */ |
| 774 | Py_uintptr_t vv = (Py_uintptr_t)v; |
| 775 | Py_uintptr_t ww = (Py_uintptr_t)w; |
| 776 | return (vv < ww) ? -1 : (vv > ww) ? 1 : 0; |
| 777 | } |
Guido van Rossum | e797ec1 | 2001-01-17 15:24:28 +0000 | [diff] [blame] | 778 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 779 | /* None is smaller than anything */ |
| 780 | if (v == Py_None) |
| 781 | return -1; |
| 782 | if (w == Py_None) |
| 783 | return 1; |
Guido van Rossum | 0871e93 | 2001-01-22 19:28:09 +0000 | [diff] [blame] | 784 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 785 | /* different type: compare type names; numbers are smaller */ |
| 786 | if (PyNumber_Check(v)) |
| 787 | vname = ""; |
| 788 | else |
| 789 | vname = v->ob_type->tp_name; |
| 790 | if (PyNumber_Check(w)) |
| 791 | wname = ""; |
| 792 | else |
| 793 | wname = w->ob_type->tp_name; |
| 794 | c = strcmp(vname, wname); |
| 795 | if (c < 0) |
| 796 | return -1; |
| 797 | if (c > 0) |
| 798 | return 1; |
| 799 | /* Same type name, or (more likely) incomparable numeric types */ |
| 800 | return ((Py_uintptr_t)(v->ob_type) < ( |
| 801 | Py_uintptr_t)(w->ob_type)) ? -1 : 1; |
Guido van Rossum | e797ec1 | 2001-01-17 15:24:28 +0000 | [diff] [blame] | 802 | } |
| 803 | |
Tim Peters | 6d60b2e | 2001-05-07 20:53:51 +0000 | [diff] [blame] | 804 | /* Do a 3-way comparison, by hook or by crook. Return: |
Guido van Rossum | a407300 | 2002-05-31 20:03:54 +0000 | [diff] [blame] | 805 | -2 for an exception (but see below); |
Tim Peters | c99213f | 2001-11-04 05:57:16 +0000 | [diff] [blame] | 806 | -1 if v < w; |
Tim Peters | 6d60b2e | 2001-05-07 20:53:51 +0000 | [diff] [blame] | 807 | 0 if v == w; |
Tim Peters | c99213f | 2001-11-04 05:57:16 +0000 | [diff] [blame] | 808 | 1 if v > w; |
Guido van Rossum | a407300 | 2002-05-31 20:03:54 +0000 | [diff] [blame] | 809 | BUT: if the object implements a tp_compare function, it returns |
Martin v. Löwis | 0163d6d | 2001-06-09 07:34:05 +0000 | [diff] [blame] | 810 | whatever this function returns (whether with an exception or not). |
Tim Peters | 6d60b2e | 2001-05-07 20:53:51 +0000 | [diff] [blame] | 811 | */ |
Neil Schemenauer | 5ed85ec | 2001-01-04 01:48:10 +0000 | [diff] [blame] | 812 | static int |
Fred Drake | 100814d | 2000-07-09 15:48:49 +0000 | [diff] [blame] | 813 | do_cmp(PyObject *v, PyObject *w) |
Guido van Rossum | 2056684 | 1995-01-12 11:26:10 +0000 | [diff] [blame] | 814 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 815 | int c; |
| 816 | cmpfunc f; |
Neil Schemenauer | 5ed85ec | 2001-01-04 01:48:10 +0000 | [diff] [blame] | 817 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 818 | if (v->ob_type == w->ob_type |
| 819 | && (f = v->ob_type->tp_compare) != NULL) { |
| 820 | c = (*f)(v, w); |
| 821 | if (PyInstance_Check(v)) { |
| 822 | /* Instance tp_compare has a different signature. |
| 823 | But if it returns undefined we fall through. */ |
| 824 | if (c != 2) |
| 825 | return c; |
| 826 | /* Else fall through to try_rich_to_3way_compare() */ |
| 827 | } |
| 828 | else |
| 829 | return adjust_tp_compare(c); |
| 830 | } |
| 831 | /* We only get here if one of the following is true: |
| 832 | a) v and w have different types |
| 833 | b) v and w have the same type, which doesn't have tp_compare |
| 834 | c) v and w are instances, and either __cmp__ is not defined or |
| 835 | __cmp__ returns NotImplemented |
| 836 | */ |
| 837 | c = try_rich_to_3way_compare(v, w); |
| 838 | if (c < 2) |
| 839 | return c; |
| 840 | c = try_3way_compare(v, w); |
| 841 | if (c < 2) |
| 842 | return c; |
| 843 | return default_3way_compare(v, w); |
Guido van Rossum | 2056684 | 1995-01-12 11:26:10 +0000 | [diff] [blame] | 844 | } |
| 845 | |
Tim Peters | c99213f | 2001-11-04 05:57:16 +0000 | [diff] [blame] | 846 | /* Compare v to w. Return |
| 847 | -1 if v < w or exception (PyErr_Occurred() true in latter case). |
| 848 | 0 if v == w. |
| 849 | 1 if v > w. |
| 850 | XXX The docs (C API manual) say the return value is undefined in case |
| 851 | XXX of error. |
| 852 | */ |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 853 | int |
Fred Drake | 100814d | 2000-07-09 15:48:49 +0000 | [diff] [blame] | 854 | PyObject_Compare(PyObject *v, PyObject *w) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 855 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 856 | int result; |
Jeremy Hylton | 4a3dd2d | 2000-04-14 19:13:24 +0000 | [diff] [blame] | 857 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 858 | if (v == NULL || w == NULL) { |
| 859 | PyErr_BadInternalCall(); |
| 860 | return -1; |
| 861 | } |
| 862 | if (v == w) |
| 863 | return 0; |
| 864 | if (Py_EnterRecursiveCall(" in cmp")) |
| 865 | return -1; |
| 866 | result = do_cmp(v, w); |
| 867 | Py_LeaveRecursiveCall(); |
| 868 | return result < 0 ? -1 : result; |
Guido van Rossum | e797ec1 | 2001-01-17 15:24:28 +0000 | [diff] [blame] | 869 | } |
| 870 | |
Tim Peters | c99213f | 2001-11-04 05:57:16 +0000 | [diff] [blame] | 871 | /* Return (new reference to) Py_True or Py_False. */ |
Guido van Rossum | e797ec1 | 2001-01-17 15:24:28 +0000 | [diff] [blame] | 872 | static PyObject * |
Martin v. Löwis | 0163d6d | 2001-06-09 07:34:05 +0000 | [diff] [blame] | 873 | convert_3way_to_object(int op, int c) |
Guido van Rossum | e797ec1 | 2001-01-17 15:24:28 +0000 | [diff] [blame] | 874 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 875 | PyObject *result; |
| 876 | switch (op) { |
| 877 | case Py_LT: c = c < 0; break; |
| 878 | case Py_LE: c = c <= 0; break; |
| 879 | case Py_EQ: c = c == 0; break; |
| 880 | case Py_NE: c = c != 0; break; |
| 881 | case Py_GT: c = c > 0; break; |
| 882 | case Py_GE: c = c >= 0; break; |
| 883 | } |
| 884 | result = c ? Py_True : Py_False; |
| 885 | Py_INCREF(result); |
| 886 | return result; |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 887 | } |
Tim Peters | 803526b | 2002-07-07 05:13:56 +0000 | [diff] [blame] | 888 | |
Tim Peters | c99213f | 2001-11-04 05:57:16 +0000 | [diff] [blame] | 889 | /* We want a rich comparison but don't have one. Try a 3-way cmp instead. |
| 890 | Return |
| 891 | NULL if error |
| 892 | Py_True if v op w |
| 893 | Py_False if not (v op w) |
| 894 | */ |
Martin v. Löwis | 0163d6d | 2001-06-09 07:34:05 +0000 | [diff] [blame] | 895 | static PyObject * |
| 896 | try_3way_to_rich_compare(PyObject *v, PyObject *w, int op) |
| 897 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 898 | int c; |
Martin v. Löwis | 0163d6d | 2001-06-09 07:34:05 +0000 | [diff] [blame] | 899 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 900 | c = try_3way_compare(v, w); |
| 901 | if (c >= 2) { |
Steven Bethard | ae42f33 | 2008-03-18 17:26:10 +0000 | [diff] [blame] | 902 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 903 | /* Py3K warning if types are not equal and comparison isn't == or != */ |
| 904 | if (Py_Py3kWarningFlag && |
| 905 | v->ob_type != w->ob_type && op != Py_EQ && op != Py_NE && |
| 906 | PyErr_WarnEx(PyExc_DeprecationWarning, |
| 907 | "comparing unequal types not supported " |
| 908 | "in 3.x", 1) < 0) { |
| 909 | return NULL; |
| 910 | } |
Steven Bethard | ae42f33 | 2008-03-18 17:26:10 +0000 | [diff] [blame] | 911 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 912 | c = default_3way_compare(v, w); |
| 913 | } |
| 914 | if (c <= -2) |
| 915 | return NULL; |
| 916 | return convert_3way_to_object(op, c); |
Martin v. Löwis | 0163d6d | 2001-06-09 07:34:05 +0000 | [diff] [blame] | 917 | } |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 918 | |
Tim Peters | c99213f | 2001-11-04 05:57:16 +0000 | [diff] [blame] | 919 | /* Do rich comparison on v and w. Return |
| 920 | NULL if error |
| 921 | Else a new reference to an object other than Py_NotImplemented, usually(?): |
| 922 | Py_True if v op w |
| 923 | Py_False if not (v op w) |
| 924 | */ |
Neil Schemenauer | d38855c | 2001-01-21 16:25:18 +0000 | [diff] [blame] | 925 | static PyObject * |
Guido van Rossum | e797ec1 | 2001-01-17 15:24:28 +0000 | [diff] [blame] | 926 | do_richcmp(PyObject *v, PyObject *w, int op) |
| 927 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 928 | PyObject *res; |
Guido van Rossum | e797ec1 | 2001-01-17 15:24:28 +0000 | [diff] [blame] | 929 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 930 | res = try_rich_compare(v, w, op); |
| 931 | if (res != Py_NotImplemented) |
| 932 | return res; |
| 933 | Py_DECREF(res); |
Guido van Rossum | e797ec1 | 2001-01-17 15:24:28 +0000 | [diff] [blame] | 934 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 935 | return try_3way_to_rich_compare(v, w, op); |
Guido van Rossum | e797ec1 | 2001-01-17 15:24:28 +0000 | [diff] [blame] | 936 | } |
| 937 | |
Tim Peters | c99213f | 2001-11-04 05:57:16 +0000 | [diff] [blame] | 938 | /* Return: |
| 939 | NULL for exception; |
Tim Peters | c99213f | 2001-11-04 05:57:16 +0000 | [diff] [blame] | 940 | some object not equal to NotImplemented if it is implemented |
| 941 | (this latter object may not be a Boolean). |
| 942 | */ |
Guido van Rossum | e797ec1 | 2001-01-17 15:24:28 +0000 | [diff] [blame] | 943 | PyObject * |
| 944 | PyObject_RichCompare(PyObject *v, PyObject *w, int op) |
| 945 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 946 | PyObject *res; |
Guido van Rossum | e797ec1 | 2001-01-17 15:24:28 +0000 | [diff] [blame] | 947 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 948 | assert(Py_LT <= op && op <= Py_GE); |
| 949 | if (Py_EnterRecursiveCall(" in cmp")) |
| 950 | return NULL; |
Guido van Rossum | e797ec1 | 2001-01-17 15:24:28 +0000 | [diff] [blame] | 951 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 952 | /* If the types are equal, and not old-style instances, try to |
| 953 | get out cheap (don't bother with coercions etc.). */ |
| 954 | if (v->ob_type == w->ob_type && !PyInstance_Check(v)) { |
| 955 | cmpfunc fcmp; |
| 956 | richcmpfunc frich = RICHCOMPARE(v->ob_type); |
| 957 | /* If the type has richcmp, try it first. try_rich_compare |
| 958 | tries it two-sided, which is not needed since we've a |
| 959 | single type only. */ |
| 960 | if (frich != NULL) { |
| 961 | res = (*frich)(v, w, op); |
| 962 | if (res != Py_NotImplemented) |
| 963 | goto Done; |
| 964 | Py_DECREF(res); |
| 965 | } |
| 966 | /* No richcmp, or this particular richmp not implemented. |
| 967 | Try 3-way cmp. */ |
| 968 | fcmp = v->ob_type->tp_compare; |
| 969 | if (fcmp != NULL) { |
| 970 | int c = (*fcmp)(v, w); |
| 971 | c = adjust_tp_compare(c); |
| 972 | if (c == -2) { |
| 973 | res = NULL; |
| 974 | goto Done; |
| 975 | } |
| 976 | res = convert_3way_to_object(op, c); |
| 977 | goto Done; |
| 978 | } |
| 979 | } |
Tim Peters | 67754e9 | 2001-11-04 07:29:31 +0000 | [diff] [blame] | 980 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 981 | /* Fast path not taken, or couldn't deliver a useful result. */ |
| 982 | res = do_richcmp(v, w, op); |
Tim Peters | 67754e9 | 2001-11-04 07:29:31 +0000 | [diff] [blame] | 983 | Done: |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 984 | Py_LeaveRecursiveCall(); |
| 985 | return res; |
Guido van Rossum | e797ec1 | 2001-01-17 15:24:28 +0000 | [diff] [blame] | 986 | } |
| 987 | |
Tim Peters | de9725f | 2001-05-05 10:06:17 +0000 | [diff] [blame] | 988 | /* Return -1 if error; 1 if v op w; 0 if not (v op w). */ |
Guido van Rossum | e797ec1 | 2001-01-17 15:24:28 +0000 | [diff] [blame] | 989 | int |
| 990 | PyObject_RichCompareBool(PyObject *v, PyObject *w, int op) |
| 991 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 992 | PyObject *res; |
| 993 | int ok; |
Guido van Rossum | e797ec1 | 2001-01-17 15:24:28 +0000 | [diff] [blame] | 994 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 995 | /* Quick result when objects are the same. |
| 996 | Guarantees that identity implies equality. */ |
| 997 | if (v == w) { |
| 998 | if (op == Py_EQ) |
| 999 | return 1; |
| 1000 | else if (op == Py_NE) |
| 1001 | return 0; |
| 1002 | } |
Raymond Hettinger | 93d4481 | 2004-03-21 17:01:44 +0000 | [diff] [blame] | 1003 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1004 | res = PyObject_RichCompare(v, w, op); |
| 1005 | if (res == NULL) |
| 1006 | return -1; |
| 1007 | if (PyBool_Check(res)) |
| 1008 | ok = (res == Py_True); |
| 1009 | else |
| 1010 | ok = PyObject_IsTrue(res); |
| 1011 | Py_DECREF(res); |
| 1012 | return ok; |
Guido van Rossum | e797ec1 | 2001-01-17 15:24:28 +0000 | [diff] [blame] | 1013 | } |
Fred Drake | 13634cf | 2000-06-29 19:17:04 +0000 | [diff] [blame] | 1014 | |
| 1015 | /* Set of hash utility functions to help maintaining the invariant that |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1016 | if a==b then hash(a)==hash(b) |
Fred Drake | 13634cf | 2000-06-29 19:17:04 +0000 | [diff] [blame] | 1017 | |
| 1018 | All the utility functions (_Py_Hash*()) return "-1" to signify an error. |
| 1019 | */ |
| 1020 | |
| 1021 | long |
Fred Drake | 100814d | 2000-07-09 15:48:49 +0000 | [diff] [blame] | 1022 | _Py_HashDouble(double v) |
Fred Drake | 13634cf | 2000-06-29 19:17:04 +0000 | [diff] [blame] | 1023 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1024 | double intpart, fractpart; |
| 1025 | int expo; |
| 1026 | long hipart; |
| 1027 | long x; /* the final hash value */ |
| 1028 | /* This is designed so that Python numbers of different types |
| 1029 | * that compare equal hash to the same value; otherwise comparisons |
| 1030 | * of mapping keys will turn out weird. |
| 1031 | */ |
Tim Peters | 39dce29 | 2000-08-15 03:34:48 +0000 | [diff] [blame] | 1032 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1033 | if (!Py_IS_FINITE(v)) { |
| 1034 | if (Py_IS_INFINITY(v)) |
| 1035 | return v < 0 ? -271828 : 314159; |
| 1036 | else |
| 1037 | return 0; |
| 1038 | } |
| 1039 | fractpart = modf(v, &intpart); |
| 1040 | if (fractpart == 0.0) { |
| 1041 | /* This must return the same hash as an equal int or long. */ |
| 1042 | if (intpart > LONG_MAX/2 || -intpart > LONG_MAX/2) { |
| 1043 | /* Convert to long and use its hash. */ |
| 1044 | PyObject *plong; /* converted to Python long */ |
| 1045 | plong = PyLong_FromDouble(v); |
| 1046 | if (plong == NULL) |
| 1047 | return -1; |
| 1048 | x = PyObject_Hash(plong); |
| 1049 | Py_DECREF(plong); |
| 1050 | return x; |
| 1051 | } |
| 1052 | /* Fits in a C long == a Python int, so is its own hash. */ |
| 1053 | x = (long)intpart; |
| 1054 | if (x == -1) |
| 1055 | x = -2; |
| 1056 | return x; |
| 1057 | } |
| 1058 | /* The fractional part is non-zero, so we don't have to worry about |
| 1059 | * making this match the hash of some other type. |
| 1060 | * Use frexp to get at the bits in the double. |
| 1061 | * Since the VAX D double format has 56 mantissa bits, which is the |
| 1062 | * most of any double format in use, each of these parts may have as |
| 1063 | * many as (but no more than) 56 significant bits. |
| 1064 | * So, assuming sizeof(long) >= 4, each part can be broken into two |
| 1065 | * longs; frexp and multiplication are used to do that. |
| 1066 | * Also, since the Cray double format has 15 exponent bits, which is |
| 1067 | * the most of any double format in use, shifting the exponent field |
| 1068 | * left by 15 won't overflow a long (again assuming sizeof(long) >= 4). |
| 1069 | */ |
| 1070 | v = frexp(v, &expo); |
| 1071 | v *= 2147483648.0; /* 2**31 */ |
| 1072 | hipart = (long)v; /* take the top 32 bits */ |
| 1073 | v = (v - (double)hipart) * 2147483648.0; /* get the next 32 bits */ |
| 1074 | x = hipart + (long)v + (expo << 15); |
| 1075 | if (x == -1) |
| 1076 | x = -2; |
| 1077 | return x; |
Fred Drake | 13634cf | 2000-06-29 19:17:04 +0000 | [diff] [blame] | 1078 | } |
| 1079 | |
| 1080 | long |
Fred Drake | 100814d | 2000-07-09 15:48:49 +0000 | [diff] [blame] | 1081 | _Py_HashPointer(void *p) |
Fred Drake | 13634cf | 2000-06-29 19:17:04 +0000 | [diff] [blame] | 1082 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1083 | long x; |
| 1084 | size_t y = (size_t)p; |
| 1085 | /* bottom 3 or 4 bits are likely to be 0; rotate y by 4 to avoid |
| 1086 | excessive hash collisions for dicts and sets */ |
| 1087 | y = (y >> 4) | (y << (8 * SIZEOF_VOID_P - 4)); |
| 1088 | x = (long)y; |
| 1089 | if (x == -1) |
| 1090 | x = -2; |
| 1091 | return x; |
Fred Drake | 13634cf | 2000-06-29 19:17:04 +0000 | [diff] [blame] | 1092 | } |
| 1093 | |
Nick Coghlan | 53663a6 | 2008-07-15 14:27:37 +0000 | [diff] [blame] | 1094 | long |
| 1095 | PyObject_HashNotImplemented(PyObject *self) |
| 1096 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1097 | PyErr_Format(PyExc_TypeError, "unhashable type: '%.200s'", |
| 1098 | self->ob_type->tp_name); |
| 1099 | return -1; |
Nick Coghlan | 53663a6 | 2008-07-15 14:27:37 +0000 | [diff] [blame] | 1100 | } |
Fred Drake | 13634cf | 2000-06-29 19:17:04 +0000 | [diff] [blame] | 1101 | |
Barry Warsaw | 1e13eb0 | 2012-02-20 20:42:21 -0500 | [diff] [blame] | 1102 | _Py_HashSecret_t _Py_HashSecret; |
| 1103 | |
Guido van Rossum | 9bfef44 | 1993-03-29 10:43:31 +0000 | [diff] [blame] | 1104 | long |
Fred Drake | 100814d | 2000-07-09 15:48:49 +0000 | [diff] [blame] | 1105 | PyObject_Hash(PyObject *v) |
Guido van Rossum | 9bfef44 | 1993-03-29 10:43:31 +0000 | [diff] [blame] | 1106 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1107 | PyTypeObject *tp = v->ob_type; |
| 1108 | if (tp->tp_hash != NULL) |
| 1109 | return (*tp->tp_hash)(v); |
| 1110 | /* To keep to the general practice that inheriting |
| 1111 | * solely from object in C code should work without |
| 1112 | * an explicit call to PyType_Ready, we implicitly call |
| 1113 | * PyType_Ready here and then check the tp_hash slot again |
| 1114 | */ |
| 1115 | if (tp->tp_dict == NULL) { |
| 1116 | if (PyType_Ready(tp) < 0) |
| 1117 | return -1; |
| 1118 | if (tp->tp_hash != NULL) |
| 1119 | return (*tp->tp_hash)(v); |
| 1120 | } |
| 1121 | if (tp->tp_compare == NULL && RICHCOMPARE(tp) == NULL) { |
| 1122 | return _Py_HashPointer(v); /* Use address as hash value */ |
| 1123 | } |
| 1124 | /* If there's a cmp but no hash defined, the object can't be hashed */ |
| 1125 | return PyObject_HashNotImplemented(v); |
Guido van Rossum | 9bfef44 | 1993-03-29 10:43:31 +0000 | [diff] [blame] | 1126 | } |
| 1127 | |
Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 1128 | PyObject * |
Jeremy Hylton | af68c87 | 2005-12-10 18:50:16 +0000 | [diff] [blame] | 1129 | PyObject_GetAttrString(PyObject *v, const char *name) |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 1130 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1131 | PyObject *w, *res; |
Guido van Rossum | d8eb1b3 | 1996-08-09 20:52:03 +0000 | [diff] [blame] | 1132 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1133 | if (Py_TYPE(v)->tp_getattr != NULL) |
| 1134 | return (*Py_TYPE(v)->tp_getattr)(v, (char*)name); |
| 1135 | w = PyString_InternFromString(name); |
| 1136 | if (w == NULL) |
| 1137 | return NULL; |
| 1138 | res = PyObject_GetAttr(v, w); |
| 1139 | Py_XDECREF(w); |
| 1140 | return res; |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 1141 | } |
| 1142 | |
| 1143 | int |
Jeremy Hylton | af68c87 | 2005-12-10 18:50:16 +0000 | [diff] [blame] | 1144 | PyObject_HasAttrString(PyObject *v, const char *name) |
Guido van Rossum | ed18fdc | 1993-07-11 19:55:34 +0000 | [diff] [blame] | 1145 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1146 | PyObject *res = PyObject_GetAttrString(v, name); |
| 1147 | if (res != NULL) { |
| 1148 | Py_DECREF(res); |
| 1149 | return 1; |
| 1150 | } |
| 1151 | PyErr_Clear(); |
| 1152 | return 0; |
Guido van Rossum | ed18fdc | 1993-07-11 19:55:34 +0000 | [diff] [blame] | 1153 | } |
| 1154 | |
| 1155 | int |
Jeremy Hylton | af68c87 | 2005-12-10 18:50:16 +0000 | [diff] [blame] | 1156 | PyObject_SetAttrString(PyObject *v, const char *name, PyObject *w) |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 1157 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1158 | PyObject *s; |
| 1159 | int res; |
Guido van Rossum | d8eb1b3 | 1996-08-09 20:52:03 +0000 | [diff] [blame] | 1160 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1161 | if (Py_TYPE(v)->tp_setattr != NULL) |
| 1162 | return (*Py_TYPE(v)->tp_setattr)(v, (char*)name, w); |
| 1163 | s = PyString_InternFromString(name); |
| 1164 | if (s == NULL) |
| 1165 | return -1; |
| 1166 | res = PyObject_SetAttr(v, s, w); |
| 1167 | Py_XDECREF(s); |
| 1168 | return res; |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 1169 | } |
| 1170 | |
Guido van Rossum | 98ff96a | 1997-05-20 18:34:44 +0000 | [diff] [blame] | 1171 | PyObject * |
Fred Drake | 100814d | 2000-07-09 15:48:49 +0000 | [diff] [blame] | 1172 | PyObject_GetAttr(PyObject *v, PyObject *name) |
Guido van Rossum | 98ff96a | 1997-05-20 18:34:44 +0000 | [diff] [blame] | 1173 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1174 | PyTypeObject *tp = Py_TYPE(v); |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 1175 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1176 | if (!PyString_Check(name)) { |
Martin v. Löwis | 0c160a0 | 2002-03-15 13:40:30 +0000 | [diff] [blame] | 1177 | #ifdef Py_USING_UNICODE |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1178 | /* The Unicode to string conversion is done here because the |
| 1179 | existing tp_getattro slots expect a string object as name |
| 1180 | and we wouldn't want to break those. */ |
| 1181 | if (PyUnicode_Check(name)) { |
| 1182 | name = _PyUnicode_AsDefaultEncodedString(name, NULL); |
| 1183 | if (name == NULL) |
| 1184 | return NULL; |
| 1185 | } |
| 1186 | else |
Martin v. Löwis | 0c160a0 | 2002-03-15 13:40:30 +0000 | [diff] [blame] | 1187 | #endif |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1188 | { |
| 1189 | PyErr_Format(PyExc_TypeError, |
| 1190 | "attribute name must be string, not '%.200s'", |
| 1191 | Py_TYPE(name)->tp_name); |
| 1192 | return NULL; |
| 1193 | } |
| 1194 | } |
| 1195 | if (tp->tp_getattro != NULL) |
| 1196 | return (*tp->tp_getattro)(v, name); |
| 1197 | if (tp->tp_getattr != NULL) |
| 1198 | return (*tp->tp_getattr)(v, PyString_AS_STRING(name)); |
| 1199 | PyErr_Format(PyExc_AttributeError, |
| 1200 | "'%.50s' object has no attribute '%.400s'", |
| 1201 | tp->tp_name, PyString_AS_STRING(name)); |
| 1202 | return NULL; |
Guido van Rossum | 98ff96a | 1997-05-20 18:34:44 +0000 | [diff] [blame] | 1203 | } |
| 1204 | |
| 1205 | int |
Fred Drake | 100814d | 2000-07-09 15:48:49 +0000 | [diff] [blame] | 1206 | PyObject_HasAttr(PyObject *v, PyObject *name) |
Guido van Rossum | 98ff96a | 1997-05-20 18:34:44 +0000 | [diff] [blame] | 1207 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1208 | PyObject *res = PyObject_GetAttr(v, name); |
| 1209 | if (res != NULL) { |
| 1210 | Py_DECREF(res); |
| 1211 | return 1; |
| 1212 | } |
| 1213 | PyErr_Clear(); |
| 1214 | return 0; |
Guido van Rossum | 98ff96a | 1997-05-20 18:34:44 +0000 | [diff] [blame] | 1215 | } |
| 1216 | |
| 1217 | int |
Fred Drake | 100814d | 2000-07-09 15:48:49 +0000 | [diff] [blame] | 1218 | PyObject_SetAttr(PyObject *v, PyObject *name, PyObject *value) |
Guido van Rossum | 98ff96a | 1997-05-20 18:34:44 +0000 | [diff] [blame] | 1219 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1220 | PyTypeObject *tp = Py_TYPE(v); |
| 1221 | int err; |
Marc-André Lemburg | e44e507 | 2000-09-18 16:20:57 +0000 | [diff] [blame] | 1222 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1223 | if (!PyString_Check(name)){ |
Martin v. Löwis | 0c160a0 | 2002-03-15 13:40:30 +0000 | [diff] [blame] | 1224 | #ifdef Py_USING_UNICODE |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1225 | /* The Unicode to string conversion is done here because the |
| 1226 | existing tp_setattro slots expect a string object as name |
| 1227 | and we wouldn't want to break those. */ |
| 1228 | if (PyUnicode_Check(name)) { |
| 1229 | name = PyUnicode_AsEncodedString(name, NULL, NULL); |
| 1230 | if (name == NULL) |
| 1231 | return -1; |
| 1232 | } |
| 1233 | else |
Martin v. Löwis | 0c160a0 | 2002-03-15 13:40:30 +0000 | [diff] [blame] | 1234 | #endif |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1235 | { |
| 1236 | PyErr_Format(PyExc_TypeError, |
| 1237 | "attribute name must be string, not '%.200s'", |
| 1238 | Py_TYPE(name)->tp_name); |
| 1239 | return -1; |
| 1240 | } |
| 1241 | } |
| 1242 | else |
| 1243 | Py_INCREF(name); |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 1244 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1245 | PyString_InternInPlace(&name); |
| 1246 | if (tp->tp_setattro != NULL) { |
| 1247 | err = (*tp->tp_setattro)(v, name, value); |
| 1248 | Py_DECREF(name); |
| 1249 | return err; |
| 1250 | } |
| 1251 | if (tp->tp_setattr != NULL) { |
| 1252 | err = (*tp->tp_setattr)(v, PyString_AS_STRING(name), value); |
| 1253 | Py_DECREF(name); |
| 1254 | return err; |
| 1255 | } |
| 1256 | Py_DECREF(name); |
| 1257 | if (tp->tp_getattr == NULL && tp->tp_getattro == NULL) |
| 1258 | PyErr_Format(PyExc_TypeError, |
| 1259 | "'%.100s' object has no attributes " |
| 1260 | "(%s .%.100s)", |
| 1261 | tp->tp_name, |
| 1262 | value==NULL ? "del" : "assign to", |
| 1263 | PyString_AS_STRING(name)); |
| 1264 | else |
| 1265 | PyErr_Format(PyExc_TypeError, |
| 1266 | "'%.100s' object has only read-only attributes " |
| 1267 | "(%s .%.100s)", |
| 1268 | tp->tp_name, |
| 1269 | value==NULL ? "del" : "assign to", |
| 1270 | PyString_AS_STRING(name)); |
| 1271 | return -1; |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 1272 | } |
| 1273 | |
| 1274 | /* Helper to get a pointer to an object's __dict__ slot, if any */ |
| 1275 | |
| 1276 | PyObject ** |
| 1277 | _PyObject_GetDictPtr(PyObject *obj) |
| 1278 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1279 | Py_ssize_t dictoffset; |
| 1280 | PyTypeObject *tp = Py_TYPE(obj); |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 1281 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1282 | if (!(tp->tp_flags & Py_TPFLAGS_HAVE_CLASS)) |
| 1283 | return NULL; |
| 1284 | dictoffset = tp->tp_dictoffset; |
| 1285 | if (dictoffset == 0) |
| 1286 | return NULL; |
| 1287 | if (dictoffset < 0) { |
| 1288 | Py_ssize_t tsize; |
| 1289 | size_t size; |
Guido van Rossum | 2eb0b87 | 2002-03-01 22:24:49 +0000 | [diff] [blame] | 1290 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1291 | tsize = ((PyVarObject *)obj)->ob_size; |
| 1292 | if (tsize < 0) |
| 1293 | tsize = -tsize; |
| 1294 | size = _PyObject_VAR_SIZE(tp, tsize); |
Guido van Rossum | 2eb0b87 | 2002-03-01 22:24:49 +0000 | [diff] [blame] | 1295 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1296 | dictoffset += (long)size; |
| 1297 | assert(dictoffset > 0); |
| 1298 | assert(dictoffset % SIZEOF_VOID_P == 0); |
| 1299 | } |
| 1300 | return (PyObject **) ((char *)obj + dictoffset); |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 1301 | } |
| 1302 | |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 1303 | PyObject * |
Raymond Hettinger | 1da1dbf | 2003-03-17 19:46:11 +0000 | [diff] [blame] | 1304 | PyObject_SelfIter(PyObject *obj) |
Raymond Hettinger | 0153826 | 2003-03-17 08:24:35 +0000 | [diff] [blame] | 1305 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1306 | Py_INCREF(obj); |
| 1307 | return obj; |
Raymond Hettinger | 0153826 | 2003-03-17 08:24:35 +0000 | [diff] [blame] | 1308 | } |
| 1309 | |
Amaury Forgeot d'Arc | a40d573 | 2009-01-12 23:36:55 +0000 | [diff] [blame] | 1310 | /* Helper used when the __next__ method is removed from a type: |
| 1311 | tp_iternext is never NULL and can be safely called without checking |
| 1312 | on every iteration. |
| 1313 | */ |
| 1314 | |
| 1315 | PyObject * |
| 1316 | _PyObject_NextNotImplemented(PyObject *self) |
| 1317 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1318 | PyErr_Format(PyExc_TypeError, |
| 1319 | "'%.200s' object is not iterable", |
| 1320 | Py_TYPE(self)->tp_name); |
| 1321 | return NULL; |
Amaury Forgeot d'Arc | a40d573 | 2009-01-12 23:36:55 +0000 | [diff] [blame] | 1322 | } |
| 1323 | |
Michael W. Hudson | 1593f50 | 2004-09-14 17:09:47 +0000 | [diff] [blame] | 1324 | /* Generic GetAttr functions - put these in your tp_[gs]etattro slot */ |
| 1325 | |
Raymond Hettinger | 0153826 | 2003-03-17 08:24:35 +0000 | [diff] [blame] | 1326 | PyObject * |
Antoine Pitrou | a408350 | 2010-08-28 18:29:13 +0000 | [diff] [blame] | 1327 | _PyObject_GenericGetAttrWithDict(PyObject *obj, PyObject *name, PyObject *dict) |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 1328 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1329 | PyTypeObject *tp = Py_TYPE(obj); |
| 1330 | PyObject *descr = NULL; |
| 1331 | PyObject *res = NULL; |
| 1332 | descrgetfunc f; |
| 1333 | Py_ssize_t dictoffset; |
| 1334 | PyObject **dictptr; |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 1335 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1336 | if (!PyString_Check(name)){ |
Martin v. Löwis | 0c160a0 | 2002-03-15 13:40:30 +0000 | [diff] [blame] | 1337 | #ifdef Py_USING_UNICODE |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1338 | /* The Unicode to string conversion is done here because the |
| 1339 | existing tp_setattro slots expect a string object as name |
| 1340 | and we wouldn't want to break those. */ |
| 1341 | if (PyUnicode_Check(name)) { |
| 1342 | name = PyUnicode_AsEncodedString(name, NULL, NULL); |
| 1343 | if (name == NULL) |
| 1344 | return NULL; |
| 1345 | } |
| 1346 | else |
Martin v. Löwis | 0c160a0 | 2002-03-15 13:40:30 +0000 | [diff] [blame] | 1347 | #endif |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1348 | { |
| 1349 | PyErr_Format(PyExc_TypeError, |
| 1350 | "attribute name must be string, not '%.200s'", |
| 1351 | Py_TYPE(name)->tp_name); |
| 1352 | return NULL; |
| 1353 | } |
| 1354 | } |
| 1355 | else |
| 1356 | Py_INCREF(name); |
Guido van Rossum | ebca9fc | 2001-12-04 15:54:53 +0000 | [diff] [blame] | 1357 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1358 | if (tp->tp_dict == NULL) { |
| 1359 | if (PyType_Ready(tp) < 0) |
| 1360 | goto done; |
| 1361 | } |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 1362 | |
Amaury Forgeot d'Arc | e4c270c | 2008-01-14 00:29:41 +0000 | [diff] [blame] | 1363 | #if 0 /* XXX this is not quite _PyType_Lookup anymore */ |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1364 | /* Inline _PyType_Lookup */ |
| 1365 | { |
| 1366 | Py_ssize_t i, n; |
| 1367 | PyObject *mro, *base, *dict; |
Guido van Rossum | 056fbf4 | 2002-08-19 19:22:50 +0000 | [diff] [blame] | 1368 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1369 | /* Look in tp_dict of types in MRO */ |
| 1370 | mro = tp->tp_mro; |
| 1371 | assert(mro != NULL); |
| 1372 | assert(PyTuple_Check(mro)); |
| 1373 | n = PyTuple_GET_SIZE(mro); |
| 1374 | for (i = 0; i < n; i++) { |
| 1375 | base = PyTuple_GET_ITEM(mro, i); |
| 1376 | if (PyClass_Check(base)) |
| 1377 | dict = ((PyClassObject *)base)->cl_dict; |
| 1378 | else { |
| 1379 | assert(PyType_Check(base)); |
| 1380 | dict = ((PyTypeObject *)base)->tp_dict; |
| 1381 | } |
| 1382 | assert(dict && PyDict_Check(dict)); |
| 1383 | descr = PyDict_GetItem(dict, name); |
| 1384 | if (descr != NULL) |
| 1385 | break; |
| 1386 | } |
| 1387 | } |
Amaury Forgeot d'Arc | e4c270c | 2008-01-14 00:29:41 +0000 | [diff] [blame] | 1388 | #else |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1389 | descr = _PyType_Lookup(tp, name); |
Amaury Forgeot d'Arc | e4c270c | 2008-01-14 00:29:41 +0000 | [diff] [blame] | 1390 | #endif |
Guido van Rossum | 056fbf4 | 2002-08-19 19:22:50 +0000 | [diff] [blame] | 1391 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1392 | Py_XINCREF(descr); |
Michael W. Hudson | b2c7de4 | 2003-08-15 13:07:47 +0000 | [diff] [blame] | 1393 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1394 | f = NULL; |
| 1395 | if (descr != NULL && |
| 1396 | PyType_HasFeature(descr->ob_type, Py_TPFLAGS_HAVE_CLASS)) { |
| 1397 | f = descr->ob_type->tp_descr_get; |
| 1398 | if (f != NULL && PyDescr_IsData(descr)) { |
| 1399 | res = f(descr, obj, (PyObject *)obj->ob_type); |
| 1400 | Py_DECREF(descr); |
| 1401 | goto done; |
| 1402 | } |
| 1403 | } |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 1404 | |
Antoine Pitrou | a408350 | 2010-08-28 18:29:13 +0000 | [diff] [blame] | 1405 | if (dict == NULL) { |
| 1406 | /* Inline _PyObject_GetDictPtr */ |
| 1407 | dictoffset = tp->tp_dictoffset; |
| 1408 | if (dictoffset != 0) { |
| 1409 | if (dictoffset < 0) { |
| 1410 | Py_ssize_t tsize; |
| 1411 | size_t size; |
Guido van Rossum | c66ff44 | 2002-08-19 16:50:48 +0000 | [diff] [blame] | 1412 | |
Antoine Pitrou | a408350 | 2010-08-28 18:29:13 +0000 | [diff] [blame] | 1413 | tsize = ((PyVarObject *)obj)->ob_size; |
| 1414 | if (tsize < 0) |
| 1415 | tsize = -tsize; |
| 1416 | size = _PyObject_VAR_SIZE(tp, tsize); |
Guido van Rossum | c66ff44 | 2002-08-19 16:50:48 +0000 | [diff] [blame] | 1417 | |
Antoine Pitrou | a408350 | 2010-08-28 18:29:13 +0000 | [diff] [blame] | 1418 | dictoffset += (long)size; |
| 1419 | assert(dictoffset > 0); |
| 1420 | assert(dictoffset % SIZEOF_VOID_P == 0); |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1421 | } |
Antoine Pitrou | a408350 | 2010-08-28 18:29:13 +0000 | [diff] [blame] | 1422 | dictptr = (PyObject **) ((char *)obj + dictoffset); |
| 1423 | dict = *dictptr; |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1424 | } |
| 1425 | } |
Antoine Pitrou | a408350 | 2010-08-28 18:29:13 +0000 | [diff] [blame] | 1426 | if (dict != NULL) { |
| 1427 | Py_INCREF(dict); |
| 1428 | res = PyDict_GetItem(dict, name); |
| 1429 | if (res != NULL) { |
| 1430 | Py_INCREF(res); |
| 1431 | Py_XDECREF(descr); |
| 1432 | Py_DECREF(dict); |
| 1433 | goto done; |
| 1434 | } |
| 1435 | Py_DECREF(dict); |
| 1436 | } |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 1437 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1438 | if (f != NULL) { |
| 1439 | res = f(descr, obj, (PyObject *)Py_TYPE(obj)); |
| 1440 | Py_DECREF(descr); |
| 1441 | goto done; |
| 1442 | } |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 1443 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1444 | if (descr != NULL) { |
| 1445 | res = descr; |
| 1446 | /* descr was already increfed above */ |
| 1447 | goto done; |
| 1448 | } |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 1449 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1450 | PyErr_Format(PyExc_AttributeError, |
| 1451 | "'%.50s' object has no attribute '%.400s'", |
| 1452 | tp->tp_name, PyString_AS_STRING(name)); |
Guido van Rossum | ebca9fc | 2001-12-04 15:54:53 +0000 | [diff] [blame] | 1453 | done: |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1454 | Py_DECREF(name); |
| 1455 | return res; |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 1456 | } |
| 1457 | |
Antoine Pitrou | a408350 | 2010-08-28 18:29:13 +0000 | [diff] [blame] | 1458 | PyObject * |
| 1459 | PyObject_GenericGetAttr(PyObject *obj, PyObject *name) |
| 1460 | { |
| 1461 | return _PyObject_GenericGetAttrWithDict(obj, name, NULL); |
| 1462 | } |
| 1463 | |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 1464 | int |
Antoine Pitrou | a408350 | 2010-08-28 18:29:13 +0000 | [diff] [blame] | 1465 | _PyObject_GenericSetAttrWithDict(PyObject *obj, PyObject *name, |
| 1466 | PyObject *value, PyObject *dict) |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 1467 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1468 | PyTypeObject *tp = Py_TYPE(obj); |
| 1469 | PyObject *descr; |
| 1470 | descrsetfunc f; |
| 1471 | PyObject **dictptr; |
| 1472 | int res = -1; |
Guido van Rossum | ebca9fc | 2001-12-04 15:54:53 +0000 | [diff] [blame] | 1473 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1474 | if (!PyString_Check(name)){ |
Martin v. Löwis | 0c160a0 | 2002-03-15 13:40:30 +0000 | [diff] [blame] | 1475 | #ifdef Py_USING_UNICODE |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1476 | /* The Unicode to string conversion is done here because the |
| 1477 | existing tp_setattro slots expect a string object as name |
| 1478 | and we wouldn't want to break those. */ |
| 1479 | if (PyUnicode_Check(name)) { |
| 1480 | name = PyUnicode_AsEncodedString(name, NULL, NULL); |
| 1481 | if (name == NULL) |
| 1482 | return -1; |
| 1483 | } |
| 1484 | else |
Martin v. Löwis | 0c160a0 | 2002-03-15 13:40:30 +0000 | [diff] [blame] | 1485 | #endif |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1486 | { |
| 1487 | PyErr_Format(PyExc_TypeError, |
| 1488 | "attribute name must be string, not '%.200s'", |
| 1489 | Py_TYPE(name)->tp_name); |
| 1490 | return -1; |
| 1491 | } |
| 1492 | } |
| 1493 | else |
| 1494 | Py_INCREF(name); |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 1495 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1496 | if (tp->tp_dict == NULL) { |
| 1497 | if (PyType_Ready(tp) < 0) |
| 1498 | goto done; |
| 1499 | } |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 1500 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1501 | descr = _PyType_Lookup(tp, name); |
| 1502 | f = NULL; |
| 1503 | if (descr != NULL && |
| 1504 | PyType_HasFeature(descr->ob_type, Py_TPFLAGS_HAVE_CLASS)) { |
| 1505 | f = descr->ob_type->tp_descr_set; |
| 1506 | if (f != NULL && PyDescr_IsData(descr)) { |
| 1507 | res = f(descr, obj, value); |
| 1508 | goto done; |
| 1509 | } |
| 1510 | } |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 1511 | |
Antoine Pitrou | a408350 | 2010-08-28 18:29:13 +0000 | [diff] [blame] | 1512 | if (dict == NULL) { |
| 1513 | dictptr = _PyObject_GetDictPtr(obj); |
| 1514 | if (dictptr != NULL) { |
| 1515 | dict = *dictptr; |
| 1516 | if (dict == NULL && value != NULL) { |
| 1517 | dict = PyDict_New(); |
| 1518 | if (dict == NULL) |
| 1519 | goto done; |
| 1520 | *dictptr = dict; |
| 1521 | } |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1522 | } |
Antoine Pitrou | a408350 | 2010-08-28 18:29:13 +0000 | [diff] [blame] | 1523 | } |
| 1524 | if (dict != NULL) { |
| 1525 | Py_INCREF(dict); |
| 1526 | if (value == NULL) |
| 1527 | res = PyDict_DelItem(dict, name); |
| 1528 | else |
| 1529 | res = PyDict_SetItem(dict, name, value); |
| 1530 | if (res < 0 && PyErr_ExceptionMatches(PyExc_KeyError)) |
| 1531 | PyErr_SetObject(PyExc_AttributeError, name); |
| 1532 | Py_DECREF(dict); |
| 1533 | goto done; |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1534 | } |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 1535 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1536 | if (f != NULL) { |
| 1537 | res = f(descr, obj, value); |
| 1538 | goto done; |
| 1539 | } |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 1540 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1541 | if (descr == NULL) { |
| 1542 | PyErr_Format(PyExc_AttributeError, |
| 1543 | "'%.100s' object has no attribute '%.200s'", |
| 1544 | tp->tp_name, PyString_AS_STRING(name)); |
| 1545 | goto done; |
| 1546 | } |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 1547 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1548 | PyErr_Format(PyExc_AttributeError, |
| 1549 | "'%.50s' object attribute '%.400s' is read-only", |
| 1550 | tp->tp_name, PyString_AS_STRING(name)); |
Guido van Rossum | ebca9fc | 2001-12-04 15:54:53 +0000 | [diff] [blame] | 1551 | done: |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1552 | Py_DECREF(name); |
| 1553 | return res; |
Guido van Rossum | 98ff96a | 1997-05-20 18:34:44 +0000 | [diff] [blame] | 1554 | } |
| 1555 | |
Antoine Pitrou | a408350 | 2010-08-28 18:29:13 +0000 | [diff] [blame] | 1556 | int |
| 1557 | PyObject_GenericSetAttr(PyObject *obj, PyObject *name, PyObject *value) |
| 1558 | { |
| 1559 | return _PyObject_GenericSetAttrWithDict(obj, name, value, NULL); |
| 1560 | } |
| 1561 | |
| 1562 | |
Guido van Rossum | 6ac258d | 1993-05-12 08:24:20 +0000 | [diff] [blame] | 1563 | /* Test a value used as condition, e.g., in a for or if statement. |
| 1564 | Return -1 if an error occurred */ |
| 1565 | |
| 1566 | int |
Fred Drake | 100814d | 2000-07-09 15:48:49 +0000 | [diff] [blame] | 1567 | PyObject_IsTrue(PyObject *v) |
Guido van Rossum | 6ac258d | 1993-05-12 08:24:20 +0000 | [diff] [blame] | 1568 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1569 | Py_ssize_t res; |
| 1570 | if (v == Py_True) |
| 1571 | return 1; |
| 1572 | if (v == Py_False) |
| 1573 | return 0; |
| 1574 | if (v == Py_None) |
| 1575 | return 0; |
| 1576 | else if (v->ob_type->tp_as_number != NULL && |
| 1577 | v->ob_type->tp_as_number->nb_nonzero != NULL) |
| 1578 | res = (*v->ob_type->tp_as_number->nb_nonzero)(v); |
| 1579 | else if (v->ob_type->tp_as_mapping != NULL && |
| 1580 | v->ob_type->tp_as_mapping->mp_length != NULL) |
| 1581 | res = (*v->ob_type->tp_as_mapping->mp_length)(v); |
| 1582 | else if (v->ob_type->tp_as_sequence != NULL && |
| 1583 | v->ob_type->tp_as_sequence->sq_length != NULL) |
| 1584 | res = (*v->ob_type->tp_as_sequence->sq_length)(v); |
| 1585 | else |
| 1586 | return 1; |
| 1587 | /* if it is negative, it should be either -1 or -2 */ |
| 1588 | 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] | 1589 | } |
| 1590 | |
Tim Peters | 803526b | 2002-07-07 05:13:56 +0000 | [diff] [blame] | 1591 | /* equivalent of 'not v' |
Guido van Rossum | c3d3f96 | 1998-04-09 17:53:59 +0000 | [diff] [blame] | 1592 | Return -1 if an error occurred */ |
| 1593 | |
| 1594 | int |
Fred Drake | 100814d | 2000-07-09 15:48:49 +0000 | [diff] [blame] | 1595 | PyObject_Not(PyObject *v) |
Guido van Rossum | c3d3f96 | 1998-04-09 17:53:59 +0000 | [diff] [blame] | 1596 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1597 | int res; |
| 1598 | res = PyObject_IsTrue(v); |
| 1599 | if (res < 0) |
| 1600 | return res; |
| 1601 | return res == 0; |
Guido van Rossum | c3d3f96 | 1998-04-09 17:53:59 +0000 | [diff] [blame] | 1602 | } |
| 1603 | |
Guido van Rossum | 5524a59 | 1995-01-10 15:26:20 +0000 | [diff] [blame] | 1604 | /* Coerce two numeric types to the "larger" one. |
| 1605 | Increment the reference count on each argument. |
Guido van Rossum | e797ec1 | 2001-01-17 15:24:28 +0000 | [diff] [blame] | 1606 | Return value: |
| 1607 | -1 if an error occurred; |
| 1608 | 0 if the coercion succeeded (and then the reference counts are increased); |
| 1609 | 1 if no coercion is possible (and no error is raised). |
Guido van Rossum | 5524a59 | 1995-01-10 15:26:20 +0000 | [diff] [blame] | 1610 | */ |
Guido van Rossum | 5524a59 | 1995-01-10 15:26:20 +0000 | [diff] [blame] | 1611 | int |
Fred Drake | 100814d | 2000-07-09 15:48:49 +0000 | [diff] [blame] | 1612 | PyNumber_CoerceEx(PyObject **pv, PyObject **pw) |
Guido van Rossum | 5524a59 | 1995-01-10 15:26:20 +0000 | [diff] [blame] | 1613 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1614 | register PyObject *v = *pv; |
| 1615 | register PyObject *w = *pw; |
| 1616 | int res; |
Guido van Rossum | 5524a59 | 1995-01-10 15:26:20 +0000 | [diff] [blame] | 1617 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1618 | /* Shortcut only for old-style types */ |
| 1619 | if (v->ob_type == w->ob_type && |
| 1620 | !PyType_HasFeature(v->ob_type, Py_TPFLAGS_CHECKTYPES)) |
| 1621 | { |
| 1622 | Py_INCREF(v); |
| 1623 | Py_INCREF(w); |
| 1624 | return 0; |
| 1625 | } |
| 1626 | if (v->ob_type->tp_as_number && v->ob_type->tp_as_number->nb_coerce) { |
| 1627 | res = (*v->ob_type->tp_as_number->nb_coerce)(pv, pw); |
| 1628 | if (res <= 0) |
| 1629 | return res; |
| 1630 | } |
| 1631 | if (w->ob_type->tp_as_number && w->ob_type->tp_as_number->nb_coerce) { |
| 1632 | res = (*w->ob_type->tp_as_number->nb_coerce)(pw, pv); |
| 1633 | if (res <= 0) |
| 1634 | return res; |
| 1635 | } |
| 1636 | return 1; |
Guido van Rossum | 242c642 | 1997-11-19 16:03:17 +0000 | [diff] [blame] | 1637 | } |
| 1638 | |
Guido van Rossum | e797ec1 | 2001-01-17 15:24:28 +0000 | [diff] [blame] | 1639 | /* Coerce two numeric types to the "larger" one. |
| 1640 | Increment the reference count on each argument. |
| 1641 | Return -1 and raise an exception if no coercion is possible |
| 1642 | (and then no reference count is incremented). |
| 1643 | */ |
Guido van Rossum | 242c642 | 1997-11-19 16:03:17 +0000 | [diff] [blame] | 1644 | int |
Fred Drake | 100814d | 2000-07-09 15:48:49 +0000 | [diff] [blame] | 1645 | PyNumber_Coerce(PyObject **pv, PyObject **pw) |
Guido van Rossum | 242c642 | 1997-11-19 16:03:17 +0000 | [diff] [blame] | 1646 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1647 | int err = PyNumber_CoerceEx(pv, pw); |
| 1648 | if (err <= 0) |
| 1649 | return err; |
| 1650 | PyErr_SetString(PyExc_TypeError, "number coercion failed"); |
| 1651 | return -1; |
Guido van Rossum | 5524a59 | 1995-01-10 15:26:20 +0000 | [diff] [blame] | 1652 | } |
| 1653 | |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1654 | |
Guido van Rossum | 49b11fe | 1995-01-26 00:38:22 +0000 | [diff] [blame] | 1655 | /* Test whether an object can be called */ |
| 1656 | |
| 1657 | int |
Fred Drake | 100814d | 2000-07-09 15:48:49 +0000 | [diff] [blame] | 1658 | PyCallable_Check(PyObject *x) |
Guido van Rossum | 49b11fe | 1995-01-26 00:38:22 +0000 | [diff] [blame] | 1659 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1660 | if (x == NULL) |
| 1661 | return 0; |
| 1662 | if (PyInstance_Check(x)) { |
| 1663 | PyObject *call = PyObject_GetAttrString(x, "__call__"); |
| 1664 | if (call == NULL) { |
| 1665 | PyErr_Clear(); |
| 1666 | return 0; |
| 1667 | } |
| 1668 | /* Could test recursively but don't, for fear of endless |
| 1669 | recursion if some joker sets self.__call__ = self */ |
| 1670 | Py_DECREF(call); |
| 1671 | return 1; |
| 1672 | } |
| 1673 | else { |
| 1674 | return x->ob_type->tp_call != NULL; |
| 1675 | } |
Guido van Rossum | 49b11fe | 1995-01-26 00:38:22 +0000 | [diff] [blame] | 1676 | } |
| 1677 | |
Georg Brandl | 871f1bc | 2007-03-12 13:17:36 +0000 | [diff] [blame] | 1678 | /* ------------------------- PyObject_Dir() helpers ------------------------- */ |
| 1679 | |
Tim Peters | 7eea37e | 2001-09-04 22:08:56 +0000 | [diff] [blame] | 1680 | /* Helper for PyObject_Dir. |
| 1681 | Merge the __dict__ of aclass into dict, and recursively also all |
| 1682 | the __dict__s of aclass's base classes. The order of merging isn't |
| 1683 | defined, as it's expected that only the final set of dict keys is |
| 1684 | interesting. |
| 1685 | Return 0 on success, -1 on error. |
| 1686 | */ |
| 1687 | |
| 1688 | static int |
| 1689 | merge_class_dict(PyObject* dict, PyObject* aclass) |
| 1690 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1691 | PyObject *classdict; |
| 1692 | PyObject *bases; |
Tim Peters | 7eea37e | 2001-09-04 22:08:56 +0000 | [diff] [blame] | 1693 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1694 | assert(PyDict_Check(dict)); |
| 1695 | assert(aclass); |
Tim Peters | 7eea37e | 2001-09-04 22:08:56 +0000 | [diff] [blame] | 1696 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1697 | /* Merge in the type's dict (if any). */ |
| 1698 | classdict = PyObject_GetAttrString(aclass, "__dict__"); |
| 1699 | if (classdict == NULL) |
| 1700 | PyErr_Clear(); |
| 1701 | else { |
| 1702 | int status = PyDict_Update(dict, classdict); |
| 1703 | Py_DECREF(classdict); |
| 1704 | if (status < 0) |
| 1705 | return -1; |
| 1706 | } |
Tim Peters | 7eea37e | 2001-09-04 22:08:56 +0000 | [diff] [blame] | 1707 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1708 | /* Recursively merge in the base types' (if any) dicts. */ |
| 1709 | bases = PyObject_GetAttrString(aclass, "__bases__"); |
| 1710 | if (bases == NULL) |
| 1711 | PyErr_Clear(); |
| 1712 | else { |
| 1713 | /* We have no guarantee that bases is a real tuple */ |
| 1714 | Py_ssize_t i, n; |
| 1715 | n = PySequence_Size(bases); /* This better be right */ |
| 1716 | if (n < 0) |
| 1717 | PyErr_Clear(); |
| 1718 | else { |
| 1719 | for (i = 0; i < n; i++) { |
| 1720 | int status; |
| 1721 | PyObject *base = PySequence_GetItem(bases, i); |
| 1722 | if (base == NULL) { |
| 1723 | Py_DECREF(bases); |
| 1724 | return -1; |
| 1725 | } |
| 1726 | status = merge_class_dict(dict, base); |
| 1727 | Py_DECREF(base); |
| 1728 | if (status < 0) { |
| 1729 | Py_DECREF(bases); |
| 1730 | return -1; |
| 1731 | } |
| 1732 | } |
| 1733 | } |
| 1734 | Py_DECREF(bases); |
| 1735 | } |
| 1736 | return 0; |
Tim Peters | 7eea37e | 2001-09-04 22:08:56 +0000 | [diff] [blame] | 1737 | } |
| 1738 | |
Tim Peters | 305b585 | 2001-09-17 02:38:46 +0000 | [diff] [blame] | 1739 | /* Helper for PyObject_Dir. |
| 1740 | If obj has an attr named attrname that's a list, merge its string |
| 1741 | elements into keys of dict. |
| 1742 | Return 0 on success, -1 on error. Errors due to not finding the attr, |
| 1743 | or the attr not being a list, are suppressed. |
| 1744 | */ |
| 1745 | |
| 1746 | static int |
Jeremy Hylton | af68c87 | 2005-12-10 18:50:16 +0000 | [diff] [blame] | 1747 | merge_list_attr(PyObject* dict, PyObject* obj, const char *attrname) |
Tim Peters | 305b585 | 2001-09-17 02:38:46 +0000 | [diff] [blame] | 1748 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1749 | PyObject *list; |
| 1750 | int result = 0; |
Tim Peters | 305b585 | 2001-09-17 02:38:46 +0000 | [diff] [blame] | 1751 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1752 | assert(PyDict_Check(dict)); |
| 1753 | assert(obj); |
| 1754 | assert(attrname); |
Tim Peters | 305b585 | 2001-09-17 02:38:46 +0000 | [diff] [blame] | 1755 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1756 | list = PyObject_GetAttrString(obj, attrname); |
| 1757 | if (list == NULL) |
| 1758 | PyErr_Clear(); |
Tim Peters | 305b585 | 2001-09-17 02:38:46 +0000 | [diff] [blame] | 1759 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1760 | else if (PyList_Check(list)) { |
| 1761 | int i; |
| 1762 | for (i = 0; i < PyList_GET_SIZE(list); ++i) { |
| 1763 | PyObject *item = PyList_GET_ITEM(list, i); |
| 1764 | if (PyString_Check(item)) { |
| 1765 | result = PyDict_SetItem(dict, item, Py_None); |
| 1766 | if (result < 0) |
| 1767 | break; |
| 1768 | } |
| 1769 | } |
| 1770 | if (Py_Py3kWarningFlag && |
| 1771 | (strcmp(attrname, "__members__") == 0 || |
| 1772 | strcmp(attrname, "__methods__") == 0)) { |
| 1773 | if (PyErr_WarnEx(PyExc_DeprecationWarning, |
| 1774 | "__members__ and __methods__ not " |
| 1775 | "supported in 3.x", 1) < 0) { |
| 1776 | Py_XDECREF(list); |
| 1777 | return -1; |
| 1778 | } |
| 1779 | } |
| 1780 | } |
Tim Peters | 305b585 | 2001-09-17 02:38:46 +0000 | [diff] [blame] | 1781 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1782 | Py_XDECREF(list); |
| 1783 | return result; |
Tim Peters | 305b585 | 2001-09-17 02:38:46 +0000 | [diff] [blame] | 1784 | } |
| 1785 | |
Georg Brandl | 871f1bc | 2007-03-12 13:17:36 +0000 | [diff] [blame] | 1786 | /* Helper for PyObject_Dir without arguments: returns the local scope. */ |
| 1787 | static PyObject * |
Jeremy Hylton | 26ca925 | 2007-03-16 14:49:11 +0000 | [diff] [blame] | 1788 | _dir_locals(void) |
Tim Peters | 7eea37e | 2001-09-04 22:08:56 +0000 | [diff] [blame] | 1789 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1790 | PyObject *names; |
| 1791 | PyObject *locals = PyEval_GetLocals(); |
Tim Peters | 7eea37e | 2001-09-04 22:08:56 +0000 | [diff] [blame] | 1792 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1793 | if (locals == NULL) { |
| 1794 | PyErr_SetString(PyExc_SystemError, "frame does not exist"); |
| 1795 | return NULL; |
| 1796 | } |
Tim Peters | 7eea37e | 2001-09-04 22:08:56 +0000 | [diff] [blame] | 1797 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1798 | names = PyMapping_Keys(locals); |
| 1799 | if (!names) |
| 1800 | return NULL; |
| 1801 | if (!PyList_Check(names)) { |
| 1802 | PyErr_Format(PyExc_TypeError, |
| 1803 | "dir(): expected keys() of locals to be a list, " |
| 1804 | "not '%.200s'", Py_TYPE(names)->tp_name); |
| 1805 | Py_DECREF(names); |
| 1806 | return NULL; |
| 1807 | } |
| 1808 | /* the locals don't need to be DECREF'd */ |
| 1809 | return names; |
Georg Brandl | 871f1bc | 2007-03-12 13:17:36 +0000 | [diff] [blame] | 1810 | } |
Tim Peters | 7eea37e | 2001-09-04 22:08:56 +0000 | [diff] [blame] | 1811 | |
Georg Brandl | 871f1bc | 2007-03-12 13:17:36 +0000 | [diff] [blame] | 1812 | /* Helper for PyObject_Dir of type objects: returns __dict__ and __bases__. |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1813 | We deliberately don't suck up its __class__, as methods belonging to the |
| 1814 | metaclass would probably be more confusing than helpful. |
Georg Brandl | 871f1bc | 2007-03-12 13:17:36 +0000 | [diff] [blame] | 1815 | */ |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1816 | static PyObject * |
Georg Brandl | 871f1bc | 2007-03-12 13:17:36 +0000 | [diff] [blame] | 1817 | _specialized_dir_type(PyObject *obj) |
| 1818 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1819 | PyObject *result = NULL; |
| 1820 | PyObject *dict = PyDict_New(); |
Georg Brandl | 871f1bc | 2007-03-12 13:17:36 +0000 | [diff] [blame] | 1821 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1822 | if (dict != NULL && merge_class_dict(dict, obj) == 0) |
| 1823 | result = PyDict_Keys(dict); |
Georg Brandl | 871f1bc | 2007-03-12 13:17:36 +0000 | [diff] [blame] | 1824 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1825 | Py_XDECREF(dict); |
| 1826 | return result; |
Georg Brandl | 871f1bc | 2007-03-12 13:17:36 +0000 | [diff] [blame] | 1827 | } |
| 1828 | |
| 1829 | /* Helper for PyObject_Dir of module objects: returns the module's __dict__. */ |
| 1830 | static PyObject * |
| 1831 | _specialized_dir_module(PyObject *obj) |
| 1832 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1833 | PyObject *result = NULL; |
| 1834 | PyObject *dict = PyObject_GetAttrString(obj, "__dict__"); |
Georg Brandl | 871f1bc | 2007-03-12 13:17:36 +0000 | [diff] [blame] | 1835 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1836 | if (dict != NULL) { |
| 1837 | if (PyDict_Check(dict)) |
| 1838 | result = PyDict_Keys(dict); |
| 1839 | else { |
| 1840 | char *name = PyModule_GetName(obj); |
| 1841 | if (name) |
| 1842 | PyErr_Format(PyExc_TypeError, |
| 1843 | "%.200s.__dict__ is not a dictionary", |
| 1844 | name); |
| 1845 | } |
| 1846 | } |
Georg Brandl | 871f1bc | 2007-03-12 13:17:36 +0000 | [diff] [blame] | 1847 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1848 | Py_XDECREF(dict); |
| 1849 | return result; |
Georg Brandl | 871f1bc | 2007-03-12 13:17:36 +0000 | [diff] [blame] | 1850 | } |
| 1851 | |
| 1852 | /* Helper for PyObject_Dir of generic objects: returns __dict__, __class__, |
| 1853 | and recursively up the __class__.__bases__ chain. |
| 1854 | */ |
| 1855 | static PyObject * |
| 1856 | _generic_dir(PyObject *obj) |
| 1857 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1858 | PyObject *result = NULL; |
| 1859 | PyObject *dict = NULL; |
| 1860 | PyObject *itsclass = NULL; |
Georg Brandl | 871f1bc | 2007-03-12 13:17:36 +0000 | [diff] [blame] | 1861 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1862 | /* Get __dict__ (which may or may not be a real dict...) */ |
| 1863 | dict = PyObject_GetAttrString(obj, "__dict__"); |
| 1864 | if (dict == NULL) { |
| 1865 | PyErr_Clear(); |
| 1866 | dict = PyDict_New(); |
| 1867 | } |
| 1868 | else if (!PyDict_Check(dict)) { |
| 1869 | Py_DECREF(dict); |
| 1870 | dict = PyDict_New(); |
| 1871 | } |
| 1872 | else { |
| 1873 | /* Copy __dict__ to avoid mutating it. */ |
| 1874 | PyObject *temp = PyDict_Copy(dict); |
| 1875 | Py_DECREF(dict); |
| 1876 | dict = temp; |
| 1877 | } |
Georg Brandl | 871f1bc | 2007-03-12 13:17:36 +0000 | [diff] [blame] | 1878 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1879 | if (dict == NULL) |
| 1880 | goto error; |
Georg Brandl | 871f1bc | 2007-03-12 13:17:36 +0000 | [diff] [blame] | 1881 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1882 | /* Merge in __members__ and __methods__ (if any). |
| 1883 | * This is removed in Python 3000. */ |
| 1884 | if (merge_list_attr(dict, obj, "__members__") < 0) |
| 1885 | goto error; |
| 1886 | if (merge_list_attr(dict, obj, "__methods__") < 0) |
| 1887 | goto error; |
Georg Brandl | 871f1bc | 2007-03-12 13:17:36 +0000 | [diff] [blame] | 1888 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1889 | /* Merge in attrs reachable from its class. */ |
| 1890 | itsclass = PyObject_GetAttrString(obj, "__class__"); |
| 1891 | if (itsclass == NULL) |
| 1892 | /* XXX(tomer): Perhaps fall back to obj->ob_type if no |
| 1893 | __class__ exists? */ |
| 1894 | PyErr_Clear(); |
| 1895 | else { |
| 1896 | if (merge_class_dict(dict, itsclass) != 0) |
| 1897 | goto error; |
| 1898 | } |
| 1899 | |
| 1900 | result = PyDict_Keys(dict); |
| 1901 | /* fall through */ |
Georg Brandl | 871f1bc | 2007-03-12 13:17:36 +0000 | [diff] [blame] | 1902 | error: |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1903 | Py_XDECREF(itsclass); |
| 1904 | Py_XDECREF(dict); |
| 1905 | return result; |
Georg Brandl | 871f1bc | 2007-03-12 13:17:36 +0000 | [diff] [blame] | 1906 | } |
| 1907 | |
| 1908 | /* Helper for PyObject_Dir: object introspection. |
| 1909 | This calls one of the above specialized versions if no __dir__ method |
| 1910 | exists. */ |
| 1911 | static PyObject * |
| 1912 | _dir_object(PyObject *obj) |
| 1913 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1914 | PyObject *result = NULL; |
Benjamin Peterson | 8de87a6 | 2011-05-23 16:11:05 -0500 | [diff] [blame] | 1915 | static PyObject *dir_str = NULL; |
Benjamin Peterson | fd89af5 | 2011-05-23 17:11:21 -0500 | [diff] [blame] | 1916 | PyObject *dirfunc; |
Georg Brandl | 871f1bc | 2007-03-12 13:17:36 +0000 | [diff] [blame] | 1917 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1918 | assert(obj); |
Benjamin Peterson | fd89af5 | 2011-05-23 17:11:21 -0500 | [diff] [blame] | 1919 | if (PyInstance_Check(obj)) { |
| 1920 | dirfunc = PyObject_GetAttrString(obj, "__dir__"); |
Benjamin Peterson | 7f5cd45 | 2011-05-23 18:17:55 -0500 | [diff] [blame] | 1921 | if (dirfunc == NULL) { |
| 1922 | if (PyErr_ExceptionMatches(PyExc_AttributeError)) |
| 1923 | PyErr_Clear(); |
| 1924 | else |
| 1925 | return NULL; |
| 1926 | } |
Benjamin Peterson | fd89af5 | 2011-05-23 17:11:21 -0500 | [diff] [blame] | 1927 | } |
| 1928 | else { |
| 1929 | dirfunc = _PyObject_LookupSpecial(obj, "__dir__", &dir_str); |
Benjamin Peterson | 8de87a6 | 2011-05-23 16:11:05 -0500 | [diff] [blame] | 1930 | if (PyErr_Occurred()) |
| 1931 | return NULL; |
Benjamin Peterson | fd89af5 | 2011-05-23 17:11:21 -0500 | [diff] [blame] | 1932 | } |
| 1933 | if (dirfunc == NULL) { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1934 | /* use default implementation */ |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1935 | if (PyModule_Check(obj)) |
| 1936 | result = _specialized_dir_module(obj); |
| 1937 | else if (PyType_Check(obj) || PyClass_Check(obj)) |
| 1938 | result = _specialized_dir_type(obj); |
| 1939 | else |
| 1940 | result = _generic_dir(obj); |
| 1941 | } |
| 1942 | else { |
| 1943 | /* use __dir__ */ |
Benjamin Peterson | 8de87a6 | 2011-05-23 16:11:05 -0500 | [diff] [blame] | 1944 | result = PyObject_CallFunctionObjArgs(dirfunc, NULL); |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1945 | Py_DECREF(dirfunc); |
| 1946 | if (result == NULL) |
| 1947 | return NULL; |
Georg Brandl | 871f1bc | 2007-03-12 13:17:36 +0000 | [diff] [blame] | 1948 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1949 | /* result must be a list */ |
| 1950 | /* XXX(gbrandl): could also check if all items are strings */ |
| 1951 | if (!PyList_Check(result)) { |
| 1952 | PyErr_Format(PyExc_TypeError, |
| 1953 | "__dir__() must return a list, not %.200s", |
| 1954 | Py_TYPE(result)->tp_name); |
| 1955 | Py_DECREF(result); |
| 1956 | result = NULL; |
| 1957 | } |
| 1958 | } |
Georg Brandl | 871f1bc | 2007-03-12 13:17:36 +0000 | [diff] [blame] | 1959 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1960 | return result; |
Georg Brandl | 871f1bc | 2007-03-12 13:17:36 +0000 | [diff] [blame] | 1961 | } |
| 1962 | |
| 1963 | /* Implementation of dir() -- if obj is NULL, returns the names in the current |
| 1964 | (local) scope. Otherwise, performs introspection of the object: returns a |
| 1965 | sorted list of attribute names (supposedly) accessible from the object |
| 1966 | */ |
| 1967 | PyObject * |
| 1968 | PyObject_Dir(PyObject *obj) |
| 1969 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1970 | PyObject * result; |
Georg Brandl | 871f1bc | 2007-03-12 13:17:36 +0000 | [diff] [blame] | 1971 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1972 | if (obj == NULL) |
| 1973 | /* no object -- introspect the locals */ |
| 1974 | result = _dir_locals(); |
| 1975 | else |
| 1976 | /* object -- introspect the object */ |
| 1977 | result = _dir_object(obj); |
Georg Brandl | 871f1bc | 2007-03-12 13:17:36 +0000 | [diff] [blame] | 1978 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1979 | assert(result == NULL || PyList_Check(result)); |
Georg Brandl | 871f1bc | 2007-03-12 13:17:36 +0000 | [diff] [blame] | 1980 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 1981 | if (result != NULL && PyList_Sort(result) != 0) { |
| 1982 | /* sorting the list failed */ |
| 1983 | Py_DECREF(result); |
| 1984 | result = NULL; |
| 1985 | } |
| 1986 | |
| 1987 | return result; |
Tim Peters | 7eea37e | 2001-09-04 22:08:56 +0000 | [diff] [blame] | 1988 | } |
Guido van Rossum | 49b11fe | 1995-01-26 00:38:22 +0000 | [diff] [blame] | 1989 | |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1990 | /* |
| 1991 | NoObject is usable as a non-NULL undefined value, used by the macro None. |
| 1992 | 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] | 1993 | so there is exactly one (which is indestructible, by the way). |
Guido van Rossum | ba21a49 | 2001-08-16 08:17:26 +0000 | [diff] [blame] | 1994 | (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] | 1995 | */ |
| 1996 | |
Guido van Rossum | 0c182a1 | 1992-03-27 17:26:13 +0000 | [diff] [blame] | 1997 | /* ARGSUSED */ |
Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 1998 | static PyObject * |
Fred Drake | 100814d | 2000-07-09 15:48:49 +0000 | [diff] [blame] | 1999 | none_repr(PyObject *op) |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 2000 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2001 | return PyString_FromString("None"); |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 2002 | } |
| 2003 | |
Barry Warsaw | 9bf1644 | 2001-01-23 16:24:35 +0000 | [diff] [blame] | 2004 | /* ARGUSED */ |
| 2005 | static void |
Tim Peters | 803526b | 2002-07-07 05:13:56 +0000 | [diff] [blame] | 2006 | none_dealloc(PyObject* ignore) |
Barry Warsaw | 9bf1644 | 2001-01-23 16:24:35 +0000 | [diff] [blame] | 2007 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2008 | /* This should never get called, but we also don't want to SEGV if |
| 2009 | * we accidentally decref None out of existence. |
| 2010 | */ |
| 2011 | Py_FatalError("deallocating None"); |
Barry Warsaw | 9bf1644 | 2001-01-23 16:24:35 +0000 | [diff] [blame] | 2012 | } |
| 2013 | |
| 2014 | |
Guido van Rossum | ba21a49 | 2001-08-16 08:17:26 +0000 | [diff] [blame] | 2015 | static PyTypeObject PyNone_Type = { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2016 | PyVarObject_HEAD_INIT(&PyType_Type, 0) |
| 2017 | "NoneType", |
| 2018 | 0, |
| 2019 | 0, |
| 2020 | none_dealloc, /*tp_dealloc*/ /*never called*/ |
| 2021 | 0, /*tp_print*/ |
| 2022 | 0, /*tp_getattr*/ |
| 2023 | 0, /*tp_setattr*/ |
| 2024 | 0, /*tp_compare*/ |
| 2025 | none_repr, /*tp_repr*/ |
| 2026 | 0, /*tp_as_number*/ |
| 2027 | 0, /*tp_as_sequence*/ |
| 2028 | 0, /*tp_as_mapping*/ |
| 2029 | (hashfunc)_Py_HashPointer, /*tp_hash */ |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 2030 | }; |
| 2031 | |
Guido van Rossum | c0b618a | 1997-05-02 03:12:38 +0000 | [diff] [blame] | 2032 | PyObject _Py_NoneStruct = { |
Martin v. Löwis | 6819210 | 2007-07-21 06:55:02 +0000 | [diff] [blame] | 2033 | _PyObject_EXTRA_INIT |
| 2034 | 1, &PyNone_Type |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 2035 | }; |
| 2036 | |
Neil Schemenauer | 5ed85ec | 2001-01-04 01:48:10 +0000 | [diff] [blame] | 2037 | /* NotImplemented is an object that can be used to signal that an |
| 2038 | operation is not implemented for the given type combination. */ |
| 2039 | |
| 2040 | static PyObject * |
| 2041 | NotImplemented_repr(PyObject *op) |
| 2042 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2043 | return PyString_FromString("NotImplemented"); |
Neil Schemenauer | 5ed85ec | 2001-01-04 01:48:10 +0000 | [diff] [blame] | 2044 | } |
| 2045 | |
| 2046 | static PyTypeObject PyNotImplemented_Type = { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2047 | PyVarObject_HEAD_INIT(&PyType_Type, 0) |
| 2048 | "NotImplementedType", |
| 2049 | 0, |
| 2050 | 0, |
| 2051 | none_dealloc, /*tp_dealloc*/ /*never called*/ |
| 2052 | 0, /*tp_print*/ |
| 2053 | 0, /*tp_getattr*/ |
| 2054 | 0, /*tp_setattr*/ |
| 2055 | 0, /*tp_compare*/ |
| 2056 | NotImplemented_repr, /*tp_repr*/ |
| 2057 | 0, /*tp_as_number*/ |
| 2058 | 0, /*tp_as_sequence*/ |
| 2059 | 0, /*tp_as_mapping*/ |
| 2060 | 0, /*tp_hash */ |
Neil Schemenauer | 5ed85ec | 2001-01-04 01:48:10 +0000 | [diff] [blame] | 2061 | }; |
| 2062 | |
| 2063 | PyObject _Py_NotImplementedStruct = { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2064 | _PyObject_EXTRA_INIT |
| 2065 | 1, &PyNotImplemented_Type |
Neil Schemenauer | 5ed85ec | 2001-01-04 01:48:10 +0000 | [diff] [blame] | 2066 | }; |
| 2067 | |
Guido van Rossum | ba21a49 | 2001-08-16 08:17:26 +0000 | [diff] [blame] | 2068 | void |
| 2069 | _Py_ReadyTypes(void) |
| 2070 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2071 | if (PyType_Ready(&PyType_Type) < 0) |
| 2072 | Py_FatalError("Can't initialize type type"); |
Guido van Rossum | ba21a49 | 2001-08-16 08:17:26 +0000 | [diff] [blame] | 2073 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2074 | if (PyType_Ready(&_PyWeakref_RefType) < 0) |
| 2075 | Py_FatalError("Can't initialize weakref type"); |
Fred Drake | 0a4dd39 | 2004-07-02 18:57:45 +0000 | [diff] [blame] | 2076 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2077 | if (PyType_Ready(&_PyWeakref_CallableProxyType) < 0) |
| 2078 | Py_FatalError("Can't initialize callable weakref proxy type"); |
Benjamin Peterson | 308c6ba | 2009-04-19 02:32:42 +0000 | [diff] [blame] | 2079 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2080 | if (PyType_Ready(&_PyWeakref_ProxyType) < 0) |
| 2081 | Py_FatalError("Can't initialize weakref proxy type"); |
Benjamin Peterson | 308c6ba | 2009-04-19 02:32:42 +0000 | [diff] [blame] | 2082 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2083 | if (PyType_Ready(&PyBool_Type) < 0) |
| 2084 | Py_FatalError("Can't initialize bool type"); |
Guido van Rossum | 77f6a65 | 2002-04-03 22:41:51 +0000 | [diff] [blame] | 2085 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2086 | if (PyType_Ready(&PyString_Type) < 0) |
| 2087 | Py_FatalError("Can't initialize str type"); |
Guido van Rossum | cacfc07 | 2002-05-24 19:01:59 +0000 | [diff] [blame] | 2088 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2089 | if (PyType_Ready(&PyByteArray_Type) < 0) |
| 2090 | Py_FatalError("Can't initialize bytearray type"); |
Christian Heimes | 1a6387e | 2008-03-26 12:49:49 +0000 | [diff] [blame] | 2091 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2092 | if (PyType_Ready(&PyList_Type) < 0) |
| 2093 | Py_FatalError("Can't initialize list type"); |
Guido van Rossum | ba21a49 | 2001-08-16 08:17:26 +0000 | [diff] [blame] | 2094 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2095 | if (PyType_Ready(&PyNone_Type) < 0) |
| 2096 | Py_FatalError("Can't initialize None type"); |
Guido van Rossum | ba21a49 | 2001-08-16 08:17:26 +0000 | [diff] [blame] | 2097 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2098 | if (PyType_Ready(&PyNotImplemented_Type) < 0) |
| 2099 | Py_FatalError("Can't initialize NotImplemented type"); |
Benjamin Peterson | d4d400c | 2009-04-18 20:12:47 +0000 | [diff] [blame] | 2100 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2101 | if (PyType_Ready(&PyTraceBack_Type) < 0) |
| 2102 | Py_FatalError("Can't initialize traceback type"); |
Benjamin Peterson | d4d400c | 2009-04-18 20:12:47 +0000 | [diff] [blame] | 2103 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2104 | if (PyType_Ready(&PySuper_Type) < 0) |
| 2105 | Py_FatalError("Can't initialize super type"); |
Benjamin Peterson | d4d400c | 2009-04-18 20:12:47 +0000 | [diff] [blame] | 2106 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2107 | if (PyType_Ready(&PyBaseObject_Type) < 0) |
| 2108 | Py_FatalError("Can't initialize object type"); |
Benjamin Peterson | d4d400c | 2009-04-18 20:12:47 +0000 | [diff] [blame] | 2109 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2110 | if (PyType_Ready(&PyRange_Type) < 0) |
| 2111 | Py_FatalError("Can't initialize xrange type"); |
Benjamin Peterson | d4d400c | 2009-04-18 20:12:47 +0000 | [diff] [blame] | 2112 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2113 | if (PyType_Ready(&PyDict_Type) < 0) |
| 2114 | Py_FatalError("Can't initialize dict type"); |
Benjamin Peterson | d4d400c | 2009-04-18 20:12:47 +0000 | [diff] [blame] | 2115 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2116 | if (PyType_Ready(&PySet_Type) < 0) |
| 2117 | Py_FatalError("Can't initialize set type"); |
Benjamin Peterson | d4d400c | 2009-04-18 20:12:47 +0000 | [diff] [blame] | 2118 | |
Martin v. Löwis | ed11a5d | 2012-05-20 10:42:17 +0200 | [diff] [blame] | 2119 | #ifdef Py_USING_UNICODE |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2120 | if (PyType_Ready(&PyUnicode_Type) < 0) |
| 2121 | Py_FatalError("Can't initialize unicode type"); |
Martin v. Löwis | ed11a5d | 2012-05-20 10:42:17 +0200 | [diff] [blame] | 2122 | #endif |
Benjamin Peterson | d4d400c | 2009-04-18 20:12:47 +0000 | [diff] [blame] | 2123 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2124 | if (PyType_Ready(&PySlice_Type) < 0) |
| 2125 | Py_FatalError("Can't initialize slice type"); |
Benjamin Peterson | d4d400c | 2009-04-18 20:12:47 +0000 | [diff] [blame] | 2126 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2127 | if (PyType_Ready(&PyStaticMethod_Type) < 0) |
| 2128 | Py_FatalError("Can't initialize static method type"); |
Benjamin Peterson | d4d400c | 2009-04-18 20:12:47 +0000 | [diff] [blame] | 2129 | |
Benjamin Peterson | 01c6e6f | 2009-04-18 22:15:26 +0000 | [diff] [blame] | 2130 | #ifndef WITHOUT_COMPLEX |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2131 | if (PyType_Ready(&PyComplex_Type) < 0) |
| 2132 | Py_FatalError("Can't initialize complex type"); |
Benjamin Peterson | 01c6e6f | 2009-04-18 22:15:26 +0000 | [diff] [blame] | 2133 | #endif |
Benjamin Peterson | d4d400c | 2009-04-18 20:12:47 +0000 | [diff] [blame] | 2134 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2135 | if (PyType_Ready(&PyFloat_Type) < 0) |
| 2136 | Py_FatalError("Can't initialize float type"); |
Benjamin Peterson | d4d400c | 2009-04-18 20:12:47 +0000 | [diff] [blame] | 2137 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2138 | if (PyType_Ready(&PyBuffer_Type) < 0) |
| 2139 | Py_FatalError("Can't initialize buffer type"); |
Benjamin Peterson | d4d400c | 2009-04-18 20:12:47 +0000 | [diff] [blame] | 2140 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2141 | if (PyType_Ready(&PyLong_Type) < 0) |
| 2142 | Py_FatalError("Can't initialize long type"); |
Benjamin Peterson | d4d400c | 2009-04-18 20:12:47 +0000 | [diff] [blame] | 2143 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2144 | if (PyType_Ready(&PyInt_Type) < 0) |
| 2145 | Py_FatalError("Can't initialize int type"); |
Benjamin Peterson | d4d400c | 2009-04-18 20:12:47 +0000 | [diff] [blame] | 2146 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2147 | if (PyType_Ready(&PyFrozenSet_Type) < 0) |
| 2148 | Py_FatalError("Can't initialize frozenset type"); |
Benjamin Peterson | d4d400c | 2009-04-18 20:12:47 +0000 | [diff] [blame] | 2149 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2150 | if (PyType_Ready(&PyProperty_Type) < 0) |
| 2151 | Py_FatalError("Can't initialize property type"); |
Benjamin Peterson | d4d400c | 2009-04-18 20:12:47 +0000 | [diff] [blame] | 2152 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2153 | if (PyType_Ready(&PyMemoryView_Type) < 0) |
| 2154 | Py_FatalError("Can't initialize memoryview type"); |
Benjamin Peterson | d4d400c | 2009-04-18 20:12:47 +0000 | [diff] [blame] | 2155 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2156 | if (PyType_Ready(&PyTuple_Type) < 0) |
| 2157 | Py_FatalError("Can't initialize tuple type"); |
Benjamin Peterson | d4d400c | 2009-04-18 20:12:47 +0000 | [diff] [blame] | 2158 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2159 | if (PyType_Ready(&PyEnum_Type) < 0) |
| 2160 | Py_FatalError("Can't initialize enumerate type"); |
Benjamin Peterson | d4d400c | 2009-04-18 20:12:47 +0000 | [diff] [blame] | 2161 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2162 | if (PyType_Ready(&PyReversed_Type) < 0) |
| 2163 | Py_FatalError("Can't initialize reversed type"); |
Benjamin Peterson | 01c6e6f | 2009-04-18 22:15:26 +0000 | [diff] [blame] | 2164 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2165 | if (PyType_Ready(&PyCode_Type) < 0) |
| 2166 | Py_FatalError("Can't initialize code type"); |
Benjamin Peterson | 01c6e6f | 2009-04-18 22:15:26 +0000 | [diff] [blame] | 2167 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2168 | if (PyType_Ready(&PyFrame_Type) < 0) |
| 2169 | Py_FatalError("Can't initialize frame type"); |
Benjamin Peterson | 01c6e6f | 2009-04-18 22:15:26 +0000 | [diff] [blame] | 2170 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2171 | if (PyType_Ready(&PyCFunction_Type) < 0) |
| 2172 | Py_FatalError("Can't initialize builtin function type"); |
Benjamin Peterson | 01c6e6f | 2009-04-18 22:15:26 +0000 | [diff] [blame] | 2173 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2174 | if (PyType_Ready(&PyMethod_Type) < 0) |
| 2175 | Py_FatalError("Can't initialize method type"); |
Benjamin Peterson | 01c6e6f | 2009-04-18 22:15:26 +0000 | [diff] [blame] | 2176 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2177 | if (PyType_Ready(&PyFunction_Type) < 0) |
| 2178 | Py_FatalError("Can't initialize function type"); |
Benjamin Peterson | 01c6e6f | 2009-04-18 22:15:26 +0000 | [diff] [blame] | 2179 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2180 | if (PyType_Ready(&PyClass_Type) < 0) |
| 2181 | Py_FatalError("Can't initialize class type"); |
Benjamin Peterson | 01c6e6f | 2009-04-18 22:15:26 +0000 | [diff] [blame] | 2182 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2183 | if (PyType_Ready(&PyDictProxy_Type) < 0) |
| 2184 | Py_FatalError("Can't initialize dict proxy type"); |
Benjamin Peterson | 01c6e6f | 2009-04-18 22:15:26 +0000 | [diff] [blame] | 2185 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2186 | if (PyType_Ready(&PyGen_Type) < 0) |
| 2187 | Py_FatalError("Can't initialize generator type"); |
Benjamin Peterson | 01c6e6f | 2009-04-18 22:15:26 +0000 | [diff] [blame] | 2188 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2189 | if (PyType_Ready(&PyGetSetDescr_Type) < 0) |
| 2190 | Py_FatalError("Can't initialize get-set descriptor type"); |
Benjamin Peterson | 01c6e6f | 2009-04-18 22:15:26 +0000 | [diff] [blame] | 2191 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2192 | if (PyType_Ready(&PyWrapperDescr_Type) < 0) |
| 2193 | Py_FatalError("Can't initialize wrapper type"); |
Benjamin Peterson | 01c6e6f | 2009-04-18 22:15:26 +0000 | [diff] [blame] | 2194 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2195 | if (PyType_Ready(&PyInstance_Type) < 0) |
| 2196 | Py_FatalError("Can't initialize instance type"); |
Benjamin Peterson | 01c6e6f | 2009-04-18 22:15:26 +0000 | [diff] [blame] | 2197 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2198 | if (PyType_Ready(&PyEllipsis_Type) < 0) |
| 2199 | Py_FatalError("Can't initialize ellipsis type"); |
Benjamin Peterson | 01c6e6f | 2009-04-18 22:15:26 +0000 | [diff] [blame] | 2200 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2201 | if (PyType_Ready(&PyMemberDescr_Type) < 0) |
| 2202 | Py_FatalError("Can't initialize member descriptor type"); |
Antoine Pitrou | d11f7fc | 2009-05-31 18:05:51 +0000 | [diff] [blame] | 2203 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2204 | if (PyType_Ready(&PyFile_Type) < 0) |
| 2205 | Py_FatalError("Can't initialize file type"); |
Benjamin Peterson | 6da3ed6 | 2012-10-30 23:21:10 -0400 | [diff] [blame] | 2206 | |
| 2207 | if (PyType_Ready(&PyCapsule_Type) < 0) |
| 2208 | Py_FatalError("Can't initialize capsule type"); |
| 2209 | |
| 2210 | if (PyType_Ready(&PyCell_Type) < 0) |
| 2211 | Py_FatalError("Can't initialize cell type"); |
| 2212 | |
| 2213 | if (PyType_Ready(&PyCallIter_Type) < 0) |
| 2214 | Py_FatalError("Can't initialize call iter type"); |
| 2215 | |
| 2216 | if (PyType_Ready(&PySeqIter_Type) < 0) |
| 2217 | Py_FatalError("Can't initialize sequence iterator type"); |
Guido van Rossum | ba21a49 | 2001-08-16 08:17:26 +0000 | [diff] [blame] | 2218 | } |
| 2219 | |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 2220 | |
Guido van Rossum | 84a9032 | 1996-05-22 16:34:47 +0000 | [diff] [blame] | 2221 | #ifdef Py_TRACE_REFS |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 2222 | |
Guido van Rossum | aacdc9d | 1996-08-12 21:32:12 +0000 | [diff] [blame] | 2223 | void |
Fred Drake | 100814d | 2000-07-09 15:48:49 +0000 | [diff] [blame] | 2224 | _Py_NewReference(PyObject *op) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 2225 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2226 | _Py_INC_REFTOTAL; |
| 2227 | op->ob_refcnt = 1; |
| 2228 | _Py_AddToAllObjects(op, 1); |
| 2229 | _Py_INC_TPALLOCS(op); |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 2230 | } |
| 2231 | |
Guido van Rossum | aacdc9d | 1996-08-12 21:32:12 +0000 | [diff] [blame] | 2232 | void |
Fred Drake | 100814d | 2000-07-09 15:48:49 +0000 | [diff] [blame] | 2233 | _Py_ForgetReference(register PyObject *op) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 2234 | { |
Guido van Rossum | bffd683 | 2000-01-20 22:32:56 +0000 | [diff] [blame] | 2235 | #ifdef SLOW_UNREF_CHECK |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2236 | register PyObject *p; |
Guido van Rossum | bffd683 | 2000-01-20 22:32:56 +0000 | [diff] [blame] | 2237 | #endif |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2238 | if (op->ob_refcnt < 0) |
| 2239 | Py_FatalError("UNREF negative refcnt"); |
| 2240 | if (op == &refchain || |
| 2241 | op->_ob_prev->_ob_next != op || op->_ob_next->_ob_prev != op) |
| 2242 | Py_FatalError("UNREF invalid object"); |
Guido van Rossum | 2e8f614 | 1992-09-03 20:32:55 +0000 | [diff] [blame] | 2243 | #ifdef SLOW_UNREF_CHECK |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2244 | for (p = refchain._ob_next; p != &refchain; p = p->_ob_next) { |
| 2245 | if (p == op) |
| 2246 | break; |
| 2247 | } |
| 2248 | if (p == &refchain) /* Not found */ |
| 2249 | Py_FatalError("UNREF unknown object"); |
Guido van Rossum | 2e8f614 | 1992-09-03 20:32:55 +0000 | [diff] [blame] | 2250 | #endif |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2251 | op->_ob_next->_ob_prev = op->_ob_prev; |
| 2252 | op->_ob_prev->_ob_next = op->_ob_next; |
| 2253 | op->_ob_next = op->_ob_prev = NULL; |
| 2254 | _Py_INC_TPFREES(op); |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 2255 | } |
| 2256 | |
Guido van Rossum | aacdc9d | 1996-08-12 21:32:12 +0000 | [diff] [blame] | 2257 | void |
Fred Drake | 100814d | 2000-07-09 15:48:49 +0000 | [diff] [blame] | 2258 | _Py_Dealloc(PyObject *op) |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 2259 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2260 | destructor dealloc = Py_TYPE(op)->tp_dealloc; |
| 2261 | _Py_ForgetReference(op); |
| 2262 | (*dealloc)(op); |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 2263 | } |
| 2264 | |
Tim Peters | 269b2a6 | 2003-04-17 19:52:29 +0000 | [diff] [blame] | 2265 | /* Print all live objects. Because PyObject_Print is called, the |
| 2266 | * interpreter must be in a healthy state. |
| 2267 | */ |
Guido van Rossum | aacdc9d | 1996-08-12 21:32:12 +0000 | [diff] [blame] | 2268 | void |
Fred Drake | 100814d | 2000-07-09 15:48:49 +0000 | [diff] [blame] | 2269 | _Py_PrintReferences(FILE *fp) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 2270 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2271 | PyObject *op; |
| 2272 | fprintf(fp, "Remaining objects:\n"); |
| 2273 | for (op = refchain._ob_next; op != &refchain; op = op->_ob_next) { |
| 2274 | fprintf(fp, "%p [%" PY_FORMAT_SIZE_T "d] ", op, op->ob_refcnt); |
| 2275 | if (PyObject_Print(op, fp, 0) != 0) |
| 2276 | PyErr_Clear(); |
| 2277 | putc('\n', fp); |
| 2278 | } |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 2279 | } |
| 2280 | |
Tim Peters | 269b2a6 | 2003-04-17 19:52:29 +0000 | [diff] [blame] | 2281 | /* Print the addresses of all live objects. Unlike _Py_PrintReferences, this |
| 2282 | * doesn't make any calls to the Python C API, so is always safe to call. |
| 2283 | */ |
| 2284 | void |
| 2285 | _Py_PrintReferenceAddresses(FILE *fp) |
| 2286 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2287 | PyObject *op; |
| 2288 | fprintf(fp, "Remaining object addresses:\n"); |
| 2289 | for (op = refchain._ob_next; op != &refchain; op = op->_ob_next) |
| 2290 | fprintf(fp, "%p [%" PY_FORMAT_SIZE_T "d] %s\n", op, |
| 2291 | op->ob_refcnt, Py_TYPE(op)->tp_name); |
Tim Peters | 269b2a6 | 2003-04-17 19:52:29 +0000 | [diff] [blame] | 2292 | } |
| 2293 | |
Sjoerd Mullender | 6ec3c65 | 1995-08-29 09:18:14 +0000 | [diff] [blame] | 2294 | PyObject * |
Fred Drake | 100814d | 2000-07-09 15:48:49 +0000 | [diff] [blame] | 2295 | _Py_GetObjects(PyObject *self, PyObject *args) |
Sjoerd Mullender | 6ec3c65 | 1995-08-29 09:18:14 +0000 | [diff] [blame] | 2296 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2297 | int i, n; |
| 2298 | PyObject *t = NULL; |
| 2299 | PyObject *res, *op; |
Sjoerd Mullender | 6ec3c65 | 1995-08-29 09:18:14 +0000 | [diff] [blame] | 2300 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2301 | if (!PyArg_ParseTuple(args, "i|O", &n, &t)) |
| 2302 | return NULL; |
| 2303 | op = refchain._ob_next; |
| 2304 | res = PyList_New(0); |
| 2305 | if (res == NULL) |
| 2306 | return NULL; |
| 2307 | for (i = 0; (n == 0 || i < n) && op != &refchain; i++) { |
| 2308 | while (op == self || op == args || op == res || op == t || |
| 2309 | (t != NULL && Py_TYPE(op) != (PyTypeObject *) t)) { |
| 2310 | op = op->_ob_next; |
| 2311 | if (op == &refchain) |
| 2312 | return res; |
| 2313 | } |
| 2314 | if (PyList_Append(res, op) < 0) { |
| 2315 | Py_DECREF(res); |
| 2316 | return NULL; |
| 2317 | } |
| 2318 | op = op->_ob_next; |
| 2319 | } |
| 2320 | return res; |
Sjoerd Mullender | 6ec3c65 | 1995-08-29 09:18:14 +0000 | [diff] [blame] | 2321 | } |
| 2322 | |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 2323 | #endif |
Guido van Rossum | 97ead3f | 1996-01-12 01:24:09 +0000 | [diff] [blame] | 2324 | |
| 2325 | |
Larry Hastings | 402b73f | 2010-03-25 00:54:54 +0000 | [diff] [blame] | 2326 | /* Hack to force loading of capsule.o */ |
| 2327 | PyTypeObject *_Py_capsule_hack = &PyCapsule_Type; |
| 2328 | |
| 2329 | |
Guido van Rossum | 97ead3f | 1996-01-12 01:24:09 +0000 | [diff] [blame] | 2330 | /* Hack to force loading of cobject.o */ |
Guido van Rossum | da9c271 | 1996-12-05 21:58:58 +0000 | [diff] [blame] | 2331 | PyTypeObject *_Py_cobject_hack = &PyCObject_Type; |
Guido van Rossum | 84a9032 | 1996-05-22 16:34:47 +0000 | [diff] [blame] | 2332 | |
| 2333 | |
| 2334 | /* Hack to force loading of abstract.o */ |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 2335 | Py_ssize_t (*_Py_abstract_hack)(PyObject *) = PyObject_Size; |
Guido van Rossum | e09fb55 | 1997-08-05 02:04:34 +0000 | [diff] [blame] | 2336 | |
| 2337 | |
Andrew M. Kuchling | 1582a3a | 2000-08-16 12:27:23 +0000 | [diff] [blame] | 2338 | /* Python's malloc wrappers (see pymem.h) */ |
Guido van Rossum | e09fb55 | 1997-08-05 02:04:34 +0000 | [diff] [blame] | 2339 | |
Thomas Wouters | 334fb89 | 2000-07-25 12:56:38 +0000 | [diff] [blame] | 2340 | void * |
Fred Drake | 100814d | 2000-07-09 15:48:49 +0000 | [diff] [blame] | 2341 | PyMem_Malloc(size_t nbytes) |
Guido van Rossum | e09fb55 | 1997-08-05 02:04:34 +0000 | [diff] [blame] | 2342 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2343 | return PyMem_MALLOC(nbytes); |
Guido van Rossum | e09fb55 | 1997-08-05 02:04:34 +0000 | [diff] [blame] | 2344 | } |
| 2345 | |
Thomas Wouters | 334fb89 | 2000-07-25 12:56:38 +0000 | [diff] [blame] | 2346 | void * |
| 2347 | PyMem_Realloc(void *p, size_t nbytes) |
Guido van Rossum | e09fb55 | 1997-08-05 02:04:34 +0000 | [diff] [blame] | 2348 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2349 | return PyMem_REALLOC(p, nbytes); |
Guido van Rossum | e09fb55 | 1997-08-05 02:04:34 +0000 | [diff] [blame] | 2350 | } |
| 2351 | |
| 2352 | void |
Thomas Wouters | 334fb89 | 2000-07-25 12:56:38 +0000 | [diff] [blame] | 2353 | PyMem_Free(void *p) |
Guido van Rossum | e09fb55 | 1997-08-05 02:04:34 +0000 | [diff] [blame] | 2354 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2355 | PyMem_FREE(p); |
Guido van Rossum | b18618d | 2000-05-03 23:44:39 +0000 | [diff] [blame] | 2356 | } |
| 2357 | |
| 2358 | |
Guido van Rossum | 8661036 | 1998-04-10 22:32:46 +0000 | [diff] [blame] | 2359 | /* These methods are used to control infinite recursion in repr, str, print, |
| 2360 | etc. Container objects that may recursively contain themselves, |
| 2361 | e.g. builtin dictionaries and lists, should used Py_ReprEnter() and |
| 2362 | Py_ReprLeave() to avoid infinite recursion. |
| 2363 | |
| 2364 | Py_ReprEnter() returns 0 the first time it is called for a particular |
| 2365 | object and 1 every time thereafter. It returns -1 if an exception |
| 2366 | occurred. Py_ReprLeave() has no return value. |
| 2367 | |
| 2368 | See dictobject.c and listobject.c for examples of use. |
| 2369 | */ |
| 2370 | |
| 2371 | #define KEY "Py_Repr" |
| 2372 | |
| 2373 | int |
Fred Drake | 100814d | 2000-07-09 15:48:49 +0000 | [diff] [blame] | 2374 | Py_ReprEnter(PyObject *obj) |
Guido van Rossum | 8661036 | 1998-04-10 22:32:46 +0000 | [diff] [blame] | 2375 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2376 | PyObject *dict; |
| 2377 | PyObject *list; |
| 2378 | Py_ssize_t i; |
Guido van Rossum | 8661036 | 1998-04-10 22:32:46 +0000 | [diff] [blame] | 2379 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2380 | dict = PyThreadState_GetDict(); |
| 2381 | if (dict == NULL) |
| 2382 | return 0; |
| 2383 | list = PyDict_GetItemString(dict, KEY); |
| 2384 | if (list == NULL) { |
| 2385 | list = PyList_New(0); |
| 2386 | if (list == NULL) |
| 2387 | return -1; |
| 2388 | if (PyDict_SetItemString(dict, KEY, list) < 0) |
| 2389 | return -1; |
| 2390 | Py_DECREF(list); |
| 2391 | } |
| 2392 | i = PyList_GET_SIZE(list); |
| 2393 | while (--i >= 0) { |
| 2394 | if (PyList_GET_ITEM(list, i) == obj) |
| 2395 | return 1; |
| 2396 | } |
| 2397 | PyList_Append(list, obj); |
| 2398 | return 0; |
Guido van Rossum | 8661036 | 1998-04-10 22:32:46 +0000 | [diff] [blame] | 2399 | } |
| 2400 | |
| 2401 | void |
Fred Drake | 100814d | 2000-07-09 15:48:49 +0000 | [diff] [blame] | 2402 | Py_ReprLeave(PyObject *obj) |
Guido van Rossum | 8661036 | 1998-04-10 22:32:46 +0000 | [diff] [blame] | 2403 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2404 | PyObject *dict; |
| 2405 | PyObject *list; |
| 2406 | Py_ssize_t i; |
Guido van Rossum | 8661036 | 1998-04-10 22:32:46 +0000 | [diff] [blame] | 2407 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2408 | dict = PyThreadState_GetDict(); |
| 2409 | if (dict == NULL) |
| 2410 | return; |
| 2411 | list = PyDict_GetItemString(dict, KEY); |
| 2412 | if (list == NULL || !PyList_Check(list)) |
| 2413 | return; |
| 2414 | i = PyList_GET_SIZE(list); |
| 2415 | /* Count backwards because we always expect obj to be list[-1] */ |
| 2416 | while (--i >= 0) { |
| 2417 | if (PyList_GET_ITEM(list, i) == obj) { |
| 2418 | PyList_SetSlice(list, i, i + 1, NULL); |
| 2419 | break; |
| 2420 | } |
| 2421 | } |
Guido van Rossum | 8661036 | 1998-04-10 22:32:46 +0000 | [diff] [blame] | 2422 | } |
Guido van Rossum | d724b23 | 2000-03-13 16:01:29 +0000 | [diff] [blame] | 2423 | |
Tim Peters | 803526b | 2002-07-07 05:13:56 +0000 | [diff] [blame] | 2424 | /* Trashcan support. */ |
Guido van Rossum | d724b23 | 2000-03-13 16:01:29 +0000 | [diff] [blame] | 2425 | |
Tim Peters | 803526b | 2002-07-07 05:13:56 +0000 | [diff] [blame] | 2426 | /* Current call-stack depth of tp_dealloc calls. */ |
Guido van Rossum | d724b23 | 2000-03-13 16:01:29 +0000 | [diff] [blame] | 2427 | int _PyTrash_delete_nesting = 0; |
Guido van Rossum | e92e610 | 2000-04-24 15:40:53 +0000 | [diff] [blame] | 2428 | |
Tim Peters | 803526b | 2002-07-07 05:13:56 +0000 | [diff] [blame] | 2429 | /* List of objects that still need to be cleaned up, singly linked via their |
| 2430 | * gc headers' gc_prev pointers. |
| 2431 | */ |
| 2432 | PyObject *_PyTrash_delete_later = NULL; |
Guido van Rossum | d724b23 | 2000-03-13 16:01:29 +0000 | [diff] [blame] | 2433 | |
Tim Peters | 803526b | 2002-07-07 05:13:56 +0000 | [diff] [blame] | 2434 | /* Add op to the _PyTrash_delete_later list. Called when the current |
| 2435 | * call-stack depth gets large. op must be a currently untracked gc'ed |
| 2436 | * object, with refcount 0. Py_DECREF must already have been called on it. |
| 2437 | */ |
Guido van Rossum | d724b23 | 2000-03-13 16:01:29 +0000 | [diff] [blame] | 2438 | void |
Fred Drake | 100814d | 2000-07-09 15:48:49 +0000 | [diff] [blame] | 2439 | _PyTrash_deposit_object(PyObject *op) |
Guido van Rossum | d724b23 | 2000-03-13 16:01:29 +0000 | [diff] [blame] | 2440 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2441 | assert(PyObject_IS_GC(op)); |
| 2442 | assert(_Py_AS_GC(op)->gc.gc_refs == _PyGC_REFS_UNTRACKED); |
| 2443 | assert(op->ob_refcnt == 0); |
| 2444 | _Py_AS_GC(op)->gc.gc_prev = (PyGC_Head *)_PyTrash_delete_later; |
| 2445 | _PyTrash_delete_later = op; |
Guido van Rossum | d724b23 | 2000-03-13 16:01:29 +0000 | [diff] [blame] | 2446 | } |
| 2447 | |
Antoine Pitrou | 58098a7 | 2012-09-06 00:59:49 +0200 | [diff] [blame] | 2448 | /* The equivalent API, using per-thread state recursion info */ |
| 2449 | void |
| 2450 | _PyTrash_thread_deposit_object(PyObject *op) |
| 2451 | { |
| 2452 | PyThreadState *tstate = PyThreadState_GET(); |
| 2453 | assert(PyObject_IS_GC(op)); |
| 2454 | assert(_Py_AS_GC(op)->gc.gc_refs == _PyGC_REFS_UNTRACKED); |
| 2455 | assert(op->ob_refcnt == 0); |
| 2456 | _Py_AS_GC(op)->gc.gc_prev = (PyGC_Head *) tstate->trash_delete_later; |
| 2457 | tstate->trash_delete_later = op; |
| 2458 | } |
| 2459 | |
Tim Peters | 803526b | 2002-07-07 05:13:56 +0000 | [diff] [blame] | 2460 | /* Dealloccate all the objects in the _PyTrash_delete_later list. Called when |
| 2461 | * the call-stack unwinds again. |
| 2462 | */ |
Guido van Rossum | d724b23 | 2000-03-13 16:01:29 +0000 | [diff] [blame] | 2463 | void |
Fred Drake | 100814d | 2000-07-09 15:48:49 +0000 | [diff] [blame] | 2464 | _PyTrash_destroy_chain(void) |
Guido van Rossum | d724b23 | 2000-03-13 16:01:29 +0000 | [diff] [blame] | 2465 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2466 | while (_PyTrash_delete_later) { |
| 2467 | PyObject *op = _PyTrash_delete_later; |
| 2468 | destructor dealloc = Py_TYPE(op)->tp_dealloc; |
Neil Schemenauer | f589c05 | 2002-03-29 03:05:54 +0000 | [diff] [blame] | 2469 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2470 | _PyTrash_delete_later = |
| 2471 | (PyObject*) _Py_AS_GC(op)->gc.gc_prev; |
Neil Schemenauer | f589c05 | 2002-03-29 03:05:54 +0000 | [diff] [blame] | 2472 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 2473 | /* Call the deallocator directly. This used to try to |
| 2474 | * fool Py_DECREF into calling it indirectly, but |
| 2475 | * Py_DECREF was already called on this object, and in |
| 2476 | * assorted non-release builds calling Py_DECREF again ends |
| 2477 | * up distorting allocation statistics. |
| 2478 | */ |
| 2479 | assert(op->ob_refcnt == 0); |
| 2480 | ++_PyTrash_delete_nesting; |
| 2481 | (*dealloc)(op); |
| 2482 | --_PyTrash_delete_nesting; |
| 2483 | } |
Guido van Rossum | d724b23 | 2000-03-13 16:01:29 +0000 | [diff] [blame] | 2484 | } |
Anthony Baxter | ac6bd46 | 2006-04-13 02:06:09 +0000 | [diff] [blame] | 2485 | |
Antoine Pitrou | 58098a7 | 2012-09-06 00:59:49 +0200 | [diff] [blame] | 2486 | /* The equivalent API, using per-thread state recursion info */ |
| 2487 | void |
| 2488 | _PyTrash_thread_destroy_chain(void) |
| 2489 | { |
| 2490 | PyThreadState *tstate = PyThreadState_GET(); |
| 2491 | while (tstate->trash_delete_later) { |
| 2492 | PyObject *op = tstate->trash_delete_later; |
| 2493 | destructor dealloc = Py_TYPE(op)->tp_dealloc; |
| 2494 | |
| 2495 | tstate->trash_delete_later = |
| 2496 | (PyObject*) _Py_AS_GC(op)->gc.gc_prev; |
| 2497 | |
| 2498 | /* Call the deallocator directly. This used to try to |
| 2499 | * fool Py_DECREF into calling it indirectly, but |
| 2500 | * Py_DECREF was already called on this object, and in |
| 2501 | * assorted non-release builds calling Py_DECREF again ends |
| 2502 | * up distorting allocation statistics. |
| 2503 | */ |
| 2504 | assert(op->ob_refcnt == 0); |
| 2505 | ++tstate->trash_delete_nesting; |
| 2506 | (*dealloc)(op); |
| 2507 | --tstate->trash_delete_nesting; |
| 2508 | } |
| 2509 | } |
| 2510 | |
Anthony Baxter | ac6bd46 | 2006-04-13 02:06:09 +0000 | [diff] [blame] | 2511 | #ifdef __cplusplus |
| 2512 | } |
| 2513 | #endif |