File: concurrent_priority_queue_cls.htm

package info (click to toggle)
tbb 4.2~20140122-5
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 21,492 kB
  • ctags: 21,278
  • sloc: cpp: 92,813; ansic: 9,775; asm: 1,070; makefile: 1,057; sh: 351; java: 226; objc: 98; pascal: 71; xml: 41
file content (573 lines) | stat: -rwxr-xr-x 19,679 bytes parent folder | download
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
573
<!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_priority_queue Template Class">
<meta name="DC.subject" content="concurrent_priority_queue Template Class">
<meta name="keywords" content="concurrent_priority_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_priority_queue_cls">
<meta name="DC.Language" content="en-US">
<link rel="stylesheet" type="text/css" href="../../intel_css_styles.css">
<title>concurrent_priority_queue Template Class</title>
</head>
<body id="concurrent_priority_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_priority_queue_cls"><!-- --></a>

 
  <h1 class="topictitle1">concurrent_priority_queue Template
	 Class</h1>
 
   
  <div> 
	 <div class="section"><h2 class="sectiontitle">Summary</h2> 
		 
		<p>Template class for priority queue with concurrent
		  operations. 
		</p>
 
	 </div>
 
	 <div class="section"><h2 class="sectiontitle">Syntax</h2> 
		 
		<p> 
		  <pre>template&lt;typename T, typename Alloc=cache_aligned_allocator&lt;T&gt; &gt; class concurrent_priority_queue;</pre> 
		</p>
 
	 </div>
 
	 <div class="section"><h2 class="sectiontitle">Header</h2> 
		 
		<p> 
		  <pre>#include "tbb/concurrent_priority_queue.h"</pre> 
		</p>
 
	 </div>
 
	 <div class="section"><h2 class="sectiontitle">Description</h2> 
		 
		<p>A 
		  <samp class="codeph">concurrent_priority_queue</samp> is a container that permits
		  multiple threads to concurrently push and pop items. Items are popped in
		  priority order as determined by a template parameter. The capacity of the queue
		  is unbounded, subject to memory limitations on the target machine. 
		</p>
 
		<p>The interface is similar to STL 
		  <samp class="codeph">std::priority_queue</samp> except where it must differ to
		  make concurrent modification safe. 
		</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&reg;
		  Threading Building Blocks concurrent_priority_queue</span></caption> 
		   
		   
		   
		  <thead align="left"> 
			 <tr> 
				<th class="cellrowborder" valign="top" width="NaN%" id="d37381e84"> 
				  <p>Feature 
				  </p>
 
				</th>
 
				<th class="cellrowborder" valign="top" width="NaN%" id="d37381e90"> 
				  <p>STL std::priority_queue 
				  </p>
 
				</th>
 
				<th class="row-nocellborder" valign="top" width="NaN%" id="d37381e96"> 
				  <p>concurrent_priority_queue 
				  </p>
 
				</th>
 
			 </tr>
 
		  </thead>
 
		  <tbody> 
			 <tr> 
				<td class="cellrowborder" valign="top" width="NaN%" headers="d37381e84 "> 
				  <p>Choice of underlying container 
				  </p>
 
				</td>
 
				<td class="cellrowborder" valign="top" width="NaN%" headers="d37381e90 "> 
				  <p>Sequence template parameter 
				  </p>
 
				</td>
 
				<td class="row-nocellborder" valign="top" width="NaN%" headers="d37381e96 "> 
				  <p>No choice of underlying container;
					 allocator choice is provided instead 
				  </p>
 
				</td>
 
			 </tr>
 
			 <tr> 
				<td class="cellrowborder" valign="top" width="NaN%" headers="d37381e84 "> 
				  <p>Access to highest priority item 
				  </p>
 
				</td>
 
				<td class="cellrowborder" valign="top" width="NaN%" headers="d37381e90 "> 
				  <p><samp class="codeph">const value_type&amp; top()
						const</samp> 
				  </p>
 
				</td>
 
				<td class="row-nocellborder" valign="top" width="NaN%" headers="d37381e96 "> 
				  <p>Not available. Unsafe for concurrent
					 container 
				  </p>
 
				</td>
 
			 </tr>
 
			 <tr> 
				<td class="cellrowborder" valign="top" width="NaN%" headers="d37381e84 "> 
				  <p>Copy and pop item if present 
				  </p>
 
				</td>
 
				<td class="cellrowborder" valign="top" width="NaN%" headers="d37381e90 "> 
				  <p><samp class="codeph">bool b=!q.empty(); if(b) {
						x=q.top(); q.pop(); }</samp> 
				  </p>
 
				</td>
 
				<td class="row-nocellborder" valign="top" width="NaN%" headers="d37381e96 "> 
				  <p><samp class="codeph">bool b = q.try_pop(x);</samp> 
				  </p>
 
				</td>
 
			 </tr>
 
			 <tr> 
				<td class="cellrowborder" valign="top" width="NaN%" headers="d37381e84 "> 
				  <p>Get number of items in queue 
				  </p>
 
				</td>
 
				<td class="cellrowborder" valign="top" width="NaN%" headers="d37381e90 "> 
				  <p><samp class="codeph">size_type size() const</samp> 
				  </p>
 
				</td>
 
				<td class="row-nocellborder" valign="top" width="NaN%" headers="d37381e96 "> 
				  <p>Same, but may be inaccurate due to pending
					 concurrent push or pop operations 
				  </p>
 
				</td>
 
			 </tr>
 
			 <tr> 
				<td class="cellrowborder" valign="top" width="NaN%" headers="d37381e84 "> 
				  <p>Check if there are items in queue 
				  </p>
 
				</td>
 
				<td class="cellrowborder" valign="top" width="NaN%" headers="d37381e90 "> 
				  <p><samp class="codeph">bool empty() const</samp> 
				  </p>
 
				</td>
 
				<td class="row-nocellborder" valign="top" width="NaN%" headers="d37381e96 "> 
				  <p>Same, but may be inaccurate due to pending concurrent push or
					 pop operations 
				  </p>
 
				</td>
 
			 </tr>
 
		  </tbody>
 
		</table>
</div>
 
	 </div>
 
	 <div class="section"><h2 class="sectiontitle">Members</h2> 
		 
		<pre>namespace tbb {
  template &lt;typename T, typename Compare=std::less&lt;T&gt;,   
            typename A=cache_aligned_allocator&lt;T&gt; &gt;
  class concurrent_priority_queue {
    typedef T value_type;
    typedef T&amp; reference;
    typedef const T&amp; const_reference;
    typedef size_t size_type;
    typedef ptrdiff_t difference_type;
    typedef A allocator_type;

    //Constructors
    concurrent_priority_queue(const allocator_type&amp; a = allocator_type());  
    concurrent_priority_queue(size_type init_capacity, const allocator_type&amp; a = allocator_type());
    template&lt;typename InputIterator&gt;
    concurrent_priority_queue(InputIterator begin, InputIterator end, const allocator_type&amp; a = allocator_type());
    concurrent_priority_queue(const concurrent_priority_queue&amp; src, const allocator_type&amp; a = allocator_type());
    //C++11 specific 
    concurrent_priority_queue(const std::initializer_list&lt;T&gt; &amp; il, const allocator_type &amp;a = allocator_type());
    
    //Assignment
    concurrent_priority_queue&amp; operator=(const concurrent_priority_queue&amp; src);
    template&lt;typename InputIterator&gt;
    void assign(InputIterator begin, InputIterator end);
    //C++11 specific 
    concurrent_priority_queue&amp; operator=(const std::initializer_list&lt;T&gt; &amp; il);
    void assign(const std::initializer_list&lt;T&gt; &amp; il);

    void swap(concurrent_priority_queue&amp; other);
    
    ~concurrent_priority_queue();

    allocator_type get_allocator() const;
    
    bool empty() const;
    size_type size() const;
    
    void push(const_reference elem);
    bool try_pop(reference elem);
    
    void clear();
  };
}
</pre> 
		<div class="Note"><h3 class="NoteTipHead">
					Note</h3> 
		  <p>In Intel&reg; Threading Building Blocks (Intel&reg; TBB) 2.1, a 
			 <samp class="codeph">concurrent_queue</samp> could be bounded. Intel&reg; 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> 
		
<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="d37381e263">Member 
				  </th>
 
				  <th class="cellrowborder" valign="top" width="66.10169491525423%" id="d37381e266">Description 
				  </th>
 
				</tr>
</thead>
 
			 <tbody> 
				<tr> 
				  <td class="cellrowborder" valign="top" width="33.89830508474576%" headers="d37381e263 "><span class="keyword">concurrent_priority_queue(const
						allocator_type&amp; a = allocator_type())</span> 
				  </td>
 
				  <td class="cellrowborder" valign="top" width="66.10169491525423%" headers="d37381e266 "> 
					 <p>Constructs empty queue. 
					 </p>
 
				  </td>
 
				</tr>
 
				<tr> 
				  <td class="cellrowborder" valign="top" width="33.89830508474576%" headers="d37381e263 "><span class="keyword">concurrent_priority_queue(size_type init_capacity,
						const allocator_type&amp; a = allocator_type())</span> 
				  </td>
 
				  <td class="cellrowborder" valign="top" width="66.10169491525423%" headers="d37381e266 "> 
					 <p>Constructs an empty queue with an initial capacity. 
					 </p>
 
				  </td>
 
				</tr>
 
				<tr> 
				  <td class="cellrowborder" valign="top" width="33.89830508474576%" headers="d37381e263 "><span class="keyword">template &lt;typename InputIterator&gt; concurrent_priority_queue(InputIterator begin,
						InputIterator end, const allocator_type&amp; a = allocator_type())</span> 
				  </td>
 
				  <td class="cellrowborder" valign="top" width="66.10169491525423%" headers="d37381e266 "> 
					 <p>Constructs a queue containing copies of elements in the
						iterator half-open interval 
						<samp class="codeph">[begin, end)</samp>. 
					 </p>
 
				  </td>
 
				</tr>
 
                <tr> 
                  <td class="cellrowborder" valign="top" width="33.89830508474576%" headers="d37381e263 "><span class="keyword">concurrent_priority_queue(const std::initializer_list&lt;T&gt; &amp; il,
                     const allocator_type &amp;a = allocator_type())</span> 
                  </td>
 
                  <td class="cellrowborder" valign="top" width="66.10169491525423%" headers="d37381e266 "> 
                     <p>C++11 specific; Equivalent to <samp class="codeph">concurrent_priority_queue(<em>il</em>.begin(), <em>il</em>.end(), <em>a</em>)</samp>. 
                     </p>
 
                  </td>
 
                </tr>
 				
				<tr> 
				  <td class="cellrowborder" valign="top" width="33.89830508474576%" headers="d37381e263 "><span class="keyword">concurrent_priority_queue (const
						concurrent_priority_queue&amp; src, const allocator_type&amp; a =
						allocator_type())</span> 
				  </td>
 
				  <td class="cellrowborder" valign="top" width="66.10169491525423%" headers="d37381e266 "> 
					 <p>Constructs a copy of 
						<samp class="codeph">src</samp>. This operation is not thread-safe and
						may result in an error or an invalid copy of 
						<samp class="codeph">src</samp> if another thread is concurrently
						modifying 
						<samp class="codeph">src.</samp> 
					 </p>
 
				  </td>
 
				</tr>
 
				<tr> 
				  <td class="cellrowborder" valign="top" width="33.89830508474576%" headers="d37381e263 "><span class="keyword">concurrent_priority_queue&amp;
						operator=(const concurrent_priority_queue&amp; src)</span> 
				  </td>
 
				  <td class="cellrowborder" valign="top" width="66.10169491525423%" headers="d37381e266 "> 
					 <p>Assign contents of 
						<samp class="codeph">src</samp> to 
						<samp class="codeph">*this</samp>. This operation is not thread-safe and
						may result in an error or an invalid copy of 
						<samp class="codeph">src</samp> if another thread is concurrently
						modifying 
						<samp class="codeph">src</samp>. 
					 </p>
 
				  </td>
 
				</tr>
 
                <tr> 
                  <td class="cellrowborder" valign="top" width="33.89830508474576%" headers="d37381e263 "><span class="keyword">concurrent_priority_queue&amp;
                        operator=(const std::initializer_list&lt;T&gt; &amp; il)</span> 
                  </td>
 
                  <td class="cellrowborder" valign="top" width="66.10169491525423%" headers="d37381e266 "> 
                     <p>C++11 specific; Sets 
                        <samp class="codeph">*<em>this</em></samp> 
                        to contain data from
                        <samp class="codeph">il</samp>. 
                        <strong>Returns</strong>: reference to <samp class="codeph">*this</samp>.
                     </p>
 
                  </td>
 
                </tr>

                <tr> 
                  <td class="cellrowborder" valign="top" width="33.89830508474576%" headers="d37381e263 "><span class="keyword">template &lt;typename InputIterator&gt; void assign(InputIterator begin,
                        InputIterator end, const allocator_type&amp;)</span> 
                  </td>
 
                  <td class="cellrowborder" valign="top" width="66.10169491525423%" headers="d37381e266 "> 
                     <p>Assign contents of the
                        iterator half-open interval 
                        <samp class="codeph">[begin, end)</samp> to <samp class="codeph">*this</samp>. 
                     </p>
 
                  </td>
 
                </tr>
 
                <tr> 
                  <td class="cellrowborder" valign="top" width="33.89830508474576%" headers="d37381e263 "><span class="keyword">void assign(const std::initializer_list&lt;T&gt; &amp; il)</span> 
                  </td>
 
                  <td class="cellrowborder" valign="top" width="66.10169491525423%" headers="d37381e266 "> 
                     <p>C++11 specific; Equivalent to <samp class="codeph">assign(<em>il</em>.begin(), <em>il</em>.end())</samp>. 
                     </p>
 
                  </td>
 
                </tr>
 
				<tr> 
				  <td class="cellrowborder" valign="top" width="33.89830508474576%" headers="d37381e263 "><span class="keyword">~concurrent_priority_queue()</span> 
				  </td>
 
				  <td class="cellrowborder" valign="top" width="66.10169491525423%" headers="d37381e266 "> 
					 <p>Destroys all items in the queue, and the container itself,
						so that it can no longer be used. 
					 </p>
 
				  </td>
 
				</tr>
 
				<tr> 
				  <td class="cellrowborder" valign="top" width="33.89830508474576%" headers="d37381e263 "><span class="keyword">bool empty() const</span> 
				  </td>
 
				  <td class="cellrowborder" valign="top" width="66.10169491525423%" headers="d37381e266 "> 
					 <p><strong>Returns</strong>: 
						<samp class="codeph">true</samp> if queue has no items; 
						<samp class="codeph">false</samp> otherwise. May be inaccurate when
						concurrent 
						<samp class="codeph">push</samp> or 
						<samp class="codeph">try_pop</samp> operations are pending. This
						operation reads shared data and may trigger a race condition in race detection
						tools when used concurrently. 
					 </p>
 
				  </td>
 
				</tr>
 
				<tr> 
				  <td class="cellrowborder" valign="top" width="33.89830508474576%" headers="d37381e263 "><span class="keyword">size_type size() const</span> 
				  </td>
 
				  <td class="cellrowborder" valign="top" width="66.10169491525423%" headers="d37381e266 "> 
					 <p><strong>Returns</strong>: Number of items in the queue. May be
						inaccurate when concurrent 
						<samp class="codeph">push</samp> or 
						<samp class="codeph">try_pop</samp> operations are pending. This
						operation reads shared data and may trigger a race condition in race detection
						tools when used concurrently. 
					 </p>
 
				  </td>
 
				</tr>
 
				<tr> 
				  <td class="cellrowborder" valign="top" width="33.89830508474576%" headers="d37381e263 "><span class="keyword">void push(const_reference
						elem)</span> 
				  </td>
 
				  <td class="cellrowborder" valign="top" width="66.10169491525423%" headers="d37381e266 "> 
					 <p>Pushes a copy of 
						<samp class="codeph">elem</samp> into the queue. This operation is
						thread-safe with other 
						<samp class="codeph">push</samp> and 
						<samp class="codeph">try_pop</samp> operations. 
					 </p>
 
				  </td>
 
				</tr>
 
				<tr> 
				  <td class="cellrowborder" valign="top" width="33.89830508474576%" headers="d37381e263 "><span class="keyword"> bool try_pop(reference
						elem)</span> 
				  </td>
 
				  <td class="cellrowborder" valign="top" width="66.10169491525423%" headers="d37381e266 "> 
					 <p>If the queue is not empty, copies the highest priority item
						from the queue and assigns it to 
						<samp class="codeph">elem</samp>, and destroys the popped item in the
						queue; otherwise, does nothing. This operation is thread-safe with other 
						<samp class="codeph">push</samp> and 
						<samp class="codeph">try_pop</samp> operations. 
					 </p>
 
					 <p><strong>Returns</strong>: 
						<samp class="codeph">true</samp> if an item was popped; 
						<samp class="codeph">false</samp> otherwise. 
					 </p>
 
				  </td>
 
				</tr>
 
				<tr> 
				  <td class="cellrowborder" valign="top" width="33.89830508474576%" headers="d37381e263 "><span class="keyword"> void clear()</span> 
				  </td>
 
				  <td class="cellrowborder" valign="top" width="66.10169491525423%" headers="d37381e266 "> 
					 <p>Clears the queue; results in 
						<samp class="codeph">size()==0</samp>. This operation is not
						thread-safe. 
					 </p>
 
				  </td>
 
				</tr>
 
				<tr> 
				  <td class="cellrowborder" valign="top" width="33.89830508474576%" headers="d37381e263 "><span class="keyword"> void
						swap(concurrent_priority_queue&amp; other)</span> 
				  </td>
 
				  <td class="cellrowborder" valign="top" width="66.10169491525423%" headers="d37381e266 "> 
					 <p>Swaps the queue contents with those of other. This operation
						is not thread-safe. 
					 </p>
 
				  </td>
 
				</tr>
 
				<tr> 
				  <td class="cellrowborder" valign="top" width="33.89830508474576%" headers="d37381e263 "><span class="keyword"> allocator_type get_allocator()
						const</span> 
				  </td>
 
				  <td class="cellrowborder" valign="top" width="66.10169491525423%" headers="d37381e266 "> 
					 <p><strong>Returns</strong>: Copy of allocator used to construct the
						queue. 
					 </p>
 
				  </td>
 
				</tr>
 
			 </tbody>
 
		  </table>
</div>
 
	 </div>
 
  </div>
 

<div class="familylinks">
<div class="parentlink"><strong>Parent topic:</strong>&nbsp;<a href="../../reference/containers_overview.htm">Containers Overview</a></div>
</div>
<div></div>

</body>
</html>