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