Guido van Rossum | a330996 | 1993-07-28 09:05:47 +0000 | [diff] [blame] | 1 | #ifndef Py_OBJECT_H |
| 2 | #define Py_OBJECT_H |
| 3 | #ifdef __cplusplus |
| 4 | extern "C" { |
| 5 | #endif |
| 6 | |
Guido van Rossum | f70e43a | 1991-02-19 12:39:46 +0000 | [diff] [blame] | 7 | |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 8 | /* Object and type object interface */ |
| 9 | |
| 10 | /* |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 11 | Objects are structures allocated on the heap. Special rules apply to |
| 12 | the use of objects to ensure they are properly garbage-collected. |
| 13 | Objects are never allocated statically or on the stack; they must be |
| 14 | accessed through special macros and functions only. (Type objects are |
| 15 | exceptions to the first rule; the standard types are represented by |
Tim Peters | 4be93d0 | 2002-07-07 19:59:50 +0000 | [diff] [blame] | 16 | statically initialized type objects, although work on type/class unification |
| 17 | for Python 2.2 made it possible to have heap-allocated type objects too). |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 18 | |
| 19 | An object has a 'reference count' that is increased or decreased when a |
| 20 | pointer to the object is copied or deleted; when the reference count |
| 21 | reaches zero there are no references to the object left and it can be |
| 22 | removed from the heap. |
| 23 | |
| 24 | An object has a 'type' that determines what it represents and what kind |
| 25 | of data it contains. An object's type is fixed when it is created. |
| 26 | Types themselves are represented as objects; an object contains a |
| 27 | pointer to the corresponding type object. The type itself has a type |
| 28 | pointer pointing to the object representing the type 'type', which |
| 29 | contains a pointer to itself!). |
| 30 | |
| 31 | Objects do not float around in memory; once allocated an object keeps |
| 32 | the same size and address. Objects that must hold variable-size data |
| 33 | can contain pointers to variable-size parts of the object. Not all |
| 34 | objects of the same type have the same size; but the size cannot change |
| 35 | after allocation. (These restrictions are made so a reference to an |
| 36 | object can be simply a pointer -- moving an object would require |
| 37 | updating all the pointers, and changing an object's size would require |
| 38 | moving it if there was another object right next to it.) |
| 39 | |
Guido van Rossum | caa6380 | 1995-01-12 11:45:45 +0000 | [diff] [blame] | 40 | Objects are always accessed through pointers of the type 'PyObject *'. |
| 41 | The type 'PyObject' is a structure that only contains the reference count |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 42 | and the type pointer. The actual memory allocated for an object |
| 43 | contains other data that can only be accessed after casting the pointer |
| 44 | to a pointer to a longer structure type. This longer type must start |
Guido van Rossum | caa6380 | 1995-01-12 11:45:45 +0000 | [diff] [blame] | 45 | with the reference count and type fields; the macro PyObject_HEAD should be |
Thomas Wouters | 7e47402 | 2000-07-16 12:04:32 +0000 | [diff] [blame] | 46 | used for this (to accommodate for future changes). The implementation |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 47 | of a particular object type can cast the object pointer to the proper |
| 48 | type and back. |
| 49 | |
| 50 | A standard interface exists for objects that contain an array of items |
| 51 | whose size is determined when the object is allocated. |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 52 | */ |
| 53 | |
Guido van Rossum | 408027e | 1996-12-30 16:17:54 +0000 | [diff] [blame] | 54 | #ifdef Py_DEBUG |
Tim Peters | 4be93d0 | 2002-07-07 19:59:50 +0000 | [diff] [blame] | 55 | /* Turn on aggregate reference counting. This arranges that extern |
| 56 | * _Py_RefTotal hold a count of all references, the sum of ob_refcnt |
| 57 | * across all objects. The value can be gotten programatically via |
| 58 | * sys.gettotalrefcount() (which exists only if Py_REF_DEBUG is enabled). |
| 59 | * In a debug-mode build, this is where the "8288" comes from in |
| 60 | * |
| 61 | * >>> 23 |
| 62 | * 23 |
| 63 | * [8288 refs] |
| 64 | * >>> |
| 65 | * |
| 66 | * Note that if this count increases when you're not storing away new objects, |
| 67 | * there's probably a leak. Remember, though, that in interactive mode the |
| 68 | * special name "_" holds a reference to the last result displayed! |
Tim Peters | 7c321a8 | 2002-07-09 02:57:01 +0000 | [diff] [blame] | 69 | * Py_REF_DEBUG also checks after every decref to verify that the refcount |
| 70 | * hasn't gone negative, and causes an immediate fatal error if it has. |
Tim Peters | 4be93d0 | 2002-07-07 19:59:50 +0000 | [diff] [blame] | 71 | */ |
Guido van Rossum | caa6380 | 1995-01-12 11:45:45 +0000 | [diff] [blame] | 72 | #define Py_REF_DEBUG |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 73 | |
Tim Peters | 4be93d0 | 2002-07-07 19:59:50 +0000 | [diff] [blame] | 74 | /* Turn on heavy reference debugging. This is major surgery. Every PyObject |
| 75 | * grows two more pointers, to maintain a doubly-linked list of all live |
| 76 | * heap-allocated objects (note that, e.g., most builtin type objects are |
| 77 | * not in this list, as they're statically allocated). This list can be |
| 78 | * materialized into a Python list via sys.getobjects() (which exists only |
| 79 | * if Py_TRACE_REFS is enabled). Py_TRACE_REFS implies Py_REF_DEBUG. |
| 80 | */ |
| 81 | #define Py_TRACE_REFS |
Guido van Rossum | 408027e | 1996-12-30 16:17:54 +0000 | [diff] [blame] | 82 | #endif /* Py_DEBUG */ |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 83 | |
Tim Peters | 4be93d0 | 2002-07-07 19:59:50 +0000 | [diff] [blame] | 84 | /* Py_TRACE_REFS implies Py_REF_DEBUG. */ |
| 85 | #if defined(Py_TRACE_REFS) && !defined(Py_REF_DEBUG) |
| 86 | #define Py_REF_DEBUG |
| 87 | #endif |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 88 | |
Tim Peters | 4be93d0 | 2002-07-07 19:59:50 +0000 | [diff] [blame] | 89 | #ifdef Py_TRACE_REFS |
| 90 | /* Define pointers to support a doubly-linked list of all live heap objects. */ |
| 91 | #define _PyObject_HEAD_EXTRA \ |
| 92 | struct _object *_ob_next; \ |
| 93 | struct _object *_ob_prev; |
| 94 | |
| 95 | #define _PyObject_EXTRA_INIT 0, 0, |
| 96 | |
| 97 | #else |
| 98 | #define _PyObject_HEAD_EXTRA |
| 99 | #define _PyObject_EXTRA_INIT |
| 100 | #endif |
| 101 | |
| 102 | /* PyObject_HEAD defines the initial segment of every PyObject. */ |
| 103 | #define PyObject_HEAD \ |
| 104 | _PyObject_HEAD_EXTRA \ |
| 105 | int ob_refcnt; \ |
| 106 | struct _typeobject *ob_type; |
| 107 | |
| 108 | #define PyObject_HEAD_INIT(type) \ |
| 109 | _PyObject_EXTRA_INIT \ |
| 110 | 1, type, |
| 111 | |
| 112 | /* PyObject_VAR_HEAD defines the initial segment of all variable-size |
| 113 | * container objects. These end with a declaration of an array with 1 |
| 114 | * element, but enough space is malloc'ed so that the array actually |
| 115 | * has room for ob_size elements. Note that ob_size is an element count, |
| 116 | * not necessarily a byte count. |
| 117 | */ |
| 118 | #define PyObject_VAR_HEAD \ |
| 119 | PyObject_HEAD \ |
Guido van Rossum | 5799b52 | 1995-01-04 19:06:22 +0000 | [diff] [blame] | 120 | int ob_size; /* Number of items in variable part */ |
Tim Peters | 803526b | 2002-07-07 05:13:56 +0000 | [diff] [blame] | 121 | |
Tim Peters | 4be93d0 | 2002-07-07 19:59:50 +0000 | [diff] [blame] | 122 | /* Nothing is actually declared to be a PyObject, but every pointer to |
| 123 | * a Python object can be cast to a PyObject*. This is inheritance built |
| 124 | * by hand. Similarly every pointer to a variable-size Python object can, |
| 125 | * in addition, be cast to PyVarObject*. |
| 126 | */ |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 127 | typedef struct _object { |
Guido van Rossum | caa6380 | 1995-01-12 11:45:45 +0000 | [diff] [blame] | 128 | PyObject_HEAD |
| 129 | } PyObject; |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 130 | |
| 131 | typedef struct { |
Guido van Rossum | caa6380 | 1995-01-12 11:45:45 +0000 | [diff] [blame] | 132 | PyObject_VAR_HEAD |
Guido van Rossum | d0c87ee | 1997-05-15 21:31:03 +0000 | [diff] [blame] | 133 | } PyVarObject; |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 134 | |
| 135 | |
| 136 | /* |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 137 | Type objects contain a string containing the type name (to help somewhat |
Tim Peters | 4be93d0 | 2002-07-07 19:59:50 +0000 | [diff] [blame] | 138 | in debugging), the allocation parameters (see PyObject_New() and |
| 139 | PyObject_NewVar()), |
| 140 | and methods for accessing objects of the type. Methods are optional, a |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 141 | nil pointer meaning that particular kind of access is not available for |
Guido van Rossum | caa6380 | 1995-01-12 11:45:45 +0000 | [diff] [blame] | 142 | this type. The Py_DECREF() macro uses the tp_dealloc method without |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 143 | checking for a nil pointer; it should always be implemented except if |
| 144 | the implementation can guarantee that the reference count will never |
Tim Peters | 4be93d0 | 2002-07-07 19:59:50 +0000 | [diff] [blame] | 145 | reach zero (e.g., for statically allocated type objects). |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 146 | |
| 147 | NB: the methods for certain type groups are now contained in separate |
| 148 | method blocks. |
| 149 | */ |
| 150 | |
Tim Peters | 9ace6bc | 2000-07-08 00:32:04 +0000 | [diff] [blame] | 151 | typedef PyObject * (*unaryfunc)(PyObject *); |
| 152 | typedef PyObject * (*binaryfunc)(PyObject *, PyObject *); |
| 153 | typedef PyObject * (*ternaryfunc)(PyObject *, PyObject *, PyObject *); |
| 154 | typedef int (*inquiry)(PyObject *); |
| 155 | typedef int (*coercion)(PyObject **, PyObject **); |
| 156 | typedef PyObject *(*intargfunc)(PyObject *, int); |
| 157 | typedef PyObject *(*intintargfunc)(PyObject *, int, int); |
| 158 | typedef int(*intobjargproc)(PyObject *, int, PyObject *); |
| 159 | typedef int(*intintobjargproc)(PyObject *, int, int, PyObject *); |
| 160 | typedef int(*objobjargproc)(PyObject *, PyObject *, PyObject *); |
| 161 | typedef int (*getreadbufferproc)(PyObject *, int, void **); |
| 162 | typedef int (*getwritebufferproc)(PyObject *, int, void **); |
| 163 | typedef int (*getsegcountproc)(PyObject *, int *); |
| 164 | typedef int (*getcharbufferproc)(PyObject *, int, const char **); |
| 165 | typedef int (*objobjproc)(PyObject *, PyObject *); |
| 166 | typedef int (*visitproc)(PyObject *, void *); |
| 167 | typedef int (*traverseproc)(PyObject *, visitproc, void *); |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 168 | |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 169 | typedef struct { |
Guido van Rossum | 5f284ce | 2001-01-17 15:20:39 +0000 | [diff] [blame] | 170 | /* For numbers without flag bit Py_TPFLAGS_CHECKTYPES set, all |
| 171 | arguments are guaranteed to be of the object's type (modulo |
Tim Peters | 4be93d0 | 2002-07-07 19:59:50 +0000 | [diff] [blame] | 172 | coercion hacks -- i.e. if the type's coercion function |
Guido van Rossum | 5f284ce | 2001-01-17 15:20:39 +0000 | [diff] [blame] | 173 | returns other types, then these are allowed as well). Numbers that |
| 174 | have the Py_TPFLAGS_CHECKTYPES flag bit set should check *both* |
| 175 | arguments for proper type and implement the necessary conversions |
| 176 | in the slot functions themselves. */ |
Neil Schemenauer | a7ed694 | 2001-01-04 01:31:50 +0000 | [diff] [blame] | 177 | |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 178 | binaryfunc nb_add; |
| 179 | binaryfunc nb_subtract; |
| 180 | binaryfunc nb_multiply; |
| 181 | binaryfunc nb_divide; |
| 182 | binaryfunc nb_remainder; |
| 183 | binaryfunc nb_divmod; |
Guido van Rossum | 75abc63 | 1994-08-09 13:21:54 +0000 | [diff] [blame] | 184 | ternaryfunc nb_power; |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 185 | unaryfunc nb_negative; |
| 186 | unaryfunc nb_positive; |
| 187 | unaryfunc nb_absolute; |
| 188 | inquiry nb_nonzero; |
| 189 | unaryfunc nb_invert; |
| 190 | binaryfunc nb_lshift; |
| 191 | binaryfunc nb_rshift; |
| 192 | binaryfunc nb_and; |
| 193 | binaryfunc nb_xor; |
| 194 | binaryfunc nb_or; |
| 195 | coercion nb_coerce; |
| 196 | unaryfunc nb_int; |
| 197 | unaryfunc nb_long; |
| 198 | unaryfunc nb_float; |
| 199 | unaryfunc nb_oct; |
| 200 | unaryfunc nb_hex; |
Fred Drake | d55657b | 2001-08-15 18:32:33 +0000 | [diff] [blame] | 201 | /* Added in release 2.0 */ |
Thomas Wouters | dd8dbdb | 2000-08-24 20:09:45 +0000 | [diff] [blame] | 202 | binaryfunc nb_inplace_add; |
| 203 | binaryfunc nb_inplace_subtract; |
| 204 | binaryfunc nb_inplace_multiply; |
| 205 | binaryfunc nb_inplace_divide; |
| 206 | binaryfunc nb_inplace_remainder; |
| 207 | ternaryfunc nb_inplace_power; |
| 208 | binaryfunc nb_inplace_lshift; |
| 209 | binaryfunc nb_inplace_rshift; |
| 210 | binaryfunc nb_inplace_and; |
| 211 | binaryfunc nb_inplace_xor; |
| 212 | binaryfunc nb_inplace_or; |
Guido van Rossum | 4668b00 | 2001-08-08 05:00:18 +0000 | [diff] [blame] | 213 | |
Fred Drake | d55657b | 2001-08-15 18:32:33 +0000 | [diff] [blame] | 214 | /* Added in release 2.2 */ |
Guido van Rossum | 4668b00 | 2001-08-08 05:00:18 +0000 | [diff] [blame] | 215 | /* The following require the Py_TPFLAGS_HAVE_CLASS flag */ |
| 216 | binaryfunc nb_floor_divide; |
| 217 | binaryfunc nb_true_divide; |
| 218 | binaryfunc nb_inplace_floor_divide; |
| 219 | binaryfunc nb_inplace_true_divide; |
Guido van Rossum | caa6380 | 1995-01-12 11:45:45 +0000 | [diff] [blame] | 220 | } PyNumberMethods; |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 221 | |
| 222 | typedef struct { |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 223 | inquiry sq_length; |
| 224 | binaryfunc sq_concat; |
| 225 | intargfunc sq_repeat; |
| 226 | intargfunc sq_item; |
| 227 | intintargfunc sq_slice; |
| 228 | intobjargproc sq_ass_item; |
| 229 | intintobjargproc sq_ass_slice; |
Guido van Rossum | cecb27a | 2000-02-28 15:00:40 +0000 | [diff] [blame] | 230 | objobjproc sq_contains; |
Fred Drake | d55657b | 2001-08-15 18:32:33 +0000 | [diff] [blame] | 231 | /* Added in release 2.0 */ |
Thomas Wouters | dd8dbdb | 2000-08-24 20:09:45 +0000 | [diff] [blame] | 232 | binaryfunc sq_inplace_concat; |
| 233 | intargfunc sq_inplace_repeat; |
Guido van Rossum | caa6380 | 1995-01-12 11:45:45 +0000 | [diff] [blame] | 234 | } PySequenceMethods; |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 235 | |
| 236 | typedef struct { |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 237 | inquiry mp_length; |
| 238 | binaryfunc mp_subscript; |
| 239 | objobjargproc mp_ass_subscript; |
Guido van Rossum | caa6380 | 1995-01-12 11:45:45 +0000 | [diff] [blame] | 240 | } PyMappingMethods; |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 241 | |
Guido van Rossum | fdf95dd | 1997-05-05 22:15:02 +0000 | [diff] [blame] | 242 | typedef struct { |
| 243 | getreadbufferproc bf_getreadbuffer; |
| 244 | getwritebufferproc bf_getwritebuffer; |
| 245 | getsegcountproc bf_getsegcount; |
Guido van Rossum | 36eef3c | 1998-10-08 02:10:56 +0000 | [diff] [blame] | 246 | getcharbufferproc bf_getcharbuffer; |
Guido van Rossum | fdf95dd | 1997-05-05 22:15:02 +0000 | [diff] [blame] | 247 | } PyBufferProcs; |
Tim Peters | 803526b | 2002-07-07 05:13:56 +0000 | [diff] [blame] | 248 | |
Guido van Rossum | fdf95dd | 1997-05-05 22:15:02 +0000 | [diff] [blame] | 249 | |
Neil Schemenauer | f6d1ea1 | 2002-04-12 01:57:06 +0000 | [diff] [blame] | 250 | typedef void (*freefunc)(void *); |
Tim Peters | 9ace6bc | 2000-07-08 00:32:04 +0000 | [diff] [blame] | 251 | typedef void (*destructor)(PyObject *); |
| 252 | typedef int (*printfunc)(PyObject *, FILE *, int); |
| 253 | typedef PyObject *(*getattrfunc)(PyObject *, char *); |
| 254 | typedef PyObject *(*getattrofunc)(PyObject *, PyObject *); |
| 255 | typedef int (*setattrfunc)(PyObject *, char *, PyObject *); |
| 256 | typedef int (*setattrofunc)(PyObject *, PyObject *, PyObject *); |
| 257 | typedef int (*cmpfunc)(PyObject *, PyObject *); |
| 258 | typedef PyObject *(*reprfunc)(PyObject *); |
| 259 | typedef long (*hashfunc)(PyObject *); |
Guido van Rossum | 5f284ce | 2001-01-17 15:20:39 +0000 | [diff] [blame] | 260 | typedef PyObject *(*richcmpfunc) (PyObject *, PyObject *, int); |
Guido van Rossum | 59d1d2b | 2001-04-20 19:13:02 +0000 | [diff] [blame] | 261 | typedef PyObject *(*getiterfunc) (PyObject *); |
Guido van Rossum | 213c7a6 | 2001-04-23 14:08:49 +0000 | [diff] [blame] | 262 | typedef PyObject *(*iternextfunc) (PyObject *); |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 263 | typedef PyObject *(*descrgetfunc) (PyObject *, PyObject *, PyObject *); |
| 264 | typedef int (*descrsetfunc) (PyObject *, PyObject *, PyObject *); |
| 265 | typedef int (*initproc)(PyObject *, PyObject *, PyObject *); |
| 266 | typedef PyObject *(*newfunc)(struct _typeobject *, PyObject *, PyObject *); |
| 267 | typedef PyObject *(*allocfunc)(struct _typeobject *, int); |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 268 | |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 269 | typedef struct _typeobject { |
Guido van Rossum | caa6380 | 1995-01-12 11:45:45 +0000 | [diff] [blame] | 270 | PyObject_VAR_HEAD |
Guido van Rossum | 1464839 | 2001-12-08 18:02:58 +0000 | [diff] [blame] | 271 | char *tp_name; /* For printing, in format "<module>.<name>" */ |
Guido van Rossum | 5799b52 | 1995-01-04 19:06:22 +0000 | [diff] [blame] | 272 | int tp_basicsize, tp_itemsize; /* For allocation */ |
Tim Peters | 803526b | 2002-07-07 05:13:56 +0000 | [diff] [blame] | 273 | |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 274 | /* Methods to implement standard operations */ |
Tim Peters | 803526b | 2002-07-07 05:13:56 +0000 | [diff] [blame] | 275 | |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 276 | destructor tp_dealloc; |
| 277 | printfunc tp_print; |
| 278 | getattrfunc tp_getattr; |
| 279 | setattrfunc tp_setattr; |
| 280 | cmpfunc tp_compare; |
| 281 | reprfunc tp_repr; |
Tim Peters | 803526b | 2002-07-07 05:13:56 +0000 | [diff] [blame] | 282 | |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 283 | /* Method suites for standard classes */ |
Tim Peters | 803526b | 2002-07-07 05:13:56 +0000 | [diff] [blame] | 284 | |
Guido van Rossum | caa6380 | 1995-01-12 11:45:45 +0000 | [diff] [blame] | 285 | PyNumberMethods *tp_as_number; |
| 286 | PySequenceMethods *tp_as_sequence; |
| 287 | PyMappingMethods *tp_as_mapping; |
Guido van Rossum | 9bfef44 | 1993-03-29 10:43:31 +0000 | [diff] [blame] | 288 | |
Fred Drake | 0e12bcd | 2000-03-21 16:14:47 +0000 | [diff] [blame] | 289 | /* More standard operations (here for binary compatibility) */ |
Guido van Rossum | 9bfef44 | 1993-03-29 10:43:31 +0000 | [diff] [blame] | 290 | |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 291 | hashfunc tp_hash; |
Guido van Rossum | 884afd6 | 1995-07-18 14:21:06 +0000 | [diff] [blame] | 292 | ternaryfunc tp_call; |
Guido van Rossum | 6fde390 | 1995-01-07 10:32:04 +0000 | [diff] [blame] | 293 | reprfunc tp_str; |
Guido van Rossum | 0693dd2 | 1996-08-09 20:48:52 +0000 | [diff] [blame] | 294 | getattrofunc tp_getattro; |
| 295 | setattrofunc tp_setattro; |
Guido van Rossum | 6fde390 | 1995-01-07 10:32:04 +0000 | [diff] [blame] | 296 | |
Guido van Rossum | fdf95dd | 1997-05-05 22:15:02 +0000 | [diff] [blame] | 297 | /* Functions to access object as input/output buffer */ |
| 298 | PyBufferProcs *tp_as_buffer; |
Tim Peters | 803526b | 2002-07-07 05:13:56 +0000 | [diff] [blame] | 299 | |
Guido van Rossum | 36eef3c | 1998-10-08 02:10:56 +0000 | [diff] [blame] | 300 | /* Flags to define presence of optional/expanded features */ |
| 301 | long tp_flags; |
Guido van Rossum | 6fde390 | 1995-01-07 10:32:04 +0000 | [diff] [blame] | 302 | |
| 303 | char *tp_doc; /* Documentation string */ |
| 304 | |
Fred Drake | d55657b | 2001-08-15 18:32:33 +0000 | [diff] [blame] | 305 | /* Assigned meaning in release 2.0 */ |
Jeremy Hylton | 8caad49 | 2000-06-23 14:18:11 +0000 | [diff] [blame] | 306 | /* call function for all accessible objects */ |
| 307 | traverseproc tp_traverse; |
Tim Peters | 803526b | 2002-07-07 05:13:56 +0000 | [diff] [blame] | 308 | |
Jeremy Hylton | 8caad49 | 2000-06-23 14:18:11 +0000 | [diff] [blame] | 309 | /* delete references to contained objects */ |
| 310 | inquiry tp_clear; |
| 311 | |
Fred Drake | d55657b | 2001-08-15 18:32:33 +0000 | [diff] [blame] | 312 | /* Assigned meaning in release 2.1 */ |
Guido van Rossum | 5f284ce | 2001-01-17 15:20:39 +0000 | [diff] [blame] | 313 | /* rich comparisons */ |
| 314 | richcmpfunc tp_richcompare; |
| 315 | |
Fred Drake | 41deb1e | 2001-02-01 05:27:45 +0000 | [diff] [blame] | 316 | /* weak reference enabler */ |
| 317 | long tp_weaklistoffset; |
Guido van Rossum | a9c2d7a | 1998-04-23 19:16:44 +0000 | [diff] [blame] | 318 | |
Fred Drake | d55657b | 2001-08-15 18:32:33 +0000 | [diff] [blame] | 319 | /* Added in release 2.2 */ |
Guido van Rossum | 59d1d2b | 2001-04-20 19:13:02 +0000 | [diff] [blame] | 320 | /* Iterators */ |
| 321 | getiterfunc tp_iter; |
Guido van Rossum | 213c7a6 | 2001-04-23 14:08:49 +0000 | [diff] [blame] | 322 | iternextfunc tp_iternext; |
Guido van Rossum | 59d1d2b | 2001-04-20 19:13:02 +0000 | [diff] [blame] | 323 | |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 324 | /* Attribute descriptor and subclassing stuff */ |
| 325 | struct PyMethodDef *tp_methods; |
Guido van Rossum | 6f79937 | 2001-09-20 20:46:19 +0000 | [diff] [blame] | 326 | struct PyMemberDef *tp_members; |
Guido van Rossum | 32d34c8 | 2001-09-20 21:45:26 +0000 | [diff] [blame] | 327 | struct PyGetSetDef *tp_getset; |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 328 | struct _typeobject *tp_base; |
| 329 | PyObject *tp_dict; |
| 330 | descrgetfunc tp_descr_get; |
| 331 | descrsetfunc tp_descr_set; |
| 332 | long tp_dictoffset; |
| 333 | initproc tp_init; |
| 334 | allocfunc tp_alloc; |
| 335 | newfunc tp_new; |
Neil Schemenauer | f6d1ea1 | 2002-04-12 01:57:06 +0000 | [diff] [blame] | 336 | freefunc tp_free; /* Low-level free-memory routine */ |
Guido van Rossum | 048eb75 | 2001-10-02 21:24:57 +0000 | [diff] [blame] | 337 | inquiry tp_is_gc; /* For PyObject_IS_GC */ |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 338 | PyObject *tp_bases; |
| 339 | PyObject *tp_mro; /* method resolution order */ |
Guido van Rossum | 687ae00 | 2001-10-15 22:03:32 +0000 | [diff] [blame] | 340 | PyObject *tp_cache; |
Guido van Rossum | 1c45073 | 2001-10-08 15:18:27 +0000 | [diff] [blame] | 341 | PyObject *tp_subclasses; |
| 342 | PyObject *tp_weaklist; |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 343 | |
Sjoerd Mullender | a9c3c22 | 1993-10-11 12:54:31 +0000 | [diff] [blame] | 344 | #ifdef COUNT_ALLOCS |
Guido van Rossum | 59d1d2b | 2001-04-20 19:13:02 +0000 | [diff] [blame] | 345 | /* these must be last and never explicitly initialized */ |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 346 | int tp_allocs; |
| 347 | int tp_frees; |
Sjoerd Mullender | a9c3c22 | 1993-10-11 12:54:31 +0000 | [diff] [blame] | 348 | int tp_maxalloc; |
| 349 | struct _typeobject *tp_next; |
| 350 | #endif |
Guido van Rossum | caa6380 | 1995-01-12 11:45:45 +0000 | [diff] [blame] | 351 | } PyTypeObject; |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 352 | |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 353 | |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 354 | /* Generic type check */ |
| 355 | extern DL_IMPORT(int) PyType_IsSubtype(PyTypeObject *, PyTypeObject *); |
| 356 | #define PyObject_TypeCheck(ob, tp) \ |
| 357 | ((ob)->ob_type == (tp) || PyType_IsSubtype((ob)->ob_type, (tp))) |
| 358 | |
Guido van Rossum | 609c7c8 | 2001-08-24 16:51:42 +0000 | [diff] [blame] | 359 | extern DL_IMPORT(PyTypeObject) PyType_Type; /* built-in 'type' */ |
| 360 | extern DL_IMPORT(PyTypeObject) PyBaseObject_Type; /* built-in 'object' */ |
| 361 | extern DL_IMPORT(PyTypeObject) PySuper_Type; /* built-in 'super' */ |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 362 | |
| 363 | #define PyType_Check(op) PyObject_TypeCheck(op, &PyType_Type) |
Tim Peters | 3abca12 | 2001-10-27 19:37:48 +0000 | [diff] [blame] | 364 | #define PyType_CheckExact(op) ((op)->ob_type == &PyType_Type) |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 365 | |
Guido van Rossum | 528b7eb | 2001-08-07 17:24:28 +0000 | [diff] [blame] | 366 | extern DL_IMPORT(int) PyType_Ready(PyTypeObject *); |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 367 | extern DL_IMPORT(PyObject *) PyType_GenericAlloc(PyTypeObject *, int); |
| 368 | extern DL_IMPORT(PyObject *) PyType_GenericNew(PyTypeObject *, |
| 369 | PyObject *, PyObject *); |
| 370 | extern DL_IMPORT(PyObject *) _PyType_Lookup(PyTypeObject *, PyObject *); |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 371 | |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 372 | /* Generic operations on objects */ |
Tim Peters | 9ace6bc | 2000-07-08 00:32:04 +0000 | [diff] [blame] | 373 | extern DL_IMPORT(int) PyObject_Print(PyObject *, FILE *, int); |
Barry Warsaw | 10418eb | 2001-01-24 04:16:59 +0000 | [diff] [blame] | 374 | extern DL_IMPORT(void) _PyObject_Dump(PyObject *); |
Tim Peters | 9ace6bc | 2000-07-08 00:32:04 +0000 | [diff] [blame] | 375 | extern DL_IMPORT(PyObject *) PyObject_Repr(PyObject *); |
| 376 | extern DL_IMPORT(PyObject *) PyObject_Str(PyObject *); |
Martin v. Löwis | 339d0f7 | 2001-08-17 18:39:25 +0000 | [diff] [blame] | 377 | #ifdef Py_USING_UNICODE |
Marc-André Lemburg | ad7c98e | 2001-01-17 17:09:53 +0000 | [diff] [blame] | 378 | extern DL_IMPORT(PyObject *) PyObject_Unicode(PyObject *); |
Martin v. Löwis | 339d0f7 | 2001-08-17 18:39:25 +0000 | [diff] [blame] | 379 | #endif |
Tim Peters | 9ace6bc | 2000-07-08 00:32:04 +0000 | [diff] [blame] | 380 | extern DL_IMPORT(int) PyObject_Compare(PyObject *, PyObject *); |
Guido van Rossum | 5f284ce | 2001-01-17 15:20:39 +0000 | [diff] [blame] | 381 | extern DL_IMPORT(PyObject *) PyObject_RichCompare(PyObject *, PyObject *, int); |
| 382 | extern DL_IMPORT(int) PyObject_RichCompareBool(PyObject *, PyObject *, int); |
Tim Peters | 9ace6bc | 2000-07-08 00:32:04 +0000 | [diff] [blame] | 383 | extern DL_IMPORT(PyObject *) PyObject_GetAttrString(PyObject *, char *); |
| 384 | extern DL_IMPORT(int) PyObject_SetAttrString(PyObject *, char *, PyObject *); |
| 385 | extern DL_IMPORT(int) PyObject_HasAttrString(PyObject *, char *); |
| 386 | extern DL_IMPORT(PyObject *) PyObject_GetAttr(PyObject *, PyObject *); |
| 387 | extern DL_IMPORT(int) PyObject_SetAttr(PyObject *, PyObject *, PyObject *); |
| 388 | extern DL_IMPORT(int) PyObject_HasAttr(PyObject *, PyObject *); |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 389 | extern DL_IMPORT(PyObject **) _PyObject_GetDictPtr(PyObject *); |
| 390 | extern DL_IMPORT(PyObject *) PyObject_GenericGetAttr(PyObject *, PyObject *); |
| 391 | extern DL_IMPORT(int) PyObject_GenericSetAttr(PyObject *, |
| 392 | PyObject *, PyObject *); |
Tim Peters | 9ace6bc | 2000-07-08 00:32:04 +0000 | [diff] [blame] | 393 | extern DL_IMPORT(long) PyObject_Hash(PyObject *); |
| 394 | extern DL_IMPORT(int) PyObject_IsTrue(PyObject *); |
| 395 | extern DL_IMPORT(int) PyObject_Not(PyObject *); |
| 396 | extern DL_IMPORT(int) PyCallable_Check(PyObject *); |
| 397 | extern DL_IMPORT(int) PyNumber_Coerce(PyObject **, PyObject **); |
| 398 | extern DL_IMPORT(int) PyNumber_CoerceEx(PyObject **, PyObject **); |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 399 | |
Fred Drake | b3f0d34 | 2001-10-05 21:58:11 +0000 | [diff] [blame] | 400 | extern DL_IMPORT(void) PyObject_ClearWeakRefs(PyObject *); |
Fred Drake | 41deb1e | 2001-02-01 05:27:45 +0000 | [diff] [blame] | 401 | |
Guido van Rossum | ab3b034 | 2001-09-18 20:38:53 +0000 | [diff] [blame] | 402 | /* A slot function whose address we need to compare */ |
| 403 | extern int _PyObject_SlotCompare(PyObject *, PyObject *); |
| 404 | |
| 405 | |
Tim Peters | 7eea37e | 2001-09-04 22:08:56 +0000 | [diff] [blame] | 406 | /* PyObject_Dir(obj) acts like Python __builtin__.dir(obj), returning a |
| 407 | list of strings. PyObject_Dir(NULL) is like __builtin__.dir(), |
| 408 | returning the names of the current locals. In this case, if there are |
| 409 | no current locals, NULL is returned, and PyErr_Occurred() is false. |
| 410 | */ |
| 411 | extern DL_IMPORT(PyObject *) PyObject_Dir(PyObject *); |
| 412 | |
| 413 | |
Guido van Rossum | 26d4ac3 | 1998-04-10 22:32:24 +0000 | [diff] [blame] | 414 | /* Helpers for printing recursive container types */ |
Tim Peters | 9ace6bc | 2000-07-08 00:32:04 +0000 | [diff] [blame] | 415 | extern DL_IMPORT(int) Py_ReprEnter(PyObject *); |
| 416 | extern DL_IMPORT(void) Py_ReprLeave(PyObject *); |
Guido van Rossum | 26d4ac3 | 1998-04-10 22:32:24 +0000 | [diff] [blame] | 417 | |
Fred Drake | 13634cf | 2000-06-29 19:17:04 +0000 | [diff] [blame] | 418 | /* Helpers for hash functions */ |
Tim Peters | 9ace6bc | 2000-07-08 00:32:04 +0000 | [diff] [blame] | 419 | extern DL_IMPORT(long) _Py_HashDouble(double); |
| 420 | extern DL_IMPORT(long) _Py_HashPointer(void*); |
Fred Drake | 13634cf | 2000-06-29 19:17:04 +0000 | [diff] [blame] | 421 | |
Jeremy Hylton | 483638c | 2001-02-01 20:20:45 +0000 | [diff] [blame] | 422 | /* Helper for passing objects to printf and the like */ |
| 423 | #define PyObject_REPR(obj) PyString_AS_STRING(PyObject_Repr(obj)) |
| 424 | |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 425 | /* Flag bits for printing: */ |
Guido van Rossum | caa6380 | 1995-01-12 11:45:45 +0000 | [diff] [blame] | 426 | #define Py_PRINT_RAW 1 /* No string quotes etc. */ |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 427 | |
| 428 | /* |
Tim Peters | 4be93d0 | 2002-07-07 19:59:50 +0000 | [diff] [blame] | 429 | `Type flags (tp_flags) |
Guido van Rossum | 36eef3c | 1998-10-08 02:10:56 +0000 | [diff] [blame] | 430 | |
| 431 | These flags are used to extend the type structure in a backwards-compatible |
| 432 | fashion. Extensions can use the flags to indicate (and test) when a given |
| 433 | type structure contains a new feature. The Python core will use these when |
| 434 | introducing new functionality between major revisions (to avoid mid-version |
| 435 | changes in the PYTHON_API_VERSION). |
| 436 | |
| 437 | Arbitration of the flag bit positions will need to be coordinated among |
| 438 | all extension writers who publically release their extensions (this will |
| 439 | be fewer than you might expect!).. |
| 440 | |
| 441 | Python 1.5.2 introduced the bf_getcharbuffer slot into PyBufferProcs. |
| 442 | |
| 443 | Type definitions should use Py_TPFLAGS_DEFAULT for their tp_flags value. |
| 444 | |
| 445 | Code can use PyType_HasFeature(type_ob, flag_value) to test whether the |
| 446 | given type object has a specified feature. |
Guido van Rossum | 36eef3c | 1998-10-08 02:10:56 +0000 | [diff] [blame] | 447 | */ |
| 448 | |
| 449 | /* PyBufferProcs contains bf_getcharbuffer */ |
| 450 | #define Py_TPFLAGS_HAVE_GETCHARBUFFER (1L<<0) |
| 451 | |
Guido van Rossum | cecb27a | 2000-02-28 15:00:40 +0000 | [diff] [blame] | 452 | /* PySequenceMethods contains sq_contains */ |
| 453 | #define Py_TPFLAGS_HAVE_SEQUENCE_IN (1L<<1) |
| 454 | |
Neil Schemenauer | 31ec142 | 2001-08-29 23:46:35 +0000 | [diff] [blame] | 455 | /* This is here for backwards compatibility. Extensions that use the old GC |
| 456 | * API will still compile but the objects will not be tracked by the GC. */ |
| 457 | #define Py_TPFLAGS_GC 0 /* used to be (1L<<2) */ |
Jeremy Hylton | d08b4c4 | 2000-06-23 19:37:02 +0000 | [diff] [blame] | 458 | |
Thomas Wouters | dd8dbdb | 2000-08-24 20:09:45 +0000 | [diff] [blame] | 459 | /* PySequenceMethods and PyNumberMethods contain in-place operators */ |
| 460 | #define Py_TPFLAGS_HAVE_INPLACEOPS (1L<<3) |
| 461 | |
Neil Schemenauer | a7ed694 | 2001-01-04 01:31:50 +0000 | [diff] [blame] | 462 | /* PyNumberMethods do their own coercion */ |
Guido van Rossum | 5f284ce | 2001-01-17 15:20:39 +0000 | [diff] [blame] | 463 | #define Py_TPFLAGS_CHECKTYPES (1L<<4) |
Neil Schemenauer | a7ed694 | 2001-01-04 01:31:50 +0000 | [diff] [blame] | 464 | |
Guido van Rossum | 59d1d2b | 2001-04-20 19:13:02 +0000 | [diff] [blame] | 465 | /* tp_richcompare is defined */ |
Guido van Rossum | bacca54 | 2001-01-24 22:13:48 +0000 | [diff] [blame] | 466 | #define Py_TPFLAGS_HAVE_RICHCOMPARE (1L<<5) |
| 467 | |
Fred Drake | 033f312 | 2001-02-02 18:17:30 +0000 | [diff] [blame] | 468 | /* Objects which are weakly referencable if their tp_weaklistoffset is >0 */ |
Fred Drake | 033f312 | 2001-02-02 18:17:30 +0000 | [diff] [blame] | 469 | #define Py_TPFLAGS_HAVE_WEAKREFS (1L<<6) |
| 470 | |
Guido van Rossum | 59d1d2b | 2001-04-20 19:13:02 +0000 | [diff] [blame] | 471 | /* tp_iter is defined */ |
| 472 | #define Py_TPFLAGS_HAVE_ITER (1L<<7) |
| 473 | |
Guido van Rossum | 4668b00 | 2001-08-08 05:00:18 +0000 | [diff] [blame] | 474 | /* New members introduced by Python 2.2 exist */ |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 475 | #define Py_TPFLAGS_HAVE_CLASS (1L<<8) |
| 476 | |
| 477 | /* Set if the type object is dynamically allocated */ |
| 478 | #define Py_TPFLAGS_HEAPTYPE (1L<<9) |
| 479 | |
| 480 | /* Set if the type allows subclassing */ |
| 481 | #define Py_TPFLAGS_BASETYPE (1L<<10) |
| 482 | |
Guido van Rossum | 9b9c972 | 2001-08-10 17:37:02 +0000 | [diff] [blame] | 483 | /* Set if the type is 'ready' -- fully initialized */ |
| 484 | #define Py_TPFLAGS_READY (1L<<12) |
| 485 | |
| 486 | /* Set while the type is being 'readied', to prevent recursive ready calls */ |
| 487 | #define Py_TPFLAGS_READYING (1L<<13) |
| 488 | |
Neil Schemenauer | 31ec142 | 2001-08-29 23:46:35 +0000 | [diff] [blame] | 489 | /* Objects support garbage collection (see objimp.h) */ |
Neil Schemenauer | 31ec142 | 2001-08-29 23:46:35 +0000 | [diff] [blame] | 490 | #define Py_TPFLAGS_HAVE_GC (1L<<14) |
Neil Schemenauer | 31ec142 | 2001-08-29 23:46:35 +0000 | [diff] [blame] | 491 | |
Guido van Rossum | bacca54 | 2001-01-24 22:13:48 +0000 | [diff] [blame] | 492 | #define Py_TPFLAGS_DEFAULT ( \ |
| 493 | Py_TPFLAGS_HAVE_GETCHARBUFFER | \ |
Thomas Wouters | dd8dbdb | 2000-08-24 20:09:45 +0000 | [diff] [blame] | 494 | Py_TPFLAGS_HAVE_SEQUENCE_IN | \ |
Guido van Rossum | bacca54 | 2001-01-24 22:13:48 +0000 | [diff] [blame] | 495 | Py_TPFLAGS_HAVE_INPLACEOPS | \ |
| 496 | Py_TPFLAGS_HAVE_RICHCOMPARE | \ |
Fred Drake | 033f312 | 2001-02-02 18:17:30 +0000 | [diff] [blame] | 497 | Py_TPFLAGS_HAVE_WEAKREFS | \ |
Guido van Rossum | 59d1d2b | 2001-04-20 19:13:02 +0000 | [diff] [blame] | 498 | Py_TPFLAGS_HAVE_ITER | \ |
Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 499 | Py_TPFLAGS_HAVE_CLASS | \ |
Guido van Rossum | bacca54 | 2001-01-24 22:13:48 +0000 | [diff] [blame] | 500 | 0) |
Guido van Rossum | 36eef3c | 1998-10-08 02:10:56 +0000 | [diff] [blame] | 501 | |
| 502 | #define PyType_HasFeature(t,f) (((t)->tp_flags & (f)) != 0) |
| 503 | |
| 504 | |
| 505 | /* |
Guido van Rossum | caa6380 | 1995-01-12 11:45:45 +0000 | [diff] [blame] | 506 | The macros Py_INCREF(op) and Py_DECREF(op) are used to increment or decrement |
Tim Peters | 4be93d0 | 2002-07-07 19:59:50 +0000 | [diff] [blame] | 507 | reference counts. Py_DECREF calls the object's deallocator function when |
| 508 | the refcount falls to 0; for |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 509 | objects that don't contain references to other objects or heap memory |
| 510 | this can be the standard function free(). Both macros can be used |
Tim Peters | 4be93d0 | 2002-07-07 19:59:50 +0000 | [diff] [blame] | 511 | wherever a void expression is allowed. The argument must not be a |
| 512 | NIL pointer. If it may be NIL, use Py_XINCREF/Py_XDECREF instead. |
| 513 | The macro _Py_NewReference(op) initialize reference counts to 1, and |
| 514 | in special builds (Py_REF_DEBUG, Py_TRACE_REFS) performs additional |
| 515 | bookkeeping appropriate to the special build. |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 516 | |
| 517 | We assume that the reference count field can never overflow; this can |
Tim Peters | 4be93d0 | 2002-07-07 19:59:50 +0000 | [diff] [blame] | 518 | be proven when the size of the field is the same as the pointer size, so |
| 519 | we ignore the possibility. Provided a C int is at least 32 bits (which |
| 520 | is implicitly assumed in many parts of this code), that's enough for |
| 521 | about 2**31 references to an object. |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 522 | |
Tim Peters | 4be93d0 | 2002-07-07 19:59:50 +0000 | [diff] [blame] | 523 | XXX The following became out of date in Python 2.2, but I'm not sure |
| 524 | XXX what the full truth is now. Certainly, heap-allocated type objects |
| 525 | XXX can and should be deallocated. |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 526 | Type objects should never be deallocated; the type pointer in an object |
| 527 | is not considered to be a reference to the type object, to save |
| 528 | complications in the deallocation function. (This is actually a |
| 529 | decision that's up to the implementer of each new type so if you want, |
| 530 | you can count such references to the type object.) |
| 531 | |
Guido van Rossum | caa6380 | 1995-01-12 11:45:45 +0000 | [diff] [blame] | 532 | *** WARNING*** The Py_DECREF macro must have a side-effect-free argument |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 533 | since it may evaluate its argument multiple times. (The alternative |
| 534 | would be to mace it a proper function or assign it to a global temporary |
| 535 | variable first, both of which are slower; and in a multi-threaded |
| 536 | environment the global variable trick is not safe.) |
| 537 | */ |
| 538 | |
Tim Peters | 4be93d0 | 2002-07-07 19:59:50 +0000 | [diff] [blame] | 539 | #ifdef Py_REF_DEBUG |
| 540 | extern DL_IMPORT(long) _Py_RefTotal; |
Tim Peters | 7c321a8 | 2002-07-09 02:57:01 +0000 | [diff] [blame] | 541 | extern DL_IMPORT(void) _Py_NegativeRefcount(const char *fname, |
| 542 | int lineno, PyObject *op); |
| 543 | #define _PyMAYBE_BUMP_REFTOTAL _Py_RefTotal++ |
| 544 | #define _PyMAYBE_DROP_REFTOTAL _Py_RefTotal-- |
Tim Peters | 57f4ddd | 2002-07-10 06:34:15 +0000 | [diff] [blame] | 545 | #define _PyMAYBE_BUMP_REFTOTAL_COMMA _PyMAYBE_BUMP_REFTOTAL , |
| 546 | #define _PyMAYBE_DROP_REFTOTAL_COMMA _PyMAYBE_DROP_REFTOTAL , |
Tim Peters | 7c321a8 | 2002-07-09 02:57:01 +0000 | [diff] [blame] | 547 | #define _PyMAYBE_CHECK_REFCNT(OP) \ |
| 548 | { if ((OP)->ob_refcnt < 0) \ |
| 549 | _Py_NegativeRefcount(__FILE__, __LINE__, \ |
| 550 | (PyObject *)(OP)); \ |
| 551 | } |
Tim Peters | 4be93d0 | 2002-07-07 19:59:50 +0000 | [diff] [blame] | 552 | #else |
Tim Peters | 7c321a8 | 2002-07-09 02:57:01 +0000 | [diff] [blame] | 553 | #define _PyMAYBE_BUMP_REFTOTAL |
| 554 | #define _PyMAYBE_DROP_REFTOTAL |
Tim Peters | 57f4ddd | 2002-07-10 06:34:15 +0000 | [diff] [blame] | 555 | #define _PyMAYBE_BUMP_REFTOTAL_COMMA |
| 556 | #define _PyMAYBE_DROP_REFTOTAL_COMMA |
| 557 | #define _PyMAYBE_CHECK_REFCNT(OP) /* a semicolon */; |
| 558 | #endif /* Py_REF_DEBUG */ |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 559 | |
Sjoerd Mullender | a9c3c22 | 1993-10-11 12:54:31 +0000 | [diff] [blame] | 560 | #ifdef COUNT_ALLOCS |
Tim Peters | 9ace6bc | 2000-07-08 00:32:04 +0000 | [diff] [blame] | 561 | extern DL_IMPORT(void) inc_count(PyTypeObject *); |
Tim Peters | 4be93d0 | 2002-07-07 19:59:50 +0000 | [diff] [blame] | 562 | #define _PyMAYBE_BUMP_COUNT(OP) inc_count((OP)->ob_type) |
| 563 | #define _PyMAYBE_BUMP_FREECOUNT(OP) (OP)->ob_type->tp_frees++ |
Tim Peters | 57f4ddd | 2002-07-10 06:34:15 +0000 | [diff] [blame] | 564 | #define _PyMAYBE_DROP_FREECOUNT(OP) (OP)->ob_type->tp_frees-- |
| 565 | #define _PyMAYBE_BUMP_COUNT_COMMA(OP) _PyMAYBE_BUMP_COUNT(OP) , |
| 566 | #define _PyMAYBE_BUMP_FREECOUNT_COMMA(OP) _PyMAYBE_BUMP_FREECOUNT(OP) , |
Sjoerd Mullender | a9c3c22 | 1993-10-11 12:54:31 +0000 | [diff] [blame] | 567 | #else |
Tim Peters | 7c321a8 | 2002-07-09 02:57:01 +0000 | [diff] [blame] | 568 | #define _PyMAYBE_BUMP_COUNT(OP) |
| 569 | #define _PyMAYBE_BUMP_FREECOUNT(OP) |
Tim Peters | 57f4ddd | 2002-07-10 06:34:15 +0000 | [diff] [blame] | 570 | #define _PyMAYBE_DROP_FREECOUNT(OP) |
| 571 | #define _PyMAYBE_BUMP_COUNT_COMMA(OP) |
| 572 | #define _PyMAYBE_BUMP_FREECOUNT_COMMA(OP) |
| 573 | #endif /* COUNT_ALLOCS */ |
Tim Peters | 4be93d0 | 2002-07-07 19:59:50 +0000 | [diff] [blame] | 574 | |
| 575 | #ifdef Py_TRACE_REFS |
| 576 | /* Py_TRACE_REFS is such major surgery that we call external routines. */ |
| 577 | extern DL_IMPORT(void) _Py_NewReference(PyObject *); |
| 578 | extern DL_IMPORT(void) _Py_ForgetReference(PyObject *); |
| 579 | extern DL_IMPORT(void) _Py_Dealloc(PyObject *); |
| 580 | extern DL_IMPORT(void) _Py_PrintReferences(FILE *); |
| 581 | extern DL_IMPORT(void) _Py_ResetReferences(void); |
| 582 | |
| 583 | #else |
| 584 | /* Without Py_TRACE_REFS, there's little enough to do that we expand code |
| 585 | * inline. |
| 586 | */ |
Tim Peters | 57f4ddd | 2002-07-10 06:34:15 +0000 | [diff] [blame] | 587 | #define _Py_NewReference(op) ( \ |
| 588 | _PyMAYBE_BUMP_COUNT_COMMA(op) \ |
| 589 | _PyMAYBE_BUMP_REFTOTAL_COMMA \ |
Tim Peters | 4be93d0 | 2002-07-07 19:59:50 +0000 | [diff] [blame] | 590 | (op)->ob_refcnt = 1) |
| 591 | |
Tim Peters | 7c321a8 | 2002-07-09 02:57:01 +0000 | [diff] [blame] | 592 | #define _Py_ForgetReference(op) _PyMAYBE_BUMP_FREECOUNT(op) |
Tim Peters | 4be93d0 | 2002-07-07 19:59:50 +0000 | [diff] [blame] | 593 | |
Tim Peters | 57f4ddd | 2002-07-10 06:34:15 +0000 | [diff] [blame] | 594 | #define _Py_Dealloc(op) ( \ |
| 595 | _PyMAYBE_BUMP_FREECOUNT_COMMA(op) \ |
Tim Peters | 4be93d0 | 2002-07-07 19:59:50 +0000 | [diff] [blame] | 596 | (*(op)->ob_type->tp_dealloc)((PyObject *)(op))) |
Guido van Rossum | 60be1db | 1996-05-22 16:33:22 +0000 | [diff] [blame] | 597 | #endif /* !Py_TRACE_REFS */ |
| 598 | |
Tim Peters | 57f4ddd | 2002-07-10 06:34:15 +0000 | [diff] [blame] | 599 | #define Py_INCREF(op) ( \ |
| 600 | _PyMAYBE_BUMP_REFTOTAL_COMMA \ |
Tim Peters | 4be93d0 | 2002-07-07 19:59:50 +0000 | [diff] [blame] | 601 | (op)->ob_refcnt++) |
| 602 | |
Tim Peters | 57f4ddd | 2002-07-10 06:34:15 +0000 | [diff] [blame] | 603 | #define Py_DECREF(op) \ |
| 604 | if (_PyMAYBE_DROP_REFTOTAL_COMMA \ |
| 605 | --(op)->ob_refcnt != 0) \ |
| 606 | _PyMAYBE_CHECK_REFCNT(op) \ |
| 607 | else \ |
Guido van Rossum | 1d529d1 | 1997-08-05 02:30:44 +0000 | [diff] [blame] | 608 | _Py_Dealloc((PyObject *)(op)) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 609 | |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 610 | /* Macros to use in case the object pointer may be NULL: */ |
Guido van Rossum | caa6380 | 1995-01-12 11:45:45 +0000 | [diff] [blame] | 611 | #define Py_XINCREF(op) if ((op) == NULL) ; else Py_INCREF(op) |
| 612 | #define Py_XDECREF(op) if ((op) == NULL) ; else Py_DECREF(op) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 613 | |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 614 | /* |
Guido van Rossum | caa6380 | 1995-01-12 11:45:45 +0000 | [diff] [blame] | 615 | _Py_NoneStruct is an object of undefined type which can be used in contexts |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 616 | where NULL (nil) is not suitable (since NULL often means 'error'). |
| 617 | |
Guido van Rossum | caa6380 | 1995-01-12 11:45:45 +0000 | [diff] [blame] | 618 | Don't forget to apply Py_INCREF() when returning this value!!! |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 619 | */ |
Sjoerd Mullender | 107c747 | 1995-04-25 11:53:24 +0000 | [diff] [blame] | 620 | extern DL_IMPORT(PyObject) _Py_NoneStruct; /* Don't use this directly */ |
Guido van Rossum | caa6380 | 1995-01-12 11:45:45 +0000 | [diff] [blame] | 621 | #define Py_None (&_Py_NoneStruct) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 622 | |
Neil Schemenauer | a7ed694 | 2001-01-04 01:31:50 +0000 | [diff] [blame] | 623 | /* |
| 624 | Py_NotImplemented is a singleton used to signal that an operation is |
| 625 | not implemented for a given type combination. |
| 626 | */ |
Neil Schemenauer | a7ed694 | 2001-01-04 01:31:50 +0000 | [diff] [blame] | 627 | extern DL_IMPORT(PyObject) _Py_NotImplementedStruct; /* Don't use this directly */ |
Neil Schemenauer | a7ed694 | 2001-01-04 01:31:50 +0000 | [diff] [blame] | 628 | #define Py_NotImplemented (&_Py_NotImplementedStruct) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 629 | |
Guido van Rossum | 5f284ce | 2001-01-17 15:20:39 +0000 | [diff] [blame] | 630 | /* Rich comparison opcodes */ |
| 631 | #define Py_LT 0 |
| 632 | #define Py_LE 1 |
| 633 | #define Py_EQ 2 |
| 634 | #define Py_NE 3 |
| 635 | #define Py_GT 4 |
| 636 | #define Py_GE 5 |
| 637 | |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 638 | /* |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 639 | A common programming style in Python requires the forward declaration |
Guido van Rossum | caa6380 | 1995-01-12 11:45:45 +0000 | [diff] [blame] | 640 | of static, initialized structures, e.g. for a type object that is used |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 641 | by the functions whose address must be used in the initializer. |
| 642 | Some compilers (notably SCO ODT 3.0, I seem to remember early AIX as |
| 643 | well) botch this if you use the static keyword for both declarations |
| 644 | (they allocate two objects, and use the first, uninitialized one until |
| 645 | the second declaration is encountered). Therefore, the forward |
| 646 | declaration should use the 'forwardstatic' keyword. This expands to |
| 647 | static on most systems, but to extern on a few. The actual storage |
| 648 | and name will still be static because the second declaration is |
| 649 | static, so no linker visible symbols will be generated. (Standard C |
| 650 | compilers take offense to the extern forward declaration of a static |
| 651 | object, so I can't just put extern in all cases. :-( ) |
| 652 | */ |
| 653 | |
| 654 | #ifdef BAD_STATIC_FORWARD |
| 655 | #define staticforward extern |
Guido van Rossum | 57836fe | 1995-02-21 21:06:10 +0000 | [diff] [blame] | 656 | #define statichere static |
Guido van Rossum | 57836fe | 1995-02-21 21:06:10 +0000 | [diff] [blame] | 657 | #else /* !BAD_STATIC_FORWARD */ |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 658 | #define staticforward static |
Guido van Rossum | 57836fe | 1995-02-21 21:06:10 +0000 | [diff] [blame] | 659 | #define statichere static |
| 660 | #endif /* !BAD_STATIC_FORWARD */ |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 661 | |
| 662 | |
| 663 | /* |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 664 | More conventions |
| 665 | ================ |
| 666 | |
| 667 | Argument Checking |
| 668 | ----------------- |
| 669 | |
| 670 | Functions that take objects as arguments normally don't check for nil |
| 671 | arguments, but they do check the type of the argument, and return an |
| 672 | error if the function doesn't apply to the type. |
| 673 | |
| 674 | Failure Modes |
| 675 | ------------- |
| 676 | |
| 677 | Functions may fail for a variety of reasons, including running out of |
Guido van Rossum | 3f5da24 | 1990-12-20 15:06:42 +0000 | [diff] [blame] | 678 | memory. This is communicated to the caller in two ways: an error string |
| 679 | is set (see errors.h), and the function result differs: functions that |
| 680 | normally return a pointer return NULL for failure, functions returning |
| 681 | an integer return -1 (which could be a legal return value too!), and |
| 682 | other functions return 0 for success and -1 for failure. |
Tim Peters | 4be93d0 | 2002-07-07 19:59:50 +0000 | [diff] [blame] | 683 | Callers should always check for errors before using the result. If |
| 684 | an error was set, the caller must either explicitly clear it, or pass |
| 685 | the error on to its caller. |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 686 | |
| 687 | Reference Counts |
| 688 | ---------------- |
| 689 | |
| 690 | It takes a while to get used to the proper usage of reference counts. |
| 691 | |
| 692 | Functions that create an object set the reference count to 1; such new |
Guido van Rossum | caa6380 | 1995-01-12 11:45:45 +0000 | [diff] [blame] | 693 | objects must be stored somewhere or destroyed again with Py_DECREF(). |
| 694 | Functions that 'store' objects such as PyTuple_SetItem() and |
| 695 | PyDict_SetItemString() |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 696 | don't increment the reference count of the object, since the most |
| 697 | frequent use is to store a fresh object. Functions that 'retrieve' |
Guido van Rossum | caa6380 | 1995-01-12 11:45:45 +0000 | [diff] [blame] | 698 | objects such as PyTuple_GetItem() and PyDict_GetItemString() also |
| 699 | don't increment |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 700 | the reference count, since most frequently the object is only looked at |
| 701 | quickly. Thus, to retrieve an object and store it again, the caller |
Guido van Rossum | caa6380 | 1995-01-12 11:45:45 +0000 | [diff] [blame] | 702 | must call Py_INCREF() explicitly. |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 703 | |
Guido van Rossum | caa6380 | 1995-01-12 11:45:45 +0000 | [diff] [blame] | 704 | NOTE: functions that 'consume' a reference count like |
Fred Drake | 49bb0e3 | 1997-09-05 17:53:53 +0000 | [diff] [blame] | 705 | PyList_SetItemString() even consume the reference if the object wasn't |
| 706 | stored, to simplify error handling. |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 707 | |
| 708 | It seems attractive to make other functions that take an object as |
| 709 | argument consume a reference count; however this may quickly get |
| 710 | confusing (even the current practice is already confusing). Consider |
Guido van Rossum | caa6380 | 1995-01-12 11:45:45 +0000 | [diff] [blame] | 711 | it carefully, it may save lots of calls to Py_INCREF() and Py_DECREF() at |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 712 | times. |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 713 | */ |
Guido van Rossum | a330996 | 1993-07-28 09:05:47 +0000 | [diff] [blame] | 714 | |
Guido van Rossum | d724b23 | 2000-03-13 16:01:29 +0000 | [diff] [blame] | 715 | |
Tim Peters | 803526b | 2002-07-07 05:13:56 +0000 | [diff] [blame] | 716 | /* Trashcan mechanism, thanks to Christian Tismer. |
Guido van Rossum | d724b23 | 2000-03-13 16:01:29 +0000 | [diff] [blame] | 717 | |
Tim Peters | 803526b | 2002-07-07 05:13:56 +0000 | [diff] [blame] | 718 | When deallocating a container object, it's possible to trigger an unbounded |
| 719 | chain of deallocations, as each Py_DECREF in turn drops the refcount on "the |
| 720 | next" object in the chain to 0. This can easily lead to stack faults, and |
| 721 | especially in threads (which typically have less stack space to work with). |
Guido van Rossum | d724b23 | 2000-03-13 16:01:29 +0000 | [diff] [blame] | 722 | |
Tim Peters | 803526b | 2002-07-07 05:13:56 +0000 | [diff] [blame] | 723 | A container object that participates in cyclic gc can avoid this by |
| 724 | bracketing the body of its tp_dealloc function with a pair of macros: |
Guido van Rossum | e92e610 | 2000-04-24 15:40:53 +0000 | [diff] [blame] | 725 | |
Tim Peters | 803526b | 2002-07-07 05:13:56 +0000 | [diff] [blame] | 726 | static void |
| 727 | mytype_dealloc(mytype *p) |
| 728 | { |
| 729 | ... declarations go here ... |
| 730 | |
| 731 | PyObject_GC_UnTrack(p); // must untrack first |
| 732 | Py_TRASHCAN_SAFE_BEGIN(p) |
| 733 | ... The body of the deallocator goes here, including all calls ... |
| 734 | ... to Py_DECREF on contained objects. ... |
| 735 | Py_TRASHCAN_SAFE_END(p) |
| 736 | } |
| 737 | |
| 738 | How it works: The BEGIN macro increments a call-depth counter. So long |
| 739 | as this counter is small, the body of the deallocator is run directly without |
| 740 | further ado. But if the counter gets large, it instead adds p to a list of |
| 741 | objects to be deallocated later, skips the body of the deallocator, and |
| 742 | resumes execution after the END macro. The tp_dealloc routine then returns |
| 743 | without deallocating anything (and so unbounded call-stack depth is avoided). |
| 744 | |
| 745 | When the call stack finishes unwinding again, code generated by the END macro |
| 746 | notices this, and calls another routine to deallocate all the objects that |
| 747 | may have been added to the list of deferred deallocations. In effect, a |
| 748 | chain of N deallocations is broken into N / PyTrash_UNWIND_LEVEL pieces, |
| 749 | with the call stack never exceeding a depth of PyTrash_UNWIND_LEVEL. |
Guido van Rossum | d724b23 | 2000-03-13 16:01:29 +0000 | [diff] [blame] | 750 | */ |
| 751 | |
Tim Peters | 803526b | 2002-07-07 05:13:56 +0000 | [diff] [blame] | 752 | extern DL_IMPORT(void) _PyTrash_deposit_object(PyObject*); |
| 753 | extern DL_IMPORT(void) _PyTrash_destroy_chain(void); |
| 754 | extern DL_IMPORT(int) _PyTrash_delete_nesting; |
| 755 | extern DL_IMPORT(PyObject *) _PyTrash_delete_later; |
| 756 | |
Guido van Rossum | d724b23 | 2000-03-13 16:01:29 +0000 | [diff] [blame] | 757 | #define PyTrash_UNWIND_LEVEL 50 |
| 758 | |
| 759 | #define Py_TRASHCAN_SAFE_BEGIN(op) \ |
Tim Peters | 803526b | 2002-07-07 05:13:56 +0000 | [diff] [blame] | 760 | if (_PyTrash_delete_nesting < PyTrash_UNWIND_LEVEL) { \ |
| 761 | ++_PyTrash_delete_nesting; |
| 762 | /* The body of the deallocator is here. */ |
Guido van Rossum | d724b23 | 2000-03-13 16:01:29 +0000 | [diff] [blame] | 763 | #define Py_TRASHCAN_SAFE_END(op) \ |
Guido van Rossum | d724b23 | 2000-03-13 16:01:29 +0000 | [diff] [blame] | 764 | --_PyTrash_delete_nesting; \ |
| 765 | if (_PyTrash_delete_later && _PyTrash_delete_nesting <= 0) \ |
Guido van Rossum | e92e610 | 2000-04-24 15:40:53 +0000 | [diff] [blame] | 766 | _PyTrash_destroy_chain(); \ |
Guido van Rossum | d724b23 | 2000-03-13 16:01:29 +0000 | [diff] [blame] | 767 | } \ |
Tim Peters | 803526b | 2002-07-07 05:13:56 +0000 | [diff] [blame] | 768 | else \ |
| 769 | _PyTrash_deposit_object((PyObject*)op); |
Guido van Rossum | e92e610 | 2000-04-24 15:40:53 +0000 | [diff] [blame] | 770 | |
Guido van Rossum | a330996 | 1993-07-28 09:05:47 +0000 | [diff] [blame] | 771 | #ifdef __cplusplus |
| 772 | } |
| 773 | #endif |
| 774 | #endif /* !Py_OBJECT_H */ |