]> git.sesse.net Git - remoteglot/blobdiff - varnishcount.pl
Support constructing Position objects from FEN strings.
[remoteglot] / varnishcount.pl
index 82356d68176585139faae5fac4709d8c6e92caef..1aa0e6f8f487659940355e95f96e9ec0a0b7df4d 100755 (executable)
@@ -1,21 +1,34 @@
 #! /usr/bin/perl
-use Time::HiRes;
+use AnyEvent;
+use AnyEvent::Handle;
+use EV;
 use LWP::Simple;
 require 'config.pm';
 use strict;
 use warnings;
 no warnings qw(once);
 
-$SIG{ALRM} = sub { output(); };
-Time::HiRes::alarm(1.0, 1.0);
-
 open my $fh, "-|", "varnishncsa -F '%{%s}t %U %q tffb=%{Varnish:time_firstbyte}x' -q 'ReqURL ~ \"^/analysis.pl\"'"
        or die "varnishncsa: $!";
 my %uniques = ();
 
-while (<$fh>) {
-       chomp;
-       m#(\d+) /analysis.pl \?ims=\d+&unique=(.*) tffb=(.*)# or next;
+my $ev = AnyEvent->io(
+       fh => $fh,
+        poll => 'r',
+       cb => sub {
+               chomp (my $input = <$fh>);
+               handle_line($input);
+       }
+);
+my $ev2 = AnyEvent->timer(
+       interval => 1.0,
+       cb => \&output
+);
+EV::run;
+
+sub handle_line {
+       my $line = shift;
+       $line =~ m#(\d+) /analysis.pl \?ims=\d+&unique=(.*) tffb=(.*)# or return;
        $uniques{$2} = {
                last_seen => $1 + $3,
                grace => undef,