1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
|
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GFDL-1.3-no-invariants-only
/*!
\class QWaitCondition
\inmodule QtCore
\brief The QWaitCondition class provides a condition variable for
synchronizing threads.
\threadsafe
\ingroup thread
QWaitCondition allows a thread to tell other threads that some
sort of condition has been met. One or many threads can block
waiting for a QWaitCondition to set a condition with wakeOne() or
wakeAll(). Use wakeOne() to wake one randomly selected thread or
wakeAll() to wake them all.
For example, let's suppose that we have three tasks that should
be performed whenever the user presses a key. Each task could be
split into a thread, each of which would have a
\l{QThread::run()}{run()} body like this:
\snippet code/src_corelib_thread_qwaitcondition_unix.cpp 0
Here, the \c keyPressed variable is a global variable of type
QWaitCondition.
A fourth thread would read key presses and wake the other three
threads up every time it receives one, like this:
\snippet code/src_corelib_thread_qwaitcondition_unix.cpp 1
The order in which the three threads are woken up is undefined.
Also, if some of the threads are still in \c do_something() when
the key is pressed, they won't be woken up (since they're not
waiting on the condition variable) and so the task will not be
performed for that key press. This issue can be solved using a
counter and a QMutex to guard it. For example, here's the new
code for the worker threads:
\snippet code/src_corelib_thread_qwaitcondition_unix.cpp 2
Here's the code for the fourth thread:
\snippet code/src_corelib_thread_qwaitcondition_unix.cpp 3
The mutex is necessary because the results of two threads
attempting to change the value of the same variable
simultaneously are unpredictable.
Wait conditions are a powerful thread synchronization primitive.
The \l{Wait Conditions Example} example shows how
to use QWaitCondition as an alternative to QSemaphore for
controlling access to a circular buffer shared by a producer
thread and a consumer thread.
\sa QMutex, QSemaphore, QThread, {Wait Conditions Example}
*/
/*!
\fn QWaitCondition::QWaitCondition()
Constructs a new wait condition object.
*/
/*!
\fn QWaitCondition::~QWaitCondition()
Destroys the wait condition object.
*/
/*!
\fn void QWaitCondition::wakeOne()
Wakes one thread waiting on the wait condition. The thread that
is woken up depends on the operating system's scheduling
policies, and cannot be controlled or predicted.
If you want to wake up a specific thread, the solution is
typically to use different wait conditions and have different
threads wait on different conditions.
\sa wakeAll()
*/
/*!
\fn void QWaitCondition::wakeAll()
Wakes all threads waiting on the wait condition. The order in
which the threads are woken up depends on the operating system's
scheduling policies and cannot be controlled or predicted.
\sa wakeOne()
*/
/*!
\fn bool QWaitCondition::wait(QMutex *lockedMutex, unsigned long time)
\overload
Releases the \a lockedMutex and waits on the wait condition for \a time
milliseconds.
*/
/*!
\fn bool QWaitCondition::wait(QReadWriteLock *lockedReadWriteLock, unsigned long time)
\overload
Releases the \a lockedReadWriteLock and waits on the wait condition for \a
time milliseconds.
*/
/*!
\fn bool QWaitCondition::wait(QMutex *lockedMutex, QDeadlineTimer deadline)
\since 5.12
Releases the \a lockedMutex and waits on the wait condition. The
\a lockedMutex must be initially locked by the calling thread. If \a
lockedMutex is not in a locked state, the behavior is undefined. If
\a lockedMutex is a recursive mutex, this function
returns immediately. The \a lockedMutex will be unlocked, and the
calling thread will block until either of these conditions is met:
\list
\li Another thread signals it using wakeOne() or wakeAll(). This
function will return true in this case.
\li the deadline given by \a deadline is reached. If \a deadline is
\c QDeadlineTimer::Forever (the default), then the wait will never
timeout (the event must be signalled). This function will return
false if the wait timed out.
\endlist
The \a lockedMutex will be returned to the same locked state. This
function is provided to allow the atomic transition from the
locked state to the wait state.
\sa wakeOne(), wakeAll()
*/
/*!
\fn bool QWaitCondition::wait(QReadWriteLock *lockedReadWriteLock, QDeadlineTimer deadline)
\since 5.12
Releases the \a lockedReadWriteLock and waits on the wait
condition. The \a lockedReadWriteLock must be initially locked by the
calling thread. If \a lockedReadWriteLock is not in a locked state, this
function returns immediately. The \a lockedReadWriteLock must not be
locked recursively, otherwise this function will not release the
lock properly. The \a lockedReadWriteLock will be unlocked, and the
calling thread will block until either of these conditions is met:
\list
\li Another thread signals it using wakeOne() or wakeAll(). This
function will return true in this case.
\li the deadline given by \a deadline is reached. If \a deadline is
\c QDeadlineTimer::Forever (the default), then the wait will never
timeout (the event must be signalled). This function will return
false if the wait timed out.
\endlist
The \a lockedReadWriteLock will be returned to the same locked
state. This function is provided to allow the atomic transition
from the locked state to the wait state.
\sa wakeOne(), wakeAll()
*/
/*! \fn void QWaitCondition::notify_one()
\since 5.8
This function is provided for STL compatibility. It is equivalent
to wakeOne().
*/
/*! \fn void QWaitCondition::notify_all()
\since 5.8
This function is provided for STL compatibility. It is equivalent
to wakeAll().
*/
|