blob: 24989bf32ba1a1e16848679518615dae9c0de865 [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 Rossum9bfef441993-03-29 10:43:31 +00008Copyright 1991, 1992, 1993 by Stichting Mathematisch Centrum,
9Amsterdam, The Netherlands.
Guido van Rossumf70e43a1991-02-19 12:39:46 +000010
11 All Rights Reserved
12
13Permission to use, copy, modify, and distribute this software and its
14documentation for any purpose and without fee is hereby granted,
15provided that the above copyright notice appear in all copies and that
16both that copyright notice and this permission notice appear in
17supporting documentation, and that the names of Stichting Mathematisch
18Centrum or CWI not be used in advertising or publicity pertaining to
19distribution of the software without specific, written prior permission.
20
21STICHTING MATHEMATISCH CENTRUM DISCLAIMS ALL WARRANTIES WITH REGARD TO
22THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
23FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH CENTRUM BE LIABLE
24FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
25WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
26ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
27OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
28
29******************************************************************/
30
Guido van Rossumf2c8beb1992-09-03 20:34:07 +000031#ifndef DEBUG
Guido van Rossum3f5da241990-12-20 15:06:42 +000032#define NDEBUG
Guido van Rossumf2c8beb1992-09-03 20:34:07 +000033#endif
34
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000035/* Object and type object interface */
36
37/*
38123456789-123456789-123456789-123456789-123456789-123456789-123456789-12
39
40Objects are structures allocated on the heap. Special rules apply to
41the use of objects to ensure they are properly garbage-collected.
42Objects are never allocated statically or on the stack; they must be
43accessed through special macros and functions only. (Type objects are
44exceptions to the first rule; the standard types are represented by
45statically initialized type objects.)
46
47An object has a 'reference count' that is increased or decreased when a
48pointer to the object is copied or deleted; when the reference count
49reaches zero there are no references to the object left and it can be
50removed from the heap.
51
52An object has a 'type' that determines what it represents and what kind
53of data it contains. An object's type is fixed when it is created.
54Types themselves are represented as objects; an object contains a
55pointer to the corresponding type object. The type itself has a type
56pointer pointing to the object representing the type 'type', which
57contains a pointer to itself!).
58
59Objects do not float around in memory; once allocated an object keeps
60the same size and address. Objects that must hold variable-size data
61can contain pointers to variable-size parts of the object. Not all
62objects of the same type have the same size; but the size cannot change
63after allocation. (These restrictions are made so a reference to an
64object can be simply a pointer -- moving an object would require
65updating all the pointers, and changing an object's size would require
66moving it if there was another object right next to it.)
67
68Objects are always accessed through pointers of the type 'object *'.
69The type 'object' is a structure that only contains the reference count
70and the type pointer. The actual memory allocated for an object
71contains other data that can only be accessed after casting the pointer
72to a pointer to a longer structure type. This longer type must start
73with the reference count and type fields; the macro OB_HEAD should be
74used for this (to accomodate for future changes). The implementation
75of a particular object type can cast the object pointer to the proper
76type and back.
77
78A standard interface exists for objects that contain an array of items
79whose size is determined when the object is allocated.
80
81123456789-123456789-123456789-123456789-123456789-123456789-123456789-12
82*/
83
Guido van Rossum3f5da241990-12-20 15:06:42 +000084#ifndef NDEBUG
85
86/* Turn on heavy reference debugging */
87#define TRACE_REFS
88
89/* Turn on reference counting */
90#define REF_DEBUG
91
92#endif /* NDEBUG */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000093
94#ifdef TRACE_REFS
95#define OB_HEAD \
96 struct _object *_ob_next, *_ob_prev; \
Guido van Rossumc8564cd1990-11-02 17:51:56 +000097 int ob_refcnt; \
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000098 struct _typeobject *ob_type;
99#define OB_HEAD_INIT(type) 0, 0, 1, type,
100#else
101#define OB_HEAD \
102 unsigned int ob_refcnt; \
103 struct _typeobject *ob_type;
104#define OB_HEAD_INIT(type) 1, type,
105#endif
106
107#define OB_VARHEAD \
108 OB_HEAD \
109 unsigned int ob_size; /* Number of items in variable part */
110
111typedef struct _object {
112 OB_HEAD
113} object;
114
115typedef struct {
116 OB_VARHEAD
117} varobject;
118
119
120/*
121123456789-123456789-123456789-123456789-123456789-123456789-123456789-12
122
123Type objects contain a string containing the type name (to help somewhat
124in debugging), the allocation parameters (see newobj() and newvarobj()),
125and methods for accessing objects of the type. Methods are optional,a
126nil pointer meaning that particular kind of access is not available for
127this type. The DECREF() macro uses the tp_dealloc method without
128checking for a nil pointer; it should always be implemented except if
129the implementation can guarantee that the reference count will never
130reach zero (e.g., for type objects).
131
132NB: the methods for certain type groups are now contained in separate
133method blocks.
134*/
135
136typedef struct {
137 object *(*nb_add) FPROTO((object *, object *));
138 object *(*nb_subtract) FPROTO((object *, object *));
139 object *(*nb_multiply) FPROTO((object *, object *));
140 object *(*nb_divide) FPROTO((object *, object *));
141 object *(*nb_remainder) FPROTO((object *, object *));
Guido van Rossum97ad2d81991-05-05 20:11:43 +0000142 object *(*nb_divmod) FPROTO((object *, object *));
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000143 object *(*nb_power) FPROTO((object *, object *));
144 object *(*nb_negative) FPROTO((object *));
145 object *(*nb_positive) FPROTO((object *));
Guido van Rossum97ad2d81991-05-05 20:11:43 +0000146 object *(*nb_absolute) FPROTO((object *));
Guido van Rossumcf7423a1991-05-14 12:08:10 +0000147 int (*nb_nonzero) FPROTO((object *));
Guido van Rossum7a6dfa71991-10-24 14:58:18 +0000148 object *(*nb_invert) FPROTO((object *));
149 object *(*nb_lshift) FPROTO((object *, object *));
150 object *(*nb_rshift) FPROTO((object *, object *));
151 object *(*nb_and) FPROTO((object *, object *));
152 object *(*nb_xor) FPROTO((object *, object *));
153 object *(*nb_or) FPROTO((object *, object *));
Guido van Rossume6eefc21992-08-14 12:06:52 +0000154 int (*nb_coerce) FPROTO((object **, object **));
Guido van Rossum1899c2e1992-09-12 11:09:23 +0000155 object *(*nb_int) FPROTO((object *));
156 object *(*nb_long) FPROTO((object *));
157 object *(*nb_float) FPROTO((object *));
158 object *(*nb_oct) FPROTO((object *));
159 object *(*nb_hex) FPROTO((object *));
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000160} number_methods;
161
162typedef struct {
163 int (*sq_length) FPROTO((object *));
164 object *(*sq_concat) FPROTO((object *, object *));
165 object *(*sq_repeat) FPROTO((object *, int));
166 object *(*sq_item) FPROTO((object *, int));
167 object *(*sq_slice) FPROTO((object *, int, int));
168 int (*sq_ass_item) FPROTO((object *, int, object *));
169 int (*sq_ass_slice) FPROTO((object *, int, int, object *));
170} sequence_methods;
171
172typedef struct {
173 int (*mp_length) FPROTO((object *));
174 object *(*mp_subscript) FPROTO((object *, object *));
175 int (*mp_ass_subscript) FPROTO((object *, object *, object *));
176} mapping_methods;
177
178typedef struct _typeobject {
179 OB_VARHEAD
180 char *tp_name; /* For printing */
181 unsigned int tp_basicsize, tp_itemsize; /* For allocation */
182
183 /* Methods to implement standard operations */
184
185 void (*tp_dealloc) FPROTO((object *));
Guido van Rossumd783a461991-06-07 22:35:42 +0000186 int (*tp_print) FPROTO((object *, FILE *, int));
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000187 object *(*tp_getattr) FPROTO((object *, char *));
188 int (*tp_setattr) FPROTO((object *, char *, object *));
189 int (*tp_compare) FPROTO((object *, object *));
190 object *(*tp_repr) FPROTO((object *));
191
192 /* Method suites for standard classes */
193
194 number_methods *tp_as_number;
195 sequence_methods *tp_as_sequence;
196 mapping_methods *tp_as_mapping;
Guido van Rossum9bfef441993-03-29 10:43:31 +0000197
198 /* More standard operations (at end for binary compatibility) */
199
200 long (*tp_hash) FPROTO((object *));
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +0000201#ifdef COUNT_ALLOCS
202 /* these must be last */
203 int tp_alloc;
204 int tp_free;
205 int tp_maxalloc;
206 struct _typeobject *tp_next;
207#endif
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000208} typeobject;
209
210extern typeobject Typetype; /* The type of type objects */
211
212#define is_typeobject(op) ((op)->ob_type == &Typetype)
213
Guido van Rossum3f5da241990-12-20 15:06:42 +0000214/* Generic operations on objects */
Guido van Rossumd783a461991-06-07 22:35:42 +0000215extern int printobject PROTO((object *, FILE *, int));
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000216extern object * reprobject PROTO((object *));
Guido van Rossumc6004111993-11-05 10:22:19 +0000217extern object * strobject PROTO((object *));
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000218extern int cmpobject PROTO((object *, object *));
Guido van Rossum3f5da241990-12-20 15:06:42 +0000219extern object *getattr PROTO((object *, char *));
Guido van Rossumed18fdc1993-07-11 19:55:34 +0000220extern int hasattr PROTO((object *, char *));
Guido van Rossum9bfef441993-03-29 10:43:31 +0000221extern object *getattro PROTO((object *, object *));
222extern int setattro PROTO((object *, object *, object *));
223extern long hashobject PROTO((object *));
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000224
225/* Flag bits for printing: */
226#define PRINT_RAW 1 /* No string quotes etc. */
227
228/*
229123456789-123456789-123456789-123456789-123456789-123456789-123456789-12
230
231The macros INCREF(op) and DECREF(op) are used to increment or decrement
232reference counts. DECREF calls the object's deallocator function; for
233objects that don't contain references to other objects or heap memory
234this can be the standard function free(). Both macros can be used
235whereever a void expression is allowed. The argument shouldn't be a
236NIL pointer. The macro NEWREF(op) is used only to initialize reference
237counts to 1; it is defined here for convenience.
238
239We assume that the reference count field can never overflow; this can
240be proven when the size of the field is the same as the pointer size
241but even with a 16-bit reference count field it is pretty unlikely so
242we ignore the possibility. (If you are paranoid, make it a long.)
243
244Type objects should never be deallocated; the type pointer in an object
245is not considered to be a reference to the type object, to save
246complications in the deallocation function. (This is actually a
247decision that's up to the implementer of each new type so if you want,
248you can count such references to the type object.)
249
250*** WARNING*** The DECREF macro must have a side-effect-free argument
251since it may evaluate its argument multiple times. (The alternative
252would be to mace it a proper function or assign it to a global temporary
253variable first, both of which are slower; and in a multi-threaded
254environment the global variable trick is not safe.)
255*/
256
257#ifdef TRACE_REFS
258#ifndef REF_DEBUG
259#define REF_DEBUG
260#endif
261#endif
262
263#ifndef TRACE_REFS
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +0000264#ifdef COUNT_ALLOCS
265#define DELREF(op) ((op)->ob_type->tp_free++, (*(op)->ob_type->tp_dealloc)((object *)(op)))
266#else
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000267#define DELREF(op) (*(op)->ob_type->tp_dealloc)((object *)(op))
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +0000268#endif
Guido van Rossumd5b70f51990-11-18 17:27:10 +0000269#define UNREF(op) /*empty*/
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000270#endif
271
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +0000272#ifdef COUNT_ALLOCS
273extern void inc_count PROTO((typeobject *));
274#endif
275
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000276#ifdef REF_DEBUG
277extern long ref_total;
278#ifndef TRACE_REFS
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +0000279#ifdef COUNT_ALLOCS
280#define NEWREF(op) (inc_count((op)->ob_type), ref_total++, (op)->ob_refcnt = 1)
281#else
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000282#define NEWREF(op) (ref_total++, (op)->ob_refcnt = 1)
283#endif
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +0000284#endif
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000285#define INCREF(op) (ref_total++, (op)->ob_refcnt++)
286#define DECREF(op) \
Guido van Rossumc8564cd1990-11-02 17:51:56 +0000287 if (--ref_total, --(op)->ob_refcnt > 0) \
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000288 ; \
289 else \
290 DELREF(op)
291#else
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +0000292#ifdef COUNT_ALLOCS
293#define NEWREF(op) (inc_count((op)->ob_type), (op)->ob_refcnt = 1)
294#else
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000295#define NEWREF(op) ((op)->ob_refcnt = 1)
Sjoerd Mullendera9c3c221993-10-11 12:54:31 +0000296#endif
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000297#define INCREF(op) ((op)->ob_refcnt++)
298#define DECREF(op) \
Guido van Rossumc8564cd1990-11-02 17:51:56 +0000299 if (--(op)->ob_refcnt > 0) \
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000300 ; \
301 else \
302 DELREF(op)
303#endif
304
Guido van Rossum3f5da241990-12-20 15:06:42 +0000305/* Macros to use in case the object pointer may be NULL: */
306
307#define XINCREF(op) if ((op) == NULL) ; else INCREF(op)
308#define XDECREF(op) if ((op) == NULL) ; else DECREF(op)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000309
310/* Definition of NULL, so you don't have to include <stdio.h> */
311
312#ifndef NULL
313#define NULL 0
314#endif
315
316
317/*
318NoObject is an object of undefined type which can be used in contexts
319where NULL (nil) is not suitable (since NULL often means 'error').
320
321Don't forget to apply INCREF() when returning this value!!!
322*/
323
324extern object NoObject; /* Don't use this directly */
325
326#define None (&NoObject)
327
328
329/*
330123456789-123456789-123456789-123456789-123456789-123456789-123456789-12
331
332More conventions
333================
334
335Argument Checking
336-----------------
337
338Functions that take objects as arguments normally don't check for nil
339arguments, but they do check the type of the argument, and return an
340error if the function doesn't apply to the type.
341
342Failure Modes
343-------------
344
345Functions may fail for a variety of reasons, including running out of
Guido van Rossum3f5da241990-12-20 15:06:42 +0000346memory. This is communicated to the caller in two ways: an error string
347is set (see errors.h), and the function result differs: functions that
348normally return a pointer return NULL for failure, functions returning
349an integer return -1 (which could be a legal return value too!), and
350other functions return 0 for success and -1 for failure.
351Callers should always check for errors before using the result.
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000352
353Reference Counts
354----------------
355
356It takes a while to get used to the proper usage of reference counts.
357
358Functions that create an object set the reference count to 1; such new
359objects must be stored somewhere or destroyed again with DECREF().
360Functions that 'store' objects such as settupleitem() and dictinsert()
361don't increment the reference count of the object, since the most
362frequent use is to store a fresh object. Functions that 'retrieve'
363objects such as gettupleitem() and dictlookup() also don't increment
364the reference count, since most frequently the object is only looked at
365quickly. Thus, to retrieve an object and store it again, the caller
366must call INCREF() explicitly.
367
368NOTE: functions that 'consume' a reference count like dictinsert() even
369consume the reference if the object wasn't stored, to simplify error
370handling.
371
372It seems attractive to make other functions that take an object as
373argument consume a reference count; however this may quickly get
374confusing (even the current practice is already confusing). Consider
375it carefully, it may safe lots of calls to INCREF() and DECREF() at
376times.
377
378123456789-123456789-123456789-123456789-123456789-123456789-123456789-12
379*/
Guido van Rossuma3309961993-07-28 09:05:47 +0000380
381#ifdef __cplusplus
382}
383#endif
384#endif /* !Py_OBJECT_H */