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 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572
|
<!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_queue Template Class">
<meta name="DC.subject" content="concurrent_queue Template Class">
<meta name="keywords" content="concurrent_queue Template Class">
<meta name="DC.Relation" scheme="URI" content="../../reference/containers_overview.htm">
<meta name="DC.Format" content="XHTML">
<meta name="DC.Identifier" content="concurrent_queue_cls">
<meta name="DC.Language" content="en-US">
<link rel="stylesheet" type="text/css" href="../../intel_css_styles.css">
<title>concurrent_queue Template Class</title>
</head>
<body id="concurrent_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_queue_cls"><!-- --></a>
<h1 class="topictitle1">concurrent_queue Template Class</h1>
<div>
<div class="section"><h2 class="sectiontitle">Summary</h2>
<p>Template class for queue with concurrent
operations.
</p>
</div>
<div class="section"><h2 class="sectiontitle">Syntax</h2>
<p>
<pre>template<typename T, typename Alloc=cache_aligned_allocator<T> > class concurrent_queue;</pre>
</p>
</div>
<div class="section"><h2 class="sectiontitle">Header</h2>
<p>
<pre>#include "tbb/concurrent_queue.h"</pre>
</p>
</div>
<div class="section"><h2 class="sectiontitle">Description</h2>
<p>A
<samp class="codeph">concurrent_queue</samp> is a first-in first-out data
structure that permits multiple threads to concurrently push and pop items. Its
capacity is unbounded, subject to memory limitations on the target machine.
</p>
<p>The interface is similar to STL
<samp class="codeph">std::queue</samp> except where it must differ to make
concurrent modification safe.
</p>
<p>
</p>
<div class="tablenoborder"><table cellpadding="4" summary="" width="100%" frame="hsides" border="1" rules="all"><caption><span class="tablecap">Differences Between STL queue and Intel®
Threading Building Blocks concurrent_queue</span></caption>
<thead align="left">
<tr>
<th class="cellrowborder" valign="top" width="NaN%" id="d39293e87">
<p><strong>Feature</strong>
</p>
</th>
<th class="cellrowborder" valign="top" width="NaN%" id="d39293e95">
<p><strong>STL std::queue</strong>
</p>
</th>
<th class="row-nocellborder" valign="top" width="NaN%" id="d39293e103">
<p><strong>concurrent_queue</strong>
</p>
</th>
</tr>
</thead>
<tbody>
<tr>
<td class="cellrowborder" valign="top" width="NaN%" headers="d39293e87 ">
<p>Access to front and back
</p>
</td>
<td class="cellrowborder" valign="top" width="NaN%" headers="d39293e95 ">
<p>Methods
<samp class="codeph">front</samp> and
<samp class="codeph">back</samp>
</p>
</td>
<td class="row-nocellborder" valign="top" width="NaN%" headers="d39293e103 ">
<p>Not present. They would be unsafe while
concurrent operations are in progress.
</p>
</td>
</tr>
<tr>
<td class="cellrowborder" valign="top" width="NaN%" headers="d39293e87 ">
<p><samp class="codeph">size_type</samp>
</p>
</td>
<td class="cellrowborder" valign="top" width="NaN%" headers="d39293e95 ">
<p>unsigned integral type
</p>
</td>
<td class="row-nocellborder" valign="top" width="NaN%" headers="d39293e103 ">
<p><samp class="codeph"><em>signed</em></samp> integral
type
</p>
</td>
</tr>
<tr>
<td class="cellrowborder" valign="top" width="NaN%" headers="d39293e87 ">
<p><samp class="codeph">unsafe_size()</samp>
</p>
</td>
<td class="cellrowborder" valign="top" width="NaN%" headers="d39293e95 ">
<p>Returns number of items in queue
</p>
</td>
<td class="row-nocellborder" valign="top" width="NaN%" headers="d39293e103 ">
<p>Returns number of items in queue. May
return incorrect value if any
<samp class="codeph">push</samp> or
<samp class="codeph">try_pop</samp> operations are concurrently in flight.
</p>
</td>
</tr>
<tr>
<td class="cellrowborder" valign="top" width="NaN%" headers="d39293e87 ">
<p>Copy and pop item unless queue q is empty.
</p>
</td>
<td class="cellrowborder" valign="top" width="NaN%" headers="d39293e95 ">
<p>bool b=!q.empty();
</p>
<p>if(b) {
</p>
<p> x=q.front();
</p>
<p> q.pop();
</p>
<p>}
</p>
</td>
<td class="row-nocellborder" valign="top" width="NaN%" headers="d39293e103 ">
<p>bool b =
<em>q</em>.try_pop (x)
</p>
</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="section"><h2 class="sectiontitle">Members</h2>
<pre>namespace tbb {
template<typename T,
typename Alloc=cache_aligned_allocator<T> >
class concurrent_queue {
public:
<em>// types</em>
typedef T value_type;
typedef T& reference;
typedef const T& const_reference;
typedef std::ptrdiff_t size_type;
typedef std::ptrdiff_t difference_type;
typedef Alloc allocator_type;
explicit concurrent_queue(const Alloc& a = Alloc ());
concurrent_queue(const concurrent_queue& src,
const Alloc& a = Alloc());
template<typename InputIterator>
concurrent_queue(InputIterator first, InputIterator last,
const Alloc& a = Alloc());
~concurrent_queue();
void push( const T& source );
bool try_pop T& destination );
void clear() ;
size_type unsafe_size() const;
bool empty() const;
Alloc get_allocator() const;
typedef implementation-defined iterator;
typedef implementation-defined const_iterator;
// iterators (these are slow and intended only for debugging)
iterator unsafe_begin();
iterator unsafe_end();
const_iterator unsafe_begin() const;
const_iterator unsafe_end() const;
};
}</pre>
<p>In Intel® Threading Building Blocks (Intel® TBB) 2.1, a
<samp class="codeph">concurrent_queue</samp> could be bounded. Intel® TBB 2.2
moves this functionality to
<samp class="codeph">concurrent_bounded_queue</samp>. Compile with
<samp class="codeph">TBB_DEPRECATED=1</samp> to restore the old functionality, or
(recommended) use
<samp class="codeph">concurrent_bounded_queue</samp> instead.
</p>
<div class="tablenoborder"><table cellpadding="4" summary="" frame="border" border="1" cellspacing="0" rules="all"><span class="tabledesc">The following table provides additional information on the
members of this template class.
</span><thead align="left">
<tr>
<th class="cellrowborder" valign="top" width="33.89830508474576%" id="d39293e275">Member
</th>
<th class="cellrowborder" valign="top" width="66.10169491525423%" id="d39293e278">Description
</th>
</tr>
</thead>
<tbody>
<tr>
<td class="cellrowborder" valign="top" width="33.89830508474576%" headers="d39293e275 "><span class="keyword">concurrent_queue( const Alloc&
a = Alloc () )</span>
</td>
<td class="cellrowborder" valign="top" width="66.10169491525423%" headers="d39293e278 ">
<p>Constructs empty queue.
</p>
</td>
</tr>
<tr>
<td class="cellrowborder" valign="top" width="33.89830508474576%" headers="d39293e275 "><span class="keyword">concurrent_queue( const
concurrent_queue& src, const Alloc& a = Alloc() )</span>
</td>
<td class="cellrowborder" valign="top" width="66.10169491525423%" headers="d39293e278 ">
<p>Constructs a copy of
<em>src</em>.
</p>
</td>
</tr>
<tr>
<td class="cellrowborder" valign="top" width="33.89830508474576%" headers="d39293e275 "><span class="keyword">template<typename
InputIterator> concurrent_queue( InputIterator first, InputIterator last,
const Alloc& a = Alloc() )</span>
</td>
<td class="cellrowborder" valign="top" width="66.10169491525423%" headers="d39293e278 ">
<p>Constructs a queue containing copies of elements in the
iterator half-open interval [<em>first,last</em>).
</p>
</td>
</tr>
<tr>
<td class="cellrowborder" valign="top" width="33.89830508474576%" headers="d39293e275 "><span class="keyword">~concurrent_queue()</span>
</td>
<td class="cellrowborder" valign="top" width="66.10169491525423%" headers="d39293e278 ">
<p>Destroys all items in the queue.
</p>
</td>
</tr>
<tr>
<td class="cellrowborder" valign="top" width="33.89830508474576%" headers="d39293e275 "><span class="keyword">void push( const T& source
)</span>
</td>
<td class="cellrowborder" valign="top" width="66.10169491525423%" headers="d39293e278 ">
<p>Pushes a copy of
<samp class="codeph">source</samp> onto back of the queue.
</p>
</td>
</tr>
<tr>
<td class="cellrowborder" valign="top" width="33.89830508474576%" headers="d39293e275 "><span class="keyword">bool try_pop ( T& destination
)</span>
</td>
<td class="cellrowborder" valign="top" width="66.10169491525423%" headers="d39293e278 ">
<p>If 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 value was popped; false otherwise.
</p>
<div class="Note"><h3 class="NoteTipHead">
Note</h3>
<p><samp class="codeph">try_pop</samp> was called
<samp class="codeph">pop_if_present</samp> in Intel® TBB 2.1. Compile
with
<samp class="codeph">TBB_DEPRECATED=1</samp> to use the old name.
</p>
</div>
</td>
</tr>
<tr>
<td class="cellrowborder" valign="top" width="33.89830508474576%" headers="d39293e275 "><span class="keyword">void clear()</span>
</td>
<td class="cellrowborder" valign="top" width="66.10169491525423%" headers="d39293e278 ">
<p>Clears the queue. Afterwards
<samp class="codeph">size()==0</samp>.
</p>
</td>
</tr>
<tr>
<td class="cellrowborder" valign="top" width="33.89830508474576%" headers="d39293e275 "><span class="keyword">size_type unsafe_size()
const</span>
</td>
<td class="cellrowborder" valign="top" width="66.10169491525423%" headers="d39293e278 ">
<p><strong>Returns</strong>
</p>
<p>Number of items in the queue. If there are concurrent
modifications in flight, the value might not reflect the actual number of items
in the queue.
</p>
</td>
</tr>
<tr>
<td class="cellrowborder" valign="top" width="33.89830508474576%" headers="d39293e275 "><span class="keyword">bool empty() const</span>
</td>
<td class="cellrowborder" valign="top" width="66.10169491525423%" headers="d39293e278 ">
<p><strong>Returns</strong>:
<samp class="codeph">true</samp> if queue has no items; false otherwise.
</p>
</td>
</tr>
<tr>
<td class="cellrowborder" valign="top" width="33.89830508474576%" headers="d39293e275 "><span class="keyword">Alloc get_allocator()
const</span>
</td>
<td class="cellrowborder" valign="top" width="66.10169491525423%" headers="d39293e278 ">
<p><strong>Returns</strong>: Copy of allocator used to construct the
queue.
</p>
</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="section"><h2 class="sectiontitle">Iterators</h2>
<p>A
<samp class="codeph">concurrent_queue</samp> provides limited iterator support
that is intended solely to allow programmers to inspect a queue during
debugging. It provides iterator and const_iterator types. Both follow the usual
STL conventions for forward iterators. The iteration order is from least
recently pushed to most recently pushed. Modifying a
<samp class="codeph">concurrent_queue</samp> invalidates any iterators that
reference it.
</p>
<div class="Note"><h3 class="NoteTipHead">
Caution</h3>
<p>The iterators are relatively slow. They should be used only for
debugging.
</p>
</div>
</div>
<div class="section"><h2 class="sectiontitle">Example</h2>
<p>The following program builds a queue with the integers 0..9, and then
dumps the queue to standard output. Its overall effect is to print 0 1 2 3 4 5
6 7 8 9.
</p>
<pre>#include "tbb/concurrent_queue.h"
#include <iostream>
using namespace std;
using namespace tbb;
int main() {
concurrent_queue<int> queue;
for( int i=0; i<10; ++i )
queue.push(i);
typedef concurrent_queue<int>::iterator iter;
for(iter i(queue.unsafe_begin()); i!=queue.unsafe_end(); ++i)
cout << *i << " ";
cout << endl;
return 0;
}
</pre>
<div class="tablenoborder"><table cellpadding="4" summary="" frame="border" border="1" cellspacing="0" rules="all"><span class="tabledesc">The following table provides additional information on the
members of this template class.
</span><thead align="left">
<tr>
<th class="cellrowborder" valign="top" width="33.89830508474576%" id="d39293e517">Member
</th>
<th class="cellrowborder" valign="top" width="66.10169491525423%" id="d39293e520">Description
</th>
</tr>
</thead>
<tbody>
<tr>
<td class="cellrowborder" valign="top" width="33.89830508474576%" headers="d39293e517 "><span class="keyword">iterator unsafe_begin()</span>
</td>
<td class="cellrowborder" valign="top" width="66.10169491525423%" headers="d39293e520 ">
<p><strong>Returns</strong>:
<samp class="codeph">iterator</samp> pointing to beginning of the queue.
</p>
</td>
</tr>
<tr>
<td class="cellrowborder" valign="top" width="33.89830508474576%" headers="d39293e517 "><span class="keyword">iterator unsafe_end()</span>
</td>
<td class="cellrowborder" valign="top" width="66.10169491525423%" headers="d39293e520 ">
<p><strong>Returns</strong>:
<samp class="codeph">iterator</samp> pointing to end of the queue.
</p>
</td>
</tr>
<tr>
<td class="cellrowborder" valign="top" width="33.89830508474576%" headers="d39293e517 "><span class="keyword">const_iterator unsafe_begin()
const</span>
</td>
<td class="cellrowborder" valign="top" width="66.10169491525423%" headers="d39293e520 ">
<p><strong>Returns</strong>:
<samp class="codeph">const_iterator</samp> with pointing to beginning of
the queue.
</p>
</td>
</tr>
<tr>
<td class="cellrowborder" valign="top" width="33.89830508474576%" headers="d39293e517 "><span class="keyword"></span><samp class="codeph">const_iterator</samp> unsafe_end()
const
</td>
<td class="cellrowborder" valign="top" width="66.10169491525423%" headers="d39293e520 ">
<p><strong>Returns</strong>:
<samp class="codeph">const_iterator</samp> pointing to end of the queue.
</p>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<div class="familylinks">
<div class="parentlink"><strong>Parent topic:</strong> <a href="../../reference/containers_overview.htm">Containers Overview</a></div>
</div>
<div></div>
</body>
</html>
|