]>
git.saurik.com Git - apple/icu.git/blob - icuSources/common/unicode/uobject.h
1 // © 2016 and later: Unicode, Inc. and others.
2 // License & terms of use: http://www.unicode.org/copyright.html
4 ******************************************************************************
6 * Copyright (C) 2002-2012, International Business Machines
7 * Corporation and others. All Rights Reserved.
9 ******************************************************************************
10 * file name: uobject.h
12 * tab size: 8 (not used)
15 * created on: 2002jun26
16 * created by: Markus W. Scherer
22 #include "unicode/utypes.h"
23 #include "unicode/platform.h"
27 * \brief C++ API: Common ICU base class UObject.
32 * Since ICU 64, use U_NOEXCEPT instead.
34 * Previously, define this to define the throw() specification so
35 * certain functions do not throw any exceptions
37 * UMemory operator new methods should have the throw() specification
38 * appended to them, so that the compiler adds the additional NULL check
39 * before calling constructors. Without, if <code>operator new</code> returns NULL the
40 * constructor is still called, and if the constructor references member
41 * data, (which it typically does), the result is a segmentation violation.
43 * @stable ICU 4.2. Since ICU 64, Use U_NOEXCEPT instead. See ICU-20422.
46 #define U_NO_THROW throw()
49 /*===========================================================================*/
50 /* UClassID-based RTTI */
51 /*===========================================================================*/
54 * UClassID is used to identify classes without using the compiler's RTTI.
55 * This was used before C++ compilers consistently supported RTTI.
56 * ICU 4.6 requires compiler RTTI to be turned on.
58 * Each class hierarchy which needs
59 * to implement polymorphic clone() or operator==() defines two methods,
60 * described in detail below. UClassID values can be compared using
61 * operator==(). Nothing else should be done with them.
64 * In class hierarchies that implement "poor man's RTTI",
65 * each concrete subclass implements getDynamicClassID() in the same way:
70 * virtual UClassID getDynamicClassID() const
71 * { return Derived::getStaticClassID(); }
75 * Each concrete class implements getStaticClassID() as well, which allows
76 * clients to test for a specific type.
81 * static UClassID U_EXPORT2 getStaticClassID();
83 * static char fgClassID;
87 * UClassID Derived::getStaticClassID()
88 * { return (UClassID)&Derived::fgClassID; }
89 * char Derived::fgClassID = 0; // Value is irrelevant
93 typedef void* UClassID
;
95 #if U_SHOW_CPLUSPLUS_API
99 * UMemory is the common ICU base class.
100 * All other ICU C++ classes are derived from UMemory (starting with ICU 2.4).
102 * This is primarily to make it possible and simple to override the
103 * C++ memory management by adding new/delete operators to this base class.
105 * To override ALL ICU memory management, including that from plain C code,
106 * replace the allocation functions declared in cmemory.h
108 * UMemory does not contain any virtual functions.
109 * Common "boilerplate" functions are defined in UObject.
113 class U_COMMON_API UMemory
{
116 /* test versions for debugging shaper heap memory problems */
117 #ifdef SHAPER_MEMORY_DEBUG
118 static void * NewArray(int size
, int count
);
119 static void * GrowArray(void * array
, int newSize
);
120 static void FreeArray(void * array
);
123 #if U_OVERRIDE_CXX_ALLOCATION
125 * Override for ICU4C C++ memory management.
126 * simple, non-class types are allocated using the macros in common/cmemory.h
127 * (uprv_malloc(), uprv_free(), uprv_realloc());
128 * they or something else could be used here to implement C++ new/delete
129 * for ICU4C C++ classes
132 static void * U_EXPORT2
operator new(size_t size
) U_NOEXCEPT
;
135 * Override for ICU4C C++ memory management.
139 static void * U_EXPORT2
operator new[](size_t size
) U_NOEXCEPT
;
142 * Override for ICU4C C++ memory management.
143 * simple, non-class types are allocated using the macros in common/cmemory.h
144 * (uprv_malloc(), uprv_free(), uprv_realloc());
145 * they or something else could be used here to implement C++ new/delete
146 * for ICU4C C++ classes
149 static void U_EXPORT2
operator delete(void *p
) U_NOEXCEPT
;
152 * Override for ICU4C C++ memory management.
156 static void U_EXPORT2
operator delete[](void *p
) U_NOEXCEPT
;
158 #if U_HAVE_PLACEMENT_NEW
160 * Override for ICU4C C++ memory management for STL.
164 static inline void * U_EXPORT2
operator new(size_t, void *ptr
) U_NOEXCEPT
{ return ptr
; }
167 * Override for ICU4C C++ memory management for STL.
171 static inline void U_EXPORT2
operator delete(void *, void *) U_NOEXCEPT
{}
172 #endif /* U_HAVE_PLACEMENT_NEW */
173 #if U_HAVE_DEBUG_LOCATION_NEW
175 * This method overrides the MFC debug version of the operator new
177 * @param size The requested memory size
178 * @param file The file where the allocation was requested
179 * @param line The line where the allocation was requested
181 static void * U_EXPORT2
operator new(size_t size
, const char* file
, int line
) U_NOEXCEPT
;
183 * This method provides a matching delete for the MFC debug new
185 * @param p The pointer to the allocated memory
186 * @param file The file where the allocation was requested
187 * @param line The line where the allocation was requested
189 static void U_EXPORT2
operator delete(void* p
, const char* file
, int line
) U_NOEXCEPT
;
190 #endif /* U_HAVE_DEBUG_LOCATION_NEW */
191 #endif /* U_OVERRIDE_CXX_ALLOCATION */
194 * Assignment operator not declared. The compiler will provide one
195 * which does nothing since this class does not contain any data members.
196 * API/code coverage may show the assignment operator as present and
198 * Subclasses need this assignment operator if they use compiler-provided
199 * assignment operators of their own. An alternative to not declaring one
200 * here would be to declare and empty-implement a protected or public one.
201 UMemory &UMemory::operator=(const UMemory &);
206 * UObject is the common ICU "boilerplate" class.
207 * UObject inherits UMemory (starting with ICU 2.4),
208 * and all other public ICU C++ classes
209 * are derived from UObject (starting with ICU 2.2).
211 * UObject contains common virtual functions, in particular a virtual destructor.
213 * The clone() function is not available in UObject because it is not
214 * implemented by all ICU classes.
215 * Many ICU services provide a clone() function for their class trees,
216 * defined on the service's C++ base class, and all subclasses within that
217 * service class tree return a pointer to the service base class
218 * (which itself is a subclass of UObject).
219 * This is because some compilers do not support covariant (same-as-this)
220 * return types; cast to the appropriate subclass if necessary.
224 class U_COMMON_API UObject
: public UMemory
{
234 * ICU4C "poor man's RTTI", returns a UClassID for the actual ICU class.
235 * The base class implementation returns a dummy value.
237 * Use compiler RTTI rather than ICU's "poor man's RTTI".
238 * Since ICU 4.6, new ICU C++ class hierarchies do not implement "poor man's RTTI".
242 virtual UClassID
getDynamicClassID() const;
245 // the following functions are protected to prevent instantiation and
246 // direct use of UObject itself
248 // default constructor
249 // inline UObject() {}
252 // inline UObject(const UObject &other) {}
255 // TODO Sometime in the future. Implement operator==().
256 // (This comment inserted in 2.2)
257 // some or all of the following "boilerplate" functions may be made public
258 // in a future ICU4C release when all subclasses implement them
260 // assignment operator
261 // (not virtual, see "Taligent's Guide to Designing Programs" pp.73..74)
262 // commented out because the implementation is the same as a compiler's default
263 // UObject &operator=(const UObject &other) { return *this; }
265 // comparison operators
266 virtual inline UBool
operator==(const UObject
&other
) const { return this==&other
; }
267 inline UBool
operator!=(const UObject
&other
) const { return !operator==(other
); }
269 // clone() commented out from the base class:
270 // some compilers do not support co-variant return types
271 // (i.e., subclasses would have to return UObject * as well, instead of SubClass *)
272 // see also UObject class documentation.
273 // virtual UObject *clone() const;
277 * Assignment operator not declared. The compiler will provide one
278 * which does nothing since this class does not contain any data members.
279 * API/code coverage may show the assignment operator as present and
281 * Subclasses need this assignment operator if they use compiler-provided
282 * assignment operators of their own. An alternative to not declaring one
283 * here would be to declare and empty-implement a protected or public one.
284 UObject &UObject::operator=(const UObject &);
288 #ifndef U_HIDE_INTERNAL_API
290 * This is a simple macro to add ICU RTTI to an ICU object implementation.
291 * This does not go into the header. This should only be used in *.cpp files.
293 * @param myClass The name of the class that needs RTTI defined.
296 #define UOBJECT_DEFINE_RTTI_IMPLEMENTATION(myClass) \
297 UClassID U_EXPORT2 myClass::getStaticClassID() { \
298 static char classID = 0; \
299 return (UClassID)&classID; \
301 UClassID myClass::getDynamicClassID() const \
302 { return myClass::getStaticClassID(); }
306 * This macro adds ICU RTTI to an ICU abstract class implementation.
307 * This macro should be invoked in *.cpp files. The corresponding
308 * header should declare getStaticClassID.
310 * @param myClass The name of the class that needs RTTI defined.
313 #define UOBJECT_DEFINE_ABSTRACT_RTTI_IMPLEMENTATION(myClass) \
314 UClassID U_EXPORT2 myClass::getStaticClassID() { \
315 static char classID = 0; \
316 return (UClassID)&classID; \
319 #endif /* U_HIDE_INTERNAL_API */
322 #endif // U_SHOW_CPLUSPLUS_API