]> git.saurik.com Git - apple/xnu.git/blob - libkern/libkern/c++/OSMetaClass.h
a4ecef03668adb2612730eeac68bff7519a120f0
[apple/xnu.git] / libkern / libkern / c++ / OSMetaClass.h
1 /*
2 * Copyright (c) 2000 Apple Computer, Inc. All rights reserved.
3 *
4 * @APPLE_LICENSE_HEADER_START@
5 *
6 * The contents of this file constitute Original Code as defined in and
7 * are subject to the Apple Public Source License Version 1.1 (the
8 * "License"). You may not use this file except in compliance with the
9 * License. Please obtain a copy of the License at
10 * http://www.apple.com/publicsource and read it before using this file.
11 *
12 * This Original Code and all software distributed under the License are
13 * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER
14 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
15 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT. Please see the
17 * License for the specific language governing rights and limitations
18 * under the License.
19 *
20 * @APPLE_LICENSE_HEADER_END@
21 */
22 #ifndef _LIBKERN_OSMETACLASS_H
23 #define _LIBKERN_OSMETACLASS_H
24
25 #include <sys/types.h>
26
27 #include <libkern/OSReturn.h>
28
29 class OSMetaClass;
30 class OSObject;
31 class OSString;
32 class OSSymbol;
33 class OSDictionary;
34 class OSSerialize;
35
36 #if __GNUC__ < 3
37 #define APPLE_KEXT_COMPATIBILITY
38 #else
39 #define APPLE_KEXT_COMPATIBILITY __attribute__ ((apple_kext_compatibility))
40 #endif
41
42 class OSMetaClassBase
43 {
44 public:
45 /*! @function OSTypeAlloc
46 @abstract Allocate an instance of the desired object.
47 @discussion The OSTypeAlloc macro can be used to break the binary compatibility difficulties presented by new. The problem is that C++ compiles the knowledge of the size of the class into the cade calling new. If you use the alloc code however the class size is determined by the callee not the caller.
48 @param type Name of the desired type to be created.
49 @result 'this' if object cas been successfully created.
50 */
51 #define OSTypeAlloc(type) ((type *) ((type::metaClass)->alloc()))
52
53 /*! @function OSTypeID
54 @abstract Given the name of a class return it's typeID
55 @param type Name of the desired type, eg. OSObject.
56 @result A unique Type ID for the class.
57 */
58 #define OSTypeID(type) (type::metaClass)
59
60 /*! @function OSTypeIDInst
61 @abstract Given a pointer to an object return it's typeID
62 @param typeinst An instance of an OSObject subclass.
63 @result The typeID, ie. OSMetaClass *.
64 */
65 #define OSTypeIDInst(typeinst) ((typeinst)->getMetaClass())
66
67 /*! @function OSDynamicCast
68 @abstract Roughly analogous to (type *) inst, but check if valid first.
69 @discussion OSDynamicCast is an attempt to implement a rudimentary equivalent to rtti's dynamic_cast<T> operator. Embedded-C++ doesn't allow the use of rtti. OSDynamicCast is build on the OSMetaClass mechanism. Note it is safe to call this with a 0 parameter.
70 @param type name of desired class name. Notice that it is assumed that you desire to cast to a pointer to an object of this type. Also type qualifiers, like const, are not recognized and will cause an, usually obscure, compile error.
71 @param inst Pointer to object that you wish to attempt to type cast. May be 0.
72 @result inst if object non-zero and it is of the desired type, otherwise 0.
73 */
74 #define OSDynamicCast(type, inst) \
75 ((type *) OSMetaClassBase::safeMetaCast((inst), OSTypeID(type)))
76
77 /*! @function OSCheckTypeInst
78 @abstract Is the target object a subclass of the reference object?
79 @param typeinst Reference instance of an object, desired type.
80 @param inst Instance of object to check for type compatibility.
81 @result false if typeinst or inst are 0 or inst is not a subclass of typeinst's class. true otherwise.
82 */
83 #define OSCheckTypeInst(typeinst, inst) \
84 OSMetaClassBase::checkTypeInst(inst, typeinst)
85
86
87 protected:
88 OSMetaClassBase();
89 virtual ~OSMetaClassBase();
90
91 private:
92 // Disable copy constructors of OSMetaClassBase based objects
93 /*! @function operator =
94 @abstract Disable implicit copy constructor by making private
95 @param src Reference to source object that isn't allowed to be copied
96 */
97 void operator =(OSMetaClassBase &src);
98
99 /*! @function OSMetaClassBase
100 @abstract Disable implicit copy constructor by making private
101 @param src Reference to source object that isn't allowed to be copied
102 */
103 OSMetaClassBase(OSMetaClassBase &src);
104
105 public:
106 /*! @function release
107 @abstract Primary implementation of the release mechanism.
108 @discussion If $link retainCount <= the when argument then call $link free(). This indirect implementation of $link release allows the developer to break reference circularity. An example of this sort of problem is a parent/child mutual reference, either the parent or child can implement: void release() { release(2); } thus breaking the cirularity.
109 @param when When retainCount == when then call free(). */
110 virtual void release(int when) const = 0;
111
112 /*! @function getRetainCount
113 @abstract How many times has this object been retained?
114 @result Current retain count
115 */
116 virtual int getRetainCount() const = 0;
117
118 /*! @function retain
119 @abstract Retain a reference in this object.
120 */
121 virtual void retain() const = 0;
122 /*! @function release
123 @abstract Release a reference to this object
124 */
125 virtual void release() const = 0;
126
127 /*! @function serialize
128 @abstract
129 @discussion
130 @param s
131 @result
132 */
133 virtual bool serialize(OSSerialize *s) const = 0;
134
135 virtual const OSMetaClass * getMetaClass() const = 0;
136
137 /*! @function isEqualTo
138 @abstract Is this == anObj?
139 @discussion OSMetaClassBase::isEqualTo implements this as a shallow pointer comparison. The OS container classes do a more meaningful comparison. Your mileage may vary.
140 @param anObj Object to compare 'this' to.
141 @result true if the objects are equivalent, false otherwise.
142 */
143 virtual bool isEqualTo(const OSMetaClassBase *anObj) const;
144
145 /*! @function metaCast
146 @abstract Check to see if this object is or inherits from the given type.
147 @discussion This function is the guts of the OSMetaClass system. IODynamicCast, qv, is implemented using this function.
148 @param toMeta Pointer to a constant OSMetaClass for the desired target type.
149 @result 'this' if object is of desired type, otherwise 0.
150 */
151 OSMetaClassBase *metaCast(const OSMetaClass *toMeta) const;
152
153
154 /*! @function metaCast
155 @abstract See OSMetaClassBase::metaCast(const OSMetaClass *)
156 @param toMeta OSSymbol of the desired class' name.
157 @result 'this' if object is of desired type, otherwise 0.
158 */
159 OSMetaClassBase *metaCast(const OSSymbol *toMeta) const;
160
161 /*! @function metaCast
162 @abstract See OSMetaClassBase::metaCast(const OSMetaClass *)
163 @param toMeta OSString of the desired class' name.
164 @result 'this' if object is of desired type, otherwise 0.
165 */
166 OSMetaClassBase *metaCast(const OSString *toMeta) const;
167
168 /*! @function metaCast
169 @abstract See OSMetaClassBase::metaCast(const OSMetaClass *)
170 @param toMeta const char * C String of the desired class' name.
171 @result 'this' if object is of desired type, otherwise 0.
172 */
173 OSMetaClassBase *metaCast(const char *toMeta) const;
174
175 // Helper inlines for runtime type preprocessor macros
176 static OSMetaClassBase *
177 safeMetaCast(const OSMetaClassBase *me, const OSMetaClass *toType);
178
179 static bool
180 checkTypeInst(const OSMetaClassBase *inst, const OSMetaClassBase *typeinst);
181
182 public:
183
184 /*! @function taggedRetain
185 @abstract Retain a tagged reference in this object.
186 */
187 // WAS: virtual void _RESERVEDOSMetaClassBase0();
188 virtual void taggedRetain(const void *tag = 0) const = 0;
189
190 /*! @function taggedRelease
191 @abstract Release a tagged reference to this object
192 */
193 // WAS: virtual void _RESERVEDOSMetaClassBase1();
194 virtual void taggedRelease(const void *tag = 0) const = 0;
195
196 protected:
197 /*! @function taggedRelease
198 @abstract Release a tagged reference to this object and free if retainCount == when on entry
199 */
200 // WAS: virtual void _RESERVEDOSMetaClassBase2();
201 virtual void taggedRelease(const void *tag, const int when) const = 0;
202
203 private:
204 // Virtual Padding
205 virtual void _RESERVEDOSMetaClassBase3();
206 virtual void _RESERVEDOSMetaClassBase4();
207 virtual void _RESERVEDOSMetaClassBase5();
208 virtual void _RESERVEDOSMetaClassBase6();
209 virtual void _RESERVEDOSMetaClassBase7();
210 } APPLE_KEXT_COMPATIBILITY;
211
212 /*!
213 @class OSMetaClass : OSMetaClassBase
214 @abstract An instance of a OSMetaClass represents one class then the kernel's runtime type information system is aware of.
215 */
216 class OSMetaClass : private OSMetaClassBase
217 {
218
219 private:
220 // Can never be allocated must be created at compile time
221 static void *operator new(size_t size);
222
223 struct ExpansionData { };
224
225 /*! @var reserved Reserved for future use. (Internal use only) */
226 ExpansionData *reserved;
227
228 /*! @var superClass Handle to the superclass' meta class. */
229 const OSMetaClass *superClassLink;
230
231 /*! @var className OSSymbol of the class' name. */
232 const OSSymbol *className;
233
234 /*! @var classSize How big is a single instancde of this class. */
235 unsigned int classSize;
236
237 /*! @var instanceCount Roughly number of instances of the object. Used primarily as a code in use flag. */
238 mutable unsigned int instanceCount;
239
240 /*! @function OSMetaClass
241 @abstract Private the default constructor */
242 OSMetaClass();
243
244 // Called by postModLoad
245 /*! @function logError
246 @abstract Given an error code log an error string using printf */
247 static void logError(OSReturn result);
248
249 /*! @function getMetaClassWithName
250 @abstract Lookup a meta-class in the runtime type information system
251 @param name Name of the desired class's meta-class.
252 @result pointer to a meta-class object if found, 0 otherwise. */
253
254 static const OSMetaClass *getMetaClassWithName(const OSSymbol *name);
255
256 protected:
257 /*! @function retain
258 @abstract Implement abstract but should no dynamic allocation is allowed */
259 virtual void retain() const;
260
261 /*! @function release
262 @abstract Implement abstract but should no dynamic allocation is allowed */
263 virtual void release() const;
264
265 /*! @function release
266 @abstract Implement abstract but should no dynamic allocation is allowed
267 @param when ignored. */
268 virtual void release(int when) const;
269
270 /*! @function taggedRetain
271 @abstract Retain a tagged reference in this object.
272 */
273 virtual void taggedRetain(const void *tag = 0) const;
274
275 /*! @function release
276 @abstract Release a tagged reference to this object
277 */
278 virtual void taggedRelease(const void *tag = 0) const;
279
280 /*! @function release
281 @abstract Release a tagged reference to this object
282 */
283 virtual void taggedRelease(const void *tag, const int when) const;
284
285 /*! @function getRetainCount
286 @abstract Implement abstract but should no dynamic allocation is allowed */
287 virtual int getRetainCount() const;
288
289 virtual const OSMetaClass * getMetaClass() const;
290
291 /*! @function OSMetaClass
292 @abstract Constructor for OSMetaClass objects
293 @discussion This constructor is protected and cannot not be used to instantiate an OSMetaClass object, i.e. OSMetaClass is an abstract class. This function stores the currently constructing OSMetaClass instance away for later processing. See preModLoad and postModLoad.
294 @param inClassName cString of the name of the class this meta-class represents.
295 @param inSuperClassName cString of the name of the super class.
296 @param inClassSize sizeof the class. */
297 OSMetaClass(const char *inClassName,
298 const OSMetaClass *inSuperClass,
299 unsigned int inClassSize);
300
301 /*! @function ~OSMetaClass
302 @abstract Destructor for OSMetaClass objects
303 @discussion If this function is called it means that the object code that implemented this class is actually in the process of unloading. The destructor removes all reference's to the subclass from the runtime type information system. */
304 virtual ~OSMetaClass();
305
306 // Needs to be overriden as NULL as all OSMetaClass objects are allocated
307 // statically at compile time, don't accidently try to free them.
308 void operator delete(void *mem, size_t size) { };
309
310 public:
311 static const OSMetaClass * const metaClass;
312
313 /*! @function preModLoad
314 @abstract Prepare the runtime type system for the load of a module.
315 @discussion Prepare the runtime type information system for the loading of new all meta-classes constructed between now and the next postModLoad. preModLoad grab's a lock so that the runtime type information system loading can be protected, the lock is released by the postModLoad function. Any OSMetaClass that is constructed between the bracketing pre and post calls will be assosiated with the module name.
316 @param kmodName globally unique cString name of the kernel module being loaded.
317 @result If success full return a handle to be used in later calls 0 otherwise. */
318 static void *preModLoad(const char *kmodName);
319
320 /*! @function failModLoad
321 @abstract Record an error during the loading of an kernel module.
322 @discussion As constructor's can't return errors nor can they through exceptions in embedded-c++ an indirect error mechanism is necessary. Check mod load returns a bool to indicate the current error state of the runtime type information system. During object construction a call to failModLoad will cause an error code to be recorded. Once an error has been set the continuing construction will be ignored until the end of the pre/post load.
323 @param error Code of the error. */
324 static void failModLoad(OSReturn error);
325
326 /*! @function checkModLoad
327 @abstract Check if the current load attempt is still OK.
328 @param loadHandle Handle returned when a successful call to preModLoad is made.
329 @result true if no error's are outstanding and the system is primed to recieve more objects. */
330 static bool checkModLoad(void *loadHandle);
331
332 /*! @function postModLoad
333 @abstract Finish postprocessing on a kernel module's meta-classes.
334 @discussion As the order of static object construction is undefined it is necessary to process the constructors in two phases. These phases rely on global information that is created be the preparation step, preModLoad, which also guarantees single threading between multiple modules. Phase one was the static construction of each meta-class object one by one withing the context prepared by the preModLoad call. postModLoad is the second phase of processing. Inserts links all of the super class inheritance chains up, inserts the meta-classes into the global register of classes and records for each meta-class which kernel module caused it's construction. Finally it cleans up the temporary storage and releases the single threading lock and returns whatever error has been recorded in during the construction phase or the post processing phase.
335 @param loadHandle Handle returned when a successful call to preModLoad is made.
336 @result Error code of the first error encountered. */
337 static OSReturn postModLoad(void *loadHandle);
338
339 /*! @function modHasInstance
340 @abstract Do any of the objects represented by OSMetaClass and associated with the given kernel module name have instances?
341 @discussion Check all meta-classes associated with the module name and check their instance counts. This function is used to check to see if a module can be unloaded. Obviously if an instance is still outstanding it isn't safe to unload the code that relies on that object.
342 @param kmodName cString of the kernel module name.
343 @result true if there are any current instances of any class in the module.
344 */
345 static bool modHasInstance(const char *kmodName);
346
347 /*! @function reportModInstances
348 @abstract Log any object that has instances in a module.
349 @discussion When a developer ask for a module to be unloaded but the unload fails due to outstanding instances. This function will report which classes still have instances. It is intended mostly for developers to find problems with unloading classes and will be called automatically by 'verbose' unloads.
350 @param kmodName cString of the kernel module name. */
351 static void reportModInstances(const char *kmodName);
352
353 /*! @function considerUnloads
354 @abstract Schedule module unloading.
355 @discussion Schedule unused modules to be unloaded; called when IOKit matching goes idle. */
356
357 static void considerUnloads();
358
359 /*! @function allocClassWithName
360 @abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
361 @param name Name of the desired class.
362 @result pointer to an new object, 0 if not found or so memory. */
363 static OSObject *allocClassWithName(const OSSymbol *name);
364
365 /*! @function allocClassWithName
366 @abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
367 @param name Name of the desired class.
368 @result pointer to an new object, 0 if not found or so memory. */
369 static OSObject *allocClassWithName(const OSString *name);
370
371 /*! @function allocClassWithName
372 @abstract Lookup a meta-class in the runtime type information system and return the results of an alloc call.
373 @param name Name of the desired class.
374 @result pointer to an new object, 0 if not found or so memory. */
375 static OSObject *allocClassWithName(const char *name);
376
377 /*! @function checkMetaCastWithName
378 @abstract Introspect an objects inheritance tree looking for a class of the given name. Basis of MacOSX's kernel dynamic casting mechanism.
379 @param name Name of the desired class or super class.
380 @param in object to be introspected.
381 @result in parameter if cast valid, 0 otherwise. */
382 static OSMetaClassBase *
383 checkMetaCastWithName(const OSSymbol *name, const OSMetaClassBase *in);
384
385 /*! @function checkMetaCastWithName
386 @abstract Introspect an objects inheritance tree looking for a class of the given name. Basis of MacOSX's kernel dynamic casting mechanism.
387 @param name Name of the desired class or super class.
388 @param in object to be introspected.
389 @result in parameter if cast valid, 0 otherwise. */
390 static OSMetaClassBase *
391 checkMetaCastWithName(const OSString *name, const OSMetaClassBase *in);
392
393 /*! @function checkMetaCastWithName
394 @abstract Introspect an objects inheritance tree looking for a class of the given name. Basis of MacOSX's kernel dynamic casting mechanism.
395 @param name Name of the desired class or super class.
396 @param in object to be introspected.
397 @result in parameter if cast valid, 0 otherwise. */
398 static OSMetaClassBase *
399 checkMetaCastWithName(const char *name, const OSMetaClassBase *in);
400
401
402 /*! @function instanceConstructed
403 @abstract Counts the instances of the class behind this metaclass.
404 @discussion Every non-abstract class that inherits from OSObject has a default constructor that calls it's own meta-class' instanceConstructed function. This constructor is defined by the OSDefineMetaClassAndStructors macro (qv) that all OSObject subclasses must use. Also if the instance count goes from 0 to 1, ie the first instance, then increment the instance count of the super class */
405 void instanceConstructed() const;
406
407 /*! @function instanceDestructed
408 @abstract Removes one instance of the class behind this metaclass.
409 @discussion OSObject's free function calls this method just before it does a 'delete this' on itself. If the instance count transitions from 1 to 0, i.e. the last object, then one instance of the superclasses is also removed. */
410 void instanceDestructed() const;
411
412
413 /*! @function checkMetaCast
414 @abstract Ask a OSMetaClass instance if the given object is either an instance of it or an instance of a subclass of it.
415 @param check Pointer of object to introspect.
416 @result check parameter if cast valid, 0 otherwise. */
417 OSMetaClassBase *checkMetaCast(const OSMetaClassBase *check) const;
418
419
420 /*! @function getInstanceCount
421 @abstract How many instances of the class have been created.
422 @result Count of the number of instances. */
423 unsigned int getInstanceCount() const;
424
425
426 /*! @function getSuperClass
427 @abstract 'Get'ter for the super class.
428 @result Pointer to superclass, chain ends with 0 for OSObject. */
429 const OSMetaClass *getSuperClass() const;
430
431 /*! @function getClassName
432 @abstract 'Get'ter for class name.
433 @result cString of the class name. */
434 const char *getClassName() const;
435
436 /*! @function getClassSize
437 @abstract 'Get'ter for sizeof(class).
438 @result sizeof of class that this OSMetaClass instance represents. */
439 unsigned int getClassSize() const;
440
441 /*! @function alloc
442 @abstract Allocate an instance of the class that this OSMetaClass instance represents.
443 @discussion This alloc function is analogous to the old ObjC class alloc method. Typically not used by clients as the static function allocClassWithName is more generally useful. Infact that function is implemented in terms of this virtual function. All subclass's of OSMetaClass must implement this function but that is what the OSDefineMetaClassAndStructor's families of macros does for the developer automatically.
444 @result Pointer to a new object with a retain count of 1. */
445 virtual OSObject *alloc() const = 0;
446
447 /*! @function OSDeclareCommonStructors
448 @abstract Basic helper macro for the OSDeclare for Default and Abstract macros, qv. DO NOT USE.
449 @param className Name of class. NO QUOTES. */
450 #define OSDeclareCommonStructors(className) \
451 private: \
452 static const OSMetaClass * const superClass; \
453 public: \
454 static const OSMetaClass * const metaClass; \
455 static class MetaClass : public OSMetaClass { \
456 public: \
457 MetaClass(); \
458 virtual OSObject *alloc() const; \
459 } gMetaClass; \
460 friend class className ::MetaClass; \
461 virtual const OSMetaClass * getMetaClass() const; \
462 protected: \
463 className (const OSMetaClass *); \
464 virtual ~ className ()
465
466
467 /*! @function OSDeclareDefaultStructors
468 @abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces.
469 @discussion Macro used in the class declaration all subclasses of OSObject, declares runtime type information data and interfaces. By convention it should be 'called' immediately after the opening brace in a class declaration. It leaves the current privacy state as 'protected:'.
470 @param className Name of class. NO QUOTES. */
471 #define OSDeclareDefaultStructors(className) \
472 OSDeclareCommonStructors(className); \
473 public: \
474 className (); \
475 protected:
476
477
478 /*! @function OSDeclareAbstractStructors
479 @abstract One of the macro's used in the class declaration of all subclasses of OSObject, declares runtime type information data and interfaces.
480 @discussion This macro is used when the class being declared has one or more '= 0' pure virtual methods and thus it is illegal to create an instance of this class. It leaves the current privacy state as 'protected:'.
481 @param className Name of class. NO QUOTES. */
482 #define OSDeclareAbstractStructors(className) \
483 OSDeclareCommonStructors(className); \
484 private: \
485 className (); /* Make primary constructor private in abstract */ \
486 protected:
487
488 /*! @function OSDefineMetaClassWithInit
489 @abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv. DO NOT USE.
490 @param className Name of class. NO QUOTES and NO MACROS.
491 @param superClassName Name of super class. NO QUOTES and NO MACROS.
492 @param init Name of a function to call after the OSMetaClass is constructed. */
493 #define OSDefineMetaClassWithInit(className, superClassName, init) \
494 /* Class global data */ \
495 className ::MetaClass className ::gMetaClass; \
496 const OSMetaClass * const className ::metaClass = \
497 & className ::gMetaClass; \
498 const OSMetaClass * const className ::superClass = \
499 & superClassName ::gMetaClass; \
500 /* Class member functions */ \
501 className :: className(const OSMetaClass *meta) \
502 : superClassName (meta) { } \
503 className ::~ className() { } \
504 const OSMetaClass * className ::getMetaClass() const \
505 { return &gMetaClass; } \
506 /* The ::MetaClass constructor */ \
507 className ::MetaClass::MetaClass() \
508 : OSMetaClass(#className, className::superClass, sizeof(className)) \
509 { init; }
510
511 /*! @function OSDefineAbstractStructors
512 @abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv. DO NOT USE.
513 @param className Name of class. NO QUOTES and NO MACROS.
514 @param superClassName Name of super class. NO QUOTES and NO MACROS. */
515 #define OSDefineAbstractStructors(className, superClassName) \
516 OSObject * className ::MetaClass::alloc() const { return 0; }
517
518 /*! @function OSDefineDefaultStructors
519 @abstract Basic helper macro for the OSDefineMetaClass for the default and Abstract macros, qv. DO NOT USE.
520 @param className Name of class. NO QUOTES and NO MACROS.
521 @param superClassName Name of super class. NO QUOTES and NO MACROS. */
522 #define OSDefineDefaultStructors(className, superClassName) \
523 OSObject * className ::MetaClass::alloc() const \
524 { return new className; } \
525 className :: className () : superClassName (&gMetaClass) \
526 { gMetaClass.instanceConstructed(); }
527
528
529 /*! @function OSDefineMetaClassAndAbstractStructorsWithInit
530 @abstract Primary definition macro for all abstract classes that a subclasses of OSObject.
531 @discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class. In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class. Once the OSMetaClass has been constructed, at load time, call the init routine. NB you can not rely on the order of execution of the init routines.
532 @param className Name of class. NO QUOTES and NO MACROS.
533 @param superClassName Name of super class. NO QUOTES and NO MACROS.
534 @param init Name of a function to call after the OSMetaClass is constructed. */
535 #define OSDefineMetaClassAndAbstractStructorsWithInit(className, superClassName, init) \
536 OSDefineMetaClassWithInit(className, superClassName, init) \
537 OSDefineAbstractStructors(className, superClassName)
538
539 /*! @function OSDefineMetaClassAndStructorsWithInit
540 @abstract See OSDefineMetaClassAndStructors
541 @discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class. In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class. Once the OSMetaClass has been constructed, at load time, call the init routine. NB you can not rely on the order of execution of the init routines.
542 @param className Name of class. NO QUOTES and NO MACROS.
543 @param superClassName Name of super class. NO QUOTES and NO MACROS.
544 @param init Name of a function to call after the OSMetaClass is constructed. */
545 #define OSDefineMetaClassAndStructorsWithInit(className, superClassName, init) \
546 OSDefineMetaClassWithInit(className, superClassName, init) \
547 OSDefineDefaultStructors(className, superClassName)
548
549 /* Helpers */
550 /*! @function OSDefineMetaClass
551 @abstract Define an OSMetaClass instance, used for backward compatiblility only.
552 @param className Name of class. NO QUOTES and NO MACROS.
553 @param superClassName Name of super class. NO QUOTES and NO MACROS. */
554 #define OSDefineMetaClass(className, superClassName) \
555 OSDefineMetaClassWithInit(className, superClassName, )
556
557 /*! @function OSDefineMetaClassAndStructors
558 @abstract Define an OSMetaClass subclass and the runtime system routines.
559 @discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that isn't an abstract class. In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
560 @param className Name of class. NO QUOTES and NO MACROS.
561 @param superClassName Name of super class. NO QUOTES and NO MACROS. */
562 #define OSDefineMetaClassAndStructors(className, superClassName) \
563 OSDefineMetaClassAndStructorsWithInit(className, superClassName, )
564
565 /*! @function OSDefineMetaClassAndAbstractStructors
566 @abstract Define an OSMetaClass subclass and the runtime system routines.
567 @discussion Define an OSMetaClass subclass and the primary constructors and destructors for a subclass of OSObject that is an abstract class. In general this 'function' is 'called' at the top of the file just before the first function is implemented for a particular class.
568 @param className Name of class. NO QUOTES and NO MACROS.
569 @param superClassName Name of super class. NO QUOTES and NO MACROS. */
570 #define OSDefineMetaClassAndAbstractStructors(className, superClassName) \
571 OSDefineMetaClassAndAbstractStructorsWithInit (className, superClassName, )
572
573 // Dynamic vtable patchup support routines and types
574 void reservedCalled(int ind) const;
575
576 #define OSMetaClassDeclareReservedUnused(classname, index) \
577 private: \
578 virtual void _RESERVED ## classname ## index ()
579
580 #define OSMetaClassDeclareReservedUsed(classname, index)
581
582 #define OSMetaClassDefineReservedUnused(classname, index) \
583 void classname ::_RESERVED ## classname ## index () \
584 { gMetaClass.reservedCalled(index); }
585
586 #define OSMetaClassDefineReservedUsed(classname, index)
587
588 // IOKit debug internal routines.
589 static void printInstanceCounts();
590 static OSDictionary *getClassDictionary();
591 virtual bool serialize(OSSerialize *s) const;
592
593 // Virtual Padding functions for MetaClass's
594 OSMetaClassDeclareReservedUnused(OSMetaClass, 0);
595 OSMetaClassDeclareReservedUnused(OSMetaClass, 1);
596 OSMetaClassDeclareReservedUnused(OSMetaClass, 2);
597 OSMetaClassDeclareReservedUnused(OSMetaClass, 3);
598 OSMetaClassDeclareReservedUnused(OSMetaClass, 4);
599 OSMetaClassDeclareReservedUnused(OSMetaClass, 5);
600 OSMetaClassDeclareReservedUnused(OSMetaClass, 6);
601 OSMetaClassDeclareReservedUnused(OSMetaClass, 7);
602 };
603
604 #endif /* !_LIBKERN_OSMETACLASS_H */