cesium-native 0.46.0
Loading...
Searching...
No Matches
SharedAsset.h
1#pragma once
2
3#include <CesiumUtility/Assert.h>
4#include <CesiumUtility/ExtensibleObject.h>
5#include <CesiumUtility/IDepotOwningAsset.h>
6#include <CesiumUtility/Library.h>
7
8#include <atomic>
9
10namespace CesiumAsync {
11template <typename TAssetType, typename TAssetKey> class SharedAssetDepot;
12}
13
14namespace CesiumUtility {
15
51template <typename T>
52class CESIUMUTILITY_API SharedAsset : public CesiumUtility::ExtensibleObject {
53public:
59 void addReference() const noexcept { this->addReference(false); }
60
67 void releaseReference() const noexcept { this->releaseReference(false); }
68
73 const IDepotOwningAsset<T>* getDepot() const { return this->_pDepot; }
74
79 IDepotOwningAsset<T>* getDepot() { return this->_pDepot; }
80
81private:
82 SharedAsset() = default;
83 ~SharedAsset() { CESIUM_ASSERT(this->_referenceCount == 0); }
84
89 SharedAsset(const SharedAsset& rhs)
90 : ExtensibleObject(rhs), _referenceCount(0), _pDepot(nullptr) {}
91
96 SharedAsset(SharedAsset&& rhs) noexcept
97 : ExtensibleObject(std::move(rhs)),
98 _referenceCount(0),
99 _pDepot(nullptr) {}
100
105 SharedAsset& operator=(const SharedAsset& rhs) noexcept {
106 if (&rhs != this) {
107 CesiumUtility::ExtensibleObject::operator=(rhs);
108 }
109 return *this;
110 }
111
116 SharedAsset& operator=(SharedAsset&& rhs) noexcept {
117 if (&rhs != this) {
118 CesiumUtility::ExtensibleObject::operator=(std::move(rhs));
119 }
120 return *this;
121 }
122
123private:
124 void addReference(bool threadOwnsDepotLock) const noexcept {
125 const int32_t prevReferences = this->_referenceCount++;
126 if (this->_pDepot && prevReferences <= 0) {
127 this->_pDepot->unmarkDeletionCandidate(
128 *static_cast<const T*>(this),
129 threadOwnsDepotLock);
130 }
131 }
132
133 void releaseReference(bool threadOwnsDepotLock) const noexcept {
134 CESIUM_ASSERT(this->_referenceCount > 0);
135 const int32_t references = --this->_referenceCount;
136 if (references == 0) {
137 IDepotOwningAsset<T>* pDepot = this->_pDepot;
138 if (pDepot) {
139 // Let the depot manage this object's lifetime.
140 pDepot->markDeletionCandidate(
141 *static_cast<const T*>(this),
142 threadOwnsDepotLock);
143 } else {
144 // No depot, so destroy this object directly.
145 delete static_cast<const T*>(this);
146 }
147 }
148 }
149
150 mutable std::atomic<std::int32_t> _referenceCount{0};
151 IDepotOwningAsset<T>* _pDepot{nullptr};
152
153 // To allow the depot to modify _pDepot.
154 template <typename TAssetType, typename TAssetKey>
156 friend T;
157};
158
159} // namespace CesiumUtility
A depot for CesiumUtility::SharedAsset instances, which are potentially shared between multiple objec...
Definition SharedAsset.h:11
An interface representing the depot that owns a SharedAsset. This interface is an implementation deta...
An asset that is potentially shared between multiple objects, such as an image shared between multipl...
Definition SharedAsset.h:52
IDepotOwningAsset< T > * getDepot()
Gets the shared asset depot that owns this asset, or nullptr if this asset is independent of an asset...
Definition SharedAsset.h:79
void releaseReference() const noexcept
Removes a counted reference from this object. When the last reference is removed, this method will de...
Definition SharedAsset.h:67
const IDepotOwningAsset< T > * getDepot() const
Gets the shared asset depot that owns this asset, or nullptr if this asset is independent of an asset...
Definition SharedAsset.h:73
void addReference() const noexcept
Adds a counted reference to this object. Use CesiumUtility::IntrusivePointer instead of calling this ...
Definition SharedAsset.h:59
Classes that support asynchronous operations.
Utility classes for Cesium.
The base class for objects that have extensions and extras.