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 182 183 184 185 186 187 188 189 190 191 192 193 194 195
|
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en_US" lang="en_US">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<!-- qmutex.cpp -->
<title>Qt 4.8: QMutexLocker Class Reference</title>
<link rel="stylesheet" type="text/css" href="style/offline.css" />
</head>
<body>
<div class="header" id="qtdocheader">
<div class="content">
<a href="index.html" class="qtref"><span>Qt Reference Documentation</span></a>
</div>
<div class="breadcrumb toolblock">
<ul>
<li class="first"><a href="index.html">Home</a></li>
<!-- Breadcrumbs go here -->
<li><a href="modules.html">Modules</a></li>
<li><a href="qtcore.html">QtCore</a></li>
<li>QMutexLocker</li>
</ul>
</div>
</div>
<div class="content mainContent">
<div class="toc">
<h3><a name="toc">Contents</a></h3>
<ul>
<li class="level1"><a href="#public-functions">Public Functions</a></li>
<li class="level1"><a href="#details">Detailed Description</a></li>
</ul>
</div>
<h1 class="title">QMutexLocker Class Reference</h1>
<!-- $$$QMutexLocker-brief -->
<p>The QMutexLocker class is a convenience class that simplifies locking and unlocking mutexes. <a href="#details">More...</a></p>
<!-- @@@QMutexLocker -->
<pre class="cpp"> <span class="preprocessor">#include <QMutexLocker></span></pre><p><b>Note:</b> All functions in this class are <a href="threads-reentrancy.html#thread-safe">thread-safe</a>.</p>
<ul>
<li><a href="qmutexlocker-members.html">List of all members, including inherited members</a></li>
</ul>
<a name="public-functions"></a>
<h2>Public Functions</h2>
<table class="alignedsummary">
<tr><td class="memItemLeft rightAlign topAlign"> </td><td class="memItemRight bottomAlign"><b><a href="qmutexlocker.html#QMutexLocker">QMutexLocker</a></b> ( QMutex * <i>mutex</i> )</td></tr>
<tr><td class="memItemLeft rightAlign topAlign"> </td><td class="memItemRight bottomAlign"><b><a href="qmutexlocker.html#dtor.QMutexLocker">~QMutexLocker</a></b> ()</td></tr>
<tr><td class="memItemLeft rightAlign topAlign"> QMutex * </td><td class="memItemRight bottomAlign"><b><a href="qmutexlocker.html#mutex">mutex</a></b> () const</td></tr>
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="qmutexlocker.html#relock">relock</a></b> ()</td></tr>
<tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="qmutexlocker.html#unlock">unlock</a></b> ()</td></tr>
</table>
<a name="details"></a>
<!-- $$$QMutexLocker-description -->
<div class="descr">
<h2>Detailed Description</h2>
<p>The QMutexLocker class is a convenience class that simplifies locking and unlocking mutexes.</p>
<p>Locking and unlocking a <a href="qmutex.html">QMutex</a> in complex functions and statements or in exception handling code is error-prone and difficult to debug. QMutexLocker can be used in such situations to ensure that the state of the mutex is always well-defined.</p>
<p>QMutexLocker should be created within a function where a <a href="qmutex.html">QMutex</a> needs to be locked. The mutex is locked when QMutexLocker is created. You can unlock and relock the mutex with <tt>unlock()</tt> and <tt>relock()</tt>. If locked, the mutex will be unlocked when the QMutexLocker is destroyed.</p>
<p>For example, this complex function locks a <a href="qmutex.html">QMutex</a> upon entering the function and unlocks the mutex at all the exit points:</p>
<pre class="cpp"> <span class="type">int</span> complexFunction(<span class="type">int</span> flag)
{
mutex<span class="operator">.</span>lock();
<span class="type">int</span> retVal <span class="operator">=</span> <span class="number">0</span>;
<span class="keyword">switch</span> (flag) {
<span class="keyword">case</span> <span class="number">0</span>:
<span class="keyword">case</span> <span class="number">1</span>:
retVal <span class="operator">=</span> moreComplexFunction(flag);
<span class="keyword">break</span>;
<span class="keyword">case</span> <span class="number">2</span>:
{
<span class="type">int</span> status <span class="operator">=</span> anotherFunction();
<span class="keyword">if</span> (status <span class="operator"><</span> <span class="number">0</span>) {
mutex<span class="operator">.</span>unlock();
<span class="keyword">return</span> <span class="operator">-</span><span class="number">2</span>;
}
retVal <span class="operator">=</span> status <span class="operator">+</span> flag;
}
<span class="keyword">break</span>;
<span class="keyword">default</span>:
<span class="keyword">if</span> (flag <span class="operator">></span> <span class="number">10</span>) {
mutex<span class="operator">.</span>unlock();
<span class="keyword">return</span> <span class="operator">-</span><span class="number">1</span>;
}
<span class="keyword">break</span>;
}
mutex<span class="operator">.</span>unlock();
<span class="keyword">return</span> retVal;
}</pre>
<p>This example function will get more complicated as it is developed, which increases the likelihood that errors will occur.</p>
<p>Using QMutexLocker greatly simplifies the code, and makes it more readable:</p>
<pre class="cpp"> <span class="type">int</span> complexFunction(<span class="type">int</span> flag)
{
<span class="type">QMutexLocker</span> locker(<span class="operator">&</span>mutex);
<span class="type">int</span> retVal <span class="operator">=</span> <span class="number">0</span>;
<span class="keyword">switch</span> (flag) {
<span class="keyword">case</span> <span class="number">0</span>:
<span class="keyword">case</span> <span class="number">1</span>:
<span class="keyword">return</span> moreComplexFunction(flag);
<span class="keyword">case</span> <span class="number">2</span>:
{
<span class="type">int</span> status <span class="operator">=</span> anotherFunction();
<span class="keyword">if</span> (status <span class="operator"><</span> <span class="number">0</span>)
<span class="keyword">return</span> <span class="operator">-</span><span class="number">2</span>;
retVal <span class="operator">=</span> status <span class="operator">+</span> flag;
}
<span class="keyword">break</span>;
<span class="keyword">default</span>:
<span class="keyword">if</span> (flag <span class="operator">></span> <span class="number">10</span>)
<span class="keyword">return</span> <span class="operator">-</span><span class="number">1</span>;
<span class="keyword">break</span>;
}
<span class="keyword">return</span> retVal;
}</pre>
<p>Now, the mutex will always be unlocked when the QMutexLocker object is destroyed (when the function returns since <tt>locker</tt> is an auto variable).</p>
<p>The same principle applies to code that throws and catches exceptions. An exception that is not caught in the function that has locked the mutex has no way of unlocking the mutex before the exception is passed up the stack to the calling function.</p>
<p>QMutexLocker also provides a <tt>mutex()</tt> member function that returns the mutex on which the QMutexLocker is operating. This is useful for code that needs access to the mutex, such as <a href="qwaitcondition.html#wait">QWaitCondition::wait</a>(). For example:</p>
<pre class="cpp"> <span class="keyword">class</span> SignalWaiter
{
<span class="keyword">private</span>:
<span class="type">QMutexLocker</span> locker;
<span class="keyword">public</span>:
SignalWaiter(<span class="type"><a href="qmutex.html">QMutex</a></span> <span class="operator">*</span>mutex)
: locker(mutex)
{
}
<span class="type">void</span> waitForSignal()
{
<span class="operator">.</span><span class="operator">.</span><span class="operator">.</span>
<span class="keyword">while</span> (<span class="operator">!</span>signalled)
waitCondition<span class="operator">.</span>wait(locker<span class="operator">.</span>mutex());
<span class="operator">.</span><span class="operator">.</span><span class="operator">.</span>
}
};</pre>
</div>
<p><b>See also </b><a href="qreadlocker.html">QReadLocker</a>, <a href="qwritelocker.html">QWriteLocker</a>, and <a href="qmutex.html">QMutex</a>.</p>
<!-- @@@QMutexLocker -->
<div class="func">
<h2>Member Function Documentation</h2>
<!-- $$$QMutexLocker[overload1]$$$QMutexLockerQMutex* -->
<h3 class="fn"><a name="QMutexLocker"></a>QMutexLocker::<span class="name">QMutexLocker</span> ( <span class="type"><a href="qmutex.html">QMutex</a></span> * <i>mutex</i> )</h3>
<p>Constructs a <a href="qmutexlocker.html">QMutexLocker</a> and locks <i>mutex</i>. The mutex will be unlocked when the <a href="qmutexlocker.html">QMutexLocker</a> is destroyed. If <i>mutex</i> is zero, <a href="qmutexlocker.html">QMutexLocker</a> does nothing.</p>
<p><b>See also </b><a href="qmutex.html#lock">QMutex::lock</a>().</p>
<!-- @@@QMutexLocker -->
<!-- $$$~QMutexLocker[overload1]$$$~QMutexLocker -->
<h3 class="fn"><a name="dtor.QMutexLocker"></a>QMutexLocker::<span class="name">~QMutexLocker</span> ()</h3>
<p>Destroys the <a href="qmutexlocker.html">QMutexLocker</a> and unlocks the mutex that was locked in the constructor.</p>
<p><b>See also </b><a href="qmutex.html#unlock">QMutex::unlock</a>().</p>
<!-- @@@~QMutexLocker -->
<!-- $$$mutex[overload1]$$$mutex -->
<h3 class="fn"><a name="mutex"></a><span class="type"><a href="qmutex.html">QMutex</a></span> * QMutexLocker::<span class="name">mutex</span> () const</h3>
<p>Returns a pointer to the mutex that was locked in the constructor.</p>
<!-- @@@mutex -->
<!-- $$$relock[overload1]$$$relock -->
<h3 class="fn"><a name="relock"></a><span class="type">void</span> QMutexLocker::<span class="name">relock</span> ()</h3>
<p>Relocks an unlocked mutex locker.</p>
<p><b>See also </b><a href="qmutexlocker.html#unlock">unlock</a>().</p>
<!-- @@@relock -->
<!-- $$$unlock[overload1]$$$unlock -->
<h3 class="fn"><a name="unlock"></a><span class="type">void</span> QMutexLocker::<span class="name">unlock</span> ()</h3>
<p>Unlocks this mutex locker. You can use <tt>relock()</tt> to lock it again. It does not need to be locked when destroyed.</p>
<p><b>See also </b><a href="qmutexlocker.html#relock">relock</a>().</p>
<!-- @@@unlock -->
</div>
<div class="ft">
<span></span>
</div>
</div>
<div class="footer">
<p>
<acronym title="Copyright">©</acronym> 2012 Nokia Corporation and/or its
subsidiaries. Documentation contributions included herein are the copyrights of
their respective owners.</p>
<br />
<p>
The documentation provided herein is licensed under the terms of the
<a href="http://www.gnu.org/licenses/fdl.html">GNU Free Documentation
License version 1.3</a> as published by the Free Software Foundation.</p>
<p>
Documentation sources may be obtained from <a href="http://www.qt-project.org">
www.qt-project.org</a>.</p>
<br />
<p>
Nokia, Qt and their respective logos are trademarks of Nokia Corporation
in Finland and/or other countries worldwide. All other trademarks are property
of their respective owners. <a title="Privacy Policy"
href="http://en.gitorious.org/privacy_policy/">Privacy Policy</a></p>
</div>
</body>
</html>
|