xref: /xnu-8796.121.2/libkern/c++/OSBoolean.cpp (revision c54f35ca767986246321eb901baf8f5ff7923f6a)
1*c54f35caSApple OSS Distributions /*
2*c54f35caSApple OSS Distributions  * Copyright (c) 2000 Apple Computer, Inc. All rights reserved.
3*c54f35caSApple OSS Distributions  *
4*c54f35caSApple OSS Distributions  * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
5*c54f35caSApple OSS Distributions  *
6*c54f35caSApple OSS Distributions  * This file contains Original Code and/or Modifications of Original Code
7*c54f35caSApple OSS Distributions  * as defined in and that are subject to the Apple Public Source License
8*c54f35caSApple OSS Distributions  * Version 2.0 (the 'License'). You may not use this file except in
9*c54f35caSApple OSS Distributions  * compliance with the License. The rights granted to you under the License
10*c54f35caSApple OSS Distributions  * may not be used to create, or enable the creation or redistribution of,
11*c54f35caSApple OSS Distributions  * unlawful or unlicensed copies of an Apple operating system, or to
12*c54f35caSApple OSS Distributions  * circumvent, violate, or enable the circumvention or violation of, any
13*c54f35caSApple OSS Distributions  * terms of an Apple operating system software license agreement.
14*c54f35caSApple OSS Distributions  *
15*c54f35caSApple OSS Distributions  * Please obtain a copy of the License at
16*c54f35caSApple OSS Distributions  * http://www.opensource.apple.com/apsl/ and read it before using this file.
17*c54f35caSApple OSS Distributions  *
18*c54f35caSApple OSS Distributions  * The Original Code and all software distributed under the License are
19*c54f35caSApple OSS Distributions  * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
20*c54f35caSApple OSS Distributions  * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
21*c54f35caSApple OSS Distributions  * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
22*c54f35caSApple OSS Distributions  * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
23*c54f35caSApple OSS Distributions  * Please see the License for the specific language governing rights and
24*c54f35caSApple OSS Distributions  * limitations under the License.
25*c54f35caSApple OSS Distributions  *
26*c54f35caSApple OSS Distributions  * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
27*c54f35caSApple OSS Distributions  */
28*c54f35caSApple OSS Distributions /* OSBoolean.cpp created by rsulack on Tue Oct 12 1999 */
29*c54f35caSApple OSS Distributions 
30*c54f35caSApple OSS Distributions #include <libkern/c++/OSBoolean.h>
31*c54f35caSApple OSS Distributions #include <libkern/c++/OSString.h>
32*c54f35caSApple OSS Distributions #include <libkern/c++/OSSerialize.h>
33*c54f35caSApple OSS Distributions #include <libkern/c++/OSLib.h>
34*c54f35caSApple OSS Distributions 
35*c54f35caSApple OSS Distributions #define super OSObject
36*c54f35caSApple OSS Distributions 
37*c54f35caSApple OSS Distributions OSDefineMetaClassAndStructorsWithInit(OSBoolean, OSObject, OSBoolean::initialize())
38*c54f35caSApple OSS Distributions OSMetaClassDefineReservedUnused(OSBoolean, 0);
39*c54f35caSApple OSS Distributions OSMetaClassDefineReservedUnused(OSBoolean, 1);
40*c54f35caSApple OSS Distributions OSMetaClassDefineReservedUnused(OSBoolean, 2);
41*c54f35caSApple OSS Distributions OSMetaClassDefineReservedUnused(OSBoolean, 3);
42*c54f35caSApple OSS Distributions OSMetaClassDefineReservedUnused(OSBoolean, 4);
43*c54f35caSApple OSS Distributions OSMetaClassDefineReservedUnused(OSBoolean, 5);
44*c54f35caSApple OSS Distributions OSMetaClassDefineReservedUnused(OSBoolean, 6);
45*c54f35caSApple OSS Distributions OSMetaClassDefineReservedUnused(OSBoolean, 7);
46*c54f35caSApple OSS Distributions 
47*c54f35caSApple OSS Distributions static OSBoolean * gOSBooleanTrue  = NULL;
48*c54f35caSApple OSS Distributions static OSBoolean * gOSBooleanFalse = NULL;
49*c54f35caSApple OSS Distributions 
50*c54f35caSApple OSS Distributions OSBoolean * const & kOSBooleanTrue  = gOSBooleanTrue;
51*c54f35caSApple OSS Distributions OSBoolean * const & kOSBooleanFalse = gOSBooleanFalse;
52*c54f35caSApple OSS Distributions 
53*c54f35caSApple OSS Distributions void
initialize()54*c54f35caSApple OSS Distributions OSBoolean::initialize()
55*c54f35caSApple OSS Distributions {
56*c54f35caSApple OSS Distributions 	gOSBooleanTrue = new OSBoolean;
57*c54f35caSApple OSS Distributions 	assert(gOSBooleanTrue);
58*c54f35caSApple OSS Distributions 
59*c54f35caSApple OSS Distributions 	if (!gOSBooleanTrue->init()) {
60*c54f35caSApple OSS Distributions 		gOSBooleanTrue->OSObject::free();
61*c54f35caSApple OSS Distributions 		assert(false);
62*c54f35caSApple OSS Distributions 	}
63*c54f35caSApple OSS Distributions 	;
64*c54f35caSApple OSS Distributions 	gOSBooleanTrue->value = true;
65*c54f35caSApple OSS Distributions 
66*c54f35caSApple OSS Distributions 	gOSBooleanFalse = new OSBoolean;
67*c54f35caSApple OSS Distributions 	assert(gOSBooleanFalse);
68*c54f35caSApple OSS Distributions 
69*c54f35caSApple OSS Distributions 	if (!gOSBooleanFalse->init()) {
70*c54f35caSApple OSS Distributions 		gOSBooleanFalse->OSObject::free();
71*c54f35caSApple OSS Distributions 		assert(false);
72*c54f35caSApple OSS Distributions 	}
73*c54f35caSApple OSS Distributions 	;
74*c54f35caSApple OSS Distributions 	gOSBooleanFalse->value = false;
75*c54f35caSApple OSS Distributions }
76*c54f35caSApple OSS Distributions 
77*c54f35caSApple OSS Distributions void
free()78*c54f35caSApple OSS Distributions OSBoolean::free()
79*c54f35caSApple OSS Distributions {
80*c54f35caSApple OSS Distributions 	/*
81*c54f35caSApple OSS Distributions 	 * An OSBoolean should never have free() called on it, since it is a shared
82*c54f35caSApple OSS Distributions 	 * object, with two non-mutable instances: kOSBooleanTrue, kOSBooleanFalse.
83*c54f35caSApple OSS Distributions 	 * There will be cases where an incorrect number of releases will cause the
84*c54f35caSApple OSS Distributions 	 * free() method to be called, however, which we must catch and ignore here.
85*c54f35caSApple OSS Distributions 	 */
86*c54f35caSApple OSS Distributions 	assert(false);
87*c54f35caSApple OSS Distributions }
88*c54f35caSApple OSS Distributions 
89*c54f35caSApple OSS Distributions void
taggedRetain(__unused const void * tag) const90*c54f35caSApple OSS Distributions OSBoolean::taggedRetain(__unused const void *tag) const
91*c54f35caSApple OSS Distributions {
92*c54f35caSApple OSS Distributions }
93*c54f35caSApple OSS Distributions void
taggedRelease(__unused const void * tag,__unused const int when) const94*c54f35caSApple OSS Distributions OSBoolean::taggedRelease(__unused const void *tag, __unused const int when) const
95*c54f35caSApple OSS Distributions {
96*c54f35caSApple OSS Distributions }
97*c54f35caSApple OSS Distributions 
98*c54f35caSApple OSS Distributions OSBoolean *
withBoolean(bool inValue)99*c54f35caSApple OSS Distributions OSBoolean::withBoolean(bool inValue)
100*c54f35caSApple OSS Distributions {
101*c54f35caSApple OSS Distributions 	return (inValue) ? kOSBooleanTrue : kOSBooleanFalse;
102*c54f35caSApple OSS Distributions }
103*c54f35caSApple OSS Distributions 
104*c54f35caSApple OSS Distributions bool
isTrue() const105*c54f35caSApple OSS Distributions OSBoolean::isTrue() const
106*c54f35caSApple OSS Distributions {
107*c54f35caSApple OSS Distributions 	return value;
108*c54f35caSApple OSS Distributions }
109*c54f35caSApple OSS Distributions bool
isFalse() const110*c54f35caSApple OSS Distributions OSBoolean::isFalse() const
111*c54f35caSApple OSS Distributions {
112*c54f35caSApple OSS Distributions 	return !value;
113*c54f35caSApple OSS Distributions }
114*c54f35caSApple OSS Distributions bool
getValue() const115*c54f35caSApple OSS Distributions OSBoolean::getValue() const
116*c54f35caSApple OSS Distributions {
117*c54f35caSApple OSS Distributions 	return value;
118*c54f35caSApple OSS Distributions }
119*c54f35caSApple OSS Distributions 
120*c54f35caSApple OSS Distributions bool
isEqualTo(const OSBoolean * boolean) const121*c54f35caSApple OSS Distributions OSBoolean::isEqualTo(const OSBoolean *boolean) const
122*c54f35caSApple OSS Distributions {
123*c54f35caSApple OSS Distributions 	return boolean == this;
124*c54f35caSApple OSS Distributions }
125*c54f35caSApple OSS Distributions 
126*c54f35caSApple OSS Distributions bool
isEqualTo(const OSMetaClassBase * obj) const127*c54f35caSApple OSS Distributions OSBoolean::isEqualTo(const OSMetaClassBase *obj) const
128*c54f35caSApple OSS Distributions {
129*c54f35caSApple OSS Distributions 	OSBoolean * boolean;
130*c54f35caSApple OSS Distributions 	if ((boolean = OSDynamicCast(OSBoolean, obj))) {
131*c54f35caSApple OSS Distributions 		return isEqualTo(boolean);
132*c54f35caSApple OSS Distributions 	} else {
133*c54f35caSApple OSS Distributions 		return false;
134*c54f35caSApple OSS Distributions 	}
135*c54f35caSApple OSS Distributions }
136*c54f35caSApple OSS Distributions 
137*c54f35caSApple OSS Distributions bool
serialize(OSSerialize * s) const138*c54f35caSApple OSS Distributions OSBoolean::serialize(OSSerialize *s) const
139*c54f35caSApple OSS Distributions {
140*c54f35caSApple OSS Distributions 	if (s->binary) {
141*c54f35caSApple OSS Distributions 		return s->binarySerialize(this);
142*c54f35caSApple OSS Distributions 	}
143*c54f35caSApple OSS Distributions 
144*c54f35caSApple OSS Distributions 	return s->addString(value ? "<true/>" : "<false/>");
145*c54f35caSApple OSS Distributions }
146