aboutsummaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2019-08-01 15:19:37 -0700
committerChris Robinson <[email protected]>2019-08-01 15:19:37 -0700
commit0be823320d651130e79fbba33eff81676d59b09c (patch)
treec9c3f111530680363be4c8fb04e20b24ca12679d /common
parent57e7fff6f67f302d0202b2229a960c02c3cb3c5d (diff)
Add and use an intrusive_ptr type
Diffstat (limited to 'common')
-rw-r--r--common/intrusive_ptr.h65
1 files changed, 65 insertions, 0 deletions
diff --git a/common/intrusive_ptr.h b/common/intrusive_ptr.h
index 8f34aeac..85f019fd 100644
--- a/common/intrusive_ptr.h
+++ b/common/intrusive_ptr.h
@@ -43,6 +43,71 @@ public:
}
};
+
+template<typename T>
+class intrusive_ptr {
+ T *mPtr{nullptr};
+
+public:
+ intrusive_ptr() noexcept = default;
+ intrusive_ptr(const intrusive_ptr &rhs) noexcept : mPtr{rhs.mPtr}
+ { if(mPtr) mPtr->add_ref(); }
+ intrusive_ptr(intrusive_ptr&& rhs) noexcept : mPtr{rhs.mPtr}
+ { rhs.mPtr = nullptr; }
+ intrusive_ptr(std::nullptr_t) noexcept { }
+ explicit intrusive_ptr(T *ptr) noexcept : mPtr{ptr} { }
+ ~intrusive_ptr() { reset(); }
+
+ intrusive_ptr& operator=(const intrusive_ptr &rhs) noexcept
+ {
+ if(rhs.mPtr) rhs.mPtr->add_ref();
+ if(mPtr) mPtr->release();
+ mPtr = rhs.mPtr;
+ return *this;
+ }
+ intrusive_ptr& operator=(intrusive_ptr&& rhs) noexcept
+ { std::swap(mPtr, rhs.mPtr); return *this; }
+
+ operator bool() const noexcept { return mPtr != nullptr; }
+
+ T* operator->() const noexcept { return mPtr; }
+ T* get() const noexcept { return mPtr; }
+
+ void reset() noexcept
+ {
+ if(mPtr)
+ mPtr->release();
+ mPtr = nullptr;
+ }
+
+ T* release() noexcept
+ {
+ T *ret{mPtr};
+ mPtr = nullptr;
+ return ret;
+ }
+
+ void swap(intrusive_ptr &rhs) noexcept { std::swap(mPtr, rhs.mPtr); }
+ void swap(intrusive_ptr&& rhs) noexcept { std::swap(mPtr, rhs.mPtr); }
+};
+
+#define AL_DECL_OP(op) \
+template<typename T> \
+inline bool operator op(const intrusive_ptr<T> &lhs, const T *rhs) noexcept \
+{ return lhs.get() op rhs; } \
+template<typename T> \
+inline bool operator op(const T *lhs, const intrusive_ptr<T> &rhs) noexcept \
+{ return lhs op rhs.get(); }
+
+AL_DECL_OP(==)
+AL_DECL_OP(!=)
+AL_DECL_OP(<=)
+AL_DECL_OP(>=)
+AL_DECL_OP(<)
+AL_DECL_OP(>)
+
+#undef AL_DECL_OP
+
} // namespace al
#endif /* INTRUSIVE_PTR_H */