summaryrefslogtreecommitdiffstats
path: root/src/corelib/tools/qshareddata.h
blob: 595efd7e3bf5aa7660d51b03fea5d47e8abb1a49 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
// Copyright (C) 2020 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 QSHAREDDATA_H
#define QSHAREDDATA_H

#include <QtCore/qatomic.h>
#include <QtCore/qcompare.h>
#include <QtCore/qhashfunctions.h>

QT_BEGIN_NAMESPACE

template <class T> class QSharedDataPointer;
template <class T> class QExplicitlySharedDataPointer;

namespace QtPrivate {
template <template <typename> class P, typename T> struct QSharedDataPointerTraits;
template <typename T> struct QSharedDataPointerTraits<QSharedDataPointer, T>
{
    static constexpr bool ImplicitlyDetaches = true;
    using Type = T;
    using pointer = T *;
    // for const-qualified functions:
    using constT = const T;
};

template <typename T> struct QSharedDataPointerTraits<QExplicitlySharedDataPointer, T>
{
    static constexpr bool ImplicitlyDetaches = false;
    using Type = T;
    using pointer = T *;
    // for const-qualified functions:
    using constT = T;
};
}

class QSharedData
{
public:
    mutable QAtomicInt ref;

    QSharedData() noexcept : ref(0) { }
    QSharedData(const QSharedData &) noexcept : ref(0) { }

    // using the assignment operator would lead to corruption in the ref-counting
    QSharedData &operator=(const QSharedData &) = delete;
    ~QSharedData() = default;
};

struct QAdoptSharedDataTag { explicit constexpr QAdoptSharedDataTag() = default; };

// CRTP common base class for both QSharedDataPointer and QExplicitlySharedDataPointer
template <template <typename> class P, typename T> class QSharedDataPointerBase
{
#ifndef Q_QDOC
    using Self = P<T>;
    using Traits = QtPrivate::QSharedDataPointerTraits<P, T>;
    using constT = typename Traits::constT;

protected:
    constexpr QSharedDataPointerBase(T *ptr = nullptr) noexcept : d(ptr) {}

public:
    // When adding anything public to this class, make sure to add the doc version to
    // both QSharedDataPointer and QExplicitlySharedDataPointer.

    using Type = T;
    using pointer = T *;

    void detach() { if (d && d->ref.loadRelaxed() != 1) detach_helper(); }
    T &operator*() { implicitlyDetach(); return *(d.get()); }
    constT &operator*() const { return *(d.get()); }
    T *operator->() { implicitlyDetach(); return d.get(); }
    constT *operator->() const noexcept { return d.get(); }
    operator T *() { implicitlyDetach(); return d.get(); }
    operator const T *() const noexcept { return d.get(); }
    T *data() { implicitlyDetach(); return d.get(); }
    T *get() { implicitlyDetach(); return d.get(); }
    const T *data() const noexcept { return d.get(); }
    const T *get() const noexcept { return d.get(); }
    const T *constData() const noexcept { return d.get(); }
    T *take() noexcept { return std::exchange(d, nullptr).get(); }

    void reset(T *ptr = nullptr) noexcept
    {
        if (ptr != d.get()) {
            if (ptr)
                ptr->ref.ref();
            T *old = std::exchange(d, Qt::totally_ordered_wrapper(ptr)).get();
            if (old && !old->ref.deref())
                destroy(old);
        }
    }

    operator bool () const noexcept { return d != nullptr; }
    bool operator!() const noexcept { return d == nullptr; }

    void swap(Self &other) noexcept
    { qt_ptr_swap(d, other.d); }

private:
    // The concrete class MUST override these, otherwise we will be calling
    // ourselves.
    T *clone() { return static_cast<Self *>(this)->clone(); }
    template <typename... Args> static T *create(Args &&... args)
    { return Self::create(std::forward(args)...); }
    static void destroy(T *ptr) { Self::destroy(ptr); }

    void implicitlyDetach()
    {
        if constexpr (Traits::ImplicitlyDetaches)
            static_cast<Self *>(this)->detach();
    }

    friend bool comparesEqual(const QSharedDataPointerBase &lhs, const QSharedDataPointerBase &rhs) noexcept
    { return lhs.d == rhs.d; }
    friend Qt::strong_ordering
    compareThreeWay(const QSharedDataPointerBase &lhs, const QSharedDataPointerBase &rhs) noexcept
    { return Qt::compareThreeWay(lhs.d, rhs.d); }

    friend bool comparesEqual(const QSharedDataPointerBase &lhs, const T *rhs) noexcept
    { return lhs.d == rhs; }
    friend Qt::strong_ordering
    compareThreeWay(const QSharedDataPointerBase &lhs, const T *rhs) noexcept
    { return Qt::compareThreeWay(lhs.d, rhs); }

    friend bool comparesEqual(const QSharedDataPointerBase &lhs, std::nullptr_t) noexcept
    { return lhs.d == nullptr; }
    friend Qt::strong_ordering
    compareThreeWay(const QSharedDataPointerBase &lhs, std::nullptr_t) noexcept
    { return Qt::compareThreeWay(lhs.d, nullptr); }

    friend size_t qHash(const QSharedDataPointerBase &ptr, size_t seed = 0) noexcept
    { return qHash(ptr.data(), seed); }

protected:
    void detach_helper();

    Qt::totally_ordered_wrapper<T *> d;
#endif // !Q_QDOC
};

template <typename T>
class QSharedDataPointer : public QSharedDataPointerBase<QSharedDataPointer, T>
{
    using Base = QSharedDataPointerBase<QSharedDataPointer, T>;
    friend Base;
public:
    typedef T Type;
    typedef T *pointer;

    void detach() { Base::detach(); }
#ifdef Q_QDOC
    T &operator*();
    const T &operator*() const;
    T *operator->();
    const T *operator->() const noexcept;
    operator T *();
    operator const T *() const noexcept;
    T *data();
    T *get();
    const T *data() const noexcept;
    const T *get() const noexcept;
    const T *constData() const noexcept;
    T *take() noexcept;
#endif

    Q_NODISCARD_CTOR
    QSharedDataPointer() noexcept : Base(nullptr) { }
    ~QSharedDataPointer() { if (d && !d->ref.deref()) destroy(d.get()); }

    Q_NODISCARD_CTOR
    explicit QSharedDataPointer(T *data) noexcept : Base(data)
    { if (d) d->ref.ref(); }
    Q_NODISCARD_CTOR
    QSharedDataPointer(T *data, QAdoptSharedDataTag) noexcept : Base(data)
    {}
    Q_NODISCARD_CTOR
    QSharedDataPointer(const QSharedDataPointer &o) noexcept : Base(o.d.get())
    { if (d) d->ref.ref(); }

    QSharedDataPointer &operator=(const QSharedDataPointer &o) noexcept
    {
        reset(o.d.get());
        return *this;
    }
    inline QSharedDataPointer &operator=(T *o) noexcept
    {
        reset(o);
        return *this;
    }
    Q_NODISCARD_CTOR
    QSharedDataPointer(QSharedDataPointer &&o) noexcept
        : Base(std::exchange(o.d, nullptr).get())
    {}
    QT_MOVE_ASSIGNMENT_OPERATOR_IMPL_VIA_MOVE_AND_SWAP(QSharedDataPointer)

#ifdef Q_QDOC
    void reset(T *ptr = nullptr) noexcept;

    operator bool () const noexcept;
    bool operator!() const noexcept;

    void swap(QSharedDataPointer &other) noexcept;
#else
    using Base::reset;
    using Base::swap;
#endif

protected:
    T *clone();
    template <typename... Args> static T *create(Args &&... args)
    { return new T(std::forward(args)...); }
    static void destroy(T *ptr) { delete ptr; }

private:
    Q_DECLARE_STRONGLY_ORDERED(QSharedDataPointer)
    Q_DECLARE_STRONGLY_ORDERED(QSharedDataPointer, T*)
    Q_DECLARE_STRONGLY_ORDERED(QSharedDataPointer, std::nullptr_t)

    using Base::d;
};

template <typename T>
class QExplicitlySharedDataPointer : public QSharedDataPointerBase<QExplicitlySharedDataPointer, T>
{
    using Base = QSharedDataPointerBase<QExplicitlySharedDataPointer, T>;
    friend Base;
public:
    typedef T Type;
    typedef T *pointer;

    // override to make explicit. Can use explicit(!ImplicitlyShared) once we
    // can depend on C++20.
    explicit operator T *() { return d.get(); }
    explicit operator const T *() const noexcept { return d.get(); }

    // override to make const. There is no const(cond), but we could use
    // requires(!ImplicitlyShared)
    T *data() const noexcept { return d.get(); }
    T *get() const noexcept { return d.get(); }

#ifdef Q_QDOC
    T &operator*() const;
    T *operator->() noexcept;
    T *operator->() const noexcept;
    T *data() const noexcept;
    T *get() const noexcept;
    const T *constData() const noexcept;
    T *take() noexcept;
#endif

    void detach() { Base::detach(); }

    Q_NODISCARD_CTOR
    QExplicitlySharedDataPointer() noexcept : Base(nullptr) { }
    ~QExplicitlySharedDataPointer() { if (d && !d->ref.deref()) delete d.get(); }

    Q_NODISCARD_CTOR
    explicit QExplicitlySharedDataPointer(T *data) noexcept : Base(data)
    { if (d) d->ref.ref(); }
    Q_NODISCARD_CTOR
    QExplicitlySharedDataPointer(T *data, QAdoptSharedDataTag) noexcept : Base(data)
    {}
    Q_NODISCARD_CTOR
    QExplicitlySharedDataPointer(const QExplicitlySharedDataPointer &o) noexcept : Base(o.d.get())
    { if (d) d->ref.ref(); }

    template<typename X>
    Q_NODISCARD_CTOR
    QExplicitlySharedDataPointer(const QExplicitlySharedDataPointer<X> &o) noexcept
#ifdef QT_ENABLE_QEXPLICITLYSHAREDDATAPOINTER_STATICCAST
#error This macro has been removed in Qt 6.9.
#endif
        : Base(o.data())
    { if (d) d->ref.ref(); }

    QExplicitlySharedDataPointer &operator=(const QExplicitlySharedDataPointer &o) noexcept
    {
        reset(o.d.get());
        return *this;
    }
    QExplicitlySharedDataPointer &operator=(T *o) noexcept
    {
        reset(o);
        return *this;
    }
    Q_NODISCARD_CTOR
    QExplicitlySharedDataPointer(QExplicitlySharedDataPointer &&o) noexcept
        : Base(std::exchange(o.d, nullptr).get())
    {}
    QT_MOVE_ASSIGNMENT_OPERATOR_IMPL_VIA_MOVE_AND_SWAP(QExplicitlySharedDataPointer)

#ifdef Q_QDOC
    void reset(T *ptr = nullptr) noexcept;

    operator bool () const noexcept;
    bool operator!() const noexcept;

    void swap(QExplicitlySharedDataPointer &other) noexcept;
#else
    using Base::swap;
    using Base::reset;
#endif

protected:
    T *clone();
    template <typename... Args> static T *create(Args &&... args)
    { return new T(std::forward(args)...); }
    static void destroy(T *ptr) { delete ptr; }

private:
    Q_DECLARE_STRONGLY_ORDERED(QExplicitlySharedDataPointer)
    Q_DECLARE_STRONGLY_ORDERED(QExplicitlySharedDataPointer, const T*)
    Q_DECLARE_STRONGLY_ORDERED(QExplicitlySharedDataPointer, std::nullptr_t)

    using Base::d;
};

// Declared here and as Q_OUTOFLINE_TEMPLATE to work-around MSVC bug causing missing symbols at link time.
template <typename T>
Q_INLINE_TEMPLATE T *QSharedDataPointer<T>::clone()
{
    return new T(*this->d);
}

template <typename T>
Q_INLINE_TEMPLATE T *QExplicitlySharedDataPointer<T>::clone()
{
    return new T(*this->d.get());
}

template <template <typename> class P, typename T> Q_OUTOFLINE_TEMPLATE void
QSharedDataPointerBase<P, T>::detach_helper()
{
    T *x = clone();
    x->ref.ref();
    if (!d->ref.deref())
        delete d.get();
    d.reset(x);
}

template <typename T>
void swap(QSharedDataPointer<T> &p1, QSharedDataPointer<T> &p2) noexcept
{ p1.swap(p2); }

template <typename T>
void swap(QExplicitlySharedDataPointer<T> &p1, QExplicitlySharedDataPointer<T> &p2) noexcept
{ p1.swap(p2); }

template<typename T> Q_DECLARE_TYPEINFO_BODY(QSharedDataPointer<T>, Q_RELOCATABLE_TYPE);
template<typename T> Q_DECLARE_TYPEINFO_BODY(QExplicitlySharedDataPointer<T>, Q_RELOCATABLE_TYPE);

#define QT_DECLARE_QSDP_SPECIALIZATION_DTOR(Class) \
    template<> QSharedDataPointer<Class>::~QSharedDataPointer();

#define QT_DECLARE_QSDP_SPECIALIZATION_DTOR_WITH_EXPORT(Class, ExportMacro) \
    template<> ExportMacro QSharedDataPointer<Class>::~QSharedDataPointer();

#define QT_DEFINE_QSDP_SPECIALIZATION_DTOR(Class) \
    template<> QSharedDataPointer<Class>::~QSharedDataPointer() \
    { \
        if (d && !d->ref.deref()) \
            delete d.get(); \
    }

#define QT_DECLARE_QESDP_SPECIALIZATION_DTOR(Class) \
    template<> QExplicitlySharedDataPointer<Class>::~QExplicitlySharedDataPointer();

#define QT_DECLARE_QESDP_SPECIALIZATION_DTOR_WITH_EXPORT(Class, ExportMacro) \
    template<> ExportMacro QExplicitlySharedDataPointer<Class>::~QExplicitlySharedDataPointer();

#define QT_DEFINE_QESDP_SPECIALIZATION_DTOR(Class) \
    template<> QExplicitlySharedDataPointer<Class>::~QExplicitlySharedDataPointer() \
    { \
        if (d && !d->ref.deref()) \
            delete d.get(); \
    }

QT_END_NAMESPACE

#endif // QSHAREDDATA_H