// Copyright (C) 2016 The Qt Company Ltd. // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only #ifndef QPOINTER_H #define QPOINTER_H #include #include #include #ifndef QT_NO_QOBJECT QT_BEGIN_NAMESPACE class QVariant; template class QPointer { static_assert(!std::is_pointer::value, "QPointer's template type must not be a pointer type"); template using if_convertible = std::enable_if_t, bool>; template friend class QPointer; using QObjectType = typename std::conditional::value, const QObject, QObject>::type; QWeakPointer wp; public: Q_NODISCARD_CTOR QPointer() noexcept = default; Q_NODISCARD_CTOR constexpr QPointer(std::nullptr_t) noexcept : QPointer{} {} Q_WEAK_OVERLOAD Q_NODISCARD_CTOR inline QPointer(T *p) : wp(p, true) { } // compiler-generated copy/move ctor/assignment operators are fine! // compiler-generated dtor is fine! template = true> Q_NODISCARD_CTOR QPointer(QPointer &&other) noexcept : wp(std::exchange(other.wp, nullptr).internalData(), true) {} template = true> Q_NODISCARD_CTOR QPointer(const QPointer &other) noexcept : wp(other.wp.internalData(), true) {} template = true> QPointer &operator=(const QPointer &other) noexcept { QPointer(other).swap(*this); return *this; } template = true> QPointer &operator=(QPointer &&other) noexcept { QPointer(std::move(other)).swap(*this); return *this; } #ifdef Q_QDOC // Stop qdoc from complaining about missing function ~QPointer(); #endif inline void swap(QPointer &other) noexcept { wp.swap(other.wp); } inline QPointer &operator=(T* p) { wp.assign(static_cast(p)); return *this; } T* data() const noexcept { return static_cast(wp.internalData()); } T* get() const noexcept { return data(); } T* operator->() const noexcept { return data(); } T& operator*() const noexcept { return *data(); } operator T*() const noexcept { return data(); } bool isNull() const noexcept { return wp.isNull(); } explicit operator bool() const noexcept { return !isNull(); } void clear() noexcept { wp.clear(); } friend void swap(QPointer &lhs, QPointer &rhs) noexcept { lhs.swap(rhs); } private: template friend bool comparesEqual(const QPointer &lhs, const QPointer &rhs) noexcept { return lhs.data() == rhs.data(); } QT_DECLARE_EQUALITY_OPERATORS_HELPER(QPointer, QPointer, /* non-constexpr */, noexcept(true), template ) template friend bool comparesEqual(const QPointer &lhs, X *rhs) noexcept { return lhs.data() == rhs; } Q_DECLARE_EQUALITY_COMPARABLE(QPointer, X*, template ) friend bool comparesEqual(const QPointer &lhs, std::nullptr_t) noexcept { return lhs.isNull(); } Q_DECLARE_EQUALITY_COMPARABLE(QPointer, std::nullptr_t) }; template Q_DECLARE_TYPEINFO_BODY(QPointer, Q_RELOCATABLE_TYPE); template QPointer qPointerFromVariant(const QVariant &variant) { const auto wp = QtSharedPointer::weakPointerFromVariant_internal(variant); return QPointer{qobject_cast(QtPrivate::EnableInternalData::internalData(wp))}; } QT_END_NAMESPACE #endif // QT_NO_QOBJECT #endif // QPOINTER_H