2011-04-27 10:05:43 +00:00
|
|
|
/****************************************************************************
|
|
|
|
**
|
2016-01-15 07:08:27 +00:00
|
|
|
** Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
** Contact: https://www.qt.io/licensing/
|
2011-04-27 10:05:43 +00:00
|
|
|
**
|
|
|
|
** This file is part of the QtCore module of the Qt Toolkit.
|
|
|
|
**
|
2016-01-15 07:08:27 +00:00
|
|
|
** $QT_BEGIN_LICENSE:LGPL$
|
2012-09-19 12:28:29 +00:00
|
|
|
** 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
|
2015-01-28 08:44:43 +00:00
|
|
|
** a written agreement between you and The Qt Company. For licensing terms
|
2016-01-15 07:08:27 +00:00
|
|
|
** and conditions see https://www.qt.io/terms-conditions. For further
|
|
|
|
** information use the contact form at https://www.qt.io/contact-us.
|
2012-09-19 12:28:29 +00:00
|
|
|
**
|
2011-04-27 10:05:43 +00:00
|
|
|
** GNU Lesser General Public License Usage
|
2012-09-19 12:28:29 +00:00
|
|
|
** Alternatively, this file may be used under the terms of the GNU Lesser
|
2016-01-15 07:08:27 +00:00
|
|
|
** General Public License version 3 as published by the Free Software
|
|
|
|
** Foundation and appearing in the file LICENSE.LGPL3 included in the
|
|
|
|
** packaging of this file. Please review the following information to
|
|
|
|
** ensure the GNU Lesser General Public License version 3 requirements
|
|
|
|
** will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
|
2012-09-19 12:28:29 +00:00
|
|
|
**
|
2016-01-15 07:08:27 +00:00
|
|
|
** GNU General Public License Usage
|
|
|
|
** Alternatively, this file may be used under the terms of the GNU
|
|
|
|
** General Public License version 2.0 or (at your option) the GNU General
|
|
|
|
** Public license version 3 or any later version approved by the KDE Free
|
|
|
|
** Qt Foundation. The licenses are as published by the Free Software
|
|
|
|
** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
|
|
|
|
** included in the packaging of this file. Please review the following
|
|
|
|
** information to ensure the GNU General Public License requirements will
|
|
|
|
** be met: https://www.gnu.org/licenses/gpl-2.0.html and
|
|
|
|
** https://www.gnu.org/licenses/gpl-3.0.html.
|
2011-04-27 10:05:43 +00:00
|
|
|
**
|
|
|
|
** $QT_END_LICENSE$
|
|
|
|
**
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include "qthreadstorage.h"
|
|
|
|
|
|
|
|
#ifndef QT_NO_THREAD
|
|
|
|
#include "qthread.h"
|
|
|
|
#include "qthread_p.h"
|
|
|
|
#include "qmutex.h"
|
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
|
|
|
|
|
|
// #define THREADSTORAGE_DEBUG
|
|
|
|
#ifdef THREADSTORAGE_DEBUG
|
|
|
|
# define DEBUG_MSG qtsDebug
|
|
|
|
|
|
|
|
# include <stdio.h>
|
|
|
|
# include <stdarg.h>
|
|
|
|
void qtsDebug(const char *fmt, ...)
|
|
|
|
{
|
|
|
|
va_list va;
|
|
|
|
va_start(va, fmt);
|
|
|
|
|
|
|
|
fprintf(stderr, "QThreadStorage: ");
|
|
|
|
vfprintf(stderr, fmt, va);
|
|
|
|
fprintf(stderr, "\n");
|
|
|
|
|
|
|
|
va_end(va);
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
# define DEBUG_MSG if(false)qDebug
|
|
|
|
#endif
|
|
|
|
|
2012-01-29 19:32:22 +00:00
|
|
|
static QBasicMutex destructorsMutex;
|
2011-04-27 10:05:43 +00:00
|
|
|
typedef QVector<void (*)(void *)> DestructorMap;
|
|
|
|
Q_GLOBAL_STATIC(DestructorMap, destructors)
|
|
|
|
|
|
|
|
QThreadStorageData::QThreadStorageData(void (*func)(void *))
|
|
|
|
{
|
2012-01-29 19:32:22 +00:00
|
|
|
QMutexLocker locker(&destructorsMutex);
|
2011-04-27 10:05:43 +00:00
|
|
|
DestructorMap *destr = destructors();
|
|
|
|
if (!destr) {
|
|
|
|
/*
|
|
|
|
the destructors vector has already been destroyed, yet a new
|
|
|
|
QThreadStorage is being allocated. this can only happen during global
|
|
|
|
destruction, at which point we assume that there is only one thread.
|
|
|
|
in order to keep QThreadStorage working, we need somewhere to store
|
|
|
|
the data, best place we have in this situation is at the tail of the
|
|
|
|
current thread's tls vector. the destructor is ignored, since we have
|
|
|
|
no where to store it, and no way to actually call it.
|
|
|
|
*/
|
|
|
|
QThreadData *data = QThreadData::current();
|
|
|
|
id = data->tls.count();
|
|
|
|
DEBUG_MSG("QThreadStorageData: Allocated id %d, destructor %p cannot be stored", id, func);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
for (id = 0; id < destr->count(); id++) {
|
|
|
|
if (destr->at(id) == 0)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (id == destr->count()) {
|
|
|
|
destr->append(func);
|
|
|
|
} else {
|
|
|
|
(*destr)[id] = func;
|
|
|
|
}
|
|
|
|
DEBUG_MSG("QThreadStorageData: Allocated id %d, destructor %p", id, func);
|
|
|
|
}
|
|
|
|
|
|
|
|
QThreadStorageData::~QThreadStorageData()
|
|
|
|
{
|
|
|
|
DEBUG_MSG("QThreadStorageData: Released id %d", id);
|
2012-01-29 19:32:22 +00:00
|
|
|
QMutexLocker locker(&destructorsMutex);
|
2011-04-27 10:05:43 +00:00
|
|
|
if (destructors())
|
|
|
|
(*destructors())[id] = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void **QThreadStorageData::get() const
|
|
|
|
{
|
|
|
|
QThreadData *data = QThreadData::current();
|
|
|
|
if (!data) {
|
|
|
|
qWarning("QThreadStorage::get: QThreadStorage can only be used with threads started with QThread");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
QVector<void *> &tls = data->tls;
|
|
|
|
if (tls.size() <= id)
|
|
|
|
tls.resize(id + 1);
|
|
|
|
void **v = &tls[id];
|
|
|
|
|
|
|
|
DEBUG_MSG("QThreadStorageData: Returning storage %d, data %p, for thread %p",
|
|
|
|
id,
|
|
|
|
*v,
|
2015-08-01 13:50:00 +00:00
|
|
|
data->thread.load());
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
return *v ? v : 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void **QThreadStorageData::set(void *p)
|
|
|
|
{
|
|
|
|
QThreadData *data = QThreadData::current();
|
|
|
|
if (!data) {
|
|
|
|
qWarning("QThreadStorage::set: QThreadStorage can only be used with threads started with QThread");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
QVector<void *> &tls = data->tls;
|
|
|
|
if (tls.size() <= id)
|
|
|
|
tls.resize(id + 1);
|
|
|
|
|
|
|
|
void *&value = tls[id];
|
|
|
|
// delete any previous data
|
|
|
|
if (value != 0) {
|
|
|
|
DEBUG_MSG("QThreadStorageData: Deleting previous storage %d, data %p, for thread %p",
|
|
|
|
id,
|
|
|
|
value,
|
2015-08-01 13:50:00 +00:00
|
|
|
data->thread.load());
|
2011-04-27 10:05:43 +00:00
|
|
|
|
2012-01-29 19:32:22 +00:00
|
|
|
QMutexLocker locker(&destructorsMutex);
|
2011-04-27 10:05:43 +00:00
|
|
|
DestructorMap *destr = destructors();
|
|
|
|
void (*destructor)(void *) = destr ? destr->value(id) : 0;
|
|
|
|
locker.unlock();
|
|
|
|
|
|
|
|
void *q = value;
|
|
|
|
value = 0;
|
|
|
|
|
|
|
|
if (destructor)
|
|
|
|
destructor(q);
|
|
|
|
}
|
|
|
|
|
|
|
|
// store new data
|
|
|
|
value = p;
|
2015-08-01 13:50:00 +00:00
|
|
|
DEBUG_MSG("QThreadStorageData: Set storage %d for thread %p to %p", id, data->thread.load(), p);
|
2011-04-27 10:05:43 +00:00
|
|
|
return &value;
|
|
|
|
}
|
|
|
|
|
|
|
|
void QThreadStorageData::finish(void **p)
|
|
|
|
{
|
|
|
|
QVector<void *> *tls = reinterpret_cast<QVector<void *> *>(p);
|
2012-01-29 19:32:22 +00:00
|
|
|
if (!tls || tls->isEmpty() || !destructors())
|
2011-04-27 10:05:43 +00:00
|
|
|
return; // nothing to do
|
|
|
|
|
|
|
|
DEBUG_MSG("QThreadStorageData: Destroying storage for thread %p", QThread::currentThread());
|
|
|
|
while (!tls->isEmpty()) {
|
|
|
|
void *&value = tls->last();
|
|
|
|
void *q = value;
|
|
|
|
value = 0;
|
|
|
|
int i = tls->size() - 1;
|
|
|
|
tls->resize(i);
|
|
|
|
|
|
|
|
if (!q) {
|
|
|
|
// data already deleted
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2012-01-29 19:32:22 +00:00
|
|
|
QMutexLocker locker(&destructorsMutex);
|
2011-04-27 10:05:43 +00:00
|
|
|
void (*destructor)(void *) = destructors()->value(i);
|
|
|
|
locker.unlock();
|
|
|
|
|
|
|
|
if (!destructor) {
|
|
|
|
if (QThread::currentThread())
|
|
|
|
qWarning("QThreadStorage: Thread %p exited after QThreadStorage %d destroyed",
|
|
|
|
QThread::currentThread(), i);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
destructor(q); //crash here might mean the thread exited after qthreadstorage was destroyed
|
|
|
|
|
|
|
|
if (tls->size() > i) {
|
|
|
|
//re reset the tls in case it has been recreated by its own destructor.
|
|
|
|
(*tls)[i] = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
tls->clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
/*!
|
|
|
|
\class QThreadStorage
|
2012-08-23 10:22:38 +00:00
|
|
|
\inmodule QtCore
|
2011-04-27 10:05:43 +00:00
|
|
|
\brief The QThreadStorage class provides per-thread data storage.
|
|
|
|
|
|
|
|
\threadsafe
|
|
|
|
|
|
|
|
\ingroup thread
|
|
|
|
|
|
|
|
QThreadStorage is a template class that provides per-thread data
|
|
|
|
storage.
|
|
|
|
|
|
|
|
The setLocalData() function stores a single thread-specific value
|
|
|
|
for the calling thread. The data can be accessed later using
|
|
|
|
localData().
|
|
|
|
|
|
|
|
The hasLocalData() function allows the programmer to determine if
|
|
|
|
data has previously been set using the setLocalData() function.
|
|
|
|
This is also useful for lazy initializiation.
|
|
|
|
|
|
|
|
If T is a pointer type, QThreadStorage takes ownership of the data
|
|
|
|
(which must be created on the heap with \c new) and deletes it when
|
|
|
|
the thread exits, either normally or via termination.
|
|
|
|
|
|
|
|
For example, the following code uses QThreadStorage to store a
|
|
|
|
single cache for each thread that calls the cacheObject() and
|
|
|
|
removeFromCache() functions. The cache is automatically
|
|
|
|
deleted when the calling thread exits.
|
|
|
|
|
2012-03-20 18:37:07 +00:00
|
|
|
\snippet threads/threads.cpp 7
|
|
|
|
\snippet threads/threads.cpp 8
|
|
|
|
\snippet threads/threads.cpp 9
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
\section1 Caveats
|
|
|
|
|
|
|
|
\list
|
|
|
|
|
2012-03-01 14:28:31 +00:00
|
|
|
\li The QThreadStorage destructor does not delete per-thread data.
|
2011-04-27 10:05:43 +00:00
|
|
|
QThreadStorage only deletes per-thread data when the thread exits
|
|
|
|
or when setLocalData() is called multiple times.
|
|
|
|
|
2012-03-01 14:28:31 +00:00
|
|
|
\li QThreadStorage can be used to store data for the \c main()
|
2011-04-27 10:05:43 +00:00
|
|
|
thread. QThreadStorage deletes all data set for the \c main()
|
|
|
|
thread when QApplication is destroyed, regardless of whether or
|
|
|
|
not the \c main() thread has actually finished.
|
|
|
|
|
|
|
|
\endlist
|
|
|
|
|
|
|
|
\sa QThread
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*!
|
2018-01-03 12:44:58 +00:00
|
|
|
\fn template <class T> QThreadStorage<T>::QThreadStorage()
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
Constructs a new per-thread data storage object.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*!
|
2018-01-03 12:44:58 +00:00
|
|
|
\fn template <class T> QThreadStorage<T>::~QThreadStorage()
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
Destroys the per-thread data storage object.
|
|
|
|
|
|
|
|
Note: The per-thread data stored is not deleted. Any data left
|
|
|
|
in QThreadStorage is leaked. Make sure that all threads using
|
|
|
|
QThreadStorage have exited before deleting the QThreadStorage.
|
|
|
|
|
|
|
|
\sa hasLocalData()
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*!
|
2018-01-03 12:44:58 +00:00
|
|
|
\fn template <class T> bool QThreadStorage<T>::hasLocalData() const
|
2011-04-27 10:05:43 +00:00
|
|
|
|
2013-10-02 14:51:05 +00:00
|
|
|
If T is a pointer type, returns \c true if the calling thread has
|
2011-04-27 10:05:43 +00:00
|
|
|
non-zero data available.
|
|
|
|
|
|
|
|
If T is a value type, returns whether the data has already been
|
|
|
|
constructed by calling setLocalData or localData.
|
|
|
|
|
|
|
|
\sa localData()
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*!
|
2018-01-03 12:44:58 +00:00
|
|
|
\fn template <class T> T &QThreadStorage<T>::localData()
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
Returns a reference to the data that was set by the calling
|
|
|
|
thread.
|
|
|
|
|
|
|
|
If no data has been set, this will create a default constructed
|
|
|
|
instance of type T.
|
|
|
|
|
|
|
|
\sa hasLocalData()
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*!
|
2018-01-03 12:44:58 +00:00
|
|
|
\fn template <class T> const T QThreadStorage<T>::localData() const
|
2011-04-27 10:05:43 +00:00
|
|
|
\overload
|
|
|
|
|
|
|
|
Returns a copy of the data that was set by the calling thread.
|
|
|
|
|
|
|
|
\sa hasLocalData()
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*!
|
2018-01-03 12:44:58 +00:00
|
|
|
\fn template <class T> void QThreadStorage<T>::setLocalData(T data)
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
Sets the local data for the calling thread to \a data. It can be
|
|
|
|
accessed later using the localData() functions.
|
|
|
|
|
|
|
|
If T is a pointer type, QThreadStorage takes ownership of the data
|
|
|
|
and deletes it automatically either when the thread exits (either
|
|
|
|
normally or via termination) or when setLocalData() is called again.
|
|
|
|
|
|
|
|
\sa localData(), hasLocalData()
|
|
|
|
*/
|
|
|
|
|
|
|
|
#endif // QT_NO_THREAD
|
|
|
|
|
|
|
|
QT_END_NAMESPACE
|