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
|
package Thread::Conveyor::Throttled;
# Make sure we have version info for this module
# Make sure we're a conveyor belt
# Make sure we do everything by the book from now on
$VERSION = '0.21';
@ISA = qw(Thread::Conveyor);
use strict;
# Make sure we only load stuff when we actually need it
use load;
# Satisfy -require-
1;
#---------------------------------------------------------------------------
# The following subroutines are loaded only on demand
__END__
#---------------------------------------------------------------------------
# Class methods
#---------------------------------------------------------------------------
# IN: 1 class with which to bless the object
# 2 parameter hash reference
# OUT: 1 instantiated object
sub new {
# Obtain the class
# Obtain the parameter hash
# Create a conveyor belt of the right type and save its object
# Create local copy of it's semaphore (save one indirection later on)
# Return with a blessed object
my $class = shift;
my $self = shift;
my $belt = $self->{'belt'} = $class->SUPER::_new(
'Thread::Conveyor::'.(qw(Tied Array)[($self->{'optimize'}||'') eq 'cpu']),
@_
);
$self->{'semaphore'} = $belt->semaphore;
bless $self,$class;
} #new
#---------------------------------------------------------------------------
# object methods
#---------------------------------------------------------------------------
# IN: 1 instantiated object
# 2..N parameters to be passed as a box onto the belt
sub put {
# Obtain the object
# De-activate box putting if too many now
# Go perform the ordinary method
my $self = shift;
$self->_red;
$self->{'belt'}->put( @_ );
} #put
#---------------------------------------------------------------------------
# IN: 1 instantiated object
# OUT: 1..N parameters returned from a box on the belt
sub take {
# Obtain the object
# Activate box putting again if so allowed
# Go perform the ordinary method
my $self = shift;
$self->_green;
$self->{'belt'}->take( @_ );
} #take
#---------------------------------------------------------------------------
# IN: 1 instantiated object
# OUT: 1..N parameters returned from a box on the belt
sub take_dontwait {
# Obtain the object
# Activate box putting again if so allowed
# Go perform the ordinary method
my $self = shift;
$self->_green;
$self->{'belt'}->take_dontwait( @_ );
} #take_dontwait
#---------------------------------------------------------------------------
# IN: 1 instantiated object
# OUT: 1..N references to contents of boxes
sub clean { shift->{'belt'}->clean } #clean
#---------------------------------------------------------------------------
# IN: 1 instantiated object
# OUT: 1..N references to contents of boxes
sub clean_dontwait { shift->{'belt'}->clean_dontwait } #clean_dontwait
#---------------------------------------------------------------------------
# IN: 1 instantiated object
# 2 index into array at which to peek (default: 0)
# OUT: 1..N parameters returned from a box on the belt
sub peek { shift->{'belt'}->peek( @_ ) } #peek
#---------------------------------------------------------------------------
# IN: 1 instantiated object
# 2 index into array at which to peek (default: 0)
# OUT: 1..N parameters returned from a box on the belt
sub peek_dontwait { shift->{'belt'}->peek_dontwait( @_ ) } #peek_dontwait
#---------------------------------------------------------------------------
# IN: 1 instantiated object
# OUT: 1 number of boxes on the belt
sub onbelt { shift->{'belt'}->onbelt } #onbelt
#---------------------------------------------------------------------------
# IN: 1 instantiated object
# 2 new maxboxes value (default: no change)
# OUT: 1 current maxboxes value
sub maxboxes {
# Obtain the object
# Set the new maxboxes and minboxes value if new value specified
# Return current value
my $self = shift;
$self->{'minboxes'} = ($self->{'maxboxes'} = shift) >> 1 if @_;
$self->{'maxboxes'};
} #maxboxes
#---------------------------------------------------------------------------
# IN: 1 instantiated object
# 2 new minboxes value (default: no change)
# OUT: 1 current minboxes value
sub minboxes {
# Obtain the object
# Set the new minboxes value if new value specified
# Return current value
my $self = shift;
$self->{'minboxes'} = shift if @_;
$self->{'minboxes'};
} #minboxes
#---------------------------------------------------------------------------
# IN: 1 instantiated object
sub shutdown { undef } #shutdown
#---------------------------------------------------------------------------
# IN: 1 instantiated object
# OUT: 1 thread object associated with belt (always undef)
sub thread { undef } #thread
#---------------------------------------------------------------------------
# IN: 1 instantiated object
# OUT: 1 thread id of thread object associated with belt (always undef)
sub tid { undef } #tid
#---------------------------------------------------------------------------
# internal methods
#---------------------------------------------------------------------------
# IN: 1 instantiated object
sub _red {
# Obtain the object
# Return now if there is no throttling anymore
# Obtain local copy of the belt
my $self = shift;
return unless $self->{'maxboxes'};
my ($belt,$semaphore,$halted) = @$self{qw(belt semaphore halted)};
# Lock the belt
# If were halted
# Wait until the halt flag is reset
# Notify the rest of the world again
lock( $semaphore );
return unless $$halted;
if ($$halted) {
threads::shared::cond_wait( $semaphore ) while $$halted;
threads::shared::cond_broadcast( $semaphore );
# Elseif there are now too many boxes in the belt
# Set the box putting halted flag
# Wake up any threads that are waiting for boxes to be handled
# Wait until the halt flag is reset
# Notify the rest of the world again
} elsif ($belt->onbelt > $self->{'maxboxes'}) {
$$halted = 1;
threads::shared::cond_broadcast( $semaphore );
threads::shared::cond_wait( $semaphore ) while $$halted;
threads::shared::cond_broadcast( $semaphore );
}
} #_red
#---------------------------------------------------------------------------
# IN: 1 instantiated object
sub _green {
# Obtain the object
# Return now if we don't have throttling anymore
# Get local copies of the stuff we need
my $self = shift;
return unless $self->{'maxboxes'};
my ($belt,$semaphore,$halted) = @$self{qw(belt semaphore halted)};
# Lock access to the belt
# Return now if box putting is not halted
# Return if current number boxes of is still more than minimum number of boxes
lock( $semaphore );
return unless $$halted;
return if $belt->onbelt > $belt->{'minboxes'};
# Reset the halted flag, allow box putting again
# Wake up all of the other threads to allow them to submit again
$$halted = 0;
threads::shared::cond_broadcast( $semaphore );
} #_green
#---------------------------------------------------------------------------
# IN: 1 instantiated object
# OUT: 1..N references to frozen contents of boxes
sub _clean { shift->{'belt'}->_clean } #_clean
#---------------------------------------------------------------------------
__END__
=head1 NAME
Thread::Conveyor::Throttled - helper class of Thread::Conveyor
=head1 DESCRIPTION
This class should not be called by itself, but only with a call to
L<Thread::Conveyor>.
=head1 AUTHOR
Elizabeth Mattijsen, <liz@dijkmat.nl>.
Please report bugs to <perlbugs@dijkmat.nl>.
=head1 COPYRIGHT
Copyright (c) 2002, 2003, 2004, 2007, 2010 Elizabeth Mattijsen <liz@dijkmat.nl>.
All rights reserved. This program is free software; you can redistribute it
and/or modify it under the same terms as Perl itself.
=head1 SEE ALSO
L<Thread::Conveyor>.
=cut
|