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