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