blob: 136e2027084df84b09ea3dbb6769d9f0e95993b5 [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 Rossum5799b521995-01-04 19:06:22 +00008Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam,
9The Netherlands.
Guido van Rossumf70e43a1991-02-19 12:39:46 +000010
11 All Rights Reserved
12
Guido van Rossumd266eb41996-10-25 14:44:06 +000013Permission to use, copy, modify, and distribute this software and its
14documentation for any purpose and without fee is hereby granted,
Guido van Rossumf70e43a1991-02-19 12:39:46 +000015provided that the above copyright notice appear in all copies and that
Guido van Rossumd266eb41996-10-25 14:44:06 +000016both that copyright notice and this permission notice appear in
Guido van Rossumf70e43a1991-02-19 12:39:46 +000017supporting documentation, and that the names of Stichting Mathematisch
Guido van Rossumd266eb41996-10-25 14:44:06 +000018Centrum or CWI or Corporation for National Research Initiatives or
19CNRI not be used in advertising or publicity pertaining to
20distribution of the software without specific, written prior
21permission.
Guido van Rossumf70e43a1991-02-19 12:39:46 +000022
Guido van Rossumd266eb41996-10-25 14:44:06 +000023While CWI is the initial source for this software, a modified version
24is made available by the Corporation for National Research Initiatives
25(CNRI) at the Internet address ftp://ftp.python.org.
26
27STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH
28REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF
29MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH
30CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL
31DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
32PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
33TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
34PERFORMANCE OF THIS SOFTWARE.
Guido van Rossumf70e43a1991-02-19 12:39:46 +000035
36******************************************************************/
37
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000038/* Object and type object interface */
39
40/*
41123456789-123456789-123456789-123456789-123456789-123456789-123456789-12
42
43Objects are structures allocated on the heap. Special rules apply to
44the use of objects to ensure they are properly garbage-collected.
45Objects are never allocated statically or on the stack; they must be
46accessed through special macros and functions only. (Type objects are
47exceptions to the first rule; the standard types are represented by
48statically initialized type objects.)
49
50An object has a 'reference count' that is increased or decreased when a
51pointer to the object is copied or deleted; when the reference count
52reaches zero there are no references to the object left and it can be
53removed from the heap.
54
55An object has a 'type' that determines what it represents and what kind
56of data it contains. An object's type is fixed when it is created.
57Types themselves are represented as objects; an object contains a
58pointer to the corresponding type object. The type itself has a type
59pointer pointing to the object representing the type 'type', which
60contains a pointer to itself!).
61
62Objects do not float around in memory; once allocated an object keeps
63the same size and address. Objects that must hold variable-size data
64can contain pointers to variable-size parts of the object. Not all
65objects of the same type have the same size; but the size cannot change
66after allocation. (These restrictions are made so a reference to an
67object can be simply a pointer -- moving an object would require
68updating all the pointers, and changing an object's size would require
69moving it if there was another object right next to it.)
70
Guido van Rossumcaa63801995-01-12 11:45:45 +000071Objects are always accessed through pointers of the type 'PyObject *'.
72The type 'PyObject' is a structure that only contains the reference count
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000073and the type pointer. The actual memory allocated for an object
74contains other data that can only be accessed after casting the pointer
75to a pointer to a longer structure type. This longer type must start
Guido van Rossumcaa63801995-01-12 11:45:45 +000076with the reference count and type fields; the macro PyObject_HEAD should be
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000077used for this (to accomodate for future changes). The implementation
78of a particular object type can cast the object pointer to the proper
79type and back.
80
81A standard interface exists for objects that contain an array of items
82whose size is determined when the object is allocated.
83
84123456789-123456789-123456789-123456789-123456789-123456789-123456789-12
85*/
86
Guido van Rossum408027e1996-12-30 16:17:54 +000087#ifdef Py_DEBUG
Guido van Rossum3f5da241990-12-20 15:06:42 +000088
89/* Turn on heavy reference debugging */
Guido van Rossumcaa63801995-01-12 11:45:45 +000090#define Py_TRACE_REFS
Guido van Rossum3f5da241990-12-20 15:06:42 +000091
92/* Turn on reference counting */
Guido van Rossumcaa63801995-01-12 11:45:45 +000093#define Py_REF_DEBUG
Guido van Rossum3f5da241990-12-20 15:06:42 +000094
Guido van Rossum408027e1996-12-30 16:17:54 +000095#endif /* Py_DEBUG */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000096
Guido van Rossumcaa63801995-01-12 11:45:45 +000097#ifdef Py_TRACE_REFS
98#define PyObject_HEAD \
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000099 struct _object *_ob_next, *_ob_prev; \
Guido van Rossumc8564cd1990-11-02 17:51:56 +0000100 int ob_refcnt; \
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000101 struct _typeobject *ob_type;
Guido van Rossumcaa63801995-01-12 11:45:45 +0000102#define PyObject_HEAD_INIT(type) 0, 0, 1, type,
Guido van Rossum60be1db1996-05-22 16:33:22 +0000103#else /* !Py_TRACE_REFS */
Guido van Rossumcaa63801995-01-12 11:45:45 +0000104#define PyObject_HEAD \
Guido van Rossum5799b521995-01-04 19:06:22 +0000105 int ob_refcnt; \
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000106 struct _typeobject *ob_type;
Guido van Rossumcaa63801995-01-12 11:45:45 +0000107#define PyObject_HEAD_INIT(type) 1, type,
Guido van Rossum60be1db1996-05-22 16:33:22 +0000108#endif /* !Py_TRACE_REFS */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000109
Guido van Rossumcaa63801995-01-12 11:45:45 +0000110#define PyObject_VAR_HEAD \
111 PyObject_HEAD \
Guido van Rossum5799b521995-01-04 19:06:22 +0000112 int ob_size; /* Number of items in variable part */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000113
114typedef struct _object {
Guido van Rossumcaa63801995-01-12 11:45:45 +0000115 PyObject_HEAD
116} PyObject;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000117
118typedef struct {
Guido van Rossumcaa63801995-01-12 11:45:45 +0000119 PyObject_VAR_HEAD
Guido van Rossumd0c87ee1997-05-15 21:31:03 +0000120} PyVarObject;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000121
122
123/*
124123456789-123456789-123456789-123456789-123456789-123456789-123456789-12
125
126Type objects contain a string containing the type name (to help somewhat
127in debugging), the allocation parameters (see newobj() and newvarobj()),
128and methods for accessing objects of the type. Methods are optional,a
129nil pointer meaning that particular kind of access is not available for
Guido van Rossumcaa63801995-01-12 11:45:45 +0000130this type. The Py_DECREF() macro uses the tp_dealloc method without
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000131checking for a nil pointer; it should always be implemented except if
132the implementation can guarantee that the reference count will never
133reach zero (e.g., for type objects).
134
135NB: the methods for certain type groups are now contained in separate
136method blocks.
137*/
138
Guido van Rossumcaa63801995-01-12 11:45:45 +0000139typedef PyObject * (*unaryfunc) Py_PROTO((PyObject *));
140typedef PyObject * (*binaryfunc) Py_PROTO((PyObject *, PyObject *));
141typedef PyObject * (*ternaryfunc) Py_PROTO((PyObject *, PyObject *, PyObject *));
142typedef int (*inquiry) Py_PROTO((PyObject *));
143typedef int (*coercion) Py_PROTO((PyObject **, PyObject **));
144typedef PyObject *(*intargfunc) Py_PROTO((PyObject *, int));
145typedef PyObject *(*intintargfunc) Py_PROTO((PyObject *, int, int));
146typedef int(*intobjargproc) Py_PROTO((PyObject *, int, PyObject *));
147typedef int(*intintobjargproc) Py_PROTO((PyObject *, int, int, PyObject *));
148typedef int(*objobjargproc) Py_PROTO((PyObject *, PyObject *, PyObject *));
Guido van Rossumfdf95dd1997-05-05 22:15:02 +0000149typedef int (*getreadbufferproc) Py_PROTO((PyObject *, int, void **));
150typedef int (*getwritebufferproc) Py_PROTO((PyObject *, int, void **));
151typedef int (*getsegcountproc) Py_PROTO((PyObject *, int *));
Guido van Rossum36eef3c1998-10-08 02:10:56 +0000152typedef int (*getcharbufferproc) Py_PROTO((PyObject *, int, const char **));
Guido van Rossumb6775db1994-08-01 11:34:53 +0000153
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000154typedef struct {
Guido van Rossumb6775db1994-08-01 11:34:53 +0000155 binaryfunc nb_add;
156 binaryfunc nb_subtract;
157 binaryfunc nb_multiply;
158 binaryfunc nb_divide;
159 binaryfunc nb_remainder;
160 binaryfunc nb_divmod;
Guido van Rossum75abc631994-08-09 13:21:54 +0000161 ternaryfunc nb_power;
Guido van Rossumb6775db1994-08-01 11:34:53 +0000162 unaryfunc nb_negative;
163 unaryfunc nb_positive;
164 unaryfunc nb_absolute;
165 inquiry nb_nonzero;
166 unaryfunc nb_invert;
167 binaryfunc nb_lshift;
168 binaryfunc nb_rshift;
169 binaryfunc nb_and;
170 binaryfunc nb_xor;
171 binaryfunc nb_or;
172 coercion nb_coerce;
173 unaryfunc nb_int;
174 unaryfunc nb_long;
175 unaryfunc nb_float;
176 unaryfunc nb_oct;
177 unaryfunc nb_hex;
Guido van Rossumcaa63801995-01-12 11:45:45 +0000178} PyNumberMethods;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000179
180typedef struct {
Guido van Rossumb6775db1994-08-01 11:34:53 +0000181 inquiry sq_length;
182 binaryfunc sq_concat;
183 intargfunc sq_repeat;
184 intargfunc sq_item;
185 intintargfunc sq_slice;
186 intobjargproc sq_ass_item;
187 intintobjargproc sq_ass_slice;
Guido van Rossumcaa63801995-01-12 11:45:45 +0000188} PySequenceMethods;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000189
190typedef struct {
Guido van Rossumb6775db1994-08-01 11:34:53 +0000191 inquiry mp_length;
192 binaryfunc mp_subscript;
193 objobjargproc mp_ass_subscript;
Guido van Rossumcaa63801995-01-12 11:45:45 +0000194} PyMappingMethods;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000195
Guido van Rossumfdf95dd1997-05-05 22:15:02 +0000196typedef struct {
197 getreadbufferproc bf_getreadbuffer;
198 getwritebufferproc bf_getwritebuffer;
199 getsegcountproc bf_getsegcount;
Guido van Rossum36eef3c1998-10-08 02:10:56 +0000200 getcharbufferproc bf_getcharbuffer;
Guido van Rossumfdf95dd1997-05-05 22:15:02 +0000201} PyBufferProcs;
202
203
Guido van Rossumcaa63801995-01-12 11:45:45 +0000204typedef void (*destructor) Py_PROTO((PyObject *));
205typedef int (*printfunc) Py_PROTO((PyObject *, FILE *, int));
206typedef PyObject *(*getattrfunc) Py_PROTO((PyObject *, char *));
Guido van Rossum0693dd21996-08-09 20:48:52 +0000207typedef PyObject *(*getattrofunc) Py_PROTO((PyObject *, PyObject *));
Guido van Rossumcaa63801995-01-12 11:45:45 +0000208typedef int (*setattrfunc) Py_PROTO((PyObject *, char *, PyObject *));
Guido van Rossum0693dd21996-08-09 20:48:52 +0000209typedef int (*setattrofunc) Py_PROTO((PyObject *, PyObject *, PyObject *));
Guido van Rossumcaa63801995-01-12 11:45:45 +0000210typedef int (*cmpfunc) Py_PROTO((PyObject *, PyObject *));
211typedef PyObject *(*reprfunc) Py_PROTO((PyObject *));
212typedef long (*hashfunc) Py_PROTO((PyObject *));
Guido van Rossumb6775db1994-08-01 11:34:53 +0000213
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000214typedef struct _typeobject {
Guido van Rossumcaa63801995-01-12 11:45:45 +0000215 PyObject_VAR_HEAD
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000216 char *tp_name; /* For printing */
Guido van Rossum5799b521995-01-04 19:06:22 +0000217 int tp_basicsize, tp_itemsize; /* For allocation */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000218
219 /* Methods to implement standard operations */
220
Guido van Rossumb6775db1994-08-01 11:34:53 +0000221 destructor tp_dealloc;
222 printfunc tp_print;
223 getattrfunc tp_getattr;
224 setattrfunc tp_setattr;
225 cmpfunc tp_compare;
226 reprfunc tp_repr;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000227
228 /* Method suites for standard classes */
229
Guido van Rossumcaa63801995-01-12 11:45:45 +0000230 PyNumberMethods *tp_as_number;
231 PySequenceMethods *tp_as_sequence;
232 PyMappingMethods *tp_as_mapping;
Guido van Rossum9bfef441993-03-29 10:43:31 +0000233
234 /* More standard operations (at end for binary compatibility) */
235
Guido van Rossumb6775db1994-08-01 11:34:53 +0000236 hashfunc tp_hash;
Guido van Rossum884afd61995-07-18 14:21:06 +0000237 ternaryfunc tp_call;
Guido van Rossum6fde3901995-01-07 10:32:04 +0000238 reprfunc tp_str;
Guido van Rossum0693dd21996-08-09 20:48:52 +0000239 getattrofunc tp_getattro;
240 setattrofunc tp_setattro;
Guido van Rossum6fde3901995-01-07 10:32:04 +0000241
Guido van Rossumfdf95dd1997-05-05 22:15:02 +0000242 /* Functions to access object as input/output buffer */
243 PyBufferProcs *tp_as_buffer;
244
Guido van Rossum36eef3c1998-10-08 02:10:56 +0000245 /* Flags to define presence of optional/expanded features */
246 long tp_flags;
Guido van Rossum6fde3901995-01-07 10:32:04 +0000247
248 char *tp_doc; /* Documentation string */
249
Guido van Rossuma9c2d7a1998-04-23 19:16:44 +0000250 /* More spares */
251 long tp_xxx5;
252 long tp_xxx6;
253 long tp_xxx7;
254 long tp_xxx8;
255
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +0000256#ifdef COUNT_ALLOCS
257 /* these must be last */
258 int tp_alloc;
259 int tp_free;
260 int tp_maxalloc;
261 struct _typeobject *tp_next;
262#endif
Guido van Rossumcaa63801995-01-12 11:45:45 +0000263} PyTypeObject;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000264
Sjoerd Mullender107c7471995-04-25 11:53:24 +0000265extern DL_IMPORT(PyTypeObject) PyType_Type; /* The type of type objects */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000266
Guido van Rossumcaa63801995-01-12 11:45:45 +0000267#define PyType_Check(op) ((op)->ob_type == &PyType_Type)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000268
Guido van Rossum3f5da241990-12-20 15:06:42 +0000269/* Generic operations on objects */
Guido van Rossumcaa63801995-01-12 11:45:45 +0000270extern int PyObject_Print Py_PROTO((PyObject *, FILE *, int));
271extern PyObject * PyObject_Repr Py_PROTO((PyObject *));
Guido van Rossum93817821995-01-17 16:01:01 +0000272extern PyObject * PyObject_Str Py_PROTO((PyObject *));
Guido van Rossumcaa63801995-01-12 11:45:45 +0000273extern int PyObject_Compare Py_PROTO((PyObject *, PyObject *));
274extern PyObject *PyObject_GetAttrString Py_PROTO((PyObject *, char *));
Guido van Rossum454674d1995-07-26 17:53:29 +0000275extern int PyObject_SetAttrString Py_PROTO((PyObject *, char *, PyObject *));
Guido van Rossum93817821995-01-17 16:01:01 +0000276extern int PyObject_HasAttrString Py_PROTO((PyObject *, char *));
Guido van Rossumcaa63801995-01-12 11:45:45 +0000277extern PyObject *PyObject_GetAttr Py_PROTO((PyObject *, PyObject *));
278extern int PyObject_SetAttr Py_PROTO((PyObject *, PyObject *, PyObject *));
Guido van Rossum114c1ea1997-09-06 18:44:59 +0000279extern int PyObject_HasAttr Py_PROTO((PyObject *, PyObject *));
Guido van Rossumcaa63801995-01-12 11:45:45 +0000280extern long PyObject_Hash Py_PROTO((PyObject *));
Guido van Rossumb13afdd1995-02-17 15:01:21 +0000281extern int PyObject_IsTrue Py_PROTO((PyObject *));
Guido van Rossumc3d3f961998-04-09 17:53:59 +0000282extern int PyObject_Not Py_PROTO((PyObject *));
Guido van Rossumb13afdd1995-02-17 15:01:21 +0000283extern int PyCallable_Check Py_PROTO((PyObject *));
Guido van Rossum60be1db1996-05-22 16:33:22 +0000284extern int PyNumber_Coerce Py_PROTO((PyObject **, PyObject **));
Guido van Rossum127b8dd1997-11-19 16:04:54 +0000285extern int PyNumber_CoerceEx Py_PROTO((PyObject **, PyObject **));
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000286
Guido van Rossum26d4ac31998-04-10 22:32:24 +0000287/* Helpers for printing recursive container types */
288extern int Py_ReprEnter Py_PROTO((PyObject *));
289extern void Py_ReprLeave Py_PROTO((PyObject *));
290
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000291/* Flag bits for printing: */
Guido van Rossumcaa63801995-01-12 11:45:45 +0000292#define Py_PRINT_RAW 1 /* No string quotes etc. */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000293
294/*
Guido van Rossum36eef3c1998-10-08 02:10:56 +0000295
296Type flags (tp_flags)
297
298These flags are used to extend the type structure in a backwards-compatible
299fashion. Extensions can use the flags to indicate (and test) when a given
300type structure contains a new feature. The Python core will use these when
301introducing new functionality between major revisions (to avoid mid-version
302changes in the PYTHON_API_VERSION).
303
304Arbitration of the flag bit positions will need to be coordinated among
305all extension writers who publically release their extensions (this will
306be fewer than you might expect!)..
307
308Python 1.5.2 introduced the bf_getcharbuffer slot into PyBufferProcs.
309
310Type definitions should use Py_TPFLAGS_DEFAULT for their tp_flags value.
311
312Code can use PyType_HasFeature(type_ob, flag_value) to test whether the
313given type object has a specified feature.
314
315*/
316
317/* PyBufferProcs contains bf_getcharbuffer */
318#define Py_TPFLAGS_HAVE_GETCHARBUFFER (1L<<0)
319
320#define Py_TPFLAGS_DEFAULT (Py_TPFLAGS_HAVE_GETCHARBUFFER)
321
322#define PyType_HasFeature(t,f) (((t)->tp_flags & (f)) != 0)
323
324
325/*
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000326123456789-123456789-123456789-123456789-123456789-123456789-123456789-12
327
Guido van Rossumcaa63801995-01-12 11:45:45 +0000328The macros Py_INCREF(op) and Py_DECREF(op) are used to increment or decrement
329reference counts. Py_DECREF calls the object's deallocator function; for
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000330objects that don't contain references to other objects or heap memory
331this can be the standard function free(). Both macros can be used
332whereever a void expression is allowed. The argument shouldn't be a
Guido van Rossumcaa63801995-01-12 11:45:45 +0000333NIL pointer. The macro _Py_NewReference(op) is used only to initialize
334reference counts to 1; it is defined here for convenience.
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000335
336We assume that the reference count field can never overflow; this can
337be proven when the size of the field is the same as the pointer size
338but even with a 16-bit reference count field it is pretty unlikely so
339we ignore the possibility. (If you are paranoid, make it a long.)
340
341Type objects should never be deallocated; the type pointer in an object
342is not considered to be a reference to the type object, to save
343complications in the deallocation function. (This is actually a
344decision that's up to the implementer of each new type so if you want,
345you can count such references to the type object.)
346
Guido van Rossumcaa63801995-01-12 11:45:45 +0000347*** WARNING*** The Py_DECREF macro must have a side-effect-free argument
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000348since it may evaluate its argument multiple times. (The alternative
349would be to mace it a proper function or assign it to a global temporary
350variable first, both of which are slower; and in a multi-threaded
351environment the global variable trick is not safe.)
352*/
353
Guido van Rossumcaa63801995-01-12 11:45:45 +0000354#ifdef Py_TRACE_REFS
355#ifndef Py_REF_DEBUG
356#define Py_REF_DEBUG
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000357#endif
358#endif
359
Guido van Rossumd86b3801996-08-12 21:31:32 +0000360#ifdef Py_TRACE_REFS
361extern void _Py_Dealloc Py_PROTO((PyObject *));
362extern void _Py_NewReference Py_PROTO((PyObject *));
363extern void _Py_ForgetReference Py_PROTO((PyObject *));
364extern void _Py_PrintReferences Py_PROTO((FILE *));
365#endif
366
Guido van Rossumcaa63801995-01-12 11:45:45 +0000367#ifndef Py_TRACE_REFS
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +0000368#ifdef COUNT_ALLOCS
Guido van Rossumcaa63801995-01-12 11:45:45 +0000369#define _Py_Dealloc(op) ((op)->ob_type->tp_free++, (*(op)->ob_type->tp_dealloc)((PyObject *)(op)))
Sjoerd Mullender91e7a0b1995-04-06 13:47:48 +0000370#define _Py_ForgetReference(op) ((op)->ob_type->tp_free++)
Guido van Rossumd86b3801996-08-12 21:31:32 +0000371#else /* !COUNT_ALLOCS */
Guido van Rossumcaa63801995-01-12 11:45:45 +0000372#define _Py_Dealloc(op) (*(op)->ob_type->tp_dealloc)((PyObject *)(op))
Guido van Rossumcaa63801995-01-12 11:45:45 +0000373#define _Py_ForgetReference(op) /*empty*/
Guido van Rossumd86b3801996-08-12 21:31:32 +0000374#endif /* !COUNT_ALLOCS */
375#endif /* !Py_TRACE_REFS */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000376
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +0000377#ifdef COUNT_ALLOCS
Guido van Rossumcaa63801995-01-12 11:45:45 +0000378extern void inc_count Py_PROTO((PyTypeObject *));
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +0000379#endif
380
Guido van Rossumcaa63801995-01-12 11:45:45 +0000381#ifdef Py_REF_DEBUG
Guido van Rossum60be1db1996-05-22 16:33:22 +0000382
Guido van Rossum6f9e4331995-03-29 16:57:48 +0000383extern long _Py_RefTotal;
Guido van Rossum60be1db1996-05-22 16:33:22 +0000384
Guido van Rossumcaa63801995-01-12 11:45:45 +0000385#ifndef Py_TRACE_REFS
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +0000386#ifdef COUNT_ALLOCS
Guido van Rossum6f9e4331995-03-29 16:57:48 +0000387#define _Py_NewReference(op) (inc_count((op)->ob_type), _Py_RefTotal++, (op)->ob_refcnt = 1)
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +0000388#else
Guido van Rossum6f9e4331995-03-29 16:57:48 +0000389#define _Py_NewReference(op) (_Py_RefTotal++, (op)->ob_refcnt = 1)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000390#endif
Guido van Rossum60be1db1996-05-22 16:33:22 +0000391#endif /* !Py_TRACE_REFS */
392
Guido van Rossum6f9e4331995-03-29 16:57:48 +0000393#define Py_INCREF(op) (_Py_RefTotal++, (op)->ob_refcnt++)
Guido van Rossumcaa63801995-01-12 11:45:45 +0000394#define Py_DECREF(op) \
Guido van Rossum6f9e4331995-03-29 16:57:48 +0000395 if (--_Py_RefTotal, --(op)->ob_refcnt != 0) \
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000396 ; \
397 else \
Guido van Rossum1d529d11997-08-05 02:30:44 +0000398 _Py_Dealloc((PyObject *)(op))
Guido van Rossum60be1db1996-05-22 16:33:22 +0000399#else /* !Py_REF_DEBUG */
400
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +0000401#ifdef COUNT_ALLOCS
Guido van Rossumcaa63801995-01-12 11:45:45 +0000402#define _Py_NewReference(op) (inc_count((op)->ob_type), (op)->ob_refcnt = 1)
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +0000403#else
Guido van Rossumcaa63801995-01-12 11:45:45 +0000404#define _Py_NewReference(op) ((op)->ob_refcnt = 1)
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +0000405#endif
Guido van Rossum60be1db1996-05-22 16:33:22 +0000406
Guido van Rossumcaa63801995-01-12 11:45:45 +0000407#define Py_INCREF(op) ((op)->ob_refcnt++)
408#define Py_DECREF(op) \
Guido van Rossum5799b521995-01-04 19:06:22 +0000409 if (--(op)->ob_refcnt != 0) \
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000410 ; \
411 else \
Guido van Rossum1d529d11997-08-05 02:30:44 +0000412 _Py_Dealloc((PyObject *)(op))
Guido van Rossum60be1db1996-05-22 16:33:22 +0000413#endif /* !Py_REF_DEBUG */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000414
Guido van Rossum3f5da241990-12-20 15:06:42 +0000415/* Macros to use in case the object pointer may be NULL: */
416
Guido van Rossumcaa63801995-01-12 11:45:45 +0000417#define Py_XINCREF(op) if ((op) == NULL) ; else Py_INCREF(op)
418#define Py_XDECREF(op) if ((op) == NULL) ; else Py_DECREF(op)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000419
420/* Definition of NULL, so you don't have to include <stdio.h> */
421
422#ifndef NULL
423#define NULL 0
424#endif
425
426
427/*
Guido van Rossumcaa63801995-01-12 11:45:45 +0000428_Py_NoneStruct is an object of undefined type which can be used in contexts
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000429where NULL (nil) is not suitable (since NULL often means 'error').
430
Guido van Rossumcaa63801995-01-12 11:45:45 +0000431Don't forget to apply Py_INCREF() when returning this value!!!
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000432*/
433
Sjoerd Mullender107c7471995-04-25 11:53:24 +0000434extern DL_IMPORT(PyObject) _Py_NoneStruct; /* Don't use this directly */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000435
Guido van Rossumcaa63801995-01-12 11:45:45 +0000436#define Py_None (&_Py_NoneStruct)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000437
438
439/*
Guido van Rossumb6775db1994-08-01 11:34:53 +0000440A common programming style in Python requires the forward declaration
Guido van Rossumcaa63801995-01-12 11:45:45 +0000441of static, initialized structures, e.g. for a type object that is used
Guido van Rossumb6775db1994-08-01 11:34:53 +0000442by the functions whose address must be used in the initializer.
443Some compilers (notably SCO ODT 3.0, I seem to remember early AIX as
444well) botch this if you use the static keyword for both declarations
445(they allocate two objects, and use the first, uninitialized one until
446the second declaration is encountered). Therefore, the forward
447declaration should use the 'forwardstatic' keyword. This expands to
448static on most systems, but to extern on a few. The actual storage
449and name will still be static because the second declaration is
450static, so no linker visible symbols will be generated. (Standard C
451compilers take offense to the extern forward declaration of a static
452object, so I can't just put extern in all cases. :-( )
453*/
454
455#ifdef BAD_STATIC_FORWARD
456#define staticforward extern
Guido van Rossum57836fe1995-02-21 21:06:10 +0000457#ifdef __SC__
458#define statichere
Guido van Rossumb6775db1994-08-01 11:34:53 +0000459#else
Guido van Rossum57836fe1995-02-21 21:06:10 +0000460#define statichere static
461#endif /* __SC__ */
462#else /* !BAD_STATIC_FORWARD */
Guido van Rossumb6775db1994-08-01 11:34:53 +0000463#define staticforward static
Guido van Rossum57836fe1995-02-21 21:06:10 +0000464#define statichere static
465#endif /* !BAD_STATIC_FORWARD */
Guido van Rossumb6775db1994-08-01 11:34:53 +0000466
467
468/*
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000469123456789-123456789-123456789-123456789-123456789-123456789-123456789-12
470
471More conventions
472================
473
474Argument Checking
475-----------------
476
477Functions that take objects as arguments normally don't check for nil
478arguments, but they do check the type of the argument, and return an
479error if the function doesn't apply to the type.
480
481Failure Modes
482-------------
483
484Functions may fail for a variety of reasons, including running out of
Guido van Rossum3f5da241990-12-20 15:06:42 +0000485memory. This is communicated to the caller in two ways: an error string
486is set (see errors.h), and the function result differs: functions that
487normally return a pointer return NULL for failure, functions returning
488an integer return -1 (which could be a legal return value too!), and
489other functions return 0 for success and -1 for failure.
490Callers should always check for errors before using the result.
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000491
492Reference Counts
493----------------
494
495It takes a while to get used to the proper usage of reference counts.
496
497Functions that create an object set the reference count to 1; such new
Guido van Rossumcaa63801995-01-12 11:45:45 +0000498objects must be stored somewhere or destroyed again with Py_DECREF().
499Functions that 'store' objects such as PyTuple_SetItem() and
500PyDict_SetItemString()
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000501don't increment the reference count of the object, since the most
502frequent use is to store a fresh object. Functions that 'retrieve'
Guido van Rossumcaa63801995-01-12 11:45:45 +0000503objects such as PyTuple_GetItem() and PyDict_GetItemString() also
504don't increment
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000505the reference count, since most frequently the object is only looked at
506quickly. Thus, to retrieve an object and store it again, the caller
Guido van Rossumcaa63801995-01-12 11:45:45 +0000507must call Py_INCREF() explicitly.
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000508
Guido van Rossumcaa63801995-01-12 11:45:45 +0000509NOTE: functions that 'consume' a reference count like
Fred Drake49bb0e31997-09-05 17:53:53 +0000510PyList_SetItemString() even consume the reference if the object wasn't
511stored, to simplify error handling.
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000512
513It seems attractive to make other functions that take an object as
514argument consume a reference count; however this may quickly get
515confusing (even the current practice is already confusing). Consider
Guido van Rossumcaa63801995-01-12 11:45:45 +0000516it carefully, it may save lots of calls to Py_INCREF() and Py_DECREF() at
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000517times.
518
519123456789-123456789-123456789-123456789-123456789-123456789-123456789-12
520*/
Guido van Rossuma3309961993-07-28 09:05:47 +0000521
522#ifdef __cplusplus
523}
524#endif
525#endif /* !Py_OBJECT_H */