]>
git.saurik.com Git - apple/xnu.git/blob - libkern/c++/OSDictionary.cpp
c511e9d14d576ab6a8a9a204bcdd00725dea1d5b
2 * Copyright (c) 2000 Apple Computer, Inc. All rights reserved.
4 * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
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.
15 * Please obtain a copy of the License at
16 * http://www.opensource.apple.com/apsl/ and read it before using this file.
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
20 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
21 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
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.
26 * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
28 /* OSDictionary.m created by rsulack on Fri 12-Sep-1997 */
29 /* OSDictionary.cpp converted to C++ by gvdl on Fri 1998-10-30 */
30 /* OSDictionary.cpp rewritten by gvdl on Fri 1998-10-30 */
33 #include <libkern/c++/OSDictionary.h>
34 #include <libkern/c++/OSArray.h>
35 #include <libkern/c++/OSSymbol.h>
36 #include <libkern/c++/OSSerialize.h>
37 #include <libkern/c++/OSLib.h>
38 #include <libkern/c++/OSCollectionIterator.h>
40 #define super OSCollection
42 OSDefineMetaClassAndStructors(OSDictionary
, OSCollection
)
43 OSMetaClassDefineReservedUnused(OSDictionary
, 0);
44 OSMetaClassDefineReservedUnused(OSDictionary
, 1);
45 OSMetaClassDefineReservedUnused(OSDictionary
, 2);
46 OSMetaClassDefineReservedUnused(OSDictionary
, 3);
47 OSMetaClassDefineReservedUnused(OSDictionary
, 4);
48 OSMetaClassDefineReservedUnused(OSDictionary
, 5);
49 OSMetaClassDefineReservedUnused(OSDictionary
, 6);
50 OSMetaClassDefineReservedUnused(OSDictionary
, 7);
52 #define EXT_CAST(obj) \
53 reinterpret_cast<OSObject *>(const_cast<OSMetaClassBase *>(obj))
55 bool OSDictionary::initWithCapacity(unsigned int inCapacity
)
60 if (inCapacity
> (UINT_MAX
/ sizeof(dictEntry
)))
63 unsigned int size
= inCapacity
* sizeof(dictEntry
);
66 dictionary
= (dictEntry
*) kalloc_container(size
);
70 bzero(dictionary
, size
);
71 OSCONTAINER_ACCUMSIZE(size
);
74 capacity
= inCapacity
;
75 capacityIncrement
= (inCapacity
)? inCapacity
: 16;
80 bool OSDictionary::initWithObjects(const OSObject
*objects
[],
81 const OSSymbol
*keys
[],
82 unsigned int theCount
,
83 unsigned int theCapacity
)
85 unsigned int newCapacity
= theCount
;
87 if (!objects
|| !keys
)
91 if (theCount
> theCapacity
)
94 newCapacity
= theCapacity
;
97 if (!initWithCapacity(newCapacity
))
100 for (unsigned int i
= 0; i
< theCount
; i
++) {
101 const OSMetaClassBase
*newObject
= *objects
++;
103 if (!newObject
|| !keys
[i
] || !setObject(keys
[i
], newObject
))
110 bool OSDictionary::initWithObjects(const OSObject
*objects
[],
111 const OSString
*keys
[],
112 unsigned int theCount
,
113 unsigned int theCapacity
)
115 unsigned int newCapacity
= theCount
;
117 if (!objects
|| !keys
)
121 if (theCount
> theCapacity
)
124 newCapacity
= theCapacity
;
127 if (!initWithCapacity(newCapacity
))
130 for (unsigned int i
= 0; i
< theCount
; i
++) {
131 const OSSymbol
*key
= OSSymbol::withString(*keys
++);
132 const OSMetaClassBase
*newObject
= *objects
++;
137 if (!newObject
|| !setObject(key
, newObject
)) {
148 bool OSDictionary::initWithDictionary(const OSDictionary
*dict
,
149 unsigned int theCapacity
)
151 unsigned int newCapacity
;
156 newCapacity
= dict
->count
;
159 if ( dict
->count
> theCapacity
)
162 newCapacity
= theCapacity
;
165 if (!initWithCapacity(newCapacity
))
168 if ((kSort
& fOptions
) && !(kSort
& dict
->fOptions
)) {
169 for (unsigned int i
= 0; i
< dict
->count
; i
++) {
170 if (!setObject(dict
->dictionary
[i
].key
, dict
->dictionary
[i
].value
)) {
178 bcopy(dict
->dictionary
, dictionary
, count
* sizeof(dictEntry
));
179 for (unsigned int i
= 0; i
< count
; i
++) {
180 dictionary
[i
].key
->taggedRetain(OSTypeID(OSCollection
));
181 dictionary
[i
].value
->taggedRetain(OSTypeID(OSCollection
));
187 OSDictionary
*OSDictionary::withCapacity(unsigned int capacity
)
189 OSDictionary
*me
= new OSDictionary
;
191 if (me
&& !me
->initWithCapacity(capacity
)) {
199 OSDictionary
*OSDictionary::withObjects(const OSObject
*objects
[],
200 const OSSymbol
*keys
[],
202 unsigned int capacity
)
204 OSDictionary
*me
= new OSDictionary
;
206 if (me
&& !me
->initWithObjects(objects
, keys
, count
, capacity
)) {
214 OSDictionary
*OSDictionary::withObjects(const OSObject
*objects
[],
215 const OSString
*keys
[],
217 unsigned int capacity
)
219 OSDictionary
*me
= new OSDictionary
;
221 if (me
&& !me
->initWithObjects(objects
, keys
, count
, capacity
)) {
229 OSDictionary
*OSDictionary::withDictionary(const OSDictionary
*dict
,
230 unsigned int capacity
)
232 OSDictionary
*me
= new OSDictionary
;
234 if (me
&& !me
->initWithDictionary(dict
, capacity
)) {
242 void OSDictionary::free()
244 (void) super::setOptions(0, kImmutable
);
247 kfree(dictionary
, capacity
* sizeof(dictEntry
));
248 OSCONTAINER_ACCUMSIZE( -(capacity
* sizeof(dictEntry
)) );
254 unsigned int OSDictionary::getCount() const { return count
; }
255 unsigned int OSDictionary::getCapacity() const { return capacity
; }
257 unsigned int OSDictionary::getCapacityIncrement() const
259 return capacityIncrement
;
262 unsigned int OSDictionary::setCapacityIncrement(unsigned int increment
)
264 capacityIncrement
= (increment
)? increment
: 16;
266 return capacityIncrement
;
269 unsigned int OSDictionary::ensureCapacity(unsigned int newCapacity
)
272 unsigned int finalCapacity
, oldSize
, newSize
;
274 if (newCapacity
<= capacity
)
278 finalCapacity
= (((newCapacity
- 1) / capacityIncrement
) + 1)
281 // integer overflow check
282 if (finalCapacity
< newCapacity
|| (finalCapacity
> (UINT_MAX
/ sizeof(dictEntry
))))
285 newSize
= sizeof(dictEntry
) * finalCapacity
;
287 newDict
= (dictEntry
*) kalloc_container(newSize
);
289 oldSize
= sizeof(dictEntry
) * capacity
;
291 bcopy(dictionary
, newDict
, oldSize
);
292 bzero(&newDict
[capacity
], newSize
- oldSize
);
294 OSCONTAINER_ACCUMSIZE(((size_t)newSize
) - ((size_t)oldSize
));
295 kfree(dictionary
, oldSize
);
297 dictionary
= newDict
;
298 capacity
= finalCapacity
;
304 void OSDictionary::flushCollection()
308 for (unsigned int i
= 0; i
< count
; i
++) {
309 dictionary
[i
].key
->taggedRelease(OSTypeID(OSCollection
));
310 dictionary
[i
].value
->taggedRelease(OSTypeID(OSCollection
));
316 setObject(const OSSymbol
*aKey
, const OSMetaClassBase
*anObject
)
321 if (!anObject
|| !aKey
)
324 // if the key exists, replace the object
326 if (fOptions
& kSort
) {
327 i
= OSSymbol::bsearch(aKey
, &dictionary
[0], count
, sizeof(dictionary
[0]));
328 exists
= (i
< count
) && (aKey
== dictionary
[i
].key
);
329 } else for (exists
= false, i
= 0; i
< count
; i
++) {
330 if ((exists
= (aKey
== dictionary
[i
].key
))) break;
334 const OSMetaClassBase
*oldObject
= dictionary
[i
].value
;
338 anObject
->taggedRetain(OSTypeID(OSCollection
));
339 dictionary
[i
].value
= anObject
;
341 oldObject
->taggedRelease(OSTypeID(OSCollection
));
345 // add new key, possibly extending our capacity
346 if (count
>= capacity
&& count
>= ensureCapacity(count
+1))
351 bcopy(&dictionary
[i
], &dictionary
[i
+1], (count
- i
) * sizeof(dictionary
[0]));
353 aKey
->taggedRetain(OSTypeID(OSCollection
));
354 anObject
->taggedRetain(OSTypeID(OSCollection
));
355 dictionary
[i
].key
= aKey
;
356 dictionary
[i
].value
= anObject
;
362 void OSDictionary::removeObject(const OSSymbol
*aKey
)
370 // if the key exists, remove the object
372 if (fOptions
& kSort
) {
373 i
= OSSymbol::bsearch(aKey
, &dictionary
[0], count
, sizeof(dictionary
[0]));
374 exists
= (i
< count
) && (aKey
== dictionary
[i
].key
);
375 } else for (exists
= false, i
= 0; i
< count
; i
++) {
376 if ((exists
= (aKey
== dictionary
[i
].key
))) break;
380 dictEntry oldEntry
= dictionary
[i
];
385 bcopy(&dictionary
[i
+1], &dictionary
[i
], (count
- i
) * sizeof(dictionary
[0]));
387 oldEntry
.key
->taggedRelease(OSTypeID(OSCollection
));
388 oldEntry
.value
->taggedRelease(OSTypeID(OSCollection
));
394 // Returns true on success, false on an error condition.
395 bool OSDictionary::merge(const OSDictionary
*srcDict
)
397 const OSSymbol
* sym
;
398 OSCollectionIterator
* iter
;
400 if ( !OSDynamicCast(OSDictionary
, srcDict
) )
403 iter
= OSCollectionIterator::withCollection(const_cast<OSDictionary
*>(srcDict
));
407 while ( (sym
= (const OSSymbol
*)iter
->getNextObject()) ) {
408 const OSMetaClassBase
* obj
;
410 obj
= srcDict
->getObject(sym
);
411 if ( !setObject(sym
, obj
) ) {
421 OSObject
*OSDictionary::getObject(const OSSymbol
*aKey
) const
429 // if the key exists, return the object
431 if (fOptions
& kSort
) {
432 i
= OSSymbol::bsearch(aKey
, &dictionary
[0], count
, sizeof(dictionary
[0]));
433 exists
= (i
< count
) && (aKey
== dictionary
[i
].key
);
434 } else for (exists
= false, i
= 0; i
< count
; i
++) {
435 if ((exists
= (aKey
== dictionary
[i
].key
))) break;
439 return (const_cast<OSObject
*> ((const OSObject
*)dictionary
[i
].value
));
446 #define OBJECT_WRAP_1(cmd, k) \
448 const OSSymbol *tmpKey = k; \
449 OSObject *retObj = cmd(tmpKey); \
455 #define OBJECT_WRAP_2(cmd, k, o) \
457 const OSSymbol *tmpKey = k; \
458 bool ret = cmd(tmpKey, o); \
464 #define OBJECT_WRAP_3(cmd, k) \
466 const OSSymbol *tmpKey = k; \
472 bool OSDictionary::setObject(const OSString
*aKey
, const OSMetaClassBase
*anObject
)
473 OBJECT_WRAP_2(setObject
, OSSymbol::withString(aKey
), anObject
)
474 bool OSDictionary::setObject(const char *aKey
, const OSMetaClassBase
*anObject
)
475 OBJECT_WRAP_2(setObject
, OSSymbol::withCString(aKey
), anObject
)
477 OSObject
*OSDictionary::getObject(const OSString
*aKey
) const
478 OBJECT_WRAP_1(getObject
, OSSymbol::withString(aKey
))
479 OSObject
*OSDictionary::getObject(const char *aKey
) const
480 OBJECT_WRAP_1(getObject
, OSSymbol::withCString(aKey
))
482 void OSDictionary::removeObject(const OSString
*aKey
)
483 OBJECT_WRAP_3(removeObject
, OSSymbol::withString(aKey
))
484 void OSDictionary::removeObject(const char *aKey
)
485 OBJECT_WRAP_3(removeObject
, OSSymbol::withCString(aKey
))
488 OSDictionary::isEqualTo(const OSDictionary
*srcDict
, const OSCollection
*keys
) const
490 OSCollectionIterator
* iter
;
491 unsigned int keysCount
;
492 const OSMetaClassBase
* obj1
;
493 const OSMetaClassBase
* obj2
;
497 if ( this == srcDict
)
500 keysCount
= keys
->getCount();
501 if ( (count
< keysCount
) || (srcDict
->getCount() < keysCount
) )
504 iter
= OSCollectionIterator::withCollection(keys
);
509 while ( (aKey
= OSDynamicCast(OSString
, iter
->getNextObject())) ) {
510 obj1
= getObject(aKey
);
511 obj2
= srcDict
->getObject(aKey
);
512 if ( !obj1
|| !obj2
) {
517 if ( !obj1
->isEqualTo(obj2
) ) {
527 bool OSDictionary::isEqualTo(const OSDictionary
*srcDict
) const
530 const OSMetaClassBase
* obj
;
532 if ( this == srcDict
)
535 if ( count
!= srcDict
->getCount() )
538 for ( i
= 0; i
< count
; i
++ ) {
539 obj
= srcDict
->getObject(dictionary
[i
].key
);
543 if ( !dictionary
[i
].value
->isEqualTo(obj
) )
550 bool OSDictionary::isEqualTo(const OSMetaClassBase
*anObject
) const
554 dict
= OSDynamicCast(OSDictionary
, anObject
);
556 return isEqualTo(dict
);
561 unsigned int OSDictionary::iteratorSize() const
563 return sizeof(unsigned int);
566 bool OSDictionary::initIterator(void *inIterator
) const
568 unsigned int *iteratorP
= (unsigned int *) inIterator
;
574 bool OSDictionary::getNextObjectForIterator(void *inIterator
, OSObject
**ret
) const
576 unsigned int *iteratorP
= (unsigned int *) inIterator
;
577 unsigned int index
= (*iteratorP
)++;
580 *ret
= (OSObject
*) dictionary
[index
].key
;
587 bool OSDictionary::serialize(OSSerialize
*s
) const
589 if (s
->previouslySerialized(this)) return true;
591 if (!s
->addXMLStartTag(this, "dict")) return false;
593 for (unsigned i
= 0; i
< count
; i
++) {
594 const OSSymbol
*key
= dictionary
[i
].key
;
596 // due the nature of the XML syntax, this must be a symbol
597 if (!key
->metaCast("OSSymbol")) {
600 if (!s
->addString("<key>")) return false;
601 const char *c
= key
->getCStringNoCopy();
604 if (!s
->addString("<")) return false;
605 } else if (*c
== '>') {
606 if (!s
->addString(">")) return false;
607 } else if (*c
== '&') {
608 if (!s
->addString("&")) return false;
610 if (!s
->addChar(*c
)) return false;
614 if (!s
->addXMLEndTag("key")) return false;
616 if (!dictionary
[i
].value
->serialize(s
)) return false;
619 return s
->addXMLEndTag("dict");
622 unsigned OSDictionary::setOptions(unsigned options
, unsigned mask
, void *)
624 unsigned old
= super::setOptions(options
, mask
);
625 if ((old
^ options
) & mask
) {
627 // Value changed need to recurse over all of the child collections
628 for ( unsigned i
= 0; i
< count
; i
++ ) {
629 OSCollection
*v
= OSDynamicCast(OSCollection
, dictionary
[i
].value
);
631 v
->setOptions(options
, mask
);
638 OSCollection
* OSDictionary::copyCollection(OSDictionary
*cycleDict
)
640 bool allocDict
= !cycleDict
;
641 OSCollection
*ret
= 0;
642 OSDictionary
*newDict
= 0;
645 cycleDict
= OSDictionary::withCapacity(16);
652 ret
= super::copyCollection(cycleDict
);
656 newDict
= OSDictionary::withDictionary(this);
660 // Insert object into cycle Dictionary
661 cycleDict
->setObject((const OSSymbol
*) this, newDict
);
663 for (unsigned int i
= 0; i
< count
; i
++) {
664 const OSMetaClassBase
*obj
= dictionary
[i
].value
;
665 OSCollection
*coll
= OSDynamicCast(OSCollection
, EXT_CAST(obj
));
668 OSCollection
*newColl
= coll
->copyCollection(cycleDict
);
672 newDict
->dictionary
[i
].value
= newColl
;
674 coll
->taggedRelease(OSTypeID(OSCollection
));
675 newColl
->taggedRetain(OSTypeID(OSCollection
));
690 cycleDict
->release();