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
|
package POE::Component::DBIAgent::Queue;
=head1 NAME
POE::Component::DBIAgent::Queue -- Helper class for managing a
round-robin queue of Po:Co:DBIAgent:Helper's.
=cut
#### originally by Fletch <fletch@phydeaux.org>
#### originally by Fletch <fletch@phydeaux.org>
#### originally by Fletch <fletch@phydeaux.org>
#### See the credits in the AUTHOR section of the POD.
=head1 SYNOPSIS
=head1 DESCRIPTION
=cut
$VERSION = sprintf("%d.%02d", q$Revision: 0.02 $ =~ /(\d+)\.(\d+)/);
use strict;
use Carp qw/ croak carp /;
use Class::MethodMaker
new_with_init => 'new',
new_hash_init => 'hash_init',
list => [ qw( _queue ) ],
;
=head2 Methods
This are the methods we recognize:
=over 4
=item init
init the queue (currently noop)
=cut
sub init {
my $self = shift;
return $self;
}
=item add
append argument to the queue
=cut
sub add { $_[0]->_queue_push( $_[1] ) }
=item clear
Clear the queue
=cut
sub clear { $_[0]->_queue_clear }
## Internal use only
## _find_by -- Return indicies in queue for which supplied predicate
## returns true
##
sub _find_by {
my( $self, $predicate ) = @_;
my $queue = $self->_queue;
my @ret = grep $predicate->( $queue->[ $_ ] ), 0..$#{$queue};
return wantarray ? @ret : $ret[0];
}
=item find_by_pid
Find the index of helper with specified pid
=cut
sub find_by_pid {
my( $self, $pid ) = @_;
return $self->_find_by( sub { $_[0]->PID == $pid } );
}
=item find_by_wheelid
Find the index of helper with specified wheel id
=cut
sub find_by_wheelid {
my( $self, $wheel_id ) = @_;
return $self->_find_by( sub { $_[0]->ID == $wheel_id } );
}
## Internal use only
## _remove_by -- Remove first item from the queue for which supplied
## predicate returns true
##
sub _remove_by {
my( $self, $predicate ) = @_;
my $index = ( $self->_find_by( $predicate ) )[0];
return splice( @{scalar $self->_queue}, $index, 1 ) if defined $index;
return
}
=item remove_by_pid
Remove helper with specified pid
=cut
sub remove_by_pid {
my( $self, $pid ) = @_;
$self->_remove_by( sub { $_[0]->PID == $pid } );
}
=item remove_by_wheelid
Remove helper with specified wheel id
=cut
sub remove_by_wheelid {
my( $self, $wheel_id ) = @_;
$self->_remove_by( sub { $_[0]->ID == $wheel_id } );
}
=item next
Get next helper off the head of the queue (and put it back on the end
(round robin))
=cut
sub next {
my $self = shift;
my $ret = $self->_queue_shift;
$self->_queue_push( $ret );
return $ret
}
=item make_next
Force the helper with the specified wheel id to the head of the queue.
=cut
sub make_next {
my $self = shift;
my $id = shift;
my $ret = $self->remove_by_wheelid( $id );
$self->_queue_unshift( $ret );
}
=item exit_all
Tell all our helpers to exit gracefully.
=cut
sub exit_all {
my $self = shift;
#++ modified command to stop POE::Filter::Reference moaning
$_->put({query => "EXIT"}) foreach $self->_queue;
}
=item kill_all
Send the specified signal (default SIGTERM) to all helper processes
=cut
sub kill_all {
my $self = shift;
my $sig = shift || 'TERM';
my @helpers = map { $_->PID } $self->_queue;
if (@helpers) {
kill $sig => @helpers;
}
# Causes @helpers to be empty on subsequent kill_all() calls. This
# was here already; I'm just commenting it.
$self->_queue_clear;
return
}
=back
=cut
1;
__END__
=head1 AUTHOR
This module has been fine-tuned and packaged by Rob Bloodgood
E<lt>robb@empire2.comE<gt>. However, most of the code came I<directly>
from Fletch E<lt>fletch@phydeaux.orgE<gt> and adapted for the release
of POE::Component::DBIAgent. Thank you, Fletch!
However, I own all of the bugs.
This module is free software; you may redistribute it and/or modify it
under the same terms as Perl itself.
=cut
|