Files

171 lines
2.9 KiB
C++
Raw Permalink Normal View History

2025-08-06 12:10:18 -04:00
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*
2025-08-06 12:10:18 -04:00
* (c) ZeroTier, Inc.
* https://www.zerotier.com/
*/
#ifndef ZT_SHAREDPTR_HPP
#define ZT_SHAREDPTR_HPP
#include "AtomicCounter.hpp"
2025-07-03 11:26:23 -04:00
#include "Mutex.hpp"
namespace ZeroTier {
/**
2017-07-07 06:50:40 -07:00
* Simple zero-overhead introspective reference counted pointer
*
* 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 06:50:40 -07:00
* AtomicCounter called __refCount.
*/
2025-07-03 11:26:23 -04:00
template <typename T> class SharedPtr {
public:
SharedPtr() : _ptr((T*)0)
{
}
SharedPtr(T* obj) : _ptr(obj)
{
++obj->__refCount;
}
SharedPtr(const SharedPtr& sp) : _ptr(sp._getAndInc())
{
}
~SharedPtr()
{
if (_ptr) {
2023-05-01 14:48:16 -04:00
if (--_ptr->__refCount <= 0) {
delete _ptr;
2023-05-01 14:48:16 -04:00
}
}
}
2025-07-03 11:26:23 -04:00
inline SharedPtr& operator=(const SharedPtr& sp)
{
if (_ptr != sp._ptr) {
2025-07-03 11:26:23 -04:00
T* p = sp._getAndInc();
if (_ptr) {
2023-05-01 14:48:16 -04:00
if (--_ptr->__refCount <= 0) {
delete _ptr;
2023-05-01 14:48:16 -04:00
}
}
_ptr = p;
}
return *this;
}
/**
* 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
*/
2025-07-03 11:26:23 -04:00
inline void set(T* ptr)
{
zero();
++ptr->__refCount;
_ptr = ptr;
}
/**
* Swap with another pointer 'for free' without ref count overhead
*
* @param with Pointer to swap with
*/
2025-07-03 11:26:23 -04:00
inline void swap(SharedPtr& with)
2013-07-13 13:26:27 -04:00
{
2025-07-03 11:26:23 -04:00
T* tmp = _ptr;
2013-07-13 13:26:27 -04:00
_ptr = with._ptr;
with._ptr = tmp;
}
2025-07-03 11:26:23 -04:00
inline operator bool() const
{
return (_ptr != (T*)0);
}
inline T& operator*() const
{
return *_ptr;
}
inline T* operator->() const
{
return _ptr;
}
/**
* @return Raw pointer to held object
*/
2025-07-03 11:26:23 -04:00
inline T* ptr() const
{
return _ptr;
}
/**
* Set this pointer to NULL
*/
inline void zero()
{
if (_ptr) {
2023-05-01 14:48:16 -04:00
if (--_ptr->__refCount <= 0) {
delete _ptr;
2023-05-01 14:48:16 -04:00
}
2025-07-03 11:26:23 -04:00
_ptr = (T*)0;
}
}
/**
* @return Number of references according to this object's ref count or 0 if NULL
*/
inline int references()
{
2023-05-01 14:48:16 -04:00
if (_ptr) {
return _ptr->__refCount.load();
2023-05-01 14:48:16 -04:00
}
return 0;
}
2025-07-03 11:26:23 -04: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);
}
2025-07-03 11:26:23 -04:00
private:
inline T* _getAndInc() const
{
2023-05-01 14:48:16 -04:00
if (_ptr) {
++_ptr->__refCount;
2023-05-01 14:48:16 -04:00
}
return _ptr;
}
2025-07-03 11:26:23 -04:00
T* _ptr;
};
2025-07-03 11:26:23 -04:00
} // namespace ZeroTier
#endif