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
|
.\" Automatically generated by Pod::Man 4.14 (Pod::Simple 3.43)
.\"
.\" Standard preamble:
.\" ========================================================================
.de Sp \" Vertical space (when we can't use .PP)
.if t .sp .5v
.if n .sp
..
.de Vb \" Begin verbatim text
.ft CW
.nf
.ne \\$1
..
.de Ve \" End verbatim text
.ft R
.fi
..
.\" Set up some character translations and predefined strings. \*(-- will
.\" give an unbreakable dash, \*(PI will give pi, \*(L" will give a left
.\" double quote, and \*(R" will give a right double quote. \*(C+ will
.\" give a nicer C++. Capital omega is used to do unbreakable dashes and
.\" therefore won't be available. \*(C` and \*(C' expand to `' in nroff,
.\" nothing in troff, for use with C<>.
.tr \(*W-
.ds C+ C\v'-.1v'\h'-1p'\s-2+\h'-1p'+\s0\v'.1v'\h'-1p'
.ie n \{\
. ds -- \(*W-
. ds PI pi
. if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch
. if (\n(.H=4u)&(1m=20u) .ds -- \(*W\h'-12u'\(*W\h'-8u'-\" diablo 12 pitch
. ds L" ""
. ds R" ""
. ds C` ""
. ds C' ""
'br\}
.el\{\
. ds -- \|\(em\|
. ds PI \(*p
. ds L" ``
. ds R" ''
. ds C`
. ds C'
'br\}
.\"
.\" Escape single quotes in literal strings from groff's Unicode transform.
.ie \n(.g .ds Aq \(aq
.el .ds Aq '
.\"
.\" If the F register is >0, we'll generate index entries on stderr for
.\" titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index
.\" entries marked with X<> in POD. Of course, you'll have to process the
.\" output yourself in some meaningful fashion.
.\"
.\" Avoid warning from groff about undefined register 'F'.
.de IX
..
.nr rF 0
.if \n(.g .if rF .nr rF 1
.if (\n(rF:(\n(.g==0)) \{\
. if \nF \{\
. de IX
. tm Index:\\$1\t\\n%\t"\\$2"
..
. if !\nF==2 \{\
. nr % 0
. nr F 2
. \}
. \}
.\}
.rr rF
.\" ========================================================================
.\"
.IX Title "Thread::Queue 3perl"
.TH Thread::Queue 3perl "2023-11-25" "perl v5.36.0" "Perl Programmers Reference Guide"
.\" For nroff, turn off justification. Always turn off hyphenation; it makes
.\" way too many mistakes in technical documents.
.if n .ad l
.nh
.SH "NAME"
Thread::Queue \- Thread\-safe queues
.SH "VERSION"
.IX Header "VERSION"
This document describes Thread::Queue version 3.14
.SH "SYNOPSIS"
.IX Header "SYNOPSIS"
.Vb 2
\& use strict;
\& use warnings;
\&
\& use threads;
\& use Thread::Queue;
\&
\& my $q = Thread::Queue\->new(); # A new empty queue
\&
\& # Worker thread
\& my $thr = threads\->create(
\& sub {
\& # Thread will loop until no more work
\& while (defined(my $item = $q\->dequeue())) {
\& # Do work on $item
\& ...
\& }
\& }
\& );
\&
\& # Send work to the thread
\& $q\->enqueue($item1, ...);
\& # Signal that there is no more work to be sent
\& $q\->end();
\& # Join up with the thread when it finishes
\& $thr\->join();
\&
\& ...
\&
\& # Count of items in the queue
\& my $left = $q\->pending();
\&
\& # Non\-blocking dequeue
\& if (defined(my $item = $q\->dequeue_nb())) {
\& # Work on $item
\& }
\&
\& # Blocking dequeue with 5\-second timeout
\& if (defined(my $item = $q\->dequeue_timed(5))) {
\& # Work on $item
\& }
\&
\& # Set a size for a queue
\& $q\->limit = 5;
\&
\& # Get the second item in the queue without dequeuing anything
\& my $item = $q\->peek(1);
\&
\& # Insert two items into the queue just behind the head
\& $q\->insert(1, $item1, $item2);
\&
\& # Extract the last two items on the queue
\& my ($item1, $item2) = $q\->extract(\-2, 2);
.Ve
.SH "DESCRIPTION"
.IX Header "DESCRIPTION"
This module provides thread-safe \s-1FIFO\s0 queues that can be accessed safely by
any number of threads.
.PP
Any data types supported by threads::shared can be passed via queues:
.IP "Ordinary scalars" 4
.IX Item "Ordinary scalars"
.PD 0
.IP "Array refs" 4
.IX Item "Array refs"
.IP "Hash refs" 4
.IX Item "Hash refs"
.IP "Scalar refs" 4
.IX Item "Scalar refs"
.IP "Objects based on the above" 4
.IX Item "Objects based on the above"
.PD
.PP
Ordinary scalars are added to queues as they are.
.PP
If not already thread-shared, the other complex data types will be cloned
(recursively, if needed, and including any \f(CW\*(C`bless\*(C'\fRings and read-only
settings) into thread-shared structures before being placed onto a queue.
.PP
For example, the following would cause Thread::Queue to create a empty,
shared array reference via \f(CW\*(C`&shared([])\*(C'\fR, copy the elements 'foo', 'bar'
and 'baz' from \f(CW@ary\fR into it, and then place that shared reference onto
the queue:
.PP
.Vb 2
\& my @ary = qw/foo bar baz/;
\& $q\->enqueue(\e@ary);
.Ve
.PP
However, for the following, the items are already shared, so their references
are added directly to the queue, and no cloning takes place:
.PP
.Vb 2
\& my @ary :shared = qw/foo bar baz/;
\& $q\->enqueue(\e@ary);
\&
\& my $obj = &shared({});
\& $$obj{\*(Aqfoo\*(Aq} = \*(Aqbar\*(Aq;
\& $$obj{\*(Aqqux\*(Aq} = 99;
\& bless($obj, \*(AqMy::Class\*(Aq);
\& $q\->enqueue($obj);
.Ve
.PP
See \*(L"\s-1LIMITATIONS\*(R"\s0 for caveats related to passing objects via queues.
.SH "QUEUE CREATION"
.IX Header "QUEUE CREATION"
.IP "\->\fBnew()\fR" 4
.IX Item "->new()"
Creates a new empty queue.
.IP "\->new(\s-1LIST\s0)" 4
.IX Item "->new(LIST)"
Creates a new queue pre-populated with the provided list of items.
.SH "BASIC METHODS"
.IX Header "BASIC METHODS"
The following methods deal with queues on a \s-1FIFO\s0 basis.
.IP "\->enqueue(\s-1LIST\s0)" 4
.IX Item "->enqueue(LIST)"
Adds a list of items onto the end of the queue.
.IP "\->\fBdequeue()\fR" 4
.IX Item "->dequeue()"
.PD 0
.IP "\->dequeue(\s-1COUNT\s0)" 4
.IX Item "->dequeue(COUNT)"
.PD
Removes the requested number of items (default is 1) from the head of the
queue, and returns them. If the queue contains fewer than the requested
number of items, then the thread will be blocked until the requisite number
of items are available (i.e., until other threads \f(CW\*(C`enqueue\*(C'\fR more items).
.IP "\->\fBdequeue_nb()\fR" 4
.IX Item "->dequeue_nb()"
.PD 0
.IP "\->dequeue_nb(\s-1COUNT\s0)" 4
.IX Item "->dequeue_nb(COUNT)"
.PD
Removes the requested number of items (default is 1) from the head of the
queue, and returns them. If the queue contains fewer than the requested
number of items, then it immediately (i.e., non-blocking) returns whatever
items there are on the queue. If the queue is empty, then \f(CW\*(C`undef\*(C'\fR is
returned.
.IP "\->dequeue_timed(\s-1TIMEOUT\s0)" 4
.IX Item "->dequeue_timed(TIMEOUT)"
.PD 0
.IP "\->dequeue_timed(\s-1TIMEOUT, COUNT\s0)" 4
.IX Item "->dequeue_timed(TIMEOUT, COUNT)"
.PD
Removes the requested number of items (default is 1) from the head of the
queue, and returns them. If the queue contains fewer than the requested
number of items, then the thread will be blocked until the requisite number of
items are available, or until the timeout is reached. If the timeout is
reached, it returns whatever items there are on the queue, or \f(CW\*(C`undef\*(C'\fR if the
queue is empty.
.Sp
The timeout may be a number of seconds relative to the current time (e.g., 5
seconds from when the call is made), or may be an absolute timeout in \fIepoch\fR
seconds the same as would be used with
\&\fBcond_timedwait()\fR.
Fractional seconds (e.g., 2.5 seconds) are also supported (to the extent of
the underlying implementation).
.Sp
If \f(CW\*(C`TIMEOUT\*(C'\fR is missing, \f(CW\*(C`undef\*(C'\fR, or less than or equal to 0, then this call
behaves the same as \f(CW\*(C`dequeue_nb\*(C'\fR.
.IP "\->\fBpending()\fR" 4
.IX Item "->pending()"
Returns the number of items still in the queue. Returns \f(CW\*(C`undef\*(C'\fR if the queue
has been ended (see below), and there are no more items in the queue.
.IP "\->limit" 4
.IX Item "->limit"
Sets the size of the queue. If set, calls to \f(CW\*(C`enqueue()\*(C'\fR will block until
the number of pending items in the queue drops below the \f(CW\*(C`limit\*(C'\fR. The
\&\f(CW\*(C`limit\*(C'\fR does not prevent enqueuing items beyond that count:
.Sp
.Vb 8
\& my $q = Thread::Queue\->new(1, 2);
\& $q\->limit = 4;
\& $q\->enqueue(3, 4, 5); # Does not block
\& $q\->enqueue(6); # Blocks until at least 2 items are
\& # dequeued
\& my $size = $q\->limit; # Returns the current limit (may return
\& # \*(Aqundef\*(Aq)
\& $q\->limit = 0; # Queue size is now unlimited
.Ve
.Sp
Calling any of the dequeue methods with \f(CW\*(C`COUNT\*(C'\fR greater than a queue's
\&\f(CW\*(C`limit\*(C'\fR will generate an error.
.IP "\->\fBend()\fR" 4
.IX Item "->end()"
Declares that no more items will be added to the queue.
.Sp
All threads blocking on \f(CW\*(C`dequeue()\*(C'\fR calls will be unblocked with any
remaining items in the queue and/or \f(CW\*(C`undef\*(C'\fR being returned. Any subsequent
calls to \f(CW\*(C`dequeue()\*(C'\fR will behave like \f(CW\*(C`dequeue_nb()\*(C'\fR.
.Sp
Once ended, no more items may be placed in the queue.
.SH "ADVANCED METHODS"
.IX Header "ADVANCED METHODS"
The following methods can be used to manipulate items anywhere in a queue.
.PP
To prevent the contents of a queue from being modified by another thread
while it is being examined and/or changed, lock the queue inside a local block:
.PP
.Vb 8
\& {
\& lock($q); # Keep other threads from changing the queue\*(Aqs contents
\& my $item = $q\->peek();
\& if ($item ...) {
\& ...
\& }
\& }
\& # Queue is now unlocked
.Ve
.IP "\->\fBpeek()\fR" 4
.IX Item "->peek()"
.PD 0
.IP "\->peek(\s-1INDEX\s0)" 4
.IX Item "->peek(INDEX)"
.PD
Returns an item from the queue without dequeuing anything. Defaults to the
head of queue (at index position 0) if no index is specified. Negative
index values are supported as with arrays (i.e., \-1
is the end of the queue, \-2 is next to last, and so on).
.Sp
If no items exists at the specified index (i.e., the queue is empty, or the
index is beyond the number of items on the queue), then \f(CW\*(C`undef\*(C'\fR is returned.
.Sp
Remember, the returned item is not removed from the queue, so manipulating a
\&\f(CW\*(C`peek\*(C'\fRed at reference affects the item on the queue.
.IP "\->insert(\s-1INDEX, LIST\s0)" 4
.IX Item "->insert(INDEX, LIST)"
Adds the list of items to the queue at the specified index position (0
is the head of the list). Any existing items at and beyond that position are
pushed back past the newly added items:
.Sp
.Vb 3
\& $q\->enqueue(1, 2, 3, 4);
\& $q\->insert(1, qw/foo bar/);
\& # Queue now contains: 1, foo, bar, 2, 3, 4
.Ve
.Sp
Specifying an index position greater than the number of items in the queue
just adds the list to the end.
.Sp
Negative index positions are supported:
.Sp
.Vb 3
\& $q\->enqueue(1, 2, 3, 4);
\& $q\->insert(\-2, qw/foo bar/);
\& # Queue now contains: 1, 2, foo, bar, 3, 4
.Ve
.Sp
Specifying a negative index position greater than the number of items in the
queue adds the list to the head of the queue.
.IP "\->\fBextract()\fR" 4
.IX Item "->extract()"
.PD 0
.IP "\->extract(\s-1INDEX\s0)" 4
.IX Item "->extract(INDEX)"
.IP "\->extract(\s-1INDEX, COUNT\s0)" 4
.IX Item "->extract(INDEX, COUNT)"
.PD
Removes and returns the specified number of items (defaults to 1) from the
specified index position in the queue (0 is the head of the queue). When
called with no arguments, \f(CW\*(C`extract\*(C'\fR operates the same as \f(CW\*(C`dequeue_nb\*(C'\fR.
.Sp
This method is non-blocking, and will return only as many items as are
available to fulfill the request:
.Sp
.Vb 5
\& $q\->enqueue(1, 2, 3, 4);
\& my $item = $q\->extract(2) # Returns 3
\& # Queue now contains: 1, 2, 4
\& my @items = $q\->extract(1, 3) # Returns (2, 4)
\& # Queue now contains: 1
.Ve
.Sp
Specifying an index position greater than the number of items in the
queue results in \f(CW\*(C`undef\*(C'\fR or an empty list being returned.
.Sp
.Vb 3
\& $q\->enqueue(\*(Aqfoo\*(Aq);
\& my $nada = $q\->extract(3) # Returns undef
\& my @nada = $q\->extract(1, 3) # Returns ()
.Ve
.Sp
Negative index positions are supported. Specifying a negative index position
greater than the number of items in the queue may return items from the head
of the queue (similar to \f(CW\*(C`dequeue_nb\*(C'\fR) if the count overlaps the head of the
queue from the specified position (i.e. if queue size + index + count is
greater than zero):
.Sp
.Vb 6
\& $q\->enqueue(qw/foo bar baz/);
\& my @nada = $q\->extract(\-6, 2); # Returns () \- (3+(\-6)+2) <= 0
\& my @some = $q\->extract(\-6, 4); # Returns (foo) \- (3+(\-6)+4) > 0
\& # Queue now contains: bar, baz
\& my @rest = $q\->extract(\-3, 4); # Returns (bar, baz) \-
\& # (2+(\-3)+4) > 0
.Ve
.SH "NOTES"
.IX Header "NOTES"
Queues created by Thread::Queue can be used in both threaded and
non-threaded applications.
.SH "LIMITATIONS"
.IX Header "LIMITATIONS"
Passing objects on queues may not work if the objects' classes do not support
sharing. See \*(L"\s-1BUGS AND LIMITATIONS\*(R"\s0 in threads::shared for more.
.PP
Passing array/hash refs that contain objects may not work for Perl prior to
5.10.0.
.SH "SEE ALSO"
.IX Header "SEE ALSO"
Thread::Queue on MetaCPAN:
<https://metacpan.org/release/Thread\-Queue>
.PP
Code repository for \s-1CPAN\s0 distribution:
<https://github.com/Dual\-Life/Thread\-Queue>
.PP
threads, threads::shared
.PP
Sample code in the \fIexamples\fR directory of this distribution on \s-1CPAN.\s0
.SH "MAINTAINER"
.IX Header "MAINTAINER"
Jerry D. Hedden, <jdhedden AT cpan DOT org>
.SH "LICENSE"
.IX Header "LICENSE"
This program is free software; you can redistribute it and/or modify it under
the same terms as Perl itself.
|