blob: 736095a7668e868f7923bd7a430b4176b06a3c04 [file] [log] [blame]
Guido van Rossuma3309961993-07-28 09:05:47 +00001#ifndef Py_OBJECT_H
2#define Py_OBJECT_H
3#ifdef __cplusplus
4extern "C" {
5#endif
6
Guido van Rossumf70e43a1991-02-19 12:39:46 +00007
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00008/* Object and type object interface */
9
10/*
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000011Objects are structures allocated on the heap. Special rules apply to
12the use of objects to ensure they are properly garbage-collected.
13Objects are never allocated statically or on the stack; they must be
14accessed through special macros and functions only. (Type objects are
15exceptions to the first rule; the standard types are represented by
Tim Peters4be93d02002-07-07 19:59:50 +000016statically initialized type objects, although work on type/class unification
17for Python 2.2 made it possible to have heap-allocated type objects too).
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000018
19An object has a 'reference count' that is increased or decreased when a
20pointer to the object is copied or deleted; when the reference count
21reaches zero there are no references to the object left and it can be
22removed from the heap.
23
24An object has a 'type' that determines what it represents and what kind
25of data it contains. An object's type is fixed when it is created.
26Types themselves are represented as objects; an object contains a
27pointer to the corresponding type object. The type itself has a type
28pointer pointing to the object representing the type 'type', which
29contains a pointer to itself!).
30
31Objects do not float around in memory; once allocated an object keeps
32the same size and address. Objects that must hold variable-size data
33can contain pointers to variable-size parts of the object. Not all
34objects of the same type have the same size; but the size cannot change
35after allocation. (These restrictions are made so a reference to an
36object can be simply a pointer -- moving an object would require
37updating all the pointers, and changing an object's size would require
38moving it if there was another object right next to it.)
39
Guido van Rossumcaa63801995-01-12 11:45:45 +000040Objects are always accessed through pointers of the type 'PyObject *'.
41The type 'PyObject' is a structure that only contains the reference count
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000042and the type pointer. The actual memory allocated for an object
43contains other data that can only be accessed after casting the pointer
44to a pointer to a longer structure type. This longer type must start
Guido van Rossumcaa63801995-01-12 11:45:45 +000045with the reference count and type fields; the macro PyObject_HEAD should be
Thomas Wouters7e474022000-07-16 12:04:32 +000046used for this (to accommodate for future changes). The implementation
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000047of a particular object type can cast the object pointer to the proper
48type and back.
49
50A standard interface exists for objects that contain an array of items
51whose size is determined when the object is allocated.
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000052*/
53
Tim Peters34592512002-07-11 06:23:50 +000054/* Py_DEBUG implies Py_TRACE_REFS. */
55#if defined(Py_DEBUG) && !defined(Py_TRACE_REFS)
Tim Peters4be93d02002-07-07 19:59:50 +000056#define Py_TRACE_REFS
Tim Peters34592512002-07-11 06:23:50 +000057#endif
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000058
Tim Peters4be93d02002-07-07 19:59:50 +000059/* 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 Rossum85a5fbb1990-10-14 12:07:46 +000063
Tim Peters4be93d02002-07-07 19:59:50 +000064#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 Rossum5799b521995-01-04 19:06:22 +000095 int ob_size; /* Number of items in variable part */
Tim Peters803526b2002-07-07 05:13:56 +000096
Tim Peters4be93d02002-07-07 19:59:50 +000097/* 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 Rossum85a5fbb1990-10-14 12:07:46 +0000102typedef struct _object {
Guido van Rossumcaa63801995-01-12 11:45:45 +0000103 PyObject_HEAD
104} PyObject;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000105
106typedef struct {
Guido van Rossumcaa63801995-01-12 11:45:45 +0000107 PyObject_VAR_HEAD
Guido van Rossumd0c87ee1997-05-15 21:31:03 +0000108} PyVarObject;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000109
110
111/*
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000112Type objects contain a string containing the type name (to help somewhat
Tim Peters4be93d02002-07-07 19:59:50 +0000113in debugging), the allocation parameters (see PyObject_New() and
114PyObject_NewVar()),
115and methods for accessing objects of the type. Methods are optional, a
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000116nil pointer meaning that particular kind of access is not available for
Guido van Rossumcaa63801995-01-12 11:45:45 +0000117this type. The Py_DECREF() macro uses the tp_dealloc method without
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000118checking for a nil pointer; it should always be implemented except if
119the implementation can guarantee that the reference count will never
Tim Peters4be93d02002-07-07 19:59:50 +0000120reach zero (e.g., for statically allocated type objects).
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000121
122NB: the methods for certain type groups are now contained in separate
123method blocks.
124*/
125
Tim Peters9ace6bc2000-07-08 00:32:04 +0000126typedef PyObject * (*unaryfunc)(PyObject *);
127typedef PyObject * (*binaryfunc)(PyObject *, PyObject *);
128typedef PyObject * (*ternaryfunc)(PyObject *, PyObject *, PyObject *);
129typedef int (*inquiry)(PyObject *);
130typedef int (*coercion)(PyObject **, PyObject **);
131typedef PyObject *(*intargfunc)(PyObject *, int);
132typedef PyObject *(*intintargfunc)(PyObject *, int, int);
133typedef int(*intobjargproc)(PyObject *, int, PyObject *);
134typedef int(*intintobjargproc)(PyObject *, int, int, PyObject *);
135typedef int(*objobjargproc)(PyObject *, PyObject *, PyObject *);
136typedef int (*getreadbufferproc)(PyObject *, int, void **);
137typedef int (*getwritebufferproc)(PyObject *, int, void **);
138typedef int (*getsegcountproc)(PyObject *, int *);
139typedef int (*getcharbufferproc)(PyObject *, int, const char **);
140typedef int (*objobjproc)(PyObject *, PyObject *);
141typedef int (*visitproc)(PyObject *, void *);
142typedef int (*traverseproc)(PyObject *, visitproc, void *);
Guido van Rossumb6775db1994-08-01 11:34:53 +0000143
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000144typedef struct {
Guido van Rossum5f284ce2001-01-17 15:20:39 +0000145 /* For numbers without flag bit Py_TPFLAGS_CHECKTYPES set, all
146 arguments are guaranteed to be of the object's type (modulo
Tim Peters4be93d02002-07-07 19:59:50 +0000147 coercion hacks -- i.e. if the type's coercion function
Guido van Rossum5f284ce2001-01-17 15:20:39 +0000148 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 Schemenauera7ed6942001-01-04 01:31:50 +0000152
Guido van Rossumb6775db1994-08-01 11:34:53 +0000153 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 Rossum75abc631994-08-09 13:21:54 +0000159 ternaryfunc nb_power;
Guido van Rossumb6775db1994-08-01 11:34:53 +0000160 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 Draked55657b2001-08-15 18:32:33 +0000176 /* Added in release 2.0 */
Thomas Woutersdd8dbdb2000-08-24 20:09:45 +0000177 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 Rossum4668b002001-08-08 05:00:18 +0000188
Fred Draked55657b2001-08-15 18:32:33 +0000189 /* Added in release 2.2 */
Guido van Rossum4668b002001-08-08 05:00:18 +0000190 /* 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 Rossumcaa63801995-01-12 11:45:45 +0000195} PyNumberMethods;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000196
197typedef struct {
Guido van Rossumb6775db1994-08-01 11:34:53 +0000198 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 Rossumcecb27a2000-02-28 15:00:40 +0000205 objobjproc sq_contains;
Fred Draked55657b2001-08-15 18:32:33 +0000206 /* Added in release 2.0 */
Thomas Woutersdd8dbdb2000-08-24 20:09:45 +0000207 binaryfunc sq_inplace_concat;
208 intargfunc sq_inplace_repeat;
Guido van Rossumcaa63801995-01-12 11:45:45 +0000209} PySequenceMethods;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000210
211typedef struct {
Guido van Rossumb6775db1994-08-01 11:34:53 +0000212 inquiry mp_length;
213 binaryfunc mp_subscript;
214 objobjargproc mp_ass_subscript;
Guido van Rossumcaa63801995-01-12 11:45:45 +0000215} PyMappingMethods;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000216
Guido van Rossumfdf95dd1997-05-05 22:15:02 +0000217typedef struct {
218 getreadbufferproc bf_getreadbuffer;
219 getwritebufferproc bf_getwritebuffer;
220 getsegcountproc bf_getsegcount;
Guido van Rossum36eef3c1998-10-08 02:10:56 +0000221 getcharbufferproc bf_getcharbuffer;
Guido van Rossumfdf95dd1997-05-05 22:15:02 +0000222} PyBufferProcs;
Tim Peters803526b2002-07-07 05:13:56 +0000223
Guido van Rossumfdf95dd1997-05-05 22:15:02 +0000224
Neil Schemenauerf6d1ea12002-04-12 01:57:06 +0000225typedef void (*freefunc)(void *);
Tim Peters9ace6bc2000-07-08 00:32:04 +0000226typedef void (*destructor)(PyObject *);
227typedef int (*printfunc)(PyObject *, FILE *, int);
228typedef PyObject *(*getattrfunc)(PyObject *, char *);
229typedef PyObject *(*getattrofunc)(PyObject *, PyObject *);
230typedef int (*setattrfunc)(PyObject *, char *, PyObject *);
231typedef int (*setattrofunc)(PyObject *, PyObject *, PyObject *);
232typedef int (*cmpfunc)(PyObject *, PyObject *);
233typedef PyObject *(*reprfunc)(PyObject *);
234typedef long (*hashfunc)(PyObject *);
Guido van Rossum5f284ce2001-01-17 15:20:39 +0000235typedef PyObject *(*richcmpfunc) (PyObject *, PyObject *, int);
Guido van Rossum59d1d2b2001-04-20 19:13:02 +0000236typedef PyObject *(*getiterfunc) (PyObject *);
Guido van Rossum213c7a62001-04-23 14:08:49 +0000237typedef PyObject *(*iternextfunc) (PyObject *);
Tim Peters6d6c1a32001-08-02 04:15:00 +0000238typedef PyObject *(*descrgetfunc) (PyObject *, PyObject *, PyObject *);
239typedef int (*descrsetfunc) (PyObject *, PyObject *, PyObject *);
240typedef int (*initproc)(PyObject *, PyObject *, PyObject *);
241typedef PyObject *(*newfunc)(struct _typeobject *, PyObject *, PyObject *);
242typedef PyObject *(*allocfunc)(struct _typeobject *, int);
Guido van Rossumb6775db1994-08-01 11:34:53 +0000243
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000244typedef struct _typeobject {
Guido van Rossumcaa63801995-01-12 11:45:45 +0000245 PyObject_VAR_HEAD
Guido van Rossum14648392001-12-08 18:02:58 +0000246 char *tp_name; /* For printing, in format "<module>.<name>" */
Guido van Rossum5799b521995-01-04 19:06:22 +0000247 int tp_basicsize, tp_itemsize; /* For allocation */
Tim Peters803526b2002-07-07 05:13:56 +0000248
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000249 /* Methods to implement standard operations */
Tim Peters803526b2002-07-07 05:13:56 +0000250
Guido van Rossumb6775db1994-08-01 11:34:53 +0000251 destructor tp_dealloc;
252 printfunc tp_print;
253 getattrfunc tp_getattr;
254 setattrfunc tp_setattr;
255 cmpfunc tp_compare;
256 reprfunc tp_repr;
Tim Peters803526b2002-07-07 05:13:56 +0000257
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000258 /* Method suites for standard classes */
Tim Peters803526b2002-07-07 05:13:56 +0000259
Guido van Rossumcaa63801995-01-12 11:45:45 +0000260 PyNumberMethods *tp_as_number;
261 PySequenceMethods *tp_as_sequence;
262 PyMappingMethods *tp_as_mapping;
Guido van Rossum9bfef441993-03-29 10:43:31 +0000263
Fred Drake0e12bcd2000-03-21 16:14:47 +0000264 /* More standard operations (here for binary compatibility) */
Guido van Rossum9bfef441993-03-29 10:43:31 +0000265
Guido van Rossumb6775db1994-08-01 11:34:53 +0000266 hashfunc tp_hash;
Guido van Rossum884afd61995-07-18 14:21:06 +0000267 ternaryfunc tp_call;
Guido van Rossum6fde3901995-01-07 10:32:04 +0000268 reprfunc tp_str;
Guido van Rossum0693dd21996-08-09 20:48:52 +0000269 getattrofunc tp_getattro;
270 setattrofunc tp_setattro;
Guido van Rossum6fde3901995-01-07 10:32:04 +0000271
Guido van Rossumfdf95dd1997-05-05 22:15:02 +0000272 /* Functions to access object as input/output buffer */
273 PyBufferProcs *tp_as_buffer;
Tim Peters803526b2002-07-07 05:13:56 +0000274
Guido van Rossum36eef3c1998-10-08 02:10:56 +0000275 /* Flags to define presence of optional/expanded features */
276 long tp_flags;
Guido van Rossum6fde3901995-01-07 10:32:04 +0000277
278 char *tp_doc; /* Documentation string */
279
Fred Draked55657b2001-08-15 18:32:33 +0000280 /* Assigned meaning in release 2.0 */
Jeremy Hylton8caad492000-06-23 14:18:11 +0000281 /* call function for all accessible objects */
282 traverseproc tp_traverse;
Tim Peters803526b2002-07-07 05:13:56 +0000283
Jeremy Hylton8caad492000-06-23 14:18:11 +0000284 /* delete references to contained objects */
285 inquiry tp_clear;
286
Fred Draked55657b2001-08-15 18:32:33 +0000287 /* Assigned meaning in release 2.1 */
Guido van Rossum5f284ce2001-01-17 15:20:39 +0000288 /* rich comparisons */
289 richcmpfunc tp_richcompare;
290
Fred Drake41deb1e2001-02-01 05:27:45 +0000291 /* weak reference enabler */
292 long tp_weaklistoffset;
Guido van Rossuma9c2d7a1998-04-23 19:16:44 +0000293
Fred Draked55657b2001-08-15 18:32:33 +0000294 /* Added in release 2.2 */
Guido van Rossum59d1d2b2001-04-20 19:13:02 +0000295 /* Iterators */
296 getiterfunc tp_iter;
Guido van Rossum213c7a62001-04-23 14:08:49 +0000297 iternextfunc tp_iternext;
Guido van Rossum59d1d2b2001-04-20 19:13:02 +0000298
Tim Peters6d6c1a32001-08-02 04:15:00 +0000299 /* Attribute descriptor and subclassing stuff */
300 struct PyMethodDef *tp_methods;
Guido van Rossum6f799372001-09-20 20:46:19 +0000301 struct PyMemberDef *tp_members;
Guido van Rossum32d34c82001-09-20 21:45:26 +0000302 struct PyGetSetDef *tp_getset;
Tim Peters6d6c1a32001-08-02 04:15:00 +0000303 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 Schemenauerf6d1ea12002-04-12 01:57:06 +0000311 freefunc tp_free; /* Low-level free-memory routine */
Guido van Rossum048eb752001-10-02 21:24:57 +0000312 inquiry tp_is_gc; /* For PyObject_IS_GC */
Tim Peters6d6c1a32001-08-02 04:15:00 +0000313 PyObject *tp_bases;
314 PyObject *tp_mro; /* method resolution order */
Guido van Rossum687ae002001-10-15 22:03:32 +0000315 PyObject *tp_cache;
Guido van Rossum1c450732001-10-08 15:18:27 +0000316 PyObject *tp_subclasses;
317 PyObject *tp_weaklist;
Tim Peters6d6c1a32001-08-02 04:15:00 +0000318
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +0000319#ifdef COUNT_ALLOCS
Guido van Rossum59d1d2b2001-04-20 19:13:02 +0000320 /* these must be last and never explicitly initialized */
Tim Peters6d6c1a32001-08-02 04:15:00 +0000321 int tp_allocs;
322 int tp_frees;
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +0000323 int tp_maxalloc;
324 struct _typeobject *tp_next;
325#endif
Guido van Rossumcaa63801995-01-12 11:45:45 +0000326} PyTypeObject;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000327
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000328
Tim Peters6d6c1a32001-08-02 04:15:00 +0000329/* Generic type check */
330extern DL_IMPORT(int) PyType_IsSubtype(PyTypeObject *, PyTypeObject *);
331#define PyObject_TypeCheck(ob, tp) \
332 ((ob)->ob_type == (tp) || PyType_IsSubtype((ob)->ob_type, (tp)))
333
Guido van Rossum609c7c82001-08-24 16:51:42 +0000334extern DL_IMPORT(PyTypeObject) PyType_Type; /* built-in 'type' */
335extern DL_IMPORT(PyTypeObject) PyBaseObject_Type; /* built-in 'object' */
336extern DL_IMPORT(PyTypeObject) PySuper_Type; /* built-in 'super' */
Tim Peters6d6c1a32001-08-02 04:15:00 +0000337
338#define PyType_Check(op) PyObject_TypeCheck(op, &PyType_Type)
Tim Peters3abca122001-10-27 19:37:48 +0000339#define PyType_CheckExact(op) ((op)->ob_type == &PyType_Type)
Tim Peters6d6c1a32001-08-02 04:15:00 +0000340
Guido van Rossum528b7eb2001-08-07 17:24:28 +0000341extern DL_IMPORT(int) PyType_Ready(PyTypeObject *);
Tim Peters6d6c1a32001-08-02 04:15:00 +0000342extern DL_IMPORT(PyObject *) PyType_GenericAlloc(PyTypeObject *, int);
343extern DL_IMPORT(PyObject *) PyType_GenericNew(PyTypeObject *,
344 PyObject *, PyObject *);
345extern DL_IMPORT(PyObject *) _PyType_Lookup(PyTypeObject *, PyObject *);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000346
Guido van Rossum3f5da241990-12-20 15:06:42 +0000347/* Generic operations on objects */
Tim Peters9ace6bc2000-07-08 00:32:04 +0000348extern DL_IMPORT(int) PyObject_Print(PyObject *, FILE *, int);
Barry Warsaw10418eb2001-01-24 04:16:59 +0000349extern DL_IMPORT(void) _PyObject_Dump(PyObject *);
Tim Peters9ace6bc2000-07-08 00:32:04 +0000350extern DL_IMPORT(PyObject *) PyObject_Repr(PyObject *);
351extern DL_IMPORT(PyObject *) PyObject_Str(PyObject *);
Martin v. Löwis339d0f72001-08-17 18:39:25 +0000352#ifdef Py_USING_UNICODE
Marc-André Lemburgad7c98e2001-01-17 17:09:53 +0000353extern DL_IMPORT(PyObject *) PyObject_Unicode(PyObject *);
Martin v. Löwis339d0f72001-08-17 18:39:25 +0000354#endif
Tim Peters9ace6bc2000-07-08 00:32:04 +0000355extern DL_IMPORT(int) PyObject_Compare(PyObject *, PyObject *);
Guido van Rossum5f284ce2001-01-17 15:20:39 +0000356extern DL_IMPORT(PyObject *) PyObject_RichCompare(PyObject *, PyObject *, int);
357extern DL_IMPORT(int) PyObject_RichCompareBool(PyObject *, PyObject *, int);
Tim Peters9ace6bc2000-07-08 00:32:04 +0000358extern DL_IMPORT(PyObject *) PyObject_GetAttrString(PyObject *, char *);
359extern DL_IMPORT(int) PyObject_SetAttrString(PyObject *, char *, PyObject *);
360extern DL_IMPORT(int) PyObject_HasAttrString(PyObject *, char *);
361extern DL_IMPORT(PyObject *) PyObject_GetAttr(PyObject *, PyObject *);
362extern DL_IMPORT(int) PyObject_SetAttr(PyObject *, PyObject *, PyObject *);
363extern DL_IMPORT(int) PyObject_HasAttr(PyObject *, PyObject *);
Tim Peters6d6c1a32001-08-02 04:15:00 +0000364extern DL_IMPORT(PyObject **) _PyObject_GetDictPtr(PyObject *);
365extern DL_IMPORT(PyObject *) PyObject_GenericGetAttr(PyObject *, PyObject *);
366extern DL_IMPORT(int) PyObject_GenericSetAttr(PyObject *,
367 PyObject *, PyObject *);
Tim Peters9ace6bc2000-07-08 00:32:04 +0000368extern DL_IMPORT(long) PyObject_Hash(PyObject *);
369extern DL_IMPORT(int) PyObject_IsTrue(PyObject *);
370extern DL_IMPORT(int) PyObject_Not(PyObject *);
371extern DL_IMPORT(int) PyCallable_Check(PyObject *);
372extern DL_IMPORT(int) PyNumber_Coerce(PyObject **, PyObject **);
373extern DL_IMPORT(int) PyNumber_CoerceEx(PyObject **, PyObject **);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000374
Fred Drakeb3f0d342001-10-05 21:58:11 +0000375extern DL_IMPORT(void) PyObject_ClearWeakRefs(PyObject *);
Fred Drake41deb1e2001-02-01 05:27:45 +0000376
Guido van Rossumab3b0342001-09-18 20:38:53 +0000377/* A slot function whose address we need to compare */
378extern int _PyObject_SlotCompare(PyObject *, PyObject *);
379
380
Tim Peters7eea37e2001-09-04 22:08:56 +0000381/* PyObject_Dir(obj) acts like Python __builtin__.dir(obj), returning a
382 list of strings. PyObject_Dir(NULL) is like __builtin__.dir(),
383 returning the names of the current locals. In this case, if there are
384 no current locals, NULL is returned, and PyErr_Occurred() is false.
385*/
386extern DL_IMPORT(PyObject *) PyObject_Dir(PyObject *);
387
388
Guido van Rossum26d4ac31998-04-10 22:32:24 +0000389/* Helpers for printing recursive container types */
Tim Peters9ace6bc2000-07-08 00:32:04 +0000390extern DL_IMPORT(int) Py_ReprEnter(PyObject *);
391extern DL_IMPORT(void) Py_ReprLeave(PyObject *);
Guido van Rossum26d4ac31998-04-10 22:32:24 +0000392
Fred Drake13634cf2000-06-29 19:17:04 +0000393/* Helpers for hash functions */
Tim Peters9ace6bc2000-07-08 00:32:04 +0000394extern DL_IMPORT(long) _Py_HashDouble(double);
395extern DL_IMPORT(long) _Py_HashPointer(void*);
Fred Drake13634cf2000-06-29 19:17:04 +0000396
Jeremy Hylton483638c2001-02-01 20:20:45 +0000397/* Helper for passing objects to printf and the like */
398#define PyObject_REPR(obj) PyString_AS_STRING(PyObject_Repr(obj))
399
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000400/* Flag bits for printing: */
Guido van Rossumcaa63801995-01-12 11:45:45 +0000401#define Py_PRINT_RAW 1 /* No string quotes etc. */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000402
403/*
Tim Peters4be93d02002-07-07 19:59:50 +0000404`Type flags (tp_flags)
Guido van Rossum36eef3c1998-10-08 02:10:56 +0000405
406These flags are used to extend the type structure in a backwards-compatible
407fashion. Extensions can use the flags to indicate (and test) when a given
408type structure contains a new feature. The Python core will use these when
409introducing new functionality between major revisions (to avoid mid-version
410changes in the PYTHON_API_VERSION).
411
412Arbitration of the flag bit positions will need to be coordinated among
413all extension writers who publically release their extensions (this will
414be fewer than you might expect!)..
415
416Python 1.5.2 introduced the bf_getcharbuffer slot into PyBufferProcs.
417
418Type definitions should use Py_TPFLAGS_DEFAULT for their tp_flags value.
419
420Code can use PyType_HasFeature(type_ob, flag_value) to test whether the
421given type object has a specified feature.
Guido van Rossum36eef3c1998-10-08 02:10:56 +0000422*/
423
424/* PyBufferProcs contains bf_getcharbuffer */
425#define Py_TPFLAGS_HAVE_GETCHARBUFFER (1L<<0)
426
Guido van Rossumcecb27a2000-02-28 15:00:40 +0000427/* PySequenceMethods contains sq_contains */
428#define Py_TPFLAGS_HAVE_SEQUENCE_IN (1L<<1)
429
Neil Schemenauer31ec1422001-08-29 23:46:35 +0000430/* This is here for backwards compatibility. Extensions that use the old GC
431 * API will still compile but the objects will not be tracked by the GC. */
432#define Py_TPFLAGS_GC 0 /* used to be (1L<<2) */
Jeremy Hyltond08b4c42000-06-23 19:37:02 +0000433
Thomas Woutersdd8dbdb2000-08-24 20:09:45 +0000434/* PySequenceMethods and PyNumberMethods contain in-place operators */
435#define Py_TPFLAGS_HAVE_INPLACEOPS (1L<<3)
436
Neil Schemenauera7ed6942001-01-04 01:31:50 +0000437/* PyNumberMethods do their own coercion */
Guido van Rossum5f284ce2001-01-17 15:20:39 +0000438#define Py_TPFLAGS_CHECKTYPES (1L<<4)
Neil Schemenauera7ed6942001-01-04 01:31:50 +0000439
Guido van Rossum59d1d2b2001-04-20 19:13:02 +0000440/* tp_richcompare is defined */
Guido van Rossumbacca542001-01-24 22:13:48 +0000441#define Py_TPFLAGS_HAVE_RICHCOMPARE (1L<<5)
442
Fred Drake033f3122001-02-02 18:17:30 +0000443/* Objects which are weakly referencable if their tp_weaklistoffset is >0 */
Fred Drake033f3122001-02-02 18:17:30 +0000444#define Py_TPFLAGS_HAVE_WEAKREFS (1L<<6)
445
Guido van Rossum59d1d2b2001-04-20 19:13:02 +0000446/* tp_iter is defined */
447#define Py_TPFLAGS_HAVE_ITER (1L<<7)
448
Guido van Rossum4668b002001-08-08 05:00:18 +0000449/* New members introduced by Python 2.2 exist */
Tim Peters6d6c1a32001-08-02 04:15:00 +0000450#define Py_TPFLAGS_HAVE_CLASS (1L<<8)
451
452/* Set if the type object is dynamically allocated */
453#define Py_TPFLAGS_HEAPTYPE (1L<<9)
454
455/* Set if the type allows subclassing */
456#define Py_TPFLAGS_BASETYPE (1L<<10)
457
Guido van Rossum9b9c9722001-08-10 17:37:02 +0000458/* Set if the type is 'ready' -- fully initialized */
459#define Py_TPFLAGS_READY (1L<<12)
460
461/* Set while the type is being 'readied', to prevent recursive ready calls */
462#define Py_TPFLAGS_READYING (1L<<13)
463
Neil Schemenauer31ec1422001-08-29 23:46:35 +0000464/* Objects support garbage collection (see objimp.h) */
Neil Schemenauer31ec1422001-08-29 23:46:35 +0000465#define Py_TPFLAGS_HAVE_GC (1L<<14)
Neil Schemenauer31ec1422001-08-29 23:46:35 +0000466
Guido van Rossumbacca542001-01-24 22:13:48 +0000467#define Py_TPFLAGS_DEFAULT ( \
468 Py_TPFLAGS_HAVE_GETCHARBUFFER | \
Thomas Woutersdd8dbdb2000-08-24 20:09:45 +0000469 Py_TPFLAGS_HAVE_SEQUENCE_IN | \
Guido van Rossumbacca542001-01-24 22:13:48 +0000470 Py_TPFLAGS_HAVE_INPLACEOPS | \
471 Py_TPFLAGS_HAVE_RICHCOMPARE | \
Fred Drake033f3122001-02-02 18:17:30 +0000472 Py_TPFLAGS_HAVE_WEAKREFS | \
Guido van Rossum59d1d2b2001-04-20 19:13:02 +0000473 Py_TPFLAGS_HAVE_ITER | \
Tim Peters6d6c1a32001-08-02 04:15:00 +0000474 Py_TPFLAGS_HAVE_CLASS | \
Guido van Rossumbacca542001-01-24 22:13:48 +0000475 0)
Guido van Rossum36eef3c1998-10-08 02:10:56 +0000476
477#define PyType_HasFeature(t,f) (((t)->tp_flags & (f)) != 0)
478
479
480/*
Guido van Rossumcaa63801995-01-12 11:45:45 +0000481The macros Py_INCREF(op) and Py_DECREF(op) are used to increment or decrement
Tim Peters4be93d02002-07-07 19:59:50 +0000482reference counts. Py_DECREF calls the object's deallocator function when
483the refcount falls to 0; for
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000484objects that don't contain references to other objects or heap memory
485this can be the standard function free(). Both macros can be used
Tim Peters4be93d02002-07-07 19:59:50 +0000486wherever a void expression is allowed. The argument must not be a
487NIL pointer. If it may be NIL, use Py_XINCREF/Py_XDECREF instead.
488The macro _Py_NewReference(op) initialize reference counts to 1, and
489in special builds (Py_REF_DEBUG, Py_TRACE_REFS) performs additional
490bookkeeping appropriate to the special build.
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000491
492We assume that the reference count field can never overflow; this can
Tim Peters4be93d02002-07-07 19:59:50 +0000493be proven when the size of the field is the same as the pointer size, so
494we ignore the possibility. Provided a C int is at least 32 bits (which
495is implicitly assumed in many parts of this code), that's enough for
496about 2**31 references to an object.
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000497
Tim Peters4be93d02002-07-07 19:59:50 +0000498XXX The following became out of date in Python 2.2, but I'm not sure
499XXX what the full truth is now. Certainly, heap-allocated type objects
500XXX can and should be deallocated.
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000501Type objects should never be deallocated; the type pointer in an object
502is not considered to be a reference to the type object, to save
503complications in the deallocation function. (This is actually a
504decision that's up to the implementer of each new type so if you want,
505you can count such references to the type object.)
506
Guido van Rossumcaa63801995-01-12 11:45:45 +0000507*** WARNING*** The Py_DECREF macro must have a side-effect-free argument
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000508since it may evaluate its argument multiple times. (The alternative
509would be to mace it a proper function or assign it to a global temporary
510variable first, both of which are slower; and in a multi-threaded
511environment the global variable trick is not safe.)
512*/
513
Tim Peters34592512002-07-11 06:23:50 +0000514/* First define a pile of simple helper macros, one set per special
515 * build symbol. These either expand to the obvious things, or to
516 * nothing at all when the special mode isn't in effect. The main
517 * macros can later be defined just once then, yet expand to different
518 * things depending on which special build options are and aren't in effect.
519 * Trust me <wink>: while painful, this is 20x easier to understand than,
520 * e.g, defining _Py_NewReference five different times in a maze of nested
521 * #ifdefs (we used to do that -- it was impenetrable).
522 */
Tim Peters4be93d02002-07-07 19:59:50 +0000523#ifdef Py_REF_DEBUG
524extern DL_IMPORT(long) _Py_RefTotal;
Tim Peters7c321a82002-07-09 02:57:01 +0000525extern DL_IMPORT(void) _Py_NegativeRefcount(const char *fname,
526 int lineno, PyObject *op);
Tim Peters34592512002-07-11 06:23:50 +0000527#define _Py_INC_REFTOTAL _Py_RefTotal++
528#define _Py_DEC_REFTOTAL _Py_RefTotal--
529#define _Py_REF_DEBUG_COMMA ,
530#define _Py_CHECK_REFCNT(OP) \
Tim Peters7c321a82002-07-09 02:57:01 +0000531{ if ((OP)->ob_refcnt < 0) \
532 _Py_NegativeRefcount(__FILE__, __LINE__, \
533 (PyObject *)(OP)); \
534}
Tim Peters4be93d02002-07-07 19:59:50 +0000535#else
Tim Peters34592512002-07-11 06:23:50 +0000536#define _Py_INC_REFTOTAL
537#define _Py_DEC_REFTOTAL
538#define _Py_REF_DEBUG_COMMA
539#define _Py_CHECK_REFCNT(OP) /* a semicolon */;
Tim Peters57f4ddd2002-07-10 06:34:15 +0000540#endif /* Py_REF_DEBUG */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000541
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +0000542#ifdef COUNT_ALLOCS
Tim Peters9ace6bc2000-07-08 00:32:04 +0000543extern DL_IMPORT(void) inc_count(PyTypeObject *);
Tim Peters34592512002-07-11 06:23:50 +0000544#define _Py_INC_TPALLOCS(OP) inc_count((OP)->ob_type)
545#define _Py_INC_TPFREES(OP) (OP)->ob_type->tp_frees++
546#define _Py_DEC_TPFREES(OP) (OP)->ob_type->tp_frees--
547#define _Py_COUNT_ALLOCS_COMMA ,
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +0000548#else
Tim Peters34592512002-07-11 06:23:50 +0000549#define _Py_INC_TPALLOCS(OP)
550#define _Py_INC_TPFREES(OP)
551#define _Py_DEC_TPFREES(OP)
552#define _Py_COUNT_ALLOCS_COMMA
Tim Peters57f4ddd2002-07-10 06:34:15 +0000553#endif /* COUNT_ALLOCS */
Tim Peters4be93d02002-07-07 19:59:50 +0000554
555#ifdef Py_TRACE_REFS
556/* Py_TRACE_REFS is such major surgery that we call external routines. */
557extern DL_IMPORT(void) _Py_NewReference(PyObject *);
558extern DL_IMPORT(void) _Py_ForgetReference(PyObject *);
559extern DL_IMPORT(void) _Py_Dealloc(PyObject *);
560extern DL_IMPORT(void) _Py_PrintReferences(FILE *);
561extern DL_IMPORT(void) _Py_ResetReferences(void);
562
563#else
564/* Without Py_TRACE_REFS, there's little enough to do that we expand code
565 * inline.
566 */
Tim Peters34592512002-07-11 06:23:50 +0000567#define _Py_NewReference(op) ( \
568 _Py_INC_TPALLOCS(op) _Py_COUNT_ALLOCS_COMMA \
569 _Py_INC_REFTOTAL _Py_REF_DEBUG_COMMA \
Tim Peters4be93d02002-07-07 19:59:50 +0000570 (op)->ob_refcnt = 1)
571
Tim Peters34592512002-07-11 06:23:50 +0000572#define _Py_ForgetReference(op) _Py_INC_TPFREES(op)
Tim Peters4be93d02002-07-07 19:59:50 +0000573
Tim Peters57f4ddd2002-07-10 06:34:15 +0000574#define _Py_Dealloc(op) ( \
Tim Peters34592512002-07-11 06:23:50 +0000575 _Py_INC_TPFREES(op) _Py_COUNT_ALLOCS_COMMA \
Tim Peters4be93d02002-07-07 19:59:50 +0000576 (*(op)->ob_type->tp_dealloc)((PyObject *)(op)))
Guido van Rossum60be1db1996-05-22 16:33:22 +0000577#endif /* !Py_TRACE_REFS */
578
Tim Peters34592512002-07-11 06:23:50 +0000579#define Py_INCREF(op) ( \
580 _Py_INC_REFTOTAL _Py_REF_DEBUG_COMMA \
Tim Peters4be93d02002-07-07 19:59:50 +0000581 (op)->ob_refcnt++)
582
Tim Peters34592512002-07-11 06:23:50 +0000583#define Py_DECREF(op) \
584 if (_Py_DEC_REFTOTAL _Py_REF_DEBUG_COMMA \
585 --(op)->ob_refcnt != 0) \
586 _Py_CHECK_REFCNT(op) \
587 else \
Guido van Rossum1d529d11997-08-05 02:30:44 +0000588 _Py_Dealloc((PyObject *)(op))
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000589
Guido van Rossum3f5da241990-12-20 15:06:42 +0000590/* Macros to use in case the object pointer may be NULL: */
Guido van Rossumcaa63801995-01-12 11:45:45 +0000591#define Py_XINCREF(op) if ((op) == NULL) ; else Py_INCREF(op)
592#define Py_XDECREF(op) if ((op) == NULL) ; else Py_DECREF(op)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000593
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000594/*
Guido van Rossumcaa63801995-01-12 11:45:45 +0000595_Py_NoneStruct is an object of undefined type which can be used in contexts
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000596where NULL (nil) is not suitable (since NULL often means 'error').
597
Guido van Rossumcaa63801995-01-12 11:45:45 +0000598Don't forget to apply Py_INCREF() when returning this value!!!
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000599*/
Sjoerd Mullender107c7471995-04-25 11:53:24 +0000600extern DL_IMPORT(PyObject) _Py_NoneStruct; /* Don't use this directly */
Guido van Rossumcaa63801995-01-12 11:45:45 +0000601#define Py_None (&_Py_NoneStruct)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000602
Neil Schemenauera7ed6942001-01-04 01:31:50 +0000603/*
604Py_NotImplemented is a singleton used to signal that an operation is
605not implemented for a given type combination.
606*/
Neil Schemenauera7ed6942001-01-04 01:31:50 +0000607extern DL_IMPORT(PyObject) _Py_NotImplementedStruct; /* Don't use this directly */
Neil Schemenauera7ed6942001-01-04 01:31:50 +0000608#define Py_NotImplemented (&_Py_NotImplementedStruct)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000609
Guido van Rossum5f284ce2001-01-17 15:20:39 +0000610/* Rich comparison opcodes */
611#define Py_LT 0
612#define Py_LE 1
613#define Py_EQ 2
614#define Py_NE 3
615#define Py_GT 4
616#define Py_GE 5
617
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000618/*
Guido van Rossumb6775db1994-08-01 11:34:53 +0000619A common programming style in Python requires the forward declaration
Guido van Rossumcaa63801995-01-12 11:45:45 +0000620of static, initialized structures, e.g. for a type object that is used
Guido van Rossumb6775db1994-08-01 11:34:53 +0000621by the functions whose address must be used in the initializer.
622Some compilers (notably SCO ODT 3.0, I seem to remember early AIX as
623well) botch this if you use the static keyword for both declarations
624(they allocate two objects, and use the first, uninitialized one until
625the second declaration is encountered). Therefore, the forward
626declaration should use the 'forwardstatic' keyword. This expands to
627static on most systems, but to extern on a few. The actual storage
628and name will still be static because the second declaration is
629static, so no linker visible symbols will be generated. (Standard C
630compilers take offense to the extern forward declaration of a static
631object, so I can't just put extern in all cases. :-( )
632*/
633
634#ifdef BAD_STATIC_FORWARD
635#define staticforward extern
Guido van Rossum57836fe1995-02-21 21:06:10 +0000636#define statichere static
Guido van Rossum57836fe1995-02-21 21:06:10 +0000637#else /* !BAD_STATIC_FORWARD */
Guido van Rossumb6775db1994-08-01 11:34:53 +0000638#define staticforward static
Guido van Rossum57836fe1995-02-21 21:06:10 +0000639#define statichere static
640#endif /* !BAD_STATIC_FORWARD */
Guido van Rossumb6775db1994-08-01 11:34:53 +0000641
642
643/*
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000644More conventions
645================
646
647Argument Checking
648-----------------
649
650Functions that take objects as arguments normally don't check for nil
651arguments, but they do check the type of the argument, and return an
652error if the function doesn't apply to the type.
653
654Failure Modes
655-------------
656
657Functions may fail for a variety of reasons, including running out of
Guido van Rossum3f5da241990-12-20 15:06:42 +0000658memory. This is communicated to the caller in two ways: an error string
659is set (see errors.h), and the function result differs: functions that
660normally return a pointer return NULL for failure, functions returning
661an integer return -1 (which could be a legal return value too!), and
662other functions return 0 for success and -1 for failure.
Tim Peters4be93d02002-07-07 19:59:50 +0000663Callers should always check for errors before using the result. If
664an error was set, the caller must either explicitly clear it, or pass
665the error on to its caller.
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000666
667Reference Counts
668----------------
669
670It takes a while to get used to the proper usage of reference counts.
671
672Functions that create an object set the reference count to 1; such new
Guido van Rossumcaa63801995-01-12 11:45:45 +0000673objects must be stored somewhere or destroyed again with Py_DECREF().
674Functions that 'store' objects such as PyTuple_SetItem() and
675PyDict_SetItemString()
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000676don't increment the reference count of the object, since the most
677frequent use is to store a fresh object. Functions that 'retrieve'
Guido van Rossumcaa63801995-01-12 11:45:45 +0000678objects such as PyTuple_GetItem() and PyDict_GetItemString() also
679don't increment
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000680the reference count, since most frequently the object is only looked at
681quickly. Thus, to retrieve an object and store it again, the caller
Guido van Rossumcaa63801995-01-12 11:45:45 +0000682must call Py_INCREF() explicitly.
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000683
Guido van Rossumcaa63801995-01-12 11:45:45 +0000684NOTE: functions that 'consume' a reference count like
Fred Drake49bb0e31997-09-05 17:53:53 +0000685PyList_SetItemString() even consume the reference if the object wasn't
686stored, to simplify error handling.
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000687
688It seems attractive to make other functions that take an object as
689argument consume a reference count; however this may quickly get
690confusing (even the current practice is already confusing). Consider
Guido van Rossumcaa63801995-01-12 11:45:45 +0000691it carefully, it may save lots of calls to Py_INCREF() and Py_DECREF() at
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000692times.
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000693*/
Guido van Rossuma3309961993-07-28 09:05:47 +0000694
Guido van Rossumd724b232000-03-13 16:01:29 +0000695
Tim Peters803526b2002-07-07 05:13:56 +0000696/* Trashcan mechanism, thanks to Christian Tismer.
Guido van Rossumd724b232000-03-13 16:01:29 +0000697
Tim Peters803526b2002-07-07 05:13:56 +0000698When deallocating a container object, it's possible to trigger an unbounded
699chain of deallocations, as each Py_DECREF in turn drops the refcount on "the
700next" object in the chain to 0. This can easily lead to stack faults, and
701especially in threads (which typically have less stack space to work with).
Guido van Rossumd724b232000-03-13 16:01:29 +0000702
Tim Peters803526b2002-07-07 05:13:56 +0000703A container object that participates in cyclic gc can avoid this by
704bracketing the body of its tp_dealloc function with a pair of macros:
Guido van Rossume92e6102000-04-24 15:40:53 +0000705
Tim Peters803526b2002-07-07 05:13:56 +0000706static void
707mytype_dealloc(mytype *p)
708{
709 ... declarations go here ...
710
711 PyObject_GC_UnTrack(p); // must untrack first
712 Py_TRASHCAN_SAFE_BEGIN(p)
713 ... The body of the deallocator goes here, including all calls ...
714 ... to Py_DECREF on contained objects. ...
715 Py_TRASHCAN_SAFE_END(p)
716}
717
718How it works: The BEGIN macro increments a call-depth counter. So long
719as this counter is small, the body of the deallocator is run directly without
720further ado. But if the counter gets large, it instead adds p to a list of
721objects to be deallocated later, skips the body of the deallocator, and
722resumes execution after the END macro. The tp_dealloc routine then returns
723without deallocating anything (and so unbounded call-stack depth is avoided).
724
725When the call stack finishes unwinding again, code generated by the END macro
726notices this, and calls another routine to deallocate all the objects that
727may have been added to the list of deferred deallocations. In effect, a
728chain of N deallocations is broken into N / PyTrash_UNWIND_LEVEL pieces,
729with the call stack never exceeding a depth of PyTrash_UNWIND_LEVEL.
Guido van Rossumd724b232000-03-13 16:01:29 +0000730*/
731
Tim Peters803526b2002-07-07 05:13:56 +0000732extern DL_IMPORT(void) _PyTrash_deposit_object(PyObject*);
733extern DL_IMPORT(void) _PyTrash_destroy_chain(void);
734extern DL_IMPORT(int) _PyTrash_delete_nesting;
735extern DL_IMPORT(PyObject *) _PyTrash_delete_later;
736
Guido van Rossumd724b232000-03-13 16:01:29 +0000737#define PyTrash_UNWIND_LEVEL 50
738
739#define Py_TRASHCAN_SAFE_BEGIN(op) \
Tim Peters803526b2002-07-07 05:13:56 +0000740 if (_PyTrash_delete_nesting < PyTrash_UNWIND_LEVEL) { \
741 ++_PyTrash_delete_nesting;
742 /* The body of the deallocator is here. */
Guido van Rossumd724b232000-03-13 16:01:29 +0000743#define Py_TRASHCAN_SAFE_END(op) \
Guido van Rossumd724b232000-03-13 16:01:29 +0000744 --_PyTrash_delete_nesting; \
745 if (_PyTrash_delete_later && _PyTrash_delete_nesting <= 0) \
Guido van Rossume92e6102000-04-24 15:40:53 +0000746 _PyTrash_destroy_chain(); \
Guido van Rossumd724b232000-03-13 16:01:29 +0000747 } \
Tim Peters803526b2002-07-07 05:13:56 +0000748 else \
749 _PyTrash_deposit_object((PyObject*)op);
Guido van Rossume92e6102000-04-24 15:40:53 +0000750
Guido van Rossuma3309961993-07-28 09:05:47 +0000751#ifdef __cplusplus
752}
753#endif
754#endif /* !Py_OBJECT_H */