Add new strings.
[AROS.git] / rom / oop / intern.h
blob20d30da3a918c7091f1730457142a05ee8b5dff8
1 #ifndef INTERN_H
2 #define INTERN_H
4 /*
5 Copyright © 1995-2010, The AROS Development Team. All rights reserved.
6 $Id$
8 Desc:
9 Lang: english
12 #ifndef EXEC_LISTS_H
13 # include <exec/lists.h>
14 #endif
16 #ifndef EXEC_LIBRARIES_H
17 # include <exec/libraries.h>
18 #endif
20 #ifndef EXEC_SEMAPHORES_H
21 # include <exec/semaphores.h>
22 #endif
24 #ifndef DOS_BPTR_H
25 # include <dos/bptr.h>
26 #endif
28 #ifndef UTILITY_TAGITEM_H
29 # include <utility/tagitem.h>
30 #endif
32 #ifndef OOP_OOP_H
33 # include <oop/oop.h>
34 #endif
37 /* Predeclaration */
38 struct IntOOPBase;
40 #ifndef PRIVATE_H
41 # include "private.h"
42 #endif
44 #define SDEBUG 0
45 #define DEBUG 0
47 #define NUM_METHOD_BITS 10
48 #define METHOD_MASK ((1 << NUM_METHOD_BITS) - 1)
51 /* These are used to index an array in the library base
52 from which we get the IDs for the used interfaces.
55 enum {
56 IDX_IRoot = 0,
57 IDX_IMeta,
58 IDX_IMethod,
59 IDX_IServer,
60 IDX_IProxy,
61 IDX_IInterface,
62 NUM_Indexes
67 /* Used by the internal GetIDs() functions, to get several
68 IDs at a time */
70 struct IDDescr
72 STRPTR ID;
73 ULONG *Storage;
79 /* defines used to access the interface IDs stored in the library base */
81 #define __IRoot (GetOBase(OOPBase)->ob_InternIDs[IDX_IRoot])
82 #define __IMeta (GetOBase(OOPBase)->ob_InternIDs[IDX_IMeta])
83 #define __IMethod (GetOBase(OOPBase)->ob_InternIDs[IDX_IMethod])
84 #define __IServer (GetOBase(OOPBase)->ob_InternIDs[IDX_IServer])
85 #define __IProxy (GetOBase(OOPBase)->ob_InternIDs[IDX_IProxy])
86 #define __IInterface (GetOBase(OOPBase)->ob_InternIDs[IDX_IInterface])
88 #define GetOBase(lib) ((struct IntOOPBase *)(lib))
90 /*****************
91 ** Prototypes **
92 *****************/
94 BOOL GetIDs(struct IDDescr *idDesr, struct IntOOPBase *OOPBase);
97 /* rootclass.c */
98 BOOL init_rootclass(struct IntOOPBase *OOPBase);
100 /* metaclass.c */
101 BOOL init_basemeta(struct IntOOPBase *OOPBase);
102 BOOL init_ifmetaclass(struct IntOOPBase *OOPBase);
104 /* methodclass.c */
105 OOP_Class *init_methodclass(struct IntOOPBase *OOPBase);
107 /* serverclass.c */
108 OOP_Class *init_serverclass(struct Library *OOPBase);
110 /* proxyclass.c */
111 OOP_Class *init_proxyclass(struct Library *OOPBase);
113 /* interfaceclass.c */
114 OOP_Class *init_interfaceclass(struct Library *OOPBase);
117 OOP_Class *init_hiddmetaclass(struct IntOOPBase *OOPBase);
119 /* support.c */
120 BOOL hasinterface(OOP_Class *cl, STRPTR interface_id);
121 struct IFMethod *findinterface(OOP_Class *cl, STRPTR interface_id);
122 struct IFMethod *findmethod(OOP_Class *cl, STRPTR interface_id, ULONG method_offset);
123 BOOL init_methodbase(STRPTR interface_id, ULONG methodbase, ULONG *methodbase_ptr, struct IntOOPBase *OOPBase);
124 BOOL init_mi_methodbase(STRPTR interface_id, ULONG *methodbase_ptr, struct IntOOPBase *OOPBase);
125 VOID release_idbucket(STRPTR interface_id, struct IntOOPBase *OOPBase);
126 VOID obtain_idbucket(STRPTR interface_id, struct IntOOPBase *OOPBase);
127 /*****************
128 ** Structures **
129 *****************/
131 /* Bucket for hashtable used to map string interface IDs to
132 ** numeric interface IDs and attrbases.
135 struct iid_bucket
137 struct iid_bucket *next;
138 STRPTR interface_id;
139 ULONG methodbase;
140 ULONG attrbase;
141 ULONG refcount;
146 /* Definition of bucket for hashtable used to store
147 ** the interfaces (method tables)
150 struct IFBucket
152 struct IFBucket *Next;
153 IPTR InterfaceID;
154 STRPTR GlobalInterfaceID;
155 struct IFMethod *MethodTable;
156 ULONG NumMethods;
160 /* Definition of an entry in a method table.
161 ** Ie. the method tables are arrays of these.
162 ** One has to store the class for each method
163 ** because we skip unimplemented class calls, and
164 ** therefore a method can go directly to a parent
165 ** class of OCLASS(o)
168 struct IFMethod
170 IPTR (*MethodFunc)();
171 OOP_Class *mClass;
175 /* Message struct used for sending object message structs across
176 ** to another task
178 struct ProxyMsg
180 struct Message pm_Message;
181 OOP_Msg pm_ObjMsg;
182 IPTR pm_RetVal;
183 OOP_Object *pm_Object;
186 /* Listnode that helps keeping track of servers. */
187 struct ServerNode
189 struct Node sn_Node;
190 OOP_Object *sn_Server;
194 /* Instance data of base metaclass and rootclass */
196 struct metadata
198 OOP_Class public; /* public part of class objects */
199 ULONG subclasscount;
200 ULONG objectcount;
201 ULONG instsize;
202 BOOL disptabs_inited;
203 ULONG numinterfaces;
207 #define NUM_BASEMETA_IFS 2
208 struct basemetaobject /* Real instance data of the base meta class */
210 OOP_Class *oclass; /* The meta object's class */
211 struct basemeta_inst
213 struct metadata data;
214 struct IFMethod *iftable[NUM_BASEMETA_IFS]; /* has two interfaces: root and meta */
216 /* The interface tables */
217 struct IFMethod rootif[num_Root_Methods];
218 struct IFMethod metaif[NUMTOTAL_M_Meta];
219 } inst;
222 struct rootclassobject
224 OOP_Class *oclass; /* The rootclass object's class */
225 struct rootinst
227 struct metadata data;
228 struct IFMethod rootif[num_Root_Methods];
229 } inst;
233 /* IFMeta class */
235 struct ifmeta_data
238 /* The hashtable containing the interfaces (method tables) */
239 struct HashTable *iftable;
241 /* A direct pointer into the hashtable, for faster lookup */
242 struct IFBucket **iftab_directptr;
244 /* Used by the hash function. As the above field, it is put
245 ** here for speed
247 ULONG hashmask;
249 /* Number of interfaces in the hashtable */
250 ULONG numinterfaces;
255 struct ifmetaobject
257 OOP_Class *oclass; /* The interface metaclass' class (itself) */
258 struct ifmeta_inst
260 struct metadata base;
261 struct ifmeta_data data;
263 } inst;
268 /*************************
269 ** Library Base struct **
270 *************************/
271 struct IntOOPBase
273 struct Library ob_LibNode;
275 struct SignalSemaphore ob_ClassListLock;
276 struct MinList ob_ClassList;
278 struct SignalSemaphore ob_ServerListLock;
279 struct MinList ob_ServerList;
281 /* rootclass object */
282 struct rootclassobject ob_RootClassObject;
284 /* base metaclass object */
285 struct basemetaobject ob_BaseMetaObject;
287 /* interface metaclass object */
288 struct ifmetaobject ob_IFMetaObject;
290 /* HIDD metaclass */
291 OOP_Class *ob_HIDDMetaClass;
293 /* Store pointers to some usefull classes here */
294 OOP_Class *ob_MethodClass;
295 OOP_Class *ob_ServerClass;
296 OOP_Class *ob_ProxyClass;
297 OOP_Class *ob_InterfaceClass;
299 /* Hashtable containing string interface ID => Numeric interface
300 ** ID mappings. Used by GetMethodID() and GetAttrBase()
302 struct HashTable * ob_IIDTable;
303 struct SignalSemaphore ob_IIDTableLock;
305 /* The currently lowest available numeric interfaceID that
306 ** we can map a new interface string ID onto.
307 ** Used by GetID()
310 ULONG ob_CurrentMethodBase;
311 ULONG ob_CurrentAttrBase;
313 /* An array of the interface IDs used internally. */
314 ULONG ob_InternIDs[NUM_Indexes];
317 #define ROOTCLASSPTR (& (OOPBase)->ob_RootClassObject.inst.data.public)
318 #define BASEMETAPTR (& (OOPBase)->ob_BaseMetaObject.inst.data.public)
320 #endif /* INTERN_H */