add some debugging to freeside-torrus-srvderive in an effort to understand why it...
[freeside.git] / FS / bin / freeside-torrus-srvderive
1 #!/usr/bin/perl -w
2
3 use strict;
4 use Date::Parse;
5 use Date::Format;
6 use FS::Daemon ':all'; #daemonize1 drop_root daemonize2 myexit logfile sig*
7 use FS::UID qw( adminsuidsetup dbh driver_name );
8 use FS::Record qw( qsearch str2time_sql str2time_sql_closing concat_sql );
9 use FS::torrus_srvderive;
10
11 our $DEBUG = 2;
12
13 my $user = shift or die &usage;
14 $FS::Daemon::PID_NEWSTYLE = 1;
15 daemonize1('torrus-srvderive');
16
17 drop_root();
18
19 adminsuidsetup($user);
20
21 logfile( "%%%FREESIDE_LOG%%%/torrus-srvderive-log.". $FS::UID::datasrc );
22
23 daemonize2();
24
25 our $conf = new FS::Conf;
26
27 die "not running: network_monitoring_system not Torrus_Internal\n"
28   unless _shouldrun();
29
30 #--
31
32 my $str2time = str2time_sql();
33 my $c = str2time_sql_closing();
34
35 my $_date = concat_sql([ 'srvexport.srv_date', "' '", 'srvexport.srv_time' ]);
36 $_date = "CAST( $_date AS TIMESTAMP )" if driver_name =~ /^Pg/i;
37 $_date = str2time_sql. $_date.  str2time_sql_closing;
38
39 my $other_date = concat_sql([ 'other.srv_date', "' '", 'other.srv_time' ]);
40 $other_date = "CAST( $other_date AS TIMESTAMP )" if driver_name =~ /^Pg/i;
41 $other_date = str2time_sql. $other_date.  str2time_sql_closing;
42
43 my $in  = concat_sql([ '?', "'_IN'" ]);
44 my $out = concat_sql([ '?', "'_OUT'" ]);
45
46 my $sql = "
47   SELECT DISTINCT srv_date, srv_time FROM srvexport
48     WHERE NOT EXISTS (
49                        SELECT 1 FROM srvexport AS other
50                          WHERE other.serviceid IN ( $in, $out )
51                            AND srvexport.srv_date = other.srv_date
52                            AND ABS( $_date - $other_date ) <= 60
53                      )
54 ";
55
56 my $orderlimit = "
57     ORDER BY srv_date, srv_time
58     LIMIT 100
59 ";
60
61
62 while (1) {
63
64   my $found = 0;
65
66   foreach my $torrus_srvderive ( qsearch('torrus_srvderive', {}) ) {
67
68     my $serviceid = $torrus_srvderive->serviceid;
69
70     my @serviceids = $torrus_srvderive->component_serviceids;
71
72     my @in = ();
73     for my $dir ('_IN', '_OUT') {
74       push @in, map dbh->quote("$_$dir"), @serviceids;
75     }
76     my $in = join(',', @in);
77
78     my $ssql = "
79       $sql AND EXISTS (
80                        SELECT 1 FROM srvexport AS other
81                          WHERE other.serviceid IN ($in)
82                            AND srvexport.srv_date = other.srv_date
83                            AND ABS( $_date - $other_date ) <= 60
84                      )
85     ";
86
87     $ssql .= " AND srv_date >= '". $torrus_srvderive->last_srv_date. "' "
88       if $torrus_srvderive->last_srv_date;
89
90     $ssql .= $orderlimit;
91
92     warn "searching for times to add $serviceid\n" if $DEBUG;
93     warn $ssql if $DEBUG > 2;
94     my $sth = dbh->prepare($ssql) or die $DBI::errstr; #better recovery?
95     $sth->execute($serviceid, $serviceid) or die $sth->errstr;
96
97     my $prev = 0;
98     while ( my $row = $sth->fetchrow_arrayref ) {
99       last if sigterm() || sigint();
100
101       my( $srv_date, $srv_time ) = @$row;
102       my $cur = str2time( "$srv_date $srv_time" );
103       next if $cur-$prev <= 60;
104       last if time - $cur <= 300;
105
106       warn "no $serviceid for $srv_date $srv_time; adding\n"
107         if $DEBUG;
108       $found++;
109
110       for my $dir ('_IN', '_OUT') {
111
112         my $sin = join(',', map dbh->quote("$_$dir"), @serviceids);
113
114         my $sum = "
115           SELECT COALESCE(SUM(value),0) FROM srvexport AS other
116             WHERE other.serviceid IN ($sin)
117               AND ABS( $cur - $other_date ) <= 60
118         ";
119
120         my $isql = "
121           INSERT INTO srvexport ( srv_date, srv_time, serviceid, value, intvl )
122             VALUES ( ?, ?, ?, ($sum), ? )
123         ";
124         my @param = ( time2str('%Y-%m-%d', $cur), #srv_date
125                       time2str('%X', $cur),       #srv_time
126                       "$serviceid$dir",
127                       300, #intvl ... 
128                     );
129         warn $isql. ' with param '. join(',',@param). "\n"
130           if $DEBUG > 2;
131
132         my $isth = dbh->prepare($isql) or die $DBI::errstr; #better recovery?
133         $isth->execute( @param )       or die $isth->errstr;
134                         
135       }
136
137       if ( $srv_date ne $torrus_srvderive->last_srv_date ) {
138         warn "updating last_srv_date of $serviceid to $srv_date\n" if $DEBUG;
139         $torrus_srvderive->last_srv_date($srv_date);
140         my $error = $torrus_srvderive->replace;
141         die $error if $error;
142       }
143       dbh->commit or die dbh->errstr;
144
145       $prev = $cur;
146     }
147     warn "done with $serviceid\n" if $DEBUG;
148
149   }
150
151   myexit() if sigterm() || sigint();
152   warn "restarting main loop\n" if $DEBUG > 1;
153   sleep 60 unless $found;
154 }
155
156 sub _shouldrun {
157      $conf->exists('network_monitoring_system')
158   && $conf->config('network_monitoring_system') eq 'Torrus_Internal';
159 }
160
161 sub usage { 
162   die "Usage:\n\n  freeside-cdrrewrited user\n";
163 }
164
165
166 =head1 NAME
167
168 freeside-torrus-srvderive - Freeside's Torrus virtual port daemon.
169
170 =head1 SYNOPSIS
171
172   freeside-torrus-srvderive
173
174 =head1 DESCRIPTION
175
176 Runs continuously, searches for samples in the srvexport table which do not
177 have an entry for combined virtual ports, and adds them.
178
179 =head1 SEE ALSO
180
181 =cut
182
183 1;
184