ICU 72.1 72.1
localpointer.h
Go to the documentation of this file.
1// © 2016 and later: Unicode, Inc. and others.
2// License & terms of use: http://www.unicode.org/copyright.html
3/*
4*******************************************************************************
5*
6* Copyright (C) 2009-2016, International Business Machines
7* Corporation and others. All Rights Reserved.
8*
9*******************************************************************************
10* file name: localpointer.h
11* encoding: UTF-8
12* tab size: 8 (not used)
13* indentation:4
14*
15* created on: 2009nov13
16* created by: Markus W. Scherer
17*/
18
19#ifndef __LOCALPOINTER_H__
20#define __LOCALPOINTER_H__
21
41#include "unicode/utypes.h"
42
43#if U_SHOW_CPLUSPLUS_API
44
45#include <memory>
46
47U_NAMESPACE_BEGIN
48
67template<typename T>
69public:
70 // No heap allocation. Use only on the stack.
71 static void* U_EXPORT2 operator new(size_t) = delete;
72 static void* U_EXPORT2 operator new[](size_t) = delete;
73#if U_HAVE_PLACEMENT_NEW
74 static void* U_EXPORT2 operator new(size_t, void*) = delete;
75#endif
76
82 explicit LocalPointerBase(T *p=NULL) : ptr(p) {}
88 ~LocalPointerBase() { /* delete ptr; */ }
94 UBool isNull() const { return ptr==NULL; }
100 UBool isValid() const { return ptr!=NULL; }
108 bool operator==(const T *other) const { return ptr==other; }
116 bool operator!=(const T *other) const { return ptr!=other; }
122 T *getAlias() const { return ptr; }
128 T &operator*() const { return *ptr; }
134 T *operator->() const { return ptr; }
141 T *orphan() {
142 T *p=ptr;
143 ptr=NULL;
144 return p;
145 }
153 void adoptInstead(T *p) {
154 // delete ptr;
155 ptr=p;
156 }
157protected:
162 T *ptr;
163private:
164 // No comparison operators with other LocalPointerBases.
165 bool operator==(const LocalPointerBase<T> &other);
166 bool operator!=(const LocalPointerBase<T> &other);
167 // No ownership sharing: No copy constructor, no assignment operator.
169 void operator=(const LocalPointerBase<T> &other);
170};
171
190template<typename T>
192public:
193 using LocalPointerBase<T>::operator*;
194 using LocalPointerBase<T>::operator->;
200 explicit LocalPointer(T *p=NULL) : LocalPointerBase<T>(p) {}
214 LocalPointer(T *p, UErrorCode &errorCode) : LocalPointerBase<T>(p) {
215 if(p==NULL && U_SUCCESS(errorCode)) {
217 }
218 }
225 src.ptr=NULL;
226 }
227
238 explicit LocalPointer(std::unique_ptr<T> &&p)
239 : LocalPointerBase<T>(p.release()) {}
240
247 }
258 src.ptr=NULL;
259 return *this;
260 }
261
270 LocalPointer<T> &operator=(std::unique_ptr<T> &&p) U_NOEXCEPT {
271 adoptInstead(p.release());
272 return *this;
273 }
274
283 other.ptr=temp;
284 }
291 friend inline void swap(LocalPointer<T> &p1, LocalPointer<T> &p2) U_NOEXCEPT {
292 p1.swap(p2);
293 }
300 void adoptInstead(T *p) {
303 }
320 if(U_SUCCESS(errorCode)) {
323 if(p==NULL) {
325 }
326 } else {
327 delete p;
328 }
329 }
330
342 operator std::unique_ptr<T> () && {
343 return std::unique_ptr<T>(LocalPointerBase<T>::orphan());
344 }
345};
346
365template<typename T>
366class LocalArray : public LocalPointerBase<T> {
367public:
368 using LocalPointerBase<T>::operator*;
369 using LocalPointerBase<T>::operator->;
375 explicit LocalArray(T *p=NULL) : LocalPointerBase<T>(p) {}
389 LocalArray(T *p, UErrorCode &errorCode) : LocalPointerBase<T>(p) {
390 if(p==NULL && U_SUCCESS(errorCode)) {
392 }
393 }
400 src.ptr=NULL;
401 }
402
413 explicit LocalArray(std::unique_ptr<T[]> &&p)
414 : LocalPointerBase<T>(p.release()) {}
415
422 }
433 src.ptr=NULL;
434 return *this;
435 }
436
445 LocalArray<T> &operator=(std::unique_ptr<T[]> &&p) U_NOEXCEPT {
446 adoptInstead(p.release());
447 return *this;
448 }
449
458 other.ptr=temp;
459 }
466 friend inline void swap(LocalArray<T> &p1, LocalArray<T> &p2) U_NOEXCEPT {
467 p1.swap(p2);
468 }
475 void adoptInstead(T *p) {
478 }
495 if(U_SUCCESS(errorCode)) {
498 if(p==NULL) {
500 }
501 } else {
502 delete[] p;
503 }
504 }
512 T &operator[](ptrdiff_t i) const { return LocalPointerBase<T>::ptr[i]; }
513
525 operator std::unique_ptr<T[]> () && {
526 return std::unique_ptr<T[]>(LocalPointerBase<T>::orphan());
527 }
528};
529
550#define U_DEFINE_LOCAL_OPEN_POINTER(LocalPointerClassName, Type, closeFunction) \
551 class LocalPointerClassName : public LocalPointerBase<Type> { \
552 public: \
553 using LocalPointerBase<Type>::operator*; \
554 using LocalPointerBase<Type>::operator->; \
555 explicit LocalPointerClassName(Type *p=NULL) : LocalPointerBase<Type>(p) {} \
556 LocalPointerClassName(LocalPointerClassName &&src) U_NOEXCEPT \
557 : LocalPointerBase<Type>(src.ptr) { \
558 src.ptr=NULL; \
559 } \
560 /* TODO: Be agnostic of the deleter function signature from the user-provided std::unique_ptr? */ \
561 explicit LocalPointerClassName(std::unique_ptr<Type, decltype(&closeFunction)> &&p) \
562 : LocalPointerBase<Type>(p.release()) {} \
563 ~LocalPointerClassName() { if (ptr != NULL) { closeFunction(ptr); } } \
564 LocalPointerClassName &operator=(LocalPointerClassName &&src) U_NOEXCEPT { \
565 if (ptr != NULL) { closeFunction(ptr); } \
566 LocalPointerBase<Type>::ptr=src.ptr; \
567 src.ptr=NULL; \
568 return *this; \
569 } \
570 /* TODO: Be agnostic of the deleter function signature from the user-provided std::unique_ptr? */ \
571 LocalPointerClassName &operator=(std::unique_ptr<Type, decltype(&closeFunction)> &&p) { \
572 adoptInstead(p.release()); \
573 return *this; \
574 } \
575 void swap(LocalPointerClassName &other) U_NOEXCEPT { \
576 Type *temp=LocalPointerBase<Type>::ptr; \
577 LocalPointerBase<Type>::ptr=other.ptr; \
578 other.ptr=temp; \
579 } \
580 friend inline void swap(LocalPointerClassName &p1, LocalPointerClassName &p2) U_NOEXCEPT { \
581 p1.swap(p2); \
582 } \
583 void adoptInstead(Type *p) { \
584 if (ptr != NULL) { closeFunction(ptr); } \
585 ptr=p; \
586 } \
587 operator std::unique_ptr<Type, decltype(&closeFunction)> () && { \
588 return std::unique_ptr<Type, decltype(&closeFunction)>(LocalPointerBase<Type>::orphan(), closeFunction); \
589 } \
590 }
591
592U_NAMESPACE_END
593
594#endif /* U_SHOW_CPLUSPLUS_API */
595#endif /* __LOCALPOINTER_H__ */
"Smart pointer" class, deletes objects via the C++ array delete[] operator.
Definition: localpointer.h:366
friend void swap(LocalArray< T > &p1, LocalArray< T > &p2) U_NOEXCEPT
Non-member LocalArray swap function.
Definition: localpointer.h:466
T & operator[](ptrdiff_t i) const
Array item access (writable).
Definition: localpointer.h:512
LocalArray(LocalArray< T > &&src) U_NOEXCEPT
Move constructor, leaves src with isNull().
Definition: localpointer.h:399
LocalArray< T > & operator=(LocalArray< T > &&src) U_NOEXCEPT
Move assignment operator, leaves src with isNull().
Definition: localpointer.h:430
~LocalArray()
Destructor deletes the array it owns.
Definition: localpointer.h:420
LocalArray(T *p=NULL)
Constructor takes ownership.
Definition: localpointer.h:375
void adoptInsteadAndCheckErrorCode(T *p, UErrorCode &errorCode)
Deletes the array it owns, and adopts (takes ownership of) the one passed in.
Definition: localpointer.h:494
void adoptInstead(T *p)
Deletes the array it owns, and adopts (takes ownership of) the one passed in.
Definition: localpointer.h:475
LocalArray(T *p, UErrorCode &errorCode)
Constructor takes ownership and reports an error if NULL.
Definition: localpointer.h:389
LocalArray(std::unique_ptr< T[]> &&p)
Constructs a LocalArray from a C++11 std::unique_ptr of an array type.
Definition: localpointer.h:413
void swap(LocalArray< T > &other) U_NOEXCEPT
Swap pointers.
Definition: localpointer.h:455
LocalArray< T > & operator=(std::unique_ptr< T[]> &&p) U_NOEXCEPT
Move-assign from an std::unique_ptr to this LocalPointer.
Definition: localpointer.h:445
"Smart pointer" base class; do not use directly: use LocalPointer etc.
Definition: localpointer.h:68
bool operator!=(const T *other) const
Comparison with a simple pointer, so that existing code with !=NULL need not be changed.
Definition: localpointer.h:116
UBool isValid() const
NULL check.
Definition: localpointer.h:100
T * orphan()
Gives up ownership; the internal pointer becomes NULL.
Definition: localpointer.h:141
LocalPointerBase(T *p=NULL)
Constructor takes ownership.
Definition: localpointer.h:82
UBool isNull() const
NULL check.
Definition: localpointer.h:94
T * ptr
Actual pointer.
Definition: localpointer.h:162
T & operator*() const
Access without ownership change.
Definition: localpointer.h:128
T * operator->() const
Access without ownership change.
Definition: localpointer.h:134
bool operator==(const T *other) const
Comparison with a simple pointer, so that existing code with ==NULL need not be changed.
Definition: localpointer.h:108
void adoptInstead(T *p)
Deletes the object it owns, and adopts (takes ownership of) the one passed in.
Definition: localpointer.h:153
T * getAlias() const
Access without ownership change.
Definition: localpointer.h:122
~LocalPointerBase()
Destructor deletes the object it owns.
Definition: localpointer.h:88
"Smart pointer" class, deletes objects via the standard C++ delete operator.
Definition: localpointer.h:191
LocalPointer< T > & operator=(LocalPointer< T > &&src) U_NOEXCEPT
Move assignment operator, leaves src with isNull().
Definition: localpointer.h:255
void swap(LocalPointer< T > &other) U_NOEXCEPT
Swap pointers.
Definition: localpointer.h:280
void adoptInsteadAndCheckErrorCode(T *p, UErrorCode &errorCode)
Deletes the object it owns, and adopts (takes ownership of) the one passed in.
Definition: localpointer.h:319
LocalPointer(T *p, UErrorCode &errorCode)
Constructor takes ownership and reports an error if NULL.
Definition: localpointer.h:214
LocalPointer(std::unique_ptr< T > &&p)
Constructs a LocalPointer from a C++11 std::unique_ptr.
Definition: localpointer.h:238
friend void swap(LocalPointer< T > &p1, LocalPointer< T > &p2) U_NOEXCEPT
Non-member LocalPointer swap function.
Definition: localpointer.h:291
LocalPointer< T > & operator=(std::unique_ptr< T > &&p) U_NOEXCEPT
Move-assign from an std::unique_ptr to this LocalPointer.
Definition: localpointer.h:270
~LocalPointer()
Destructor deletes the object it owns.
Definition: localpointer.h:245
void adoptInstead(T *p)
Deletes the object it owns, and adopts (takes ownership of) the one passed in.
Definition: localpointer.h:300
LocalPointer(LocalPointer< T > &&src) U_NOEXCEPT
Move constructor, leaves src with isNull().
Definition: localpointer.h:224
LocalPointer(T *p=NULL)
Constructor takes ownership.
Definition: localpointer.h:200
U_EXPORT UBool operator==(const StringPiece &x, const StringPiece &y)
Global operator == for StringPiece.
bool operator!=(const StringPiece &x, const StringPiece &y)
Global operator != for StringPiece.
Definition: stringpiece.h:335
#define U_NOEXCEPT
"noexcept" if supported, otherwise empty.
Definition: platform.h:529
int8_t UBool
The ICU boolean type, a signed-byte integer.
Definition: umachine.h:269
Basic definitions for ICU, for both C and C++ APIs.
#define NULL
Define NULL if necessary, to nullptr for C++ and to ((void *)0) for C.
Definition: utypes.h:188
UErrorCode
Standard ICU4C error code type, a substitute for exceptions.
Definition: utypes.h:415
@ U_MEMORY_ALLOCATION_ERROR
Memory allocation error.
Definition: utypes.h:457
#define U_SUCCESS(x)
Does the error code indicate success?
Definition: utypes.h:712