]> git.saurik.com Git - apple/xnu.git/blame - iokit/IOKit/IORegistryEntry.h
xnu-4570.1.46.tar.gz
[apple/xnu.git] / iokit / IOKit / IORegistryEntry.h
CommitLineData
1c79356b 1/*
39037602 2 * Copyright (c) 1998-2016 Apple Inc. All rights reserved.
1c79356b 3 *
2d21ac55 4 * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
1c79356b 5 *
2d21ac55
A
6 * This file contains Original Code and/or Modifications of Original Code
7 * as defined in and that are subject to the Apple Public Source License
8 * Version 2.0 (the 'License'). You may not use this file except in
9 * compliance with the License. The rights granted to you under the License
10 * may not be used to create, or enable the creation or redistribution of,
11 * unlawful or unlicensed copies of an Apple operating system, or to
12 * circumvent, violate, or enable the circumvention or violation of, any
13 * terms of an Apple operating system software license agreement.
8f6c56a5 14 *
2d21ac55
A
15 * Please obtain a copy of the License at
16 * http://www.opensource.apple.com/apsl/ and read it before using this file.
17 *
18 * The Original Code and all software distributed under the License are
19 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
8f6c56a5
A
20 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
21 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
2d21ac55
A
22 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
23 * Please see the License for the specific language governing rights and
24 * limitations under the License.
8f6c56a5 25 *
2d21ac55 26 * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
1c79356b
A
27 */
28/*
29 * Copyright (c) 1998 Apple Computer, Inc. All rights reserved.
30 *
31 * HISTORY
32 *
33 */
34
35
36#ifndef _IOKIT_IOREGISTRYENTRY_H
37#define _IOKIT_IOREGISTRYENTRY_H
38
39#include <IOKit/IOTypes.h>
40#include <libkern/c++/OSContainers.h>
41
42
43extern const OSSymbol * gIONameKey;
44extern const OSSymbol * gIOLocationKey;
b0d623f7 45extern const OSSymbol * gIORegistryEntryIDKey;
39037602 46extern const OSSymbol * gIORegistryEntryPropertyKeysKey;
1c79356b
A
47
48class IORegistryEntry;
49class IORegistryPlane;
50class IORegistryIterator;
51
52typedef void (*IORegistryEntryApplierFunction)(IORegistryEntry * entry,
53 void * context);
54
55enum {
39037602
A
56 kIORegistryIterateRecursively = 0x00000001,
57 kIORegistryIterateParents = 0x00000002,
1c79356b
A
58};
59
60/*! @class IORegistryEntry : public OSObject
61 @abstract The base class for all objects in the registry.
62 @discussion The IORegistryEntry base class provides functions for describing graphs of connected registry entries, each with a dictionary-based property table. Entries may be connected in different planes, with differing topologies. Access to the registry is protected against multiple threads. Inside the kernel planes are specified with plane objects and are published by the creator - IOService exports the gIOServicePlane plane object for example. Non kernel clients specify planes by their name.
63*/
64
65class IORegistryEntry : public OSObject
66{
9bccf70c 67 friend class IORegistryIterator;
1c79356b
A
68
69 OSDeclareDefaultStructors(IORegistryEntry)
70
71protected:
72/*! @struct ExpansionData
73 @discussion This structure will be used to expand the capablilties of this class in the future.
74 */
39037602 75 struct ExpansionData;
1c79356b
A
76
77/*! @var reserved
78 Reserved for future use. (Internal use only) */
79 ExpansionData * reserved;
80
81private:
82
83 OSDictionary * fRegistryTable;
84 OSDictionary * fPropertyTable;
85
0b4e3aa0
A
86public:
87 /* methods available in Mac OS X 10.1 or later */
88
89/*! @function copyProperty
90 @abstract Synchronized method to obtain a property from a registry entry or one of its parents (or children) in the hierarchy. Available in Mac OS X 10.1 or later.
91 @discussion This method will search for a property, starting first with this registry entry's property table, then iterating recusively through either the parent registry entries or the child registry entries of this entry. Once the first occurrence is found, it will lookup and return the value of the property, using the OSDictionary::getObject semantics. The iteration keeps track of entries that have been recursed into previously to avoid loops. This method is synchronized with other IORegistryEntry accesses to the property table(s).
92 @param aKey The property's name as a C-string.
93 @param plane The plane to iterate over, eg. gIOServicePlane.
94 @param options kIORegistryIterateRecursively may be set to recurse automatically into the registry hierarchy. Without this option, this method degenerates into the standard getProperty() call. kIORegistryIterateParents may be set to iterate the parents of the entry, in place of the children.
95 @result The property value found, or zero. A reference on any found property is returned to caller, which should be released. */
96
97 virtual OSObject * copyProperty( const char * aKey,
98 const IORegistryPlane * plane,
99 IOOptionBits options =
100 kIORegistryIterateRecursively |
101 kIORegistryIterateParents) const;
91447636 102
0b4e3aa0
A
103/*! @function copyProperty
104 @abstract Synchronized method to obtain a property from a registry entry or one of its parents (or children) in the hierarchy. Available in Mac OS X 10.1 or later.
105 @discussion This method will search for a property, starting first with this registry entry's property table, then iterating recusively through either the parent registry entries or the child registry entries of this entry. Once the first occurrence is found, it will lookup and return the value of the property, using the OSDictionary::getObject semantics. The iteration keeps track of entries that have been recursed into previously to avoid loops. This method is synchronized with other IORegistryEntry accesses to the property table(s).
106 @param aKey The property's name as an OSString.
107 @param plane The plane to iterate over, eg. gIOServicePlane.
108 @param options kIORegistryIterateRecursively may be set to recurse automatically into the registry hierarchy. Without this option, this method degenerates into the standard getProperty() call. kIORegistryIterateParents may be set to iterate the parents of the entry, in place of the children.
109 @result The property value found, or zero. A reference on any found property is returned to caller, which should be released. */
110
111 virtual OSObject * copyProperty( const OSString * aKey,
112 const IORegistryPlane * plane,
113 IOOptionBits options =
114 kIORegistryIterateRecursively |
115 kIORegistryIterateParents) const;
116
117/*! @function copyProperty
118 @abstract Synchronized method to obtain a property from a registry entry or one of its parents (or children) in the hierarchy. Available in Mac OS X 10.1 or later.
119 @discussion This method will search for a property, starting first with this registry entry's property table, then iterating recusively through either the parent registry entries or the child registry entries of this entry. Once the first occurrence is found, it will lookup and return the value of the property, using the OSDictionary::getObject semantics. The iteration keeps track of entries that have been recursed into previously to avoid loops. This method is synchronized with other IORegistryEntry accesses to the property table(s).
120 @param aKey The property's name as an OSSymbol.
121 @param plane The plane to iterate over, eg. gIOServicePlane.
122 @param options kIORegistryIterateRecursively may be set to recurse automatically into the registry hierarchy. Without this option, this method degenerates into the standard getProperty() call. kIORegistryIterateParents may be set to iterate the parents of the entry, in place of the children.
123 @result The property value found, or zero. A reference on any found property is returned to caller, which should be released. */
124
125 virtual OSObject * copyProperty( const OSSymbol * aKey,
126 const IORegistryPlane * plane,
127 IOOptionBits options =
128 kIORegistryIterateRecursively |
129 kIORegistryIterateParents) const;
130
131/*! @function copyParentEntry
132 @abstract Returns an registry entry's first parent entry in a plane. Available in Mac OS X 10.1 or later.
133 @discussion This function will return the parent to which a registry entry was first attached. Since the majority of registry entrys have only one provider, this is a useful simplification.
134 @param plane The plane object.
135 @result Returns the first parent of the registry entry, or zero if the entry is not attached into the registry in that plane. A reference on the entry is returned to caller, which should be released. */
136
137 virtual IORegistryEntry * copyParentEntry( const IORegistryPlane * plane ) const;
138
139/*! @function copyChildEntry
140 @abstract Returns an registry entry's first child entry in a plane. Available in Mac OS X 10.1 or later.
141 @discussion This function will return the child which first attached to a registry entry.
142 @param plane The plane object.
143 @result Returns the first child of the registry entry, or zero if the entry is not attached into the registry in that plane. A reference on the entry is returned to caller, which should be released. */
144
145 virtual IORegistryEntry * copyChildEntry( const IORegistryPlane * plane ) const;
146
91447636
A
147 /* method available in Mac OS X 10.4 or later */
148/*!
149 @typedef Action
150 @discussion Type and arguments of callout C function that is used when
151a runCommand is executed by a client. Cast to this type when you want a C++
152member function to be used. Note the arg1 - arg3 parameters are passed straight pass through to the action callout.
153 @param target
154 Target of the function, can be used as a refcon. Note if a C++ function
155was specified, this parameter is implicitly the first parameter in the target
156member function's parameter list.
157 @param arg0 Argument to action from run operation.
158 @param arg1 Argument to action from run operation.
159 @param arg2 Argument to action from run operation.
160 @param arg3 Argument to action from run operation.
161*/
162 typedef IOReturn (*Action)(OSObject *target,
163 void *arg0, void *arg1,
164 void *arg2, void *arg3);
165
166/*! @function runPropertyAction
167 @abstract Single thread a call to an action w.r.t. the property lock
168 @discussion Client function that causes the given action to be called in a manner that syncrhonises with the registry iterators and serialisers. This functin can be used to synchronously manipulate the property table of this nub
169 @param action Pointer to function to be executed in work-loop context.
170 @param arg0 Parameter for action parameter, defaults to 0.
171 @param arg1 Parameter for action parameter, defaults to 0.
172 @param arg2 Parameter for action parameter, defaults to 0.
173 @param arg3 Parameter for action parameter, defaults to 0.
174 @result Returns the value of the Action callout.
175*/
176 virtual IOReturn runPropertyAction(Action action, OSObject *target,
177 void *arg0 = 0, void *arg1 = 0,
178 void *arg2 = 0, void *arg3 = 0);
0b4e3aa0 179
91447636 180private:
b0d623f7
A
181#if __LP64__
182 OSMetaClassDeclareReservedUnused(IORegistryEntry, 0);
183 OSMetaClassDeclareReservedUnused(IORegistryEntry, 1);
184 OSMetaClassDeclareReservedUnused(IORegistryEntry, 2);
185 OSMetaClassDeclareReservedUnused(IORegistryEntry, 3);
186 OSMetaClassDeclareReservedUnused(IORegistryEntry, 4);
187 OSMetaClassDeclareReservedUnused(IORegistryEntry, 5);
188#else
189 OSMetaClassDeclareReservedUsed(IORegistryEntry, 0);
190 OSMetaClassDeclareReservedUsed(IORegistryEntry, 1);
191 OSMetaClassDeclareReservedUsed(IORegistryEntry, 2);
192 OSMetaClassDeclareReservedUsed(IORegistryEntry, 3);
193 OSMetaClassDeclareReservedUsed(IORegistryEntry, 4);
194 OSMetaClassDeclareReservedUsed(IORegistryEntry, 5);
195#endif
1c79356b
A
196 OSMetaClassDeclareReservedUnused(IORegistryEntry, 6);
197 OSMetaClassDeclareReservedUnused(IORegistryEntry, 7);
198 OSMetaClassDeclareReservedUnused(IORegistryEntry, 8);
199 OSMetaClassDeclareReservedUnused(IORegistryEntry, 9);
200 OSMetaClassDeclareReservedUnused(IORegistryEntry, 10);
201 OSMetaClassDeclareReservedUnused(IORegistryEntry, 11);
202 OSMetaClassDeclareReservedUnused(IORegistryEntry, 12);
203 OSMetaClassDeclareReservedUnused(IORegistryEntry, 13);
204 OSMetaClassDeclareReservedUnused(IORegistryEntry, 14);
205 OSMetaClassDeclareReservedUnused(IORegistryEntry, 15);
206 OSMetaClassDeclareReservedUnused(IORegistryEntry, 16);
207 OSMetaClassDeclareReservedUnused(IORegistryEntry, 17);
208 OSMetaClassDeclareReservedUnused(IORegistryEntry, 18);
209 OSMetaClassDeclareReservedUnused(IORegistryEntry, 19);
210 OSMetaClassDeclareReservedUnused(IORegistryEntry, 20);
211 OSMetaClassDeclareReservedUnused(IORegistryEntry, 21);
212 OSMetaClassDeclareReservedUnused(IORegistryEntry, 22);
213 OSMetaClassDeclareReservedUnused(IORegistryEntry, 23);
214 OSMetaClassDeclareReservedUnused(IORegistryEntry, 24);
215 OSMetaClassDeclareReservedUnused(IORegistryEntry, 25);
216 OSMetaClassDeclareReservedUnused(IORegistryEntry, 26);
217 OSMetaClassDeclareReservedUnused(IORegistryEntry, 27);
218 OSMetaClassDeclareReservedUnused(IORegistryEntry, 28);
219 OSMetaClassDeclareReservedUnused(IORegistryEntry, 29);
220 OSMetaClassDeclareReservedUnused(IORegistryEntry, 30);
221 OSMetaClassDeclareReservedUnused(IORegistryEntry, 31);
222
223public:
224
225 /* Registry accessors */
226
227/*! @function getRegistryRoot
228 @abstract Returns a pointer to the root instance of the registry.
229 @discussion This method provides an accessor to the root of the registry for the machine. The root may be passed to a registry iterator when iterating a plane, and contains properties that describe the available planes, and diagnostic information for IOKit. Keys for these properties are in IOKitKeys.h.
230 @result A pointer to the IORegistryEntry root instance. It should not be released by the caller. */
231
232 static IORegistryEntry * getRegistryRoot( void );
233
234/*! @function getGenerationCount
235 @abstract Returns an generation count for all registry changing operations.
236 @discussion This method provides an accessor to the current generation count (or seed) of the registry which changes when any topology change occurs in the registry - this does not include property table changes. It may be used to invalidate any caching of the results from IORegistryEntry methods.
237 @result An integer generation count. */
238
239 static SInt32 getGenerationCount( void );
240
241/*! @function getPlane
242 @abstract Looks up the plane object by a C-string name.
243 @discussion Planes are usually provided as globals by the creator, eg. gIOServicePlane, gIODeviceTreePlane, or gIOAudioPlane, however they may also be looked up by name with this method.
244 @result A pointer to the plane object, or zero if no such plane exists. The returned plane should not be released. */
245
246 static const IORegistryPlane * getPlane( const char * name );
247
248 /* Registry Entry allocation & init */
249
250/*! @function init
251 @abstract Standard init method for all IORegistryEntry subclasses.
252 @discussion A registry entry must be initialized with this method before it can be used. A property dictionary may passed and will be retained by this method for use as the registry entry's property table, or an empty one will be created.
39037602 253 @param dictionary A dictionary that will become the registry entry's property table (retaining it), or zero which will cause an empty property table to be created.
1c79356b
A
254 @result true on success, or false on a resource failure. */
255
256 virtual bool init( OSDictionary * dictionary = 0 );
257
258/*! @function free
259 @abstract Standard free method for all IORegistryEntry subclasses.
260 @discussion This method will release any resources of the entry, in particular its property table. Note that the registry entry must always be detached from the registry before free may be called, and subclasses (namely IOService) will have additional protocols for removing registry entries. free should never need be called directly. */
261
3e170ce0 262 virtual void free( void ) APPLE_KEXT_OVERRIDE;
1c79356b
A
263
264/*! @function setPropertyTable
265 @abstract Replace a registry entry's property table.
266 @discussion This method will release the current property table of a the entry and replace it with another, retaining the new property table.
267 @param dict The new dictionary to be used as the entry's property table. */
268
269 virtual void setPropertyTable( OSDictionary * dict );
270
271 /* Synchronized property accessors; wrappers to OSDictionary
272 * plus property creation helpers */
273
274/*! @function setProperty
275 @abstract Synchronized method to add a property to a registry entry's property table.
276 @discussion This method will add or replace a property in a registry entry's property table, using the OSDictionary::setObject semantics. This method is synchronized with other IORegistryEntry accesses to the property table.
277 @param aKey The properties name as an OSSymbol.
278 @param anObject The property value.
279 @result true on success or false on a resource failure. */
280
281 virtual bool setProperty(const OSSymbol * aKey, OSObject * anObject);
282
283/*! @function setProperty
284 @abstract Synchronized method to add a property to a registry entry's property table.
285 @discussion This method will add or replace a property in a registry entry's property table, using the OSDictionary::setObject semantics. This method is synchronized with other IORegistryEntry accesses to the property table.
286 @param aKey The property's name as an OSString.
287 @param anObject The property value.
288 @result true on success or false on a resource failure. */
289
290 virtual bool setProperty(const OSString * aKey, OSObject * anObject);
291
292/*! @function setProperty
293 @abstract Synchronized method to add a property to a registry entry's property table.
294 @discussion This method will add or replace a property in a registry entry's property table, using the OSDictionary::setObject semantics. This method is synchronized with other IORegistryEntry accesses to the property table.
295 @param aKey The property's name as a C-string.
296 @param anObject The property value.
297 @result true on success or false on a resource failure. */
298
299 virtual bool setProperty(const char * aKey, OSObject * anObject);
300
301/*! @function setProperty
302 @abstract Synchronized method to construct and add a OSString property to a registry entry's property table.
303 @discussion This method will add or replace a property in a registry entry's property table, using the OSDictionary::setObject semantics. This method is synchronized with other IORegistryEntry accesses to the property table. The property is created as an OSString from the supplied C-string, set in the property table with the given name, and released.
304 @param aKey The property's name as a C-string.
305 @param aString The property value as a C-string.
306 @result true on success or false on a resource failure. */
307
308 virtual bool setProperty(const char * aKey, const char * aString);
309
310/*! @function setProperty
311 @abstract Synchronized method to construct and add an OSBoolean property to a registry entry's property table.
312 @discussion This method will add or replace a property in a registry entry's property table, using the OSDictionary::setObject semantics. This method is synchronized with other IORegistryEntry accesses to the property table. The property is created as an OSBoolean from the supplied value, set in the property table with the given name, and released.
313 @param aKey The property's name as a C-string.
314 @param aBoolean The property's boolean value.
315 @result true on success or false on a resource failure. */
316
317 virtual bool setProperty(const char * aKey, bool aBoolean);
318
319/*! @function setProperty
320 @abstract Synchronized method to construct and add an OSNumber property to a registry entry's property table.
321 @discussion This method will add or replace a property in a registry entry's property table, using the OSDictionary::setObject semantics. This method is synchronized with other IORegistryEntry accesses to the property table. The property is created as an OSNumber from the supplied value and size, set in the property table with the given name, and released.
322 @param aKey The property's name as a C-string.
323 @param aValue The property's numeric value.
324 @param aNumberOfBits The property's size in bits, for OSNumber.
325 @result true on success or false on a resource failure. */
326
327 virtual bool setProperty( const char * aKey,
328 unsigned long long aValue,
329 unsigned int aNumberOfBits);
330
331/*! @function setProperty
332 @abstract Synchronized method to construct and add an OSData property to a registry entry's property table.
2d21ac55 333 @discussion This method will add or replace a property in a registry entry's property table, using the OSDictionary::setObject semantics. This method is synchronized with other IORegistryEntry accesses to the property table. The property is created as an OSData copied from the supplied data and length, set in the property table with the given name, and released.
1c79356b
A
334 @param aKey The property's name as a C-string.
335 @param bytes The property's value as a pointer. OSData will copy this data.
336 @param length The property's size in bytes, for OSData.
337 @result true on success or false on a resource failure. */
338
339 virtual bool setProperty( const char * aKey,
340 void * bytes,
341 unsigned int length);
342
343/*! @function removeProperty
344 @abstract Synchronized method to remove a property from a registry entry's property table.
345 @discussion This method will remove a property from a registry entry's property table, using the OSDictionary::removeObject semantics. This method is synchronized with other IORegistryEntry accesses to the property table.
346 @param aKey The property's name as an OSSymbol. */
347
348 virtual void removeProperty( const OSSymbol * aKey);
349
350/*! @function removeProperty
351 @abstract Synchronized method to remove a property from a registry entry's property table.
352 @discussion This method will remove a property from a registry entry's property table, using the OSDictionary::removeObject semantics. This method is synchronized with other IORegistryEntry accesses to the property table.
353 @param aKey The property's name as an OSString. */
354
355 virtual void removeProperty( const OSString * aKey);
356
357/*! @function removeProperty
358 @abstract Synchronized method to remove a property from a registry entry's property table.
359 @discussion This method will remove a property from a registry entry's property table, using the OSDictionary::removeObject semantics. This method is synchronized with other IORegistryEntry accesses to the property table.
360 @param aKey The property's name as a C-string. */
361
362 virtual void removeProperty( const char * aKey);
363
364/*! @function getProperty
365 @abstract Synchronized method to obtain a property from a registry entry's property table.
366 @discussion This method will lookup a property in a registry entry's property table, using the OSDictionary::getObject semantics. This method is synchronized with other IORegistryEntry accesses to the property table.
367 @param aKey The property's name as an OSSymbol.
368 @result The property value found, or zero. */
369
370 virtual OSObject * getProperty( const OSSymbol * aKey) const;
371
372/*! @function getProperty
373 @abstract Synchronized method to obtain a property from a registry entry's property table.
374 @discussion This method will lookup a property in a registry entry's property table, using the OSDictionary::getObject semantics. This method is synchronized with other IORegistryEntry accesses to the property table.
375 @param aKey The property's name as an OSString.
376 @result The property value found, or zero. */
377
378 virtual OSObject * getProperty( const OSString * aKey) const;
379
380/*! @function getProperty
381 @abstract Synchronized method to obtain a property from a registry entry's property table.
382 @discussion This method will lookup a property in a registry entry's property table, using the OSDictionary::getObject semantics. This method is synchronized with other IORegistryEntry accesses to the property table.
383 @param aKey The property's name as a C-string.
384 @result The property value found, or zero. */
385
386 virtual OSObject * getProperty( const char * aKey) const;
387
388/*! @function getProperty
389 @abstract Synchronized method to obtain a property from a registry entry or one of its parents (or children) in the hierarchy.
390 @discussion This method will search for a property, starting first with this registry entry's property table, then iterating recusively through either the parent registry entries or the child registry entries of this entry. Once the first occurrence is found, it will lookup and return the value of the property, using the OSDictionary::getObject semantics. The iteration keeps track of entries that have been recursed into previously to avoid loops. This method is synchronized with other IORegistryEntry accesses to the property table(s).
391 @param aKey The property's name as an OSSymbol.
392 @param plane The plane to iterate over, eg. gIOServicePlane.
393 @param options kIORegistryIterateRecursively may be set to recurse automatically into the registry hierarchy. Without this option, this method degenerates into the standard getProperty() call. kIORegistryIterateParents may be set to iterate the parents of the entry, in place of the children.
394 @result The property value found, or zero. */
395
396 virtual OSObject * getProperty( const OSSymbol * aKey,
397 const IORegistryPlane * plane,
398 IOOptionBits options =
399 kIORegistryIterateRecursively |
400 kIORegistryIterateParents) const;
401
402/*! @function getProperty
403 @abstract Synchronized method to obtain a property from a registry entry or one of its parents (or children) in the hierarchy.
404 @discussion This method will search for a property, starting first with this registry entry's property table, then iterating recusively through either the parent registry entries or the child registry entries of this entry. Once the first occurrence is found, it will lookup and return the value of the property, using the OSDictionary::getObject semantics. The iteration keeps track of entries that have been recursed into previously to avoid loops. This method is synchronized with other IORegistryEntry accesses to the property table(s).
405 @param aKey The property's name as an OSString.
406 @param plane The plane to iterate over, eg. gIOServicePlane.
407 @param options kIORegistryIterateRecursively may be set to recurse automatically into the registry hierarchy. Without this option, this method degenerates into the standard getProperty() call. kIORegistryIterateParents may be set to iterate the parents of the entry, in place of the children.
408 @result The property value found, or zero. */
409
410 virtual OSObject * getProperty( const OSString * aKey,
411 const IORegistryPlane * plane,
412 IOOptionBits options =
413 kIORegistryIterateRecursively |
414 kIORegistryIterateParents) const;
415
416/*! @function getProperty
417 @abstract Synchronized method to obtain a property from a registry entry or one of its parents (or children) in the hierarchy.
418 @discussion This method will search for a property, starting first with this registry entry's property table, then iterating recusively through either the parent registry entries or the child registry entries of this entry. Once the first occurrence is found, it will lookup and return the value of the property, using the OSDictionary::getObject semantics. The iteration keeps track of entries that have been recursed into previously to avoid loops. This method is synchronized with other IORegistryEntry accesses to the property table(s).
419 @param aKey The property's name as a C-string.
420 @param plane The plane to iterate over, eg. gIOServicePlane.
421 @param options kIORegistryIterateRecursively may be set to recurse automatically into the registry hierarchy. Without this option, this method degenerates into the standard getProperty() call. kIORegistryIterateParents may be set to iterate the parents of the entry, in place of the children.
422 @result The property value found, or zero. */
423
424 virtual OSObject * getProperty( const char * aKey,
425 const IORegistryPlane * plane,
426 IOOptionBits options =
427 kIORegistryIterateRecursively |
428 kIORegistryIterateParents) const;
429
430/*! @function copyProperty
431 @abstract Synchronized method to obtain a property from a registry entry's property table.
432 @discussion This method will lookup a property in a registry entry's property table, using the OSDictionary::getObject semantics, and return a reference to the caller. This method is synchronized with other IORegistryEntry accesses to the property table.
433 @param aKey The property's name as an OSSymbol.
434 @result The property value found, or zero. It should be released by the caller. */
435
436 virtual OSObject * copyProperty( const OSSymbol * aKey) const;
437
438/*! @function copyProperty
439 @abstract Synchronized method to obtain a property from a registry entry's property table.
440 @discussion This method will lookup a property in a registry entry's property table, using the OSDictionary::getObject semantics, and return a reference to the caller. This method is synchronized with other IORegistryEntry accesses to the property table.
441 @param aKey The property's name as an OSString.
442 @result The property value found, or zero. It should be released by the caller. */
443
444 virtual OSObject * copyProperty( const OSString * aKey) const;
445
446/*! @function copyProperty
447 @abstract Synchronized method to obtain a property from a registry entry's property table.
448 @discussion This method will lookup a property in a registry entry's property table, using the OSDictionary::getObject semantics, and return a reference to the caller. This method is synchronized with other IORegistryEntry accesses to the property table.
449 @param aKey The property's name as a C-string.
450 @result The property value found, or zero. It should be released by the caller. */
451
452 virtual OSObject * copyProperty( const char * aKey) const;
453
454/*! @function dictionaryWithProperties
455 @abstract Synchronized method to obtain copy a registry entry's property table.
456 @discussion This method will copy a registry entry's property table, using the OSDictionary::withDictionary semantics. This method is synchronized with other IORegistryEntry accesses to the property table. Since OSDictionary will only copy property values by reference, synchronization is not guaranteed to any collection values.
457 @result The created dictionary, or zero on a resource value. It should be released by the caller. */
458
459 virtual OSDictionary * dictionaryWithProperties( void ) const;
460
461/*! @function serializeProperties
462 @abstract Synchronized method to serialize a registry entry's property table.
463 @discussion This method will serialize a registry entry's property table, using the OSDictionary::serialize semantics. This method is synchronized with other IORegistryEntry accesses to the property table. Many non-kernel clients of IOKit read information from the registry via properties, and will invoke this method in a registry entry to create a serialization of all the entry's properties, which is then reconstructed in the client's task as a CFDictionary. This method may be intercepted by subclasses to update their properties or implement a different serialization method, though it is usually better to implement such functionality by creating objects in the property table and implementing their serialize methods, avoiding any need to implement serializeProperties.
464 @param serialize The OSSerialize instance representing the serialization request.
465 @result True on success, false otherwise. */
466
467 virtual bool serializeProperties( OSSerialize * serialize ) const;
468
469 /* Unsynchronized(!) property table access */
470
471/*! @function getPropertyTable
472 @abstract Unsynchronized accessor to a registry entry's property table.
473 @discussion This method will return a pointer to the live property table as an OSDictionery. Its use is not recommended in most cases, instead use the synchronized accessors and helper functions of IORegistryEntry to access properties. It can only safely be used by one thread, which usually means it can only be used before a registry entry is entered into the registry.
474 @result A pointer to the property table as an OSDictionary. The pointer is valid while the registry entry is retained, and should not be released by the caller. */
475
9bccf70c
A
476 /* inline */ OSDictionary * getPropertyTable( void ) const;
477 /* { return(fPropertyTable); } */
1c79356b
A
478
479 /* Set properties from user level, to be overridden if supported */
480
481/*! @function setProperties
482 @abstract Optionally supported external method to set properties in a registry entry.
483 @discussion This method is not implemented by IORegistryEntry, but is available to kernel and non-kernel clients to set properties in a registry entry. IOUserClient provides connection based, more controlled access to this functionality and may be more appropriate for many uses, since there is no differentiation between clients available to this method.
484 @param properties Any OSObject subclass, to be interpreted by the implementing method - for example an OSDictionary, OSData etc. may all be appropriate.
485 @result An IOReturn code to be returned to the caller. */
486
487 virtual IOReturn setProperties( OSObject * properties );
488
489 /* Topology */
490
491/*! @function getParentIterator
492 @abstract Returns an iterator over an registry entry's parent entries in a specified plane.
493 @param plane The plane object.
494 @result Returns an iterator over the parents of the registry entry, or zero if there is a resource failure. The iterator must be released when the iteration is finished. All objects returned by the iteration are retained while the iterator is valid, though they may no longer be attached during the iteration. */
495
496 virtual OSIterator * getParentIterator( const IORegistryPlane * plane )
497 const;
498 virtual void applyToParents( IORegistryEntryApplierFunction applier,
499 void * context,
500 const IORegistryPlane * plane ) const;
501
502/*! @function getParentEntry
503 @abstract Returns an registry entry's first parent entry in a plane.
504 @discussion This function will return the parent to which a registry entry was first attached. Since the majority of registry entrys have only one provider, this is a useful simplification.
505 @param plane The plane object.
506 @result Returns the first parent of the registry entry, or zero if the entry is not attached into the registry in that plane. The parent is retained while the entry is attached, and should not be released by the caller. */
507
0b4e3aa0 508 virtual IORegistryEntry * getParentEntry( const IORegistryPlane * plane ) const;
1c79356b
A
509
510/*! @function getChildIterator
511 @abstract Returns an iterator over an registry entry's child entries in a plane.
512 @discussion This method creates an iterator which will return each of a registry entry's child entries in a specified plane.
513 @param plane The plane object.
514 @result Returns an iterator over the children of the entry, or zero if there is a resource failure. The iterator must be released when the iteration is finished. All objects returned by the iteration are retained while the iterator is valid, though they may no longer be attached during the iteration. */
515
516 virtual OSIterator * getChildIterator( const IORegistryPlane * plane )
517 const;
518
39037602
A
519#if XNU_KERNEL_PRIVATE
520 uint32_t getChildCount( const IORegistryPlane * plane ) const;
521 OSArray * copyPropertyKeys(void) const;
522#endif
523
1c79356b
A
524 virtual void applyToChildren( IORegistryEntryApplierFunction applier,
525 void * context,
526 const IORegistryPlane * plane ) const;
527
528/*! @function getChildEntry
529 @abstract Returns an registry entry's first child entry in a plane.
530 @discussion This function will return the child which first attached to a registry entry.
531 @param plane The plane object.
532 @result Returns the first child of the registry entry, or zero if the entry is not attached into the registry in that plane. The child is retained while the entry is attached, and should not be released by the caller. */
533
0b4e3aa0 534 virtual IORegistryEntry * getChildEntry( const IORegistryPlane * plane ) const;
1c79356b
A
535
536/*! @function isChild
537 @abstract Determines whether a registry entry is the child of another in a plane.
538 @discussion This method called in the parent entry determines if the specified entry is a child, in a plane. Additionally, it can check if the child is the only child of the parent entry.
539 @param child The possible child registry entry.
540 @param plane The plane object.
541 @param onlyChild If true, check also if the child is the only child.
542 @result If the child argument is not a child of the registry entry, false is returned. If onlyChild is true and the child is not the only child of the entry, false is returned, otherwise true is returned. */
543
544 virtual bool isChild( IORegistryEntry * child,
545 const IORegistryPlane * plane,
546 bool onlyChild = false ) const;
547
548/*! @function isParent
549 @abstract Determines whether a registry entry is the parent of another in a plane.
550 @discussion This method called in the child entry determines if the specified entry is a parent, in a plane. Additionally, it can check if the parent is the only parent of the child entry.
551 @param parent The possible parent registry entry.
552 @param plane The plane object.
553 @param onlyParent If true, check also if the parent is the only parent.
554 @result If the parent argument is not a parent of the registry entry, false is returned. If onlyParent is true and the parent is not the only parent of the entry, false is returned, otherwise true is returned. */
555
556 virtual bool isParent( IORegistryEntry * parent,
557 const IORegistryPlane * plane,
558 bool onlyParent = false ) const;
559
560/*! @function inPlane
561 @abstract Determines whether a registry entry is attached in a plane.
91447636
A
562 @discussion This method determines if the entry is attached in a plane to any other entry. It can also be used to determine if the entry is a member of any plane.
563 @param plane The plane object, 0 indicates any plane.
564 @result If the entry has a parent in the given plane or if plane = 0 then if entry has any parent; return true, otherwise false. */
1c79356b 565
91447636 566 virtual bool inPlane( const IORegistryPlane * plane = 0) const;
1c79356b
A
567
568/*! @function getDepth
569 @abstract Counts the maximum number of entries between an entry and the registry root, in a plane.
570 @discussion This method counts the number of entries between and entry and the registry root, in a plane, for each parent of the entry and returns the maximum value.
571 @param plane The plane object.
572 @result The maximum number of entries between the entry and the root. Zero is returned if the entry is not attached in the plane. */
573
574 virtual unsigned int getDepth( const IORegistryPlane * plane ) const;
575
576 /* Attach / detach */
577
578/*! @function attachToParent
579 @abstract Attaches a entry to a parent entry in a plane.
580 @discussion This is the usual method of entering an entry into the registry. It is a no-op and success if the entry is already attached to the parent. Attaching the entry into the registry retains both the child and parent while they are attached. This method will call attachToChild in the parent entry if it is not being called from attachToChild.
581 @param parent The registry entry to attach to.
582 @param plane The plane object.
583 @result true on success, or false on a resource failure, or if the parent is the same as the child. */
584
585 virtual bool attachToParent( IORegistryEntry * parent,
586 const IORegistryPlane * plane );
587
588/*! @function detachFromParent
589 @abstract Detaches an entry from a parent entry in a plane.
590 @discussion This is the usual method of removing an entry from the registry. It is a no-op if the entry is not attached to the parent. Detaching the entry will release both the child and parent. This method will call detachFromChild in the parent entry if it is not being called from detachFromChild.
591 @param parent The registry entry to detach from.
592 @param plane The plane object. */
593
594 virtual void detachFromParent( IORegistryEntry * parent,
595 const IORegistryPlane * plane );
596
597/*! @function attachToChild
598 @abstract Method called in the parent entry when a child attaches.
599 @discussion This method is called in the parent entry when a child attaches, to make overrides possible. This method will also call attachToParent in the child entry if it is not being called from attachToParent. It is a no-op and success if the entry is already a child. Attaching the entry into the registry retains both the child and parent while they are attached.
600 @param child The registry entry being attached.
601 @param plane The plane object.
602 @result true on success, or false on a resource failure, or if the parent is the same as the child. */
603
604 virtual bool attachToChild( IORegistryEntry * child,
605 const IORegistryPlane * plane );
606
607/*! @function detachFromChild
608 @abstract Detaches a child entry from its parent in a plane.
609 @discussion This method is called in the parent entry when a child detaches, to make overrides possible. It is a no-op if the entry is not a child of the parent. Detaching the entry will release both the child and parent. This method will call detachFromParent in the child entry if it is not being called from detachFromParent.
39037602 610 @param child The registry entry to detach.
1c79356b
A
611 @param plane The plane object. */
612
613 virtual void detachFromChild( IORegistryEntry * child,
614 const IORegistryPlane * plane );
615
616/*! @function detachAbove
617 @abstract Detaches an entry from all its parent entries in a plane.
618 @discussion This method calls detachFromParent in the entry for each of its parent entries in the plane.
619 @param plane The plane object. */
620
621 virtual void detachAbove( const IORegistryPlane * plane );
622
623/*! @function detachAll
624 @abstract Detaches an entry and all its children recursively in a plane.
625 @discussion This method breaks the registry connections for a subtree. detachAbove is called in the entry, and all child entries and their children in the plane.
626 @param plane The plane object. */
627
628 virtual void detachAll( const IORegistryPlane * plane );
629
630 /* Name, location and path accessors */
631
632/*! @function getName
633 @abstract Returns the name assigned to the registry entry as a C-string.
634 @discussion Entries can be named in a particular plane, or globally. If the entry is named in plane and the plane is specified that name will be returned, otherwise the global name is returned. The global name defaults to the entry's meta class name if it has not been named.
635 @param plane The plane object, or zero for the global name.
636 @result A C-string name, valid while the entry is retained. */
637
638 virtual const char * getName( const IORegistryPlane * plane = 0 ) const;
639
640/*! @function copyName
641 @abstract Returns the name assigned to the registry entry as an OSSymbol.
642 @discussion Entries can be named in a particular plane, or globally. If the entry is named in plane and the plane is specified that name will be returned, otherwise the global name is returned. The global name defaults to the entry's meta class name if it has not been named.
643 @param plane The plane object, or zero for the global name.
644 @result A reference to an OSSymbol for the name, which should be released by the caller. */
645
646 virtual const OSSymbol * copyName(
647 const IORegistryPlane * plane = 0 ) const;
648
649/*! @function compareNames
650 @abstract Compares the name of the entry with one or more names, and optionally returns the matching name.
651 @discussion This method is called during IOService name matching and elsewhere to compare the entry's global name with a list of names, or a single name. A list of names may be passed as any OSCollection of OSStrings, while a single name may be passed an OSString, in the name parameter. compareNames will call the compareName method for each name, for overrides.
652 @param name The name or names to compare with as any OSCollection (eg. OSArray, OSSet, OSDictionary) of OSStrings, or a single name may be passed an OSString.
653 @param matched If the caller wants the successfully matched name returned, pass a non-zero pointer for the matched parameter and an OSString will be returned here. It should be released by the caller.
654 @result True if one of the names compared true with the entry's global name. */
655
656 virtual bool compareNames( OSObject * name, OSString ** matched = 0 ) const;
657
658/*! @function compareName
659 @abstract Compares the name of the entry with one name, and optionally returns the matching name.
660 @discussion This method is called during IOService name matching and elsewhere from the compareNames method. It should be overridden to provide non-standard name matching.
661 @param name The name to compare with as an OSString.
662 @param matched If the caller wants the successfully matched name returned, pass a non-zero pointer for the matched parameter and an OSString will be returned here. It should be released by the caller. Generally, this will be the same as the name parameter, but may not be if wildcards are used.
663 @result True if the name compared true with the entry's global name. */
664
665 virtual bool compareName( OSString * name, OSString ** matched = 0 ) const;
666
667/*! @function setName
668 @abstract Sets a name for the registry entry, in a particular plane, or globally.
669 @discussion Entries can be named in a particular plane, or globally. If the plane is specified the name applies only to that plane, otherwise the global name is set. The global name defaults to the entry's meta class name if it has not been named.
670 @param name An OSSymbol which will be retained.
671 @param plane The plane object, or zero to set the global name. */
672
673 virtual void setName( const OSSymbol * name,
674 const IORegistryPlane * plane = 0 );
675
676/*! @function setName
677 @abstract Sets a name for the registry entry, in a particular plane, or globally.
678 @discussion Entries can be named in a particular plane, or globally. If the plane is specified the name applies only to that plane, otherwise the global name is set. The global name defaults to the entry's meta class name if it has not been named.
679 @param name A const C-string name which will be copied.
680 @param plane The plane object, or zero to set the global name. */
681
682 virtual void setName( const char * name,
683 const IORegistryPlane * plane = 0 );
684
685/*! @function getLocation
686 @abstract Returns the location string assigned to the registry entry as a C-string.
687 @discussion Entries can given a location string in a particular plane, or globally. If the entry has had a location set in a plane and the plane is specified that location string will be returned, otherwise the global location string is returned. If no global location string has been set, zero is returned.
688 @param plane The plane object, or zero for the global name.
689 @result A C-string location string, valid while the entry is retained, or zero. */
690
691 virtual const char * getLocation( const IORegistryPlane * plane = 0 ) const;
692
693/*! @function copyLocation
694 @abstract Returns the location string assigned to the registry entry as an OSSymbol.
695 @discussion Entries can given a location string in a particular plane, or globally. If the entry has had a location set in a plane and the plane is specified that location string will be returned, otherwise the global location string is returned. If no global location string has been set, zero is returned.
696 @param plane The plane object, or zero for the global name.
697 @result A reference to an OSSymbol for the location if one exists, which should be released by the caller, or zero. */
698
699 virtual const OSSymbol * copyLocation(
700 const IORegistryPlane * plane = 0 ) const;
701
702/*! @function setLocation
703 @abstract Sets a location string for the registry entry, in a particular plane, or globally.
704 @discussion Entries can be given a location string in a particular plane, or globally. If the plane is specified the location applies only to that plane, otherwise the global location is set. The location string may be used during path lookups of registry entries, to distinguish between sibling entries with the same name. The default IORegistryEntry parsing of location strings expects a list of hex numbers separated by commas, though subclasses of IORegistryEntry might do their own parsing.
705 @param location A C-string location string which will be copied, or an OSSymbol which will be retained.
706 @param plane The plane object, or zero to set the global location string. */
707
708 virtual void setLocation( const OSSymbol * location,
709 const IORegistryPlane * plane = 0 );
710 virtual void setLocation( const char * location,
711 const IORegistryPlane * plane = 0 );
712
713/*! @function getPath
714 @abstract Create a path for a registry entry.
715 @discussion The path for a registry entry is copied to the caller's buffer. The path describes the entry's attachment in a particular plane, which must be specified. The path begins with the plane name followed by a colon, and then followed by '/' separated path components for each of the entries between the root and the registry entry. Each component is constructed with the getPathComponent method called in each entry. An alias may also exist for the entry, which are described as properties in a registry entry found at /aliases in the plane. If a property value interpreted as a path in a call to IORegistryEntry::fromPath yields the entry, then the property name is used as the entry's path.
716 @param path A char buffer allocated by the caller.
717 @param length An in/out parameter - the caller sets the length of the buffer available, and getPath returns the total length of the path copied to the buffer.
718 @param plane The plane object.
719 @result getPath will fail if the entry is not attached in the plane, or if the buffer is not large enough to contain the path. */
720
721 virtual bool getPath( char * path, int * length,
722 const IORegistryPlane * plane) const;
723
724/*! @function getPathComponent
725 @abstract Create a path component for a registry entry.
726 @discussion Each component of a path created with getPath is created with getPathComponent. The default implementation concatenates the entry's name in the the plane, with the "at" symbol and the location string of the entry in the plane if it has been set.
727 @param path A char buffer allocated by the caller.
728 @param length An in/out parameter - the caller sets the length of the buffer available, and getPathComponent returns the total length of the path component copied to the buffer.
729 @param plane The plane object.
730 @result true if the path fits into the supplied buffer or false on a overflow. */
731
732 virtual bool getPathComponent( char * path, int * length,
733 const IORegistryPlane * plane ) const;
734
735/*! @function fromPath
736 @abstract Looks up a registry entry by path.
737 @discussion This function parses paths to lookup registry entries. The path may begin with the <plane name>: created by getPath, or the plane may be set by the caller. If there are characters remaining unparsed after an entry has been looked up, this may be considered an invalid lookup, or those characters may be passed back to the caller and the lookup successful.
738 @param path A C-string path.
739 @param plane The plane to lookup up the path, or zero, in which case the path must begin with the plane name.
740 @param residualPath If the path may contain residual characters after the last path component, the residual will be copied back to the caller's residualPath buffer. If there are residual characters and no residual buffer is specified, fromPath will fail.
741 @param residualLength An in/out parameter - the caller sets the length of the residual buffer available, and fromPath returns the total length of the residual path copied to the buffer. If there is no residualBuffer (residualPath = 0) then residualLength may be zero also.
742 @param fromEntry The lookup will proceed rooted at this entry if non-zero, otherwise it proceeds from the root of the plane.
743 @result A retained registry entry is returned on success, or zero on failure. The caller should release the entry. */
744
745 static IORegistryEntry * fromPath( const char * path,
746 const IORegistryPlane * plane = 0,
747 char * residualPath = 0,
748 int * residualLength = 0,
749 IORegistryEntry * fromEntry = 0 );
750
751/*! @function fromPath
752 @abstract Looks up a registry entry by relative path.
753 @discussion This function looks up a entry below the called entry by a relative path. It is just a convenience that calls IORegistryEntry::fromPath with this as the fromEntry parameter.
754 @param path See IORegistryEntry::fromPath.
755 @param plane See IORegistryEntry::fromPath.
756 @param residualPath See IORegistryEntry::fromPath.
757 @param residualLength See IORegistryEntry::fromPath.
758 @result See IORegistryEntry::fromPath. */
759
760 virtual IORegistryEntry * childFromPath( const char * path,
761 const IORegistryPlane * plane = 0,
762 char * residualPath = 0,
763 int * residualLength = 0 );
764
765/*! @function dealiasPath
766 @abstract Strips any aliases from the head of path and returns the full path.
767 @discussion If the path specified begins with an alias found in the /aliases entry, the value of the alias is returned, and a pointer into the passed in path after the alias is passed back to the caller. If an alias is not found, zero is returned and the path parameter is unchanged.
768 @param opath An in/out paramter - the caller passes in a pointer to a C-string pointer to a path. If an alias is found, dealiasPath returns a pointer into the path just beyond the end of the alias.
769 @param plane A plane object must be specified.
770 @result A C-string pointer to the value of the alias if one is found, or zero if not. */
771
772 static const char * dealiasPath( const char ** opath,
773 const IORegistryPlane * plane );
774
b0d623f7
A
775/*! @function makePlane
776 @abstract Constructs an IORegistryPlane object.
777 @discussion Most planes in IOKit are created by the OS, although other planes may be created.
778 @param name A C-string name for the new plane, to be copied.
779 @result A new instance of an IORegistryPlane, or zero on failure. */
780
781 static const IORegistryPlane * makePlane( const char * name );
782
783/*! @abstract Returns an ID for the registry entry that is global to all tasks.
784 @discussion The entry ID returned by getRegistryEntryID can be used to identify a registry entry across all tasks. A registry entry may be looked up by its entry ID by creating a matching dictionary with IORegistryEntryIDMatching() in user space, or <code>IOService::registryEntryIDMatching()</code> in the kernel, to be used with the IOKit matching functions. The ID is valid only until the machine reboots.
785 @result An ID for the registry entry, assigned when the entry is first attached in the registry. */
786
787 uint64_t getRegistryEntryID( void );
788
1c79356b
A
789 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * */
790 /* * * * * * * * * * * * internals * * * * * * * * * * * */
791 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * */
792
1c79356b
A
793 virtual bool init( IORegistryEntry * from,
794 const IORegistryPlane * inPlane );
b0d623f7
A
795
796#ifdef XNU_KERNEL_PRIVATE
797public:
798#else
799private:
800#endif
801 static IORegistryEntry * initialize( void );
802
39037602
A
803#ifdef XNU_KERNEL_PRIVATE
804 SInt32 getRegistryEntryGenerationCount( void ) const;
805#endif
806
1c79356b
A
807private:
808 inline bool arrayMember( OSArray * set,
809 const IORegistryEntry * member,
810 unsigned int * index = 0 ) const;
811
812 bool makeLink( IORegistryEntry * to,
813 unsigned int relation,
814 const IORegistryPlane * plane ) const;
815 void breakLink( IORegistryEntry * to,
816 unsigned int relation,
817 const IORegistryPlane * plane ) const;
818
b0d623f7
A
819 APPLE_KEXT_COMPATIBILITY_VIRTUAL
820 OSArray * getParentSetReference( const IORegistryPlane * plane )
1c79356b 821 const;
b0d623f7
A
822
823 APPLE_KEXT_COMPATIBILITY_VIRTUAL
824 OSArray * getChildSetReference( const IORegistryPlane * plane )
1c79356b 825 const;
b0d623f7
A
826
827 APPLE_KEXT_COMPATIBILITY_VIRTUAL
828 IORegistryEntry * getChildFromComponent( const char ** path,
1c79356b
A
829 const IORegistryPlane * plane );
830
b0d623f7
A
831 APPLE_KEXT_COMPATIBILITY_VIRTUAL
832 const OSSymbol * hasAlias( const IORegistryPlane * plane,
1c79356b 833 char * opath = 0, int * length = 0 ) const;
b0d623f7
A
834
835 APPLE_KEXT_COMPATIBILITY_VIRTUAL
836 const char * matchPathLocation( const char * cmp,
1c79356b
A
837 const IORegistryPlane * plane );
838
839};
840
841/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
842
843/*! @class IORegistryIterator : public OSIterator
844 @abstract An iterator over the registry.
845 @discussion An iterator that can traverse the children or parents of a registry entry in a plane, and recurse. Access to the registry is protected against multiple threads, but an IORegistryIterator instance is for use by one thread only. */
846
847class IORegistryIterator : public OSIterator
848{
849 OSDeclareAbstractStructors(IORegistryIterator)
850
851private:
852 struct IORegCursor {
853 IORegCursor * next;
854 IORegistryEntry * current;
855 OSIterator * iter;
856 };
857 IORegCursor start;
858 IORegCursor * where;
859 IORegistryEntry * root;
860 OSOrderedSet * done;
861 const IORegistryPlane * plane;
862 IOOptionBits options;
863
3e170ce0 864 virtual void free( void ) APPLE_KEXT_OVERRIDE;
1c79356b
A
865
866public:
867/*! @function iterateOver
868 @abstract Create an iterator rooted at a given registry entry.
869 @discussion This method creates an IORegistryIterator that is set up with options to iterate children or parents of a root entry, and to recurse automatically into entries as they are returned, or only when instructed. The iterator object keeps track of entries that have been recursed into previously to avoid loops.
870 @param start The root entry to begin the iteration at.
871 @param plane A plane object must be specified.
872 @param options kIORegistryIterateRecursively may be set to recurse automatically into each entry as it is returned. This option affects the behaviour of the getNextObject method, which is defined in the OSIterator superclass. Other methods will override this behaviour. kIORegistryIterateParents may be set to iterate the parents of each entry, by default the children are iterated.
873 @result A created IORegistryIterator instance, to be released by the caller when it has finished with it. */
874
875 static IORegistryIterator * iterateOver( IORegistryEntry * start,
876 const IORegistryPlane * plane,
877 IOOptionBits options = 0 );
878
879/*! @function iterateOver
880 @abstract Create an iterator rooted at the registry root.
881 @discussion This method creates an IORegistryIterator that is set up with options to iterate children of the registry root entry, and to recurse automatically into entries as they are returned, or only when instructed. The iterator object keeps track of entries that have been recursed into previously to avoid loops.
882 @param plane A plane object must be specified.
883 @param options kIORegistryIterateRecursively may be set to recurse automatically into each entry as it is returned. This option affects the behaviour of the getNextObject method, which is defined in the OSIterator superclass. Other methods will override this behaviour. kIORegistryIterateParents may be set to iterate the parents of each entry, by default the children are iterated.
884 @result A created IORegistryIterator instance, to be released by the caller when it has finished with it. */
885
886 static IORegistryIterator * iterateOver( const IORegistryPlane * plane,
887 IOOptionBits options = 0 );
888
889/*! @function getNextObject
890 @abstract Return the next object in the registry iteration.
891 @discussion This method calls either getNextObjectFlat or getNextObjectRecursive depending on the options the iterator was created with. This implements the OSIterator defined getNextObject method. The object returned is retained while the iterator is pointing at it (its the current entry), or recursing into it. The caller should not release it.
892 @result The next registry entry in the iteration (the current entry), or zero if the iteration has finished at this level of recursion. The entry returned is retained while the iterator is pointing at it (its the current entry), or recursing into it. The caller should not release it. */
893
3e170ce0 894 virtual IORegistryEntry * getNextObject( void ) APPLE_KEXT_OVERRIDE;
1c79356b
A
895
896/*! @function getNextObjectFlat
897 @abstract Return the next object in the registry iteration, ignoring the kIORegistryIterateRecursively option.
898 @discussion This method returns the next child, or parent if the kIORegistryIterateParents option was used to create the iterator, of the current root entry. The object returned is retained while the iterator is pointing at it (its the current entry), or recursing into it. The caller should not release it.
899 @result The next registry entry in the iteration (the current entry), or zero if the iteration has finished at this level of recursion, or the iteration is invalid (see isValid). The entry returned is retained while the iterator is pointing at it (its the current entry), or recursing into it. The caller should not release it. */
900
901 virtual IORegistryEntry * getNextObjectFlat( void );
902
903/*! @function getNextObjectRecursive
904 @abstract Return the next object in the registry iteration, and enter it.
905 @discussion If the iterator has a current entry, and the iterator has not already entered previously, enterEntry is called to recurse into it, ie. make it the new root, and the next child, or parent if the kIORegistryIterateParents option was used to create the iterator, at this new level of recursion is returned. If there is no current entry at this level of recursion, exitEntry is called and the process repeats, until the iteration returns to the entry the iterator was created with and zero is returned. The object returned is retained while the iterator is pointing at it (its the current entry), or recursing into it. The caller should not release it.
906 @result The next registry entry in the iteration (the current entry), or zero if its finished, or the iteration is invalid (see isValid). The entry returned is retained while the iterator is pointing at it (its the current entry), or recursing into it. The caller should not release it. */
907
908 virtual IORegistryEntry * getNextObjectRecursive( void );
909
910/*! @function getCurrentEntry
911 @abstract Return the current entry in the registry iteration.
912 @discussion This method returns the current entry, last returned by getNextObject et al. The object returned is retained while the iterator is pointing at it (its the current entry), or recursing into it. The caller should not release it. If the iteration is no longer valid (see isValid), the current entry is zero.
913 @result The current registry entry in the iteration, or zero if the last iteration returned zero, or the iteration is invalid (see isValid). The entry returned is retained while the iterator is pointing at it (its the current entry), or recursing into it. The caller should not release it. */
914
915 virtual IORegistryEntry * getCurrentEntry( void );
916
917/*! @function enterEntry
918 @abstract Recurse into the current entry in the registry iteration.
919 @discussion This method makes the current entry, ie. the last entry returned by getNextObject et al., the root in a new level of recursion. */
920
921 virtual void enterEntry( void );
922
923/*! @function enterEntry
924 @abstract Recurse into the current entry in the registry iteration.
925 @discussion This method recurses into an entry as with enterEntry, but also switches from the current plane to a new one set by the caller.
926 @param plane The new plane to switch into. */
927
928 virtual void enterEntry( const IORegistryPlane * plane );
929
930/*! @function exitEntry
931 @abstract Exits a level of recursion, restoring the current entry.
932 @discussion This method undoes an enterEntry, restoring the current entry. If there are no more levels of recursion to exit false is returned, otherwise true is returned.
933 @result true if a level of recursion was undone, false if no recursive levels are left in the iteration. */
934
935 virtual bool exitEntry( void );
936
937/*! @function reset
938 @abstract Exits all levels of recursion, restoring the iterator to its state at creation.
939 @discussion This method exits all levels of recursion, and restores the iterator to its state at creation. */
940
3e170ce0 941 virtual void reset( void ) APPLE_KEXT_OVERRIDE;
1c79356b
A
942
943/*! @function isValid
944 @abstract Checks that no registry changes have invalidated the iteration.
945 @discussion If a registry iteration is invalidated by changes to the registry, it will be made invalid, the currentEntry will be considered zero, and further calls to getNextObject et al. will return zero. The iterator should be reset to restart the iteration when this happens.
946 @result false if the iterator has been invalidated by changes to the registry, true otherwise. */
947
3e170ce0 948 virtual bool isValid( void ) APPLE_KEXT_OVERRIDE;
1c79356b
A
949
950/*! @function iterateAll
951 @abstract Iterates all entries (with getNextObject) and returns a set of all returned entries.
3e170ce0 952 @discussion This method will reset, then iterate all entries in the iteration (with getNextObject).
1c79356b
A
953 @result A set of entries returned by the iteration. The caller should release the set when it has finished with it. Zero is returned on a resource failure. */
954
955 virtual OSOrderedSet * iterateAll( void );
956};
957
958#endif /* _IOKIT_IOREGISTRYENTRY_H */