mirror of
https://github.com/crystalidea/qt6windows7.git
synced 2025-01-24 04:44:31 +08:00
68 lines
1.6 KiB
C
68 lines
1.6 KiB
C
|
// Copyright (C) 2016 The Qt Company Ltd.
|
||
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
||
|
|
||
|
|
||
|
#ifndef QTHREADONCE_H
|
||
|
#define QTHREADONCE_H
|
||
|
|
||
|
#include <QtCore/qglobal.h>
|
||
|
#include <QtCore/qatomic.h>
|
||
|
|
||
|
|
||
|
class QOnceControl
|
||
|
{
|
||
|
public:
|
||
|
QOnceControl(QBasicAtomicInt *);
|
||
|
~QOnceControl();
|
||
|
|
||
|
bool mustRunCode();
|
||
|
void done();
|
||
|
|
||
|
private:
|
||
|
QBasicAtomicInt *gv;
|
||
|
union {
|
||
|
qint32 extra;
|
||
|
void *d;
|
||
|
};
|
||
|
};
|
||
|
|
||
|
#define Q_ONCE_GV_NAME2(prefix, line) prefix ## line
|
||
|
#define Q_ONCE_GV_NAME(prefix, line) Q_ONCE_GV_NAME2(prefix, line)
|
||
|
#define Q_ONCE_GV Q_ONCE_GV_NAME(_q_once_, __LINE__)
|
||
|
|
||
|
#define Q_ONCE \
|
||
|
static QBasicAtomicInt Q_ONCE_GV = Q_BASIC_ATOMIC_INITIALIZER(0); \
|
||
|
if (0){} else \
|
||
|
for (QOnceControl _control_(&Q_ONCE_GV); _control_.mustRunCode(); _control_.done())
|
||
|
|
||
|
template<typename T>
|
||
|
class QSingleton
|
||
|
{
|
||
|
// this is a POD-like class
|
||
|
struct Destructor
|
||
|
{
|
||
|
T *&pointer;
|
||
|
Destructor(T *&ptr) : pointer(ptr) {}
|
||
|
~Destructor() { delete pointer; }
|
||
|
};
|
||
|
|
||
|
public:
|
||
|
T *_q_value;
|
||
|
QBasicAtomicInt _q_guard;
|
||
|
|
||
|
inline T *value()
|
||
|
{
|
||
|
for (QOnceControl control(&_q_guard); control.mustRunCode(); control.done()) {
|
||
|
_q_value = new T();
|
||
|
static Destructor cleanup(_q_value);
|
||
|
}
|
||
|
return _q_value;
|
||
|
}
|
||
|
|
||
|
inline T& operator*() { return *value(); }
|
||
|
inline T* operator->() { return value(); }
|
||
|
inline operator T*() { return value(); }
|
||
|
};
|
||
|
|
||
|
#endif
|