cesium-native 0.46.0
Loading...
Searching...
No Matches
ReferenceCounted.h
1#pragma once
2
3#include <CesiumUtility/Assert.h>
4
5#include <atomic>
6#include <cstdint>
7
8#ifndef NDEBUG
9#include <thread>
10#endif
11
12namespace CesiumUtility {
13
15#ifndef NDEBUG
16template <bool isThreadSafe> class ThreadIdHolder;
17
18template <> class ThreadIdHolder<false> {
19 ThreadIdHolder() : _threadID(std::this_thread::get_id()) {}
20
21 std::thread::id _threadID;
22
23 template <typename T, bool isThreadSafe> friend class ReferenceCounted;
24};
25
26template <> class ThreadIdHolder<true> {};
27#endif
49template <typename T, bool isThreadSafe = true>
51#ifndef NDEBUG
52 : public ThreadIdHolder<isThreadSafe>
53#endif
54{
55public:
56 ~ReferenceCounted() noexcept { CESIUM_ASSERT(this->_referenceCount == 0); }
57
63 void addReference() const /*noexcept*/ {
64#ifndef NDEBUG
65 if constexpr (!isThreadSafe) {
66 CESIUM_ASSERT(std::this_thread::get_id() == this->_threadID);
67 }
68#endif
69
70 ++this->_referenceCount;
71 }
72
79 void releaseReference() const /*noexcept*/ {
80#ifndef NDEBUG
81 if constexpr (!isThreadSafe) {
82 CESIUM_ASSERT(std::this_thread::get_id() == this->_threadID);
83 }
84#endif
85
86 CESIUM_ASSERT(this->_referenceCount > 0);
87 const int32_t references = --this->_referenceCount;
88 if (references == 0) {
89 delete static_cast<const T*>(this);
90 }
91 }
92
96 std::int32_t getReferenceCount() const noexcept {
97 return this->_referenceCount;
98 }
99
100private:
101 ReferenceCounted() noexcept = default;
102 friend T;
103
104 using ThreadSafeCounter = std::atomic<std::int32_t>;
105 using NonThreadSafeCounter = std::int32_t;
106 using CounterType =
107 std::conditional_t<isThreadSafe, ThreadSafeCounter, NonThreadSafeCounter>;
108
109 mutable CounterType _referenceCount{0};
110};
111
122template <typename T>
124
135template <typename T>
137
138} // namespace CesiumUtility
A reference-counted base class, meant to be used with IntrusivePointer.
std::int32_t getReferenceCount() const noexcept
Returns the current reference count of this instance.
void releaseReference() const
Removes a counted reference from this object. When the last reference is removed, this method will de...
void addReference() const
Adds a counted reference to this object. Use CesiumUtility::IntrusivePointer instead of calling this ...
Utility classes for Cesium.
STL namespace.