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
|
package AnyEvent::Gearman::Worker::Connection;
use Any::Moose;
use Scalar::Util 'weaken';
require bytes;
use AnyEvent::Gearman::Constants;
use AnyEvent::Gearman::Job;
extends 'AnyEvent::Gearman::Connection';
has grabbing => (
is => 'rw',
isa => 'Bool',
default => 0,
);
no Any::Moose;
sub request {
my ($self, $type, $args) = @_;
$args ||= '';
$self->add_on_ready(
sub {
$self->handler->push_write(
"\0REQ" . pack('NN', $type, bytes::length($args)) . $args
);
},
sub {
warn sprintf 'Failed to send request to "%s": %s', $self->hostspec, $!;
},
);
weaken $self;
}
sub register_function {
my ($self, $func_name) = @_;
my $prefix = $self->context->prefix;
$func_name = "$prefix\t$func_name" if $prefix;
$self->can_do($func_name);
$self->grab_job unless $self->grabbing;
}
sub unregister_function {
my ($self, $func_name) = @_;
my $prefix = $self->context->prefix;
$func_name = "$prefix\t$func_name" if $prefix;
$self->cant_do($func_name);
}
sub can_do {
my ($self, $func_name) = @_;
$self->request(CAN_DO, $func_name);
}
sub cant_do {
my ($self, $func_name) = @_;
$self->request(CANT_DO, $func_name);
}
sub grab_job {
my $self = shift;
$self->grabbing(1);
$self->request(GRAB_JOB);
}
sub pre_sleep {
my $self = shift;
$self->request(PRE_SLEEP);
}
sub process_packet_6 { # NOOP
my ($self, $len) = @_;
$self->grab_job;
}
sub process_packet_10 { # NO_JOB
my ($self, $len) = @_;
$self->grabbing(0);
$self->pre_sleep;
}
sub process_packet_11 { # JOB_ASSIGN
my ($self, $len) = @_;
my $handle = $self->handler;
$self->grabbing(0);
$handle->unshift_read( line => "\0", sub {
my $job_handle = $_[1];
$len -= bytes::length($job_handle) + 1;
$_[0]->unshift_read( line => "\0", sub {
my $function = $_[1];
$len -= bytes::length($function) + 1;
$_[0]->unshift_read( chunk => $len, sub {
my $workload = $_[1];
my $job = AnyEvent::Gearman::Job->new(
$function => $workload,
on_complete => sub {
my ($job, $result) = @_;
$self->request(WORK_COMPLETE, "$job_handle\0$result");
$self->grab_job();
},
on_data => sub {
my ($job, $data) = @_;
$self->request(WORK_DATA, "$job_handle\0$data");
},
on_fail => sub {
my ($job) = @_;
$self->request(WORK_FAIL, $job_handle);
$self->grab_job();
},
on_status => sub {
my ($job, $numerator, $denominator) = @_;
$self->request(
WORK_STATUS, "$job_handle\0$numerator\0$denominator"
);
},
on_warning => sub {
my ($job, $warning) = @_;
$self->request(WORK_WARNING, "$job_handle\0$warning");
},
);
$self->work( $job );
});
});
});
weaken $self;
}
sub work {
my ($self, $job) = @_;
my $cb = $self->context->functions->{ $job->function } or return;
$cb->($job);
}
__PACKAGE__->meta->make_immutable;
__END__
=head1 NAME
AnyEvent::Gearman::Worker::Connection - connection class for worker
=head1 METHODS
=head2 request
=head2 register_function
=head2 unregister_function
=head2 can_do
=head2 cant_do
=head2 grab_job
=head2 pre_sleep
=head2 work
=head1 AUTHOR
Daisuke Murase <typester@cpan.org>
Pedro Melo <melo@cpan.org>
=head1 COPYRIGHT AND LICENSE
Copyright (c) 2009 by KAYAC Inc.
This program is free software; you can redistribute
it and/or modify it under the same terms as Perl itself.
The full text of the license can be found in the
LICENSE file included with this module.
=cut
|