home *** CD-ROM | disk | FTP | other *** search
/ Chip 2000 May / Chip_2000-05_cd1.bin / zkuste / Perl / ActivePerl-5.6.0.613.msi / 䆊䌷䈹䈙䏵-䞅䞆䞀㡆䞃䄦䠥 / _2fa44779be244e63c87f5c87291b3c3a < prev    next >
Text File  |  2000-03-21  |  2KB  |  96 lines

  1. package Thread::Queue;
  2. use Thread qw(cond_wait cond_broadcast);
  3.  
  4. =head1 NAME
  5.  
  6. Thread::Queue - thread-safe queues
  7.  
  8. =head1 SYNOPSIS
  9.  
  10.     use Thread::Queue;
  11.     my $q = new Thread::Queue;
  12.     $q->enqueue("foo", "bar");
  13.     my $foo = $q->dequeue;    # The "bar" is still in the queue.
  14.     my $foo = $q->dequeue_nb; # returns "bar", or undef if the queue was
  15.                               # empty
  16.     my $left = $q->pending;   # returns the number of items still in the queue
  17.  
  18. =head1 DESCRIPTION
  19.  
  20. A queue, as implemented by C<Thread::Queue> is a thread-safe data structure
  21. much like a list. Any number of threads can safely add elements to the end
  22. of the list, or remove elements from the head of the list. (Queues don't
  23. permit adding or removing elements from the middle of the list)
  24.  
  25. =head1 FUNCTIONS AND METHODS
  26.  
  27. =over 8
  28.  
  29. =item new
  30.  
  31. The C<new> function creates a new empty queue.
  32.  
  33. =item enqueue LIST
  34.  
  35. The C<enqueue> method adds a list of scalars on to the end of the queue.
  36. The queue will grow as needed to accomodate the list.
  37.  
  38. =item dequeue
  39.  
  40. The C<dequeue> method removes a scalar from the head of the queue and
  41. returns it. If the queue is currently empty, C<dequeue> will block the
  42. thread until another thread C<enqueue>s a scalar.
  43.  
  44. =item dequeue_nb
  45.  
  46. The C<dequeue_nb> method, like the C<dequeue> method, removes a scalar from
  47. the head of the queue and returns it. Unlike C<dequeue>, though,
  48. C<dequeue_nb> won't block if the queue is empty, instead returning
  49. C<undef>.
  50.  
  51. =item pending
  52.  
  53. The C<pending> method returns the number of items still in the queue.  (If
  54. there can be multiple readers on the queue it's best to lock the queue
  55. before checking to make sure that it stays in a consistent state)
  56.  
  57. =back
  58.  
  59. =head1 SEE ALSO
  60.  
  61. L<Thread>
  62.   
  63. =cut
  64.  
  65. sub new {
  66.     my $class = shift;
  67.     return bless [@_], $class;
  68. }
  69.  
  70. sub dequeue : locked : method {
  71.     my $q = shift;
  72.     cond_wait $q until @$q;
  73.     return shift @$q;
  74. }
  75.  
  76. sub dequeue_nb : locked : method {
  77.   my $q = shift;
  78.   if (@$q) {
  79.     return shift @$q;
  80.   } else {
  81.     return undef;
  82.   }
  83. }
  84.  
  85. sub enqueue : locked : method {
  86.     my $q = shift;
  87.     push(@$q, @_) and cond_broadcast $q;
  88. }
  89.  
  90. sub pending : locked : method {
  91.   my $q = shift;
  92.   return scalar(@$q);
  93. }
  94.  
  95. 1;
  96.