83 ~SharedAsset() { CESIUM_ASSERT(this->_referenceCount == 0); }
89 SharedAsset(
const SharedAsset& rhs)
90 : ExtensibleObject(rhs), _referenceCount(0), _pDepot(nullptr) {}
96 SharedAsset(SharedAsset&& rhs) noexcept
97 : ExtensibleObject(std::move(rhs)),
105 SharedAsset& operator=(
const SharedAsset& rhs)
noexcept {
107 CesiumUtility::ExtensibleObject::operator=(rhs);
116 SharedAsset& operator=(SharedAsset&& rhs)
noexcept {
118 CesiumUtility::ExtensibleObject::operator=(std::move(rhs));
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);
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;
140 pDepot->markDeletionCandidate(
141 *
static_cast<const T*
>(
this),
142 threadOwnsDepotLock);
145 delete static_cast<const T*
>(
this);
150 mutable std::atomic<std::int32_t> _referenceCount{0};
151 IDepotOwningAsset<T>* _pDepot{
nullptr};
154 template <
typename TAssetType,
typename TAssetKey>