]> git.saurik.com Git - apple/xnu.git/blob - libkern/libkern/c++/OSBoolean.h
3934cfeae03c3dd3c2d345892f1ffa5a440c99d6
[apple/xnu.git] / libkern / libkern / c++ / OSBoolean.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 /* OSBoolean.cpp created by rsulack on Tue Oct 12 1999 */
23
24 #ifndef _OS_OSBOOLEAN_H
25 #define _OS_OSBOOLEAN_H
26
27 #include <libkern/c++/OSObject.h>
28
29 class OSString;
30
31 /*!
32 @class OSBoolean
33 @abstract Container class for boolean values.
34 */
35 class OSBoolean : public OSObject
36 {
37 OSDeclareDefaultStructors(OSBoolean)
38
39 protected:
40 bool value;
41
42 /*D @function taggedRelease
43 @abstract Override tagged release mechanism.
44 @param when Unused. */
45 virtual void taggedRelease(const void *tag, const int when) const;
46
47 public:
48 static void initialize();
49
50 /*D
51 @function withBoolean
52 @abstract A static constructor function to create and initialize an instance of OSBoolean.
53 @param value A boolean value.
54 @result Returns and instance of OSBoolean, or 0 if an error occurred.
55 */
56 static OSBoolean *withBoolean(bool value);
57
58 /*D
59 @function free
60 @abstract A member function to release all resources used by the OSBoolean instance.
61 @discussion This function should not be called directly, use release() instead.
62 */
63 virtual void free();
64
65 /*D @function taggedRetain
66 @abstract Override tagged retain mechanism. */
67 virtual void taggedRetain(const void *tag) const;
68
69 /*!
70 @function isTrue
71 @abstract A member function to test if the boolean object is true.
72 @result Returns true if the OSBoolean object is true, false otherwise.
73 */
74 virtual bool isTrue() const;
75 /*!
76 @function isFalse
77 @abstract A member function to test if the boolean object is false.
78 @result Returns true if the OSBoolean object is false, false otherwise.
79 */
80 virtual bool isFalse() const;
81
82 /*!
83 @function getValue
84 @abstract Obtains the value of the OSBoolean object as the standard C++ type bool.
85 @result The value of the OSBoolean object.
86 */
87 virtual bool getValue() const;
88
89 /*!
90 @function isEqualTo
91 @abstract A member function to test the equality of two OSBoolean objects.
92 @param boolean An OSBoolean object to be compared against the receiver.
93 @result Returns true if the two objects are equivalent.
94 */
95 virtual bool isEqualTo(const OSBoolean *boolean) const;
96 /*!
97 @function isEqualTo
98 @abstract A member function to test the equality between an arbitrary OSObject derived object and an OSBoolean object.
99 @param obj An OSObject derived object to be compared against the receiver.
100 @result Returns true if the two objects are equivalent.
101 */
102 virtual bool isEqualTo(const OSMetaClassBase *obj) const;
103
104 /*!
105 @function serialize
106 @abstract A member function which archives the receiver.
107 @param s The OSSerialize object.
108 @result Returns true if serialization was successful, false if not.
109 */
110 virtual bool serialize(OSSerialize *s) const;
111
112 OSMetaClassDeclareReservedUnused(OSBoolean, 0);
113 OSMetaClassDeclareReservedUnused(OSBoolean, 1);
114 OSMetaClassDeclareReservedUnused(OSBoolean, 2);
115 OSMetaClassDeclareReservedUnused(OSBoolean, 3);
116 OSMetaClassDeclareReservedUnused(OSBoolean, 4);
117 OSMetaClassDeclareReservedUnused(OSBoolean, 5);
118 OSMetaClassDeclareReservedUnused(OSBoolean, 6);
119 OSMetaClassDeclareReservedUnused(OSBoolean, 7);
120 };
121
122 /*!
123 @defined kOSBooleanTrue
124 @abstract The OSBoolean constant for "true".
125 @discussion The OSBoolean constant for "true". The object does not need to be retained or released. Comparisons of the form (booleanObject == kOSBooleanTrue) are acceptable and would be equivalent to (booleanObject->getValue() == true).
126 */
127 extern OSBoolean * const & kOSBooleanTrue;
128
129 /*!
130 @defined kOSBooleanFalse
131 @abstract The OSBoolean constant for "false".
132 @discussion The OSBoolean constant for "false". The object does not need to be retained or released. Comparisons of the form (booleanObject == kOSBooleanFalse) are acceptable and would be equivalent to (booleanObject->getValue() == false).
133 */
134 extern OSBoolean * const & kOSBooleanFalse;
135
136 #endif /* !_OS_OSBOOLEAN_H */