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 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343
|
<!DOCTYPE html
PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- saved from url=(0014)about:internet -->
<html xmlns:MSHelp="http://www.microsoft.com/MSHelp/" lang="en-us" xml:lang="en-us"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="DC.Type" content="reference">
<meta name="DC.Title" content="concurrent_bounded_queue Template Class">
<meta name="DC.subject" content="concurrent_bounded_queue Template Class">
<meta name="keywords" content="concurrent_bounded_queue Template Class">
<meta name="DC.Relation" scheme="URI" content="../../reference/containers_overview.htm">
<meta name="DC.Relation" scheme="URI" content="concurrent_queue_cls.htm">
<meta name="DC.Format" content="XHTML">
<meta name="DC.Identifier" content="concurrent_bounded_queue_cls">
<meta name="DC.Language" content="en-US">
<link rel="stylesheet" type="text/css" href="../../intel_css_styles.css">
<title>concurrent_bounded_queue Template Class</title>
</head>
<body id="concurrent_bounded_queue_cls">
<!-- ==============(Start:NavScript)================= -->
<script src="..\..\NavScript.js" language="JavaScript1.2" type="text/javascript"></script>
<script language="JavaScript1.2" type="text/javascript">WriteNavLink(2);</script>
<!-- ==============(End:NavScript)================= -->
<a name="concurrent_bounded_queue_cls"><!-- --></a>
<h1 class="topictitle1">concurrent_bounded_queue Template Class</h1>
<div>
<div class="section"><h2 class="sectiontitle">Summary</h2>
<p>Template class for bounded dual queue with
concurrent operations.
</p>
</div>
<div class="section"><h2 class="sectiontitle">Syntax</h2>
<pre>template<typename T, class Alloc=cache_aligned_allocator<T> >
class concurrent_bounded_queue;</pre>
</div>
<div class="section"><h2 class="sectiontitle">Header</h2>
<pre>#include "tbb/concurrent_queue.h"</pre>
</div>
<div class="section"><h2 class="sectiontitle">Description</h2>
<p>A
<samp class="codeph">concurrent_bounded_queue</samp> is similar to a
<samp class="codeph">concurrent_queue</samp> , but with the following differences:
</p>
<ul type="disc">
<li>
<p>Adds the ability to specify a capacity. The
default capacity makes the queue practically unbounded.
</p>
</li>
<li>
<p>Changes the
<samp class="codeph">push</samp> operation so that it waits until it can
complete without exceeding the capacity.
</p>
</li>
<li>
<p>Adds a waiting
<samp class="codeph">pop</samp> operation that waits until it can pop an item.
</p>
</li>
<li>
<p>Changes the
<samp class="codeph">size_type</samp> to a
<em>signed</em> type.
</p>
</li>
<li>
<p>Changes the
<samp class="codeph">size()</samp> operation to return the number of push
operations minus the number of pop operations. For example, if there are 3 pop
operations waiting on an empty queue,
<samp class="codeph">size()</samp> returns -3.
</p>
</li>
<li> Adds an
<samp class="codeph">abort</samp> operation that causes any waiting
<samp class="codeph">push</samp> or
<samp class="codeph">pop</samp> operation to abort and throw an exception.
</li>
</ul>
</div>
<div class="section"><h2 class="sectiontitle">Members</h2>
<p>To aid comparison, the parts that differ from
<samp class="codeph">concurrent_queue</samp> are in bold and annotated.
</p>
<pre>namespace tbb {
template<typename T, typename
Alloc=cache_aligned_allocator<T> >
class concurrent_bounded_queue {
public:
<em>// types</em>
typedef T value_type;
typedef T& reference;
typedef const T& const_reference;
typedef Alloc allocator_type;
<em>// size_type is signed type</em>
typedef std::ptrdiff_t size_type;
typedef std::ptrdiff_t difference_type;
explicit concurrent_bounded_queue(const allocator_type& a = allocator_type());
concurrent_bounded_queue( const concurrent_bounded_queue& src, const allocator_type& a = allocator_type());
template<typename InputIterator>
concurrent_bounded_queue( InputIterator begin, InputIterator end, const allocator_type& a = allocator_type());
~concurrent_bounded_queue();
<em>// waits until it can push without exceeding capacity.</em>
void push( const T& source );
<em>// waits if *this is empty</em>
void pop( T& destination );
<em>// skips push if it would exceed capacity.</em>
bool try_push( const T& source );
bool try_pop( T& destination );
void abort();
void clear();
<em>// safe to call during concurrent modification, can return negative size.</em>
size_type size() const;
bool empty() const;
size_type capacity() const;
void set_capacity( size_type capacity );
allocator_type get_allocator() const;
typedef <em>implementation-defined</em> iterator;
typedef <em>implementation-defined</em> const_iterator;
<em>// iterators (these are slow an intended only for debugging)</em>
iterator unsafe_begin();
iterator unsafe_end();
const_iterator unsafe_begin() const;
const_iterator unsafe_end() const;
};
}</pre>
<p>
<div class="tablenoborder"><table cellpadding="4" summary="" frame="border" border="1" cellspacing="0" rules="all"><span class="tabledesc">Because
<samp class="codeph">concurrent_bounded_queue</samp> is similar to
<samp class="codeph">concurrent_queue</samp>, the following table describes only
methods that differ.
</span><thead align="left">
<tr>
<th class="cellrowborder" valign="top" width="33.89830508474576%" id="d29901e185">Member
</th>
<th class="cellrowborder" valign="top" width="66.10169491525423%" id="d29901e188">Description
</th>
</tr>
</thead>
<tbody>
<tr>
<td class="cellrowborder" valign="top" width="33.89830508474576%" headers="d29901e185 "><span class="keyword">void push( const T& source
)</span>
</td>
<td class="cellrowborder" valign="top" width="66.10169491525423%" headers="d29901e188 ">
<p> Waits until size()<capacity, and then pushes a copy of
source onto back of the queue.
</p>
</td>
</tr>
<tr>
<td class="cellrowborder" valign="top" width="33.89830508474576%" headers="d29901e185 "><span class="keyword">void pop( T& destination
)</span>
</td>
<td class="cellrowborder" valign="top" width="66.10169491525423%" headers="d29901e188 ">
<p>Waits until a value becomes available and pops it from the
queue. Assigns it to destination. Destroys the original value.
</p>
</td>
</tr>
<tr>
<td class="cellrowborder" valign="top" width="33.89830508474576%" headers="d29901e185 "><span class="keyword">void abort()</span>
</td>
<td class="cellrowborder" valign="top" width="66.10169491525423%" headers="d29901e188 ">
<p>Wakes up any threads that are waiting on the queue via the
<samp class="codeph">push</samp> and
<samp class="codeph">pop</samp> operations and raises the
<samp class="codeph">tbb::user_abort</samp> exception on those threads.
This feature is unavailable if
<samp class="codeph">TBB_USE_EXCEPTIONS</samp> is not set.
</p>
</td>
</tr>
<tr>
<td class="cellrowborder" valign="top" width="33.89830508474576%" headers="d29901e185 "><span class="keyword">bool try_push( const T& source
)</span>
</td>
<td class="cellrowborder" valign="top" width="66.10169491525423%" headers="d29901e188 ">
<p>If size()<capacity, pushes a copy of source onto back of
the queue.
</p>
<p><strong>Returns</strong>: True if a copy was pushed; false otherwise.
</p>
</td>
</tr>
<tr>
<td class="cellrowborder" valign="top" width="33.89830508474576%" headers="d29901e185 "><span class="keyword">bool try_pop( T& destination
)</span>
</td>
<td class="cellrowborder" valign="top" width="66.10169491525423%" headers="d29901e188 ">
<p>If a value is available, pops it from the queue, assigns it
to destination, and destroys the original value. Otherwise does nothing.
</p>
<p><strong>Returns</strong>: True if a value was popped; false otherwise.
</p>
</td>
</tr>
<tr>
<td class="cellrowborder" valign="top" width="33.89830508474576%" headers="d29901e185 "><span class="keyword">size_type size() const</span>
</td>
<td class="cellrowborder" valign="top" width="66.10169491525423%" headers="d29901e188 ">
<p><strong>Returns</strong>: Number of pushes minus number of pops. The
result is negative if there are pop operations waiting for corresponding
pushes. The result can exceed capacity() if the queue is full and there are
push operations waiting for corresponding pops.
</p>
</td>
</tr>
<tr>
<td class="cellrowborder" valign="top" width="33.89830508474576%" headers="d29901e185 "><span class="keyword">bool empty() const</span>
</td>
<td class="cellrowborder" valign="top" width="66.10169491525423%" headers="d29901e188 ">
<p><strong>Returns</strong>:
<samp class="codeph">size()<=0</samp>
</p>
</td>
</tr>
<tr>
<td class="cellrowborder" valign="top" width="33.89830508474576%" headers="d29901e185 "><span class="keyword">size_type capacity()
const</span>
</td>
<td class="cellrowborder" valign="top" width="66.10169491525423%" headers="d29901e188 ">
<p><strong>Returns</strong>
</p>
<p>Maximum number of values that the queue can hold.
</p>
</td>
</tr>
<tr>
<td class="cellrowborder" valign="top" width="33.89830508474576%" headers="d29901e185 "><span class="keyword">void set_capacity( size_type
capacity )</span>
</td>
<td class="cellrowborder" valign="top" width="66.10169491525423%" headers="d29901e188 ">
<p>Sets the maximum number of values that the queue can hold.
</p>
</td>
</tr>
</tbody>
</table>
</div>
</p>
</div>
</div>
<div class="familylinks">
<div class="parentlink"><strong>Parent topic:</strong> <a href="../../reference/containers_overview.htm">Containers Overview</a></div>
</div>
<div class="See Also">
<h2>See Also</h2>
<div class="linklist">
<div><a href="concurrent_queue_cls.htm">concurrent_queue
</a></div></div>
</div>
</body>
</html>
|