File Coverage

blib/lib/Net/Async/Statsd/Server.pm
Criterion Covered Total %
statement 53 56 94.6
branch 5 8 62.5
condition 6 12 50.0
subroutine 17 19 89.4
pod 10 10 100.0
total 91 105 86.6


line stmt bran cond sub pod time code
1             package Net::Async::Statsd::Server;
2             $Net::Async::Statsd::Server::VERSION = '0.004';
3 2     2   104210 use strict;
  2         4  
  2         66  
4 2     2   11 use warnings;
  2         3  
  2         65  
5              
6 2     2   933 use parent qw(IO::Async::Notifier);
  2         369  
  2         11  
7              
8             =head1 NAME
9              
10             Net::Async::Statsd::Server - asynchronous server for Etsy's statsd protocol
11              
12             =head1 VERSION
13              
14             Version 0.004
15              
16             =head1 SYNOPSIS
17              
18             use Future;
19             use IO::Async::Loop;
20             use Net::Async::Statsd::Server;
21             my $loop = IO::Async::Loop->new;
22             $loop->add(my $statsd = Net::Async::Statsd::Server->new(
23             port => 3001,
24             ));
25             $statsd->bus->subscribe_to_event(
26             count => sub {
27             my ($ev, $k, $delta, $type) = @_;
28             }
29             );
30              
31             =head1 DESCRIPTION
32              
33             Provides an asynchronous server for the statsd API.
34              
35             =cut
36              
37 2     2   5855 use curry;
  2         409  
  2         57  
38 2     2   14 use Socket qw(SOCK_DGRAM);
  2         3  
  2         108  
39 2     2   32 use IO::Socket::IP;
  2         4  
  2         20  
40 2     2   3732 use IO::Async::Socket;
  2         34144  
  2         116  
41              
42 2     2   1319 use Net::Async::Statsd::Bus;
  2         5  
  2         1359  
43              
44             =head1 METHODS
45              
46             All public methods return a L indicating when the write has completed.
47             Since writes are UDP packets, there is no guarantee that the remote will
48             receive the value, so this is mostly intended as a way to detect when
49             statsd writes are slow.
50              
51             =cut
52              
53             =head2 host
54              
55             Which host to listen on. Probably want '0.0.0.0' (set via L)
56             here if you want to listen on all addresses.
57              
58             =cut
59              
60 0     0 1 0 sub host { shift->{host} }
61              
62             =head2 port
63              
64             The UDP port we'll accept traffic on. Use L to set it.
65              
66             =cut
67              
68 8     8 1 8878 sub port { shift->{port} }
69              
70             =head2 configure
71              
72             Used for setting values.
73              
74             =cut
75              
76             sub configure {
77 2     2 1 12610 my ($self, %args) = @_;
78 2         7 for (qw(port host)) {
79 4 100       33 $self->{$_} = delete $args{$_} if exists $args{$_};
80             }
81 2         21 $self->SUPER::configure(%args);
82             }
83              
84             =head2 listening
85              
86             Resolves with the port number when the UDP server is listening.
87              
88             =cut
89              
90             sub listening {
91 2     2 1 2012 my ($self) = @_;
92 2   33     14 $self->{listening} ||= do {
93 2         8 $self->listen
94             }
95             }
96              
97             =head2 listen
98              
99             Establishes the underlying UDP socket.
100              
101             =cut
102              
103             sub listen {
104 2     2 1 5 my ($self) = @_;
105              
106 2         8 my $f = $self->loop->new_future;
107 2 50 50     3205 my $sock = IO::Socket::IP->new(
108             Proto => 'udp',
109             ReuseAddr => 1,
110             Type => SOCK_DGRAM,
111             LocalPort => $self->port // 0,
112             Listen => $self->listen_backlog,
113             Blocking => 0,
114             ) or die "No bind: $@\n";
115 2         1884 $self->{port} = $sock->sockport;
116 2         137 my $ias = IO::Async::Socket->new(
117             handle => $sock,
118             on_recv => $self->curry::on_recv,
119             on_recv_error => $self->curry::on_recv_error,
120             );
121 2         538 $self->add_child($ias);
122 2         485 $f->done($self->port);
123             }
124              
125             =head2 bus
126              
127             Returns the L instance for this server.
128              
129             This object exists purely for the purpose of dispatching events.
130              
131             =cut
132              
133 12   66 12 1 1245 sub bus { shift->{bus} ||= Net::Async::Statsd::Bus->new }
134              
135             =head2 listen_backlog
136              
137             Default listen backlog. Immutable, set to 4096 for no particular reason.
138              
139             =cut
140              
141 2     2 1 27 sub listen_backlog { 4096 }
142              
143             {
144             my %type = (
145             ms => 'timing',
146             c => 'count',
147             g => 'gauge',
148             );
149              
150             =head2 type_for_char
151              
152             Badly-named lookup method - returns the type matching the given characters.
153              
154             =cut
155              
156             sub type_for_char {
157 6     6 1 12 my ($self, $char) = @_;
158 6 50       16 die "no character?" unless defined $char;
159 6         25 return $type{$char};
160             }
161             }
162              
163             =head2 on_recv
164              
165             Called if we receive data.
166              
167             =cut
168              
169             sub on_recv {
170 6     6 1 3718 my ($self, undef, $dgram, $addr) = @_;
171             $self->loop->resolver->getnameinfo(
172             addr => $addr,
173             numeric => 1,
174             dgram => 1,
175             )->on_done(sub {
176 6     6   59869 my ($host, $port) = @_;
177 6         37 $self->debug_printf("UDP packet received from %s", join ':', $host, $port);
178 6 50       80 my ($k, $v, $type_char, $rate) = $dgram =~ /^([^:]+):([^|]+)\|([^|]+)(?:\|\@(.+))?$/ or warn "Invalid dgram: $dgram";
179 6   50     32 $rate ||= 1;
180 6   50     22 my $type = $self->type_for_char($type_char) // 'unknown';
181 6         23 $self->bus->invoke_event(
182             $type => ($k, $v, $rate, $host, $port)
183             );
184 6         7423 $self->debug_printf(
185             "dgram %s from %s: %s => %s (%s)",
186             $dgram,
187             join(':', $host, $port),
188             $k,
189             $v,
190             $type
191             );
192 6         27 });
193             }
194              
195             =head2 on_recv_error
196              
197             Called if we had an error while receiving.
198              
199             =cut
200              
201             sub on_recv_error {
202 0     0 1   my ($self, undef, $err) = @_;
203 0           $self->debug_printf("UDP packet receive error: %s", $err);
204             }
205              
206             1;
207              
208             __END__