// Copyright 2017 The Dawn Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. #ifndef COMMON_REFCOUNTED_H_ #define COMMON_REFCOUNTED_H_ #include #include class RefCounted { public: RefCounted(uint64_t payload = 0); uint64_t GetRefCountForTesting() const; uint64_t GetRefCountPayload() const; // Dawn API void Reference(); void Release(); protected: virtual ~RefCounted() = default; // A Derived class may override this if they require a custom deleter. virtual void DeleteThis(); private: std::atomic mRefCount; }; template class Ref { public: Ref() = default; constexpr Ref(std::nullptr_t) { } Ref& operator=(std::nullptr_t) { Release(); mPointee = nullptr; return *this; } template Ref(U* p) : mPointee(p) { static_assert(std::is_convertible::value, ""); Reference(); } Ref(const Ref& other) : mPointee(other.mPointee) { Reference(); } template Ref(const Ref& other) : mPointee(other.mPointee) { static_assert(std::is_convertible::value, ""); Reference(); } Ref& operator=(const Ref& other) { if (&other == this) return *this; other.Reference(); Release(); mPointee = other.mPointee; return *this; } template Ref& operator=(const Ref& other) { static_assert(std::is_convertible::value, ""); other.Reference(); Release(); mPointee = other.mPointee; return *this; } template Ref(Ref&& other) { static_assert(std::is_convertible::value, ""); mPointee = other.mPointee; other.mPointee = nullptr; } Ref& operator=(Ref&& other) { if (&other == this) return *this; Release(); mPointee = other.mPointee; other.mPointee = nullptr; return *this; } template Ref& operator=(Ref&& other) { static_assert(std::is_convertible::value, ""); Release(); mPointee = other.mPointee; other.mPointee = nullptr; return *this; } ~Ref() { Release(); mPointee = nullptr; } bool operator==(const T* other) const { return mPointee == other; } bool operator!=(const T* other) const { return mPointee != other; } operator bool() { return mPointee != nullptr; } const T& operator*() const { return *mPointee; } T& operator*() { return *mPointee; } const T* operator->() const { return mPointee; } T* operator->() { return mPointee; } const T* Get() const { return mPointee; } T* Get() { return mPointee; } T* Detach() { T* pointee = mPointee; mPointee = nullptr; return pointee; } private: // Friend is needed so that instances of Ref can assign mPointee // members of Ref. template friend class Ref; void Reference() const { if (mPointee != nullptr) { mPointee->Reference(); } } void Release() const { if (mPointee != nullptr) { mPointee->Release(); } } T* mPointee = nullptr; }; template Ref AcquireRef(T* pointee) { Ref ref(pointee); ref->Release(); return ref; } #endif // COMMON_REFCOUNTED_H_