/**************************************************************************** ** ** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the QtCore module of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:LGPL21$ ** Commercial License Usage ** Licensees holding valid commercial Qt licenses may use this file in ** accordance with the commercial license agreement provided with the ** Software or, alternatively, in accordance with the terms contained in ** a written agreement between you and Digia. For licensing terms and ** conditions see http://qt.digia.com/licensing. For further information ** use the contact form at http://qt.digia.com/contact-us. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser ** General Public License version 2.1 or version 3 as published by the Free ** Software Foundation and appearing in the file LICENSE.LGPLv21 and ** LICENSE.LGPLv3 included in the packaging of this file. Please review the ** following information to ensure the GNU Lesser General Public License ** requirements will be met: https://www.gnu.org/licenses/lgpl.html and ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Digia gives you certain additional ** rights. These rights are described in the Digia Qt LGPL Exception ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. ** ** $QT_END_LICENSE$ ** ****************************************************************************/ #ifndef QSHAREDDATA_H #define QSHAREDDATA_H #include #include #include QT_BEGIN_NAMESPACE template class QSharedDataPointer; class Q_CORE_EXPORT QSharedData { public: mutable QAtomicInt ref; inline QSharedData() : ref(0) { } inline QSharedData(const QSharedData &) : ref(0) { } private: // using the assignment operator would lead to corruption in the ref-counting QSharedData &operator=(const QSharedData &); }; template class QSharedDataPointer { public: typedef T Type; typedef T *pointer; inline void detach() { if (d && d->ref.load() != 1) detach_helper(); } inline T &operator*() { detach(); return *d; } inline const T &operator*() const { return *d; } inline T *operator->() { detach(); return d; } inline const T *operator->() const { return d; } inline operator T *() { detach(); return d; } inline operator const T *() const { return d; } inline T *data() { detach(); return d; } inline const T *data() const { return d; } inline const T *constData() const { return d; } inline bool operator==(const QSharedDataPointer &other) const { return d == other.d; } inline bool operator!=(const QSharedDataPointer &other) const { return d != other.d; } inline QSharedDataPointer() { d = 0; } inline ~QSharedDataPointer() { if (d && !d->ref.deref()) delete d; } explicit QSharedDataPointer(T *data) Q_DECL_NOTHROW; inline QSharedDataPointer(const QSharedDataPointer &o) : d(o.d) { if (d) d->ref.ref(); } inline QSharedDataPointer & operator=(const QSharedDataPointer &o) { if (o.d != d) { if (o.d) o.d->ref.ref(); T *old = d; d = o.d; if (old && !old->ref.deref()) delete old; } return *this; } inline QSharedDataPointer &operator=(T *o) { if (o != d) { if (o) o->ref.ref(); T *old = d; d = o; if (old && !old->ref.deref()) delete old; } return *this; } #ifdef Q_COMPILER_RVALUE_REFS QSharedDataPointer(QSharedDataPointer &&o) Q_DECL_NOTHROW : d(o.d) { o.d = Q_NULLPTR; } inline QSharedDataPointer &operator=(QSharedDataPointer &&other) Q_DECL_NOTHROW { qSwap(d, other.d); return *this; } #endif inline bool operator!() const { return !d; } inline void swap(QSharedDataPointer &other) Q_DECL_NOTHROW { qSwap(d, other.d); } protected: T *clone(); private: void detach_helper(); T *d; }; template class QExplicitlySharedDataPointer { public: typedef T Type; typedef T *pointer; inline T &operator*() const { return *d; } inline T *operator->() { return d; } inline T *operator->() const { return d; } inline T *data() const { return d; } inline const T *constData() const { return d; } inline void detach() { if (d && d->ref.load() != 1) detach_helper(); } inline void reset() { if(d && !d->ref.deref()) delete d; d = 0; } inline operator bool () const { return d != 0; } inline bool operator==(const QExplicitlySharedDataPointer &other) const { return d == other.d; } inline bool operator!=(const QExplicitlySharedDataPointer &other) const { return d != other.d; } inline bool operator==(const T *ptr) const { return d == ptr; } inline bool operator!=(const T *ptr) const { return d != ptr; } inline QExplicitlySharedDataPointer() { d = 0; } inline ~QExplicitlySharedDataPointer() { if (d && !d->ref.deref()) delete d; } explicit QExplicitlySharedDataPointer(T *data) Q_DECL_NOTHROW; inline QExplicitlySharedDataPointer(const QExplicitlySharedDataPointer &o) : d(o.d) { if (d) d->ref.ref(); } template inline QExplicitlySharedDataPointer(const QExplicitlySharedDataPointer &o) #ifdef QT_ENABLE_QEXPLICITLYSHAREDDATAPOINTER_STATICCAST : d(static_cast(o.data())) #else : d(o.data()) #endif { if(d) d->ref.ref(); } inline QExplicitlySharedDataPointer & operator=(const QExplicitlySharedDataPointer &o) { if (o.d != d) { if (o.d) o.d->ref.ref(); T *old = d; d = o.d; if (old && !old->ref.deref()) delete old; } return *this; } inline QExplicitlySharedDataPointer &operator=(T *o) { if (o != d) { if (o) o->ref.ref(); T *old = d; d = o; if (old && !old->ref.deref()) delete old; } return *this; } #ifdef Q_COMPILER_RVALUE_REFS inline QExplicitlySharedDataPointer(QExplicitlySharedDataPointer &&o) Q_DECL_NOTHROW : d(o.d) { o.d = Q_NULLPTR; } inline QExplicitlySharedDataPointer &operator=(QExplicitlySharedDataPointer &&other) Q_DECL_NOTHROW { qSwap(d, other.d); return *this; } #endif inline bool operator!() const { return !d; } inline void swap(QExplicitlySharedDataPointer &other) Q_DECL_NOTHROW { qSwap(d, other.d); } protected: T *clone(); private: void detach_helper(); T *d; }; template Q_INLINE_TEMPLATE QSharedDataPointer::QSharedDataPointer(T *adata) Q_DECL_NOTHROW : d(adata) { if (d) d->ref.ref(); } template Q_INLINE_TEMPLATE T *QSharedDataPointer::clone() { return new T(*d); } template Q_OUTOFLINE_TEMPLATE void QSharedDataPointer::detach_helper() { T *x = clone(); x->ref.ref(); if (!d->ref.deref()) delete d; d = x; } template Q_INLINE_TEMPLATE T *QExplicitlySharedDataPointer::clone() { return new T(*d); } template Q_OUTOFLINE_TEMPLATE void QExplicitlySharedDataPointer::detach_helper() { T *x = clone(); x->ref.ref(); if (!d->ref.deref()) delete d; d = x; } template Q_INLINE_TEMPLATE QExplicitlySharedDataPointer::QExplicitlySharedDataPointer(T *adata) Q_DECL_NOTHROW : d(adata) { if (d) d->ref.ref(); } template Q_INLINE_TEMPLATE void qSwap(QSharedDataPointer &p1, QSharedDataPointer &p2) { p1.swap(p2); } template Q_INLINE_TEMPLATE void qSwap(QExplicitlySharedDataPointer &p1, QExplicitlySharedDataPointer &p2) { p1.swap(p2); } QT_END_NAMESPACE namespace std { template Q_INLINE_TEMPLATE void swap(QT_PREPEND_NAMESPACE(QSharedDataPointer) &p1, QT_PREPEND_NAMESPACE(QSharedDataPointer) &p2) { p1.swap(p2); } template Q_INLINE_TEMPLATE void swap(QT_PREPEND_NAMESPACE(QExplicitlySharedDataPointer) &p1, QT_PREPEND_NAMESPACE(QExplicitlySharedDataPointer) &p2) { p1.swap(p2); } } QT_BEGIN_NAMESPACE template Q_INLINE_TEMPLATE uint qHash(const QSharedDataPointer &ptr, uint seed = 0) Q_DECL_NOTHROW { return qHash(ptr.data(), seed); } template Q_INLINE_TEMPLATE uint qHash(const QExplicitlySharedDataPointer &ptr, uint seed = 0) Q_DECL_NOTHROW { return qHash(ptr.data(), seed); } template Q_DECLARE_TYPEINFO_BODY(QSharedDataPointer, Q_MOVABLE_TYPE); template Q_DECLARE_TYPEINFO_BODY(QExplicitlySharedDataPointer, Q_MOVABLE_TYPE); QT_END_NAMESPACE #endif // QSHAREDDATA_H