2013-07-04 20:56:19 +00:00
|
|
|
/*
|
2015-02-17 21:11:34 +00:00
|
|
|
* ZeroTier One - Network Virtualization Everywhere
|
2018-01-08 22:33:28 +00:00
|
|
|
* Copyright (C) 2011-2018 ZeroTier, Inc. https://www.zerotier.com/
|
2013-07-04 20:56:19 +00:00
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2017-04-28 03:47:25 +00:00
|
|
|
*
|
|
|
|
* --
|
|
|
|
*
|
|
|
|
* You can be released from the requirements of the license by purchasing
|
|
|
|
* a commercial license. Buying such a license is mandatory as soon as you
|
|
|
|
* develop commercial closed-source software that incorporates or links
|
|
|
|
* directly against ZeroTier software without disclosing the source code
|
|
|
|
* of your own application.
|
2013-07-04 20:56:19 +00:00
|
|
|
*/
|
|
|
|
|
2013-12-07 00:49:20 +00:00
|
|
|
#ifndef ZT_SHAREDPTR_HPP
|
|
|
|
#define ZT_SHAREDPTR_HPP
|
2013-07-04 20:56:19 +00:00
|
|
|
|
|
|
|
#include "Mutex.hpp"
|
|
|
|
#include "AtomicCounter.hpp"
|
|
|
|
|
|
|
|
namespace ZeroTier {
|
|
|
|
|
|
|
|
/**
|
2017-07-07 13:50:40 +00:00
|
|
|
* Simple zero-overhead introspective reference counted pointer
|
2013-07-04 20:56:19 +00:00
|
|
|
*
|
|
|
|
* This is an introspective shared pointer. Classes that need to be reference
|
|
|
|
* counted must list this as a 'friend' and must have a private instance of
|
2017-07-07 13:50:40 +00:00
|
|
|
* AtomicCounter called __refCount.
|
2013-07-04 20:56:19 +00:00
|
|
|
*/
|
|
|
|
template<typename T>
|
|
|
|
class SharedPtr
|
|
|
|
{
|
|
|
|
public:
|
2017-07-07 13:50:40 +00:00
|
|
|
SharedPtr() : _ptr((T *)0) {}
|
|
|
|
SharedPtr(T *obj) : _ptr(obj) { ++obj->__refCount; }
|
|
|
|
SharedPtr(const SharedPtr &sp) : _ptr(sp._getAndInc()) {}
|
2013-07-04 20:56:19 +00:00
|
|
|
|
|
|
|
~SharedPtr()
|
|
|
|
{
|
|
|
|
if (_ptr) {
|
|
|
|
if (--_ptr->__refCount <= 0)
|
|
|
|
delete _ptr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
inline SharedPtr &operator=(const SharedPtr &sp)
|
|
|
|
{
|
|
|
|
if (_ptr != sp._ptr) {
|
|
|
|
T *p = sp._getAndInc();
|
|
|
|
if (_ptr) {
|
|
|
|
if (--_ptr->__refCount <= 0)
|
|
|
|
delete _ptr;
|
|
|
|
}
|
|
|
|
_ptr = p;
|
|
|
|
}
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2015-11-05 20:22:58 +00:00
|
|
|
/**
|
|
|
|
* Set to a naked pointer and increment its reference count
|
|
|
|
*
|
|
|
|
* This assumes this SharedPtr is NULL and that ptr is not a 'zombie.' No
|
|
|
|
* checks are performed.
|
|
|
|
*
|
|
|
|
* @param ptr Naked pointer to assign
|
|
|
|
*/
|
|
|
|
inline void setToUnsafe(T *ptr)
|
|
|
|
{
|
|
|
|
++ptr->__refCount;
|
|
|
|
_ptr = ptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Swap with another pointer 'for free' without ref count overhead
|
|
|
|
*
|
|
|
|
* @param with Pointer to swap with
|
|
|
|
*/
|
2013-07-13 17:26:27 +00:00
|
|
|
inline void swap(SharedPtr &with)
|
|
|
|
{
|
|
|
|
T *tmp = _ptr;
|
|
|
|
_ptr = with._ptr;
|
|
|
|
with._ptr = tmp;
|
|
|
|
}
|
|
|
|
|
2017-07-07 13:50:40 +00:00
|
|
|
inline operator bool() const { return (_ptr != (T *)0); }
|
|
|
|
inline T &operator*() const { return *_ptr; }
|
|
|
|
inline T *operator->() const { return _ptr; }
|
2013-07-04 20:56:19 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @return Raw pointer to held object
|
|
|
|
*/
|
2017-07-07 13:50:40 +00:00
|
|
|
inline T *ptr() const { return _ptr; }
|
2013-07-04 20:56:19 +00:00
|
|
|
|
|
|
|
/**
|
2016-09-02 19:34:02 +00:00
|
|
|
* Set this pointer to NULL
|
2013-07-04 20:56:19 +00:00
|
|
|
*/
|
|
|
|
inline void zero()
|
|
|
|
{
|
|
|
|
if (_ptr) {
|
|
|
|
if (--_ptr->__refCount <= 0)
|
|
|
|
delete _ptr;
|
2016-09-02 19:34:02 +00:00
|
|
|
_ptr = (T *)0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set this pointer to NULL if this is the only pointer holding the object
|
|
|
|
*
|
|
|
|
* @return True if object was deleted and SharedPtr is now NULL (or was already NULL)
|
|
|
|
*/
|
|
|
|
inline bool reclaimIfWeak()
|
|
|
|
{
|
|
|
|
if (_ptr) {
|
|
|
|
if (++_ptr->__refCount <= 2) {
|
|
|
|
if (--_ptr->__refCount <= 1) {
|
|
|
|
delete _ptr;
|
|
|
|
_ptr = (T *)0;
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
return true;
|
2013-07-04 20:56:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-07-07 13:50:40 +00:00
|
|
|
inline bool operator==(const SharedPtr &sp) const { return (_ptr == sp._ptr); }
|
|
|
|
inline bool operator!=(const SharedPtr &sp) const { return (_ptr != sp._ptr); }
|
|
|
|
inline bool operator>(const SharedPtr &sp) const { return (_ptr > sp._ptr); }
|
|
|
|
inline bool operator<(const SharedPtr &sp) const { return (_ptr < sp._ptr); }
|
|
|
|
inline bool operator>=(const SharedPtr &sp) const { return (_ptr >= sp._ptr); }
|
|
|
|
inline bool operator<=(const SharedPtr &sp) const { return (_ptr <= sp._ptr); }
|
2013-07-04 20:56:19 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
inline T *_getAndInc() const
|
|
|
|
{
|
|
|
|
if (_ptr)
|
|
|
|
++_ptr->__refCount;
|
|
|
|
return _ptr;
|
|
|
|
}
|
|
|
|
T *_ptr;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace ZeroTier
|
|
|
|
|
|
|
|
#endif
|