// Copyright 2016 PDFium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com #ifndef CORE_FXCRT_SHARED_COPY_ON_WRITE_H_ #define CORE_FXCRT_SHARED_COPY_ON_WRITE_H_ #include "core/fxcrt/fx_system.h" #include "core/fxcrt/retain_ptr.h" namespace fxcrt { // A shared object with Copy on Write semantics that makes it appear as // if each one were independent. template class SharedCopyOnWrite { public: SharedCopyOnWrite() {} SharedCopyOnWrite(const SharedCopyOnWrite& other) : m_pObject(other.m_pObject) {} ~SharedCopyOnWrite() {} template ObjClass* Emplace(Args... params) { m_pObject.Reset(new ObjClass(params...)); return m_pObject.Get(); } SharedCopyOnWrite& operator=(const SharedCopyOnWrite& that) { if (*this != that) m_pObject = that.m_pObject; return *this; } void SetNull() { m_pObject.Reset(); } const ObjClass* GetObject() const { return m_pObject.Get(); } template ObjClass* GetPrivateCopy(Args... params) { if (!m_pObject) return Emplace(params...); if (!m_pObject->HasOneRef()) m_pObject.Reset(new ObjClass(*m_pObject)); return m_pObject.Get(); } bool operator==(const SharedCopyOnWrite& that) const { return m_pObject == that.m_pObject; } bool operator!=(const SharedCopyOnWrite& that) const { return !(*this == that); } explicit operator bool() const { return !!m_pObject; } private: RetainPtr m_pObject; }; } // namespace fxcrt using fxcrt::SharedCopyOnWrite; #endif // CORE_FXCRT_SHARED_COPY_ON_WRITE_H_