very basic check for Qt integration. Another proof that Qt's build
[platform/upstream/dbus.git] / qt / dbus-qthread.cpp
1 /* -*- mode: C; c-file-style: "gnu" -*- */
2 /* dbus-qthread.cpp  Qt threads integration
3  *
4  * Copyright (C) 2002  Zack Rusin <zack@kde.org>
5  *
6  * Licensed under the Academic Free License version 1.2
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
21  *
22  */
23
24 #include <dbus/dbus.h>
25 #include <qmutex.h>
26
27 #if defined(QT_THREAD_SUPPORT)
28
29 static DBusMutex * dbus_qmutex_new    (void);
30 static void        dbus_qmutex_free   (DBusMutex *mutex);
31 static dbus_bool_t dbus_qmutex_lock   (DBusMutex *mutex);
32 static dbus_bool_t dbus_qmutex_unlock (DBusMutex *mutex);
33
34
35 static const DBusThreadFunctions functions =
36 {
37   DBUS_THREAD_FUNCTIONS_NEW_MASK |
38   DBUS_THREAD_FUNCTIONS_FREE_MASK |
39   DBUS_THREAD_FUNCTIONS_LOCK_MASK |
40   DBUS_THREAD_FUNCTIONS_UNLOCK_MASK,
41   dbus_qmutex_new,
42   dbus_qmutex_free,
43   dbus_qmutex_lock,
44   dbus_qmutex_unlock
45 };
46
47 static DBusMutex *
48 dbus_qmutex_new (void)
49 {
50   QMutex *mutex;
51   mutex = new QMutex;
52   return static_cast<DBusMutex*>( mutex );
53 }
54
55 static void
56 dbus_qmutex_free (DBusMutex *mutex)
57 {
58   QMutex * qmutex = static_cast<QMutex*>(mutex);
59   delete mutex;
60 }
61
62 static dbus_bool_t
63 dbus_qmutex_lock   (DBusMutex *mutex)
64 {
65   QMutex *qmutex = static_cast<QMutex*>(mutex);
66   qmutex->lock();
67   return TRUE;
68 }
69
70 static dbus_bool_t
71 dbus_qmutex_unlock (DBusMutex *mutex)
72 {
73   QMutex *qmutex = static_cast<QMutex*>(mutex);
74   qmutex->unlock();
75   return TRUE;
76 }
77
78 extern "C" {
79
80 void
81 dbus_qthread_init (void)
82 {
83   //Do we want to do anything else here?
84   dbus_threads_init (&functions);
85 }
86
87 }
88
89 #endif // QT_THREAD_SUPPORT