summary refs log tree commit diff
path: root/lib/presque/worker.pm
blob: 6e43c5264b250e41bf39248692f01db762d7ed45 (plain) (blame)
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
package presque::worker;

use Moose;
our $VERSION = '0.01';

use AnyEvent;
use AnyEvent::HTTP;

use Carp;
use JSON;
use Try::Tiny;

has base_uri => ( is => 'ro', isa => 'Str', required => 1 );
has queue    => ( is => 'ro', isa => 'Str', required => 1 );
has interval => ( is => 'ro', isa => 'Int', lazy     => 1, default => 5 );

sub BUILD {
    my ( $self, $args ) = @_;
    my ( $get, $timer );

    my $uri       = $self->base_uri;
    my $queue     = $self->queue;
    my $queue_uri = $uri . '/q/' . $queue;

    if ( !$self->meta->find_method_by_name('work') ) {
        Carp::confess "method work is missing";
    }

    $get = sub {
        http_get $queue_uri, sub {
            my ( $body, $hdr ) = @_;
            return if ( !$body || $hdr->{Status} != 200 );
            my $content = JSON::decode_json($body);

            try {
                $self->work($content);
            }
            catch {
                $self->fail($content, $_) if $self->meta->find_method_by_name('fail');
            };
            $timer = AnyEvent->timer( after => $self->interval, cb => $get );
        };
    };
    $get->();
    return $self;
}

1;
__END__

=head1 NAME

presque::worker - a presque worker

=head1 SYNOPSIS

    package myworker;
    use Moose;
    extends 'presque::worker';

    sub work {
        my ($self, $job) = @_;
        ...
    }

    sub fail {
        my ($self, $job, $error) = @_;
        ...
    }

=head1 DESCRIPTION

presque::worker - Worker for the C<presque> message queue system

=head1 METHODS

=head2 work ($job_description)

Worker must implement the B<work> method. The only argument of this method is a hashref
containing the job.

=head2 fail ($job_description, $error_reason)

Worker may implement the B<fail> method. This method have two arguments: the job description
and the reason of the failure.

=head1 AUTHOR

franck cuny E<lt>franck@lumberjaph.netE<gt>

=head1 SEE ALSO

=head1 LICENSE

Copyright 2010 by Linkfluence

L<http://linkfluence.net>

This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself.

=cut