📄 qthreadstorage_win.cpp
字号:
/************************************************************************ Copyright (C) 2000-2005 Trolltech AS. All rights reserved.**** This file is part of the Qtopia Environment.** ** This program is free software; you can redistribute it and/or modify it** under the terms of the GNU General Public License as published by the** Free Software Foundation; either version 2 of the License, or (at your** option) any later version.** ** A copy of the GNU GPL license version 2 is included in this package as ** LICENSE.GPL.**** This program is distributed in the hope that it will be useful, but** WITHOUT ANY WARRANTY; without even the implied warranty of** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. ** See the GNU General Public License for more details.**** In addition, as a special exception Trolltech gives permission to link** the code of this program with Qtopia applications copyrighted, developed** and distributed by Trolltech under the terms of the Qtopia Personal Use** License Agreement. You must comply with the GNU General Public License** in all respects for all of the code used other than the applications** licensed under the Qtopia Personal Use License Agreement. If you modify** this file, you may extend this exception to your version of the file,** but you are not obligated to do so. If you do not wish to do so, delete** this exception statement from your version.** ** See http://www.trolltech.com/gpl/ for GPL licensing information.**** Contact info@trolltech.com if any conditions of this licensing are** not clear to you.************************************************************************/#ifdef QT_THREAD_SUPPORT#include "qplatformdefs.h"#include "qthreadstorage.h"#include <private/qthreadinstance_p.h>#include <private/qcriticalsection_p.h>#include <string.h>// #define QTHREADSTORAGE_DEBUG// keep this in sync with the implementation in qthreadstorage.cppstatic const int MAX_THREAD_STORAGE = 257; // 256 maximum + 1 used in QRegExpstatic bool thread_storage_init = FALSE;static struct { bool used; void (*func)( void * );} thread_storage_usage[MAX_THREAD_STORAGE];static void thread_storage_id( int &id, void (*func)( void * ), bool alloc ){ static QCriticalSection cs; cs.enter(); if ( alloc ) { // make sure things are initialized if ( ! thread_storage_init ) memset( thread_storage_usage, 0, sizeof( thread_storage_usage ) ); thread_storage_init = TRUE; for ( ; id < MAX_THREAD_STORAGE; ++id ) { if ( !thread_storage_usage[id].used ) break; } Q_ASSERT( id >= 0 && id < MAX_THREAD_STORAGE ); thread_storage_usage[id].used = TRUE; thread_storage_usage[id].func = func;#ifdef QTHREADSTORAGE_DEBUG qDebug( "QThreadStorageData: allocated id %d", id );#endif // QTHREADSTORAGE_DEBUG } else { thread_storage_usage[id].used = FALSE; thread_storage_usage[id].func = 0;#ifdef QTHREADSTORAGE_DEBUG qDebug( "QThreadStorageData: released id %d", id );#endif // QTHREADSTORAGE_DEBUG } cs.leave();}QThreadStorageData::QThreadStorageData( void (*func)( void * ) ) : id( 0 ){ thread_storage_id( id, func, TRUE );}QThreadStorageData::~QThreadStorageData(){ thread_storage_id( id, 0, FALSE );}void **QThreadStorageData::get() const{ QThreadInstance *d = QThreadInstance::current(); QMutexLocker locker( d->mutex() ); return d->thread_storage && d->thread_storage[id] ? &d->thread_storage[id] : 0;}void **QThreadStorageData::set( void *p ){ QThreadInstance *d = QThreadInstance::current(); QMutexLocker locker( d->mutex() ); if ( !d->thread_storage ) {#ifdef QTHREADSTORAGE_DEBUG qDebug( "QThreadStorageData: allocating storage for thread %lx", (unsigned long) GetCurrentThreadId() );#endif // QTHREADSTORAGE_DEBUG d->thread_storage = new void*[MAX_THREAD_STORAGE]; memset( d->thread_storage, 0, sizeof( void* ) * MAX_THREAD_STORAGE ); } // delete any previous data if ( d->thread_storage[id] ) thread_storage_usage[id].func( d->thread_storage[id] ); // store new data d->thread_storage[id] = p; return &d->thread_storage[id];}void QThreadStorageData::finish( void **thread_storage ){ if ( ! thread_storage ) return; // nothing to do#ifdef QTHREADSTORAGE_DEBUG qDebug( "QThreadStorageData: destroying storage for thread %lx", (unsigned long) GetCurrentThreadId() );#endif // QTHREADSTORAGE_DEBUG for ( int i = 0; i < MAX_THREAD_STORAGE; ++i ) { if ( ! thread_storage[i] ) continue; if ( ! thread_storage_usage[i].used ) {#ifdef QT_CHECK_STATE qWarning( "QThreadStorage: thread %lx exited after QThreadStorage destroyed", (unsigned long) GetCurrentThreadId() );#endif // QT_CHECK_STATE continue; } thread_storage_usage[i].func( thread_storage[i] ); } delete [] thread_storage;}#endif // QT_THREAD_SUPPORT
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -