~oif-team/ubuntu/natty/qt4-x11/xi2.1

« back to all changes in this revision

Viewing changes to src/corelib/thread/qmutex.h

  • Committer: Bazaar Package Importer
  • Author(s): Adam Conrad
  • Date: 2005-08-24 04:09:09 UTC
  • Revision ID: james.westby@ubuntu.com-20050824040909-xmxe9jfr4a0w5671
Tags: upstream-4.0.0
ImportĀ upstreamĀ versionĀ 4.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/****************************************************************************
 
2
**
 
3
** Copyright (C) 1992-2005 Trolltech AS. All rights reserved.
 
4
**
 
5
** This file is part of the core module of the Qt Toolkit.
 
6
**
 
7
** This file may be distributed under the terms of the Q Public License
 
8
** as defined by Trolltech AS of Norway and appearing in the file
 
9
** LICENSE.QPL included in the packaging of this file.
 
10
**
 
11
** This file may be distributed and/or modified under the terms of the
 
12
** GNU General Public License version 2 as published by the Free Software
 
13
** Foundation and appearing in the file LICENSE.GPL included in the
 
14
** packaging of this file.
 
15
**
 
16
** See http://www.trolltech.com/pricing.html or email sales@trolltech.com for
 
17
**   information about Qt Commercial License Agreements.
 
18
** See http://www.trolltech.com/qpl/ for QPL licensing information.
 
19
** See http://www.trolltech.com/gpl/ for GPL licensing information.
 
20
**
 
21
** Contact info@trolltech.com if any conditions of this licensing are
 
22
** not clear to you.
 
23
**
 
24
** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
 
25
** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
 
26
**
 
27
****************************************************************************/
 
28
 
 
29
#ifndef QMUTEX_H
 
30
#define QMUTEX_H
 
31
 
 
32
#include "QtCore/qglobal.h"
 
33
 
 
34
#ifndef QT_NO_THREAD
 
35
 
 
36
class QMutexPrivate;
 
37
 
 
38
class Q_CORE_EXPORT QMutex
 
39
{
 
40
    friend class QWaitCondition;
 
41
    friend class QWaitConditionPrivate;
 
42
 
 
43
public:
 
44
    enum RecursionMode { NonRecursive, Recursive };
 
45
 
 
46
    explicit QMutex(RecursionMode mode = NonRecursive);
 
47
    ~QMutex();
 
48
 
 
49
    void lock();
 
50
    bool tryLock();
 
51
    void unlock();
 
52
 
 
53
#if defined(QT3_SUPPORT)
 
54
    inline QT3_SUPPORT bool locked()
 
55
    {
 
56
        if (!tryLock())
 
57
            return true;
 
58
        unlock();
 
59
        return false;
 
60
    }
 
61
    inline QT3_SUPPORT_CONSTRUCTOR QMutex(bool recursive)
 
62
    {
 
63
        new (this) QMutex(recursive ? Recursive : NonRecursive);
 
64
    }
 
65
#endif
 
66
 
 
67
private:
 
68
    Q_DISABLE_COPY(QMutex)
 
69
 
 
70
    QMutexPrivate *d;
 
71
};
 
72
 
 
73
class Q_CORE_EXPORT QMutexLocker
 
74
{
 
75
public:
 
76
    inline explicit QMutexLocker(QMutex *m) : mtx(m) { relock(); }
 
77
    inline ~QMutexLocker() { unlock(); }
 
78
 
 
79
    inline void unlock() { if (mtx) mtx->unlock(); }
 
80
 
 
81
    inline void relock() { if (mtx) mtx->lock(); }
 
82
 
 
83
    inline QMutex *mutex() const { return mtx; }
 
84
 
 
85
private:
 
86
    Q_DISABLE_COPY(QMutexLocker)
 
87
 
 
88
    QMutex *mtx;
 
89
};
 
90
 
 
91
#else // QT_NO_THREAD
 
92
 
 
93
 
 
94
class Q_CORE_EXPORT QMutex
 
95
{
 
96
public:
 
97
    enum RecursionMode { NonRecursive, Recursive };
 
98
 
 
99
    inline explicit QMutex(RecursionMode mode = NonRecursive) { Q_UNUSED(mode); }
 
100
    inline ~QMutex() {}
 
101
 
 
102
    static inline void lock() {}
 
103
    static inline bool tryLock() { return true; }
 
104
    static void unlock() {}
 
105
 
 
106
#if defined(QT3_SUPPORT)
 
107
    static inline QT3_SUPPORT bool locked() { return false; }
 
108
#endif
 
109
 
 
110
private:
 
111
    Q_DISABLE_COPY(QMutex)
 
112
};
 
113
 
 
114
class Q_CORE_EXPORT QMutexLocker
 
115
{
 
116
public:
 
117
    inline explicit QMutexLocker(QMutex *) {}
 
118
    inline ~QMutexLocker() {}
 
119
 
 
120
    static inline void unlock() {}
 
121
    static void relock() {}
 
122
    static inline QMutex *mutex() { return 0; }
 
123
 
 
124
private:
 
125
    Q_DISABLE_COPY(QMutexLocker)
 
126
};
 
127
 
 
128
#endif // QT_NO_THREAD
 
129
 
 
130
#endif // QMUTEX_H