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