5 Copyright © 1995-2010, The AROS Development Team. All rights reserved.
13 # include <exec/lists.h>
16 #ifndef EXEC_LIBRARIES_H
17 # include <exec/libraries.h>
20 #ifndef EXEC_SEMAPHORES_H
21 # include <exec/semaphores.h>
25 # include <dos/bptr.h>
28 #ifndef UTILITY_TAGITEM_H
29 # include <utility/tagitem.h>
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.
67 /* Used by the internal GetIDs() functions, to get several
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))
94 BOOL
GetIDs(struct IDDescr
*idDesr
, struct IntOOPBase
*OOPBase
);
98 BOOL
init_rootclass(struct IntOOPBase
*OOPBase
);
101 BOOL
init_basemeta(struct IntOOPBase
*OOPBase
);
102 BOOL
init_ifmetaclass(struct IntOOPBase
*OOPBase
);
105 OOP_Class
*init_methodclass(struct IntOOPBase
*OOPBase
);
108 OOP_Class
*init_serverclass(struct Library
*OOPBase
);
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
);
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
);
131 /* Bucket for hashtable used to map string interface IDs to
132 ** numeric interface IDs and attrbases.
137 struct iid_bucket
*next
;
146 /* Definition of bucket for hashtable used to store
147 ** the interfaces (method tables)
152 struct IFBucket
*Next
;
154 STRPTR GlobalInterfaceID
;
155 struct IFMethod
*MethodTable
;
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)
170 IPTR (*MethodFunc
)();
175 /* Message struct used for sending object message structs across
180 struct Message pm_Message
;
183 OOP_Object
*pm_Object
;
186 /* Listnode that helps keeping track of servers. */
190 OOP_Object
*sn_Server
;
194 /* Instance data of base metaclass and rootclass */
198 OOP_Class
public; /* public part of class objects */
202 BOOL disptabs_inited
;
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 */
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
];
222 struct rootclassobject
224 OOP_Class
*oclass
; /* The rootclass object's class */
227 struct metadata data
;
228 struct IFMethod rootif
[num_Root_Methods
];
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
249 /* Number of interfaces in the hashtable */
257 OOP_Class
*oclass
; /* The interface metaclass' class (itself) */
260 struct metadata base
;
261 struct ifmeta_data data
;
268 /*************************
269 ** Library Base struct **
270 *************************/
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
;
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.
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 */