qdbusthread.cpp
来自「奇趣公司比较新的qt/emd版本」· C++ 代码 · 共 176 行
CPP
176 行
/******************************************************************************** Copyright (C) 1992-2007 Trolltech ASA. All rights reserved.**** This file is part of the tools applications of the Qt Toolkit.**** This file may be used under the terms of the GNU General Public** License version 2.0 as published by the Free Software Foundation** and appearing in the file LICENSE.GPL included in the packaging of** this file. Please review the following information to ensure GNU** General Public Licensing requirements will be met:** http://trolltech.com/products/qt/licenses/licensing/opensource/**** If you are unsure which license is appropriate for your use, please** review the following information:** http://trolltech.com/products/qt/licenses/licensing/licensingoverview** or contact the sales department at sales@trolltech.com.**** In addition, as a special exception, Trolltech gives you certain** additional rights. These rights are described in the Trolltech GPL** Exception version 1.0, which can be found at** http://www.trolltech.com/products/qt/gplexception/ and in the file** GPL_EXCEPTION.txt in this package.**** In addition, as a special exception, Trolltech, as the sole copyright** holder for Qt Designer, grants users of the Qt/Eclipse Integration** plug-in the right for the Qt/Eclipse Integration to link to** functionality provided by Qt Designer and its related libraries.**** Trolltech reserves all rights not expressly granted herein.**** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.******************************************************************************/#include <QtCore/qmutex.h>#include <QtCore/qwaitcondition.h>#include <stdlib.h>#include <dbus/dbus.h>struct DBusMutex: public QMutex{ inline DBusMutex(QMutex::RecursionMode mode = QMutex::NonRecursive) : QMutex(mode) { } static DBusMutex* mutex_new() { return new DBusMutex; } static DBusMutex* recursive_mutex_new() { return new DBusMutex(QMutex::Recursive); } static void mutex_free(DBusMutex *mutex) { delete mutex; } static dbus_bool_t mutex_lock(DBusMutex *mutex) { mutex->lock(); return true; } static dbus_bool_t mutex_unlock(DBusMutex *mutex) { mutex->unlock(); return true; } static void recursive_mutex_lock(DBusMutex *mutex) { mutex_lock(mutex); } static void recursive_mutex_unlock(DBusMutex *mutex) { mutex_unlock(mutex); }};struct DBusCondVar: public QWaitCondition{ inline DBusCondVar() { } static DBusCondVar* condvar_new() { return new DBusCondVar; } static void condvar_free(DBusCondVar *cond) { delete cond; } static void condvar_wait(DBusCondVar *cond, DBusMutex *mutex) { cond->wait(mutex); } static dbus_bool_t condvar_wait_timeout(DBusCondVar *cond, DBusMutex *mutex, int msec) { return cond->wait(mutex, msec); } static void condvar_wake_one(DBusCondVar *cond) { cond->wakeOne(); } static void condvar_wake_all(DBusCondVar *cond) { cond->wakeAll(); }};bool qDBusInitThreads(){#ifdef dbus_threads_init_default return dbus_threads_init_default();#else // ### Disable the recursive mutex functions. static DBusThreadFunctions fcn = { DBUS_THREAD_FUNCTIONS_MUTEX_NEW_MASK | DBUS_THREAD_FUNCTIONS_MUTEX_FREE_MASK | DBUS_THREAD_FUNCTIONS_MUTEX_LOCK_MASK | DBUS_THREAD_FUNCTIONS_MUTEX_UNLOCK_MASK | DBUS_THREAD_FUNCTIONS_CONDVAR_NEW_MASK | DBUS_THREAD_FUNCTIONS_CONDVAR_FREE_MASK | DBUS_THREAD_FUNCTIONS_CONDVAR_WAIT_MASK | DBUS_THREAD_FUNCTIONS_CONDVAR_WAIT_TIMEOUT_MASK | DBUS_THREAD_FUNCTIONS_CONDVAR_WAKE_ONE_MASK | DBUS_THREAD_FUNCTIONS_CONDVAR_WAKE_ALL_MASK,#if 0 DBUS_THREAD_FUNCTIONS_RECURSIVE_MUTEX_NEW_MASK | DBUS_THREAD_FUNCTIONS_RECURSIVE_MUTEX_FREE_MASK | DBUS_THREAD_FUNCTIONS_RECURSIVE_MUTEX_LOCK_MASK | DBUS_THREAD_FUNCTIONS_RECURSIVE_MUTEX_UNLOCK_MASK,#endif DBusMutex::mutex_new, DBusMutex::mutex_free, DBusMutex::mutex_lock, DBusMutex::mutex_unlock, DBusCondVar::condvar_new, DBusCondVar::condvar_free, DBusCondVar::condvar_wait, DBusCondVar::condvar_wait_timeout, DBusCondVar::condvar_wake_one, DBusCondVar::condvar_wake_all,#if 0 DBusMutex::recursive_mutex_new, DBusMutex::mutex_free, DBusMutex::recursive_mutex_lock, DBusMutex::recursive_mutex_unlock,#else 0, 0, 0, 0,#endif 0, 0, 0, 0 }; dbus_threads_init(&fcn); return true;#endif}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?