| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660 |
- //
- // Copyright (c) 2008-2017 the Urho3D project.
- //
- // Permission is hereby granted, free of charge, to any person obtaining a copy
- // of this software and associated documentation files (the "Software"), to deal
- // in the Software without restriction, including without limitation the rights
- // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- // copies of the Software, and to permit persons to whom the Software is
- // furnished to do so, subject to the following conditions:
- //
- // The above copyright notice and this permission notice shall be included in
- // all copies or substantial portions of the Software.
- //
- // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
- // THE SOFTWARE.
- //
- #pragma once
- #include "../Container/RefCounted.h"
- #include <cassert>
- #include <cstddef>
- #if ATOMIC_CXX11
- #include <utility>
- #endif
- namespace Atomic
- {
- /// Shared pointer template class with intrusive reference counting.
- template <class T> class SharedPtr
- {
- public:
- /// Construct a null shared pointer.
- SharedPtr() :
- ptr_(0)
- {
- }
- #if ATOMIC_CXX11
- /// Construct a null shared pointer.
- SharedPtr(std::nullptr_t) :
- ptr_(0)
- {
- }
- #endif
- /// Copy-construct from another shared pointer.
- SharedPtr(const SharedPtr<T>& rhs) :
- ptr_(rhs.ptr_)
- {
- AddRef();
- }
- /// Copy-construct from another shared pointer allowing implicit upcasting.
- template <class U> SharedPtr(const SharedPtr<U>& rhs) :
- ptr_(rhs.ptr_)
- {
- AddRef();
- }
- /// Construct from a raw pointer.
- explicit SharedPtr(T* ptr) :
- ptr_(ptr)
- {
- AddRef();
- }
- /// Destruct. Release the object reference.
- ~SharedPtr()
- {
- ReleaseRef();
- }
- /// Assign from another shared pointer.
- SharedPtr<T>& operator =(const SharedPtr<T>& rhs)
- {
- if (ptr_ == rhs.ptr_)
- return *this;
- ReleaseRef();
- ptr_ = rhs.ptr_;
- AddRef();
- return *this;
- }
- /// Assign from another shared pointer allowing implicit upcasting.
- template <class U> SharedPtr<T>& operator =(const SharedPtr<U>& rhs)
- {
- if (ptr_ == rhs.ptr_)
- return *this;
- ReleaseRef();
- ptr_ = rhs.ptr_;
- AddRef();
- return *this;
- }
- /// Assign from a raw pointer.
- SharedPtr<T>& operator =(T* ptr)
- {
- if (ptr_ == ptr)
- return *this;
- ReleaseRef();
- ptr_ = ptr;
- AddRef();
- return *this;
- }
- /// Point to the object.
- T* operator ->() const
- {
- assert(ptr_);
- return ptr_;
- }
- /// Dereference the object.
- T& operator *() const
- {
- assert(ptr_);
- return *ptr_;
- }
- /// Subscript the object if applicable.
- T& operator [](const int index)
- {
- assert(ptr_);
- return ptr_[index];
- }
- /// Test for less than with another shared pointer.
- template <class U> bool operator <(const SharedPtr<U>& rhs) const { return ptr_ < rhs.ptr_; }
- /// Test for equality with another shared pointer.
- template <class U> bool operator ==(const SharedPtr<U>& rhs) const { return ptr_ == rhs.ptr_; }
- /// Test for inequality with another shared pointer.
- template <class U> bool operator !=(const SharedPtr<U>& rhs) const { return ptr_ != rhs.ptr_; }
- /// Convert to a raw pointer.
- operator T*() const { return ptr_; }
- /// Reset to null and release the object reference.
- void Reset() { ReleaseRef(); }
- /// Detach without destroying the object even if the refcount goes zero. To be used for scripting language interoperation.
- T* Detach()
- {
- T* ptr = ptr_;
- if (ptr_)
- {
- RefCount* refCount = RefCountPtr();
- ++refCount->refs_; // 2 refs
- Reset(); // 1 ref
- --refCount->refs_; // 0 refs
- }
- return ptr;
- }
- /// Perform a static cast from a shared pointer of another type.
- template <class U> void StaticCast(const SharedPtr<U>& rhs)
- {
- ReleaseRef();
- ptr_ = static_cast<T*>(rhs.Get());
- AddRef();
- }
- /// Perform a dynamic cast from a shared pointer of another type.
- template <class U> void DynamicCast(const SharedPtr<U>& rhs)
- {
- ReleaseRef();
- ptr_ = dynamic_cast<T*>(rhs.Get());
- AddRef();
- }
- /// Check if the pointer is null.
- bool Null() const { return ptr_ == 0; }
- /// Check if the pointer is not null.
- bool NotNull() const { return ptr_ != 0; }
- /// Return the raw pointer.
- T* Get() const { return ptr_; }
- /// Return the object's reference count, or 0 if the pointer is null.
- int Refs() const { return ptr_ ? ptr_->Refs() : 0; }
- /// Return the object's weak reference count, or 0 if the pointer is null.
- int WeakRefs() const { return ptr_ ? ptr_->WeakRefs() : 0; }
- /// Return pointer to the RefCount structure.
- RefCount* RefCountPtr() const { return ptr_ ? ptr_->RefCountPtr() : 0; }
- /// Return hash value for HashSet & HashMap.
- unsigned ToHash() const { return (unsigned)((size_t)ptr_ / sizeof(T)); }
- private:
- template <class U> friend class SharedPtr;
- /// Add a reference to the object pointed to.
- void AddRef()
- {
- if (ptr_)
- ptr_->AddRef();
- }
- /// Release the object reference and delete it if necessary.
- void ReleaseRef()
- {
- if (ptr_)
- {
- ptr_->ReleaseRef();
- ptr_ = 0;
- }
- }
- /// Pointer to the object.
- T* ptr_;
- };
- /// Perform a static cast from one shared pointer type to another.
- template <class T, class U> SharedPtr<T> StaticCast(const SharedPtr<U>& ptr)
- {
- SharedPtr<T> ret;
- ret.StaticCast(ptr);
- return ret;
- }
- /// Perform a dynamic cast from one weak pointer type to another.
- template <class T, class U> SharedPtr<T> DynamicCast(const SharedPtr<U>& ptr)
- {
- SharedPtr<T> ret;
- ret.DynamicCast(ptr);
- return ret;
- }
- /// Weak pointer template class with intrusive reference counting. Does not keep the object pointed to alive.
- template <class T> class WeakPtr
- {
- public:
- /// Construct a null weak pointer.
- WeakPtr() :
- ptr_(0),
- refCount_(0)
- {
- }
- #if ATOMIC_CXX11
- /// Construct a null weak pointer.
- WeakPtr(std::nullptr_t) :
- ptr_(0),
- refCount_(0)
- {
- }
- #endif
- /// Copy-construct from another weak pointer.
- WeakPtr(const WeakPtr<T>& rhs) :
- ptr_(rhs.ptr_),
- refCount_(rhs.refCount_)
- {
- AddRef();
- }
- /// Copy-construct from another weak pointer allowing implicit upcasting.
- template <class U> WeakPtr(const WeakPtr<U>& rhs) :
- ptr_(rhs.ptr_),
- refCount_(rhs.refCount_)
- {
- AddRef();
- }
- /// Construct from a shared pointer.
- WeakPtr(const SharedPtr<T>& rhs) :
- ptr_(rhs.Get()),
- refCount_(rhs.RefCountPtr())
- {
- AddRef();
- }
- /// Construct from a raw pointer.
- explicit WeakPtr(T* ptr) :
- ptr_(ptr),
- refCount_(ptr ? ptr->RefCountPtr() : 0)
- {
- AddRef();
- }
- /// Destruct. Release the weak reference to the object.
- ~WeakPtr()
- {
- ReleaseRef();
- }
- /// Assign from a shared pointer.
- WeakPtr<T>& operator =(const SharedPtr<T>& rhs)
- {
- if (ptr_ == rhs.Get() && refCount_ == rhs.RefCountPtr())
- return *this;
- ReleaseRef();
- ptr_ = rhs.Get();
- refCount_ = rhs.RefCountPtr();
- AddRef();
- return *this;
- }
- /// Assign from a weak pointer.
- WeakPtr<T>& operator =(const WeakPtr<T>& rhs)
- {
- if (ptr_ == rhs.ptr_ && refCount_ == rhs.refCount_)
- return *this;
- ReleaseRef();
- ptr_ = rhs.ptr_;
- refCount_ = rhs.refCount_;
- AddRef();
- return *this;
- }
- /// Assign from another weak pointer allowing implicit upcasting.
- template <class U> WeakPtr<T>& operator =(const WeakPtr<U>& rhs)
- {
- if (ptr_ == rhs.ptr_ && refCount_ == rhs.refCount_)
- return *this;
- ReleaseRef();
- ptr_ = rhs.ptr_;
- refCount_ = rhs.refCount_;
- AddRef();
- return *this;
- }
- /// Assign from a raw pointer.
- WeakPtr<T>& operator =(T* ptr)
- {
- RefCount* refCount = ptr ? ptr->RefCountPtr() : 0;
- if (ptr_ == ptr && refCount_ == refCount)
- return *this;
- ReleaseRef();
- ptr_ = ptr;
- refCount_ = refCount;
- AddRef();
- return *this;
- }
- /// Convert to a shared pointer. If expired, return a null shared pointer.
- SharedPtr<T> Lock() const
- {
- if (Expired())
- return SharedPtr<T>();
- else
- return SharedPtr<T>(ptr_);
- }
- /// Return raw pointer. If expired, return null.
- T* Get() const
- {
- if (Expired())
- return 0;
- else
- return ptr_;
- }
- /// Point to the object.
- T* operator ->() const
- {
- T* rawPtr = Get();
- assert(rawPtr);
- return rawPtr;
- }
- /// Dereference the object.
- T& operator *() const
- {
- T* rawPtr = Get();
- assert(rawPtr);
- return *rawPtr;
- }
- /// Subscript the object if applicable.
- T& operator [](const int index)
- {
- T* rawPtr = Get();
- assert(rawPtr);
- return (*rawPtr)[index];
- }
- /// Test for equality with another weak pointer.
- template <class U> bool operator ==(const WeakPtr<U>& rhs) const { return ptr_ == rhs.ptr_ && refCount_ == rhs.refCount_; }
- /// Test for inequality with another weak pointer.
- template <class U> bool operator !=(const WeakPtr<U>& rhs) const { return ptr_ != rhs.ptr_ || refCount_ != rhs.refCount_; }
- /// Test for less than with another weak pointer.
- template <class U> bool operator <(const WeakPtr<U>& rhs) const { return ptr_ < rhs.ptr_; }
- /// Convert to a raw pointer, null if the object is expired.
- operator T*() const { return Get(); }
- /// Reset to null and release the weak reference.
- void Reset() { ReleaseRef(); }
- /// Perform a static cast from a weak pointer of another type.
- template <class U> void StaticCast(const WeakPtr<U>& rhs)
- {
- ReleaseRef();
- ptr_ = static_cast<T*>(rhs.Get());
- refCount_ = rhs.refCount_;
- AddRef();
- }
- /// Perform a dynamic cast from a weak pointer of another type.
- template <class U> void DynamicCast(const WeakPtr<U>& rhs)
- {
- ReleaseRef();
- ptr_ = dynamic_cast<T*>(rhs.Get());
- if (ptr_)
- {
- refCount_ = rhs.refCount_;
- AddRef();
- }
- else
- refCount_ = 0;
- }
- /// Check if the pointer is null.
- bool Null() const { return refCount_ == 0; }
- /// Check if the pointer is not null.
- bool NotNull() const { return refCount_ != 0; }
- /// Return the object's reference count, or 0 if null pointer or if object has expired.
- int Refs() const { return (refCount_ && refCount_->refs_ >= 0) ? refCount_->refs_ : 0; }
- /// Return the object's weak reference count.
- int WeakRefs() const
- {
- if (!Expired())
- return ptr_->WeakRefs();
- else
- return refCount_ ? refCount_->weakRefs_ : 0;
- }
- /// Return whether the object has expired. If null pointer, always return true.
- bool Expired() const { return refCount_ ? refCount_->refs_ < 0 : true; }
- /// Return pointer to the RefCount structure.
- RefCount* RefCountPtr() const { return refCount_; }
- /// Return hash value for HashSet & HashMap.
- unsigned ToHash() const { return (unsigned)((size_t)ptr_ / sizeof(T)); }
- private:
- template <class U> friend class WeakPtr;
- /// Add a weak reference to the object pointed to.
- void AddRef()
- {
- if (refCount_)
- {
- assert(refCount_->weakRefs_ >= 0);
- ++(refCount_->weakRefs_);
- }
- }
- /// Release the weak reference. Delete the Refcount structure if necessary.
- void ReleaseRef()
- {
- if (refCount_)
- {
- assert(refCount_->weakRefs_ > 0);
- --(refCount_->weakRefs_);
- if (Expired() && !refCount_->weakRefs_)
- delete refCount_;
- }
- ptr_ = 0;
- refCount_ = 0;
- }
- /// Pointer to the object.
- T* ptr_;
- /// Pointer to the RefCount structure.
- RefCount* refCount_;
- };
- /// Perform a static cast from one weak pointer type to another.
- template <class T, class U> WeakPtr<T> StaticCast(const WeakPtr<U>& ptr)
- {
- WeakPtr<T> ret;
- ret.StaticCast(ptr);
- return ret;
- }
- /// Perform a dynamic cast from one weak pointer type to another.
- template <class T, class U> WeakPtr<T> DynamicCast(const WeakPtr<U>& ptr)
- {
- WeakPtr<T> ret;
- ret.DynamicCast(ptr);
- return ret;
- }
- /// Delete object of type T. T must be complete. See boost::checked_delete.
- template<class T> inline void CheckedDelete(T* x)
- {
- // intentionally complex - simplification causes regressions
- typedef char type_must_be_complete[sizeof(T) ? 1 : -1];
- (void) sizeof(type_must_be_complete);
- delete x;
- }
- /// Unique pointer template class.
- template <class T> class UniquePtr
- {
- // Make non-copyable
- UniquePtr(const UniquePtr&);
- UniquePtr& operator=(const UniquePtr&);
- public:
- /// Construct empty.
- UniquePtr() : ptr_(0) { }
- /// Construct from pointer.
- explicit UniquePtr(T* ptr) : ptr_(ptr) { }
- /// Assign from pointer.
- UniquePtr& operator = (T* ptr)
- {
- Reset(ptr);
- return *this;
- }
- #if ATOMIC_CXX11
- /// Construct empty.
- UniquePtr(std::nullptr_t) { }
- /// Move-construct from UniquePtr.
- UniquePtr(UniquePtr && up) : ptr_(up.Detach()) { }
- /// Move-assign from UniquePtr.
- UniquePtr& operator = (UniquePtr && up)
- {
- Reset(up.Detach());
- return *this;
- }
- #endif
- /// Point to the object.
- T* operator ->() const
- {
- assert(ptr_);
- return ptr_;
- }
- /// Dereference the object.
- T& operator *() const
- {
- assert(ptr_);
- return *ptr_;
- }
- /// Test for less than with another unique pointer.
- template <class U>
- bool operator <(const UniquePtr<U>& rhs) const { return ptr_ < rhs.ptr_; }
- /// Test for equality with another unique pointer.
- template <class U>
- bool operator ==(const UniquePtr<U>& rhs) const { return ptr_ == rhs.ptr_; }
- /// Test for inequality with another unique pointer.
- template <class U>
- bool operator !=(const UniquePtr<U>& rhs) const { return ptr_ != rhs.ptr_; }
- /// Cast pointer to bool.
- operator bool() const { return !!ptr_; }
- /// Swap with another UniquePtr.
- void Swap(UniquePtr& up) { Swap(ptr_, up.ptr_); }
- /// Detach pointer from UniquePtr without destroying.
- T* Detach()
- {
- T* ptr = ptr_;
- ptr_ = 0;
- return ptr;
- }
- /// Check if the pointer is null.
- bool Null() const { return ptr_ == 0; }
- /// Check if the pointer is not null.
- bool NotNull() const { return ptr_ != 0; }
- /// Return the raw pointer.
- T* Get() const { return ptr_; }
- /// Reset.
- void Reset(T* ptr = 0)
- {
- CheckedDelete(ptr_);
- ptr_ = ptr;
- }
- /// Return hash value for HashSet & HashMap.
- unsigned ToHash() const { return (unsigned)((size_t)ptr_ / sizeof(T)); }
- /// Destruct.
- ~UniquePtr()
- {
- Reset();
- }
- private:
- T* ptr_;
- };
- /// Swap two UniquePtr-s.
- template <class T> void Swap(UniquePtr<T>& first, UniquePtr<T>& second)
- {
- first.Swap(second);
- }
- #if ATOMIC_CXX11
- /// Construct UniquePtr.
- template <class T, class ... Args> UniquePtr<T> MakeUnique(Args && ... args)
- {
- return UniquePtr<T>(new T(std::forward<Args>(args)...));
- }
- /// Construct SharedPtr.
- template <class T, class ... Args> SharedPtr<T> MakeShared(Args && ... args)
- {
- return SharedPtr<T>(new T(std::forward<Args>(args)...));
- }
- #endif
- }
|