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