alternate (hopefully more efficient) path: if we're more than a day behind, call...
[freeside.git] / FS / bin / freeside-torrus-srvderive
1 #!/usr/bin/perl -w
2
3 use strict;
4 use POSIX qw( :sys_wait_h );
5 use Sys::SigAction qw( set_sig_handler );
6 use Date::Parse;
7 use Date::Format;
8 use IPC::Run;
9 use FS::Daemon ':all'; #daemonize1 drop_root daemonize2 myexit logfile sig*
10 use FS::UID qw( adminsuidsetup forksuidsetup dbh driver_name );
11 use FS::Record qw( qsearch str2time_sql str2time_sql_closing concat_sql );
12 use FS::torrus_srvderive;
13
14 our $DEBUG = 2;
15 our $max_kids = 16;
16 our $search_timeout = 2*60*60; #60*60; #30*60; # 15*60 5*60; #$torrus_srvderive->last_srv_date ? 5*60 : 15*60);
17 our %kids;
18
19 my $user = shift or die &usage;
20 $FS::Daemon::PID_NEWSTYLE = 1;
21 daemonize1('torrus-srvderive');
22
23 drop_root();
24
25 adminsuidsetup($user);
26
27 logfile( "%%%FREESIDE_LOG%%%/torrus-srvderive-log.". $FS::UID::datasrc );
28
29 daemonize2();
30
31 our $conf = new FS::Conf;
32
33 die "not running: network_monitoring_system not Torrus_Internal\n"
34   unless _shouldrun();
35
36 #--
37
38 my $str2time = str2time_sql();
39 my $c = str2time_sql_closing();
40
41 my $_date = concat_sql([ 'srvexport.srv_date', "' '", 'srvexport.srv_time' ]);
42 $_date = "CAST( $_date AS TIMESTAMP )" if driver_name =~ /^Pg/i;
43 $_date = str2time_sql. $_date.  str2time_sql_closing;
44
45 my $other_date = concat_sql([ 'other.srv_date', "' '", 'other.srv_time' ]);
46 $other_date = "CAST( $other_date AS TIMESTAMP )" if driver_name =~ /^Pg/i;
47 $other_date = str2time_sql. $other_date.  str2time_sql_closing;
48
49 my $in  = concat_sql([ '?', "'_IN'" ]);
50 my $out = concat_sql([ '?', "'_OUT'" ]);
51
52 my $sql = "
53   SELECT DISTINCT srv_date, srv_time FROM srvexport
54     WHERE NOT EXISTS (
55                        SELECT 1 FROM srvexport AS other
56                          WHERE other.serviceid IN ( $in, $out )
57                            AND srvexport.srv_date = other.srv_date
58                            AND ABS( $_date - $other_date ) <= 60
59                      )
60 ";
61
62 my $orderlimit = "
63     ORDER BY srv_date, srv_time
64     LIMIT 200
65 ";
66
67 if ( driver_name =~ /mysql/i ) {
68   dbh->do('SET SESSION TRANSACTION ISOLATION LEVEL READ UNCOMMITTED');
69   dbh->commit or die dbh->errstr;
70 }
71
72 our $kids = 0;
73
74 #MAIN: while (1) {
75 while (1) {
76
77   my $found = 0;
78
79   #SERVICEID: foreach my $torrus_srvderive ( qsearch('torrus_srvderive', {}) ) {
80   foreach my $torrus_srvderive ( qsearch('torrus_srvderive', {}) ) {
81
82     &reap_kids;
83     if ( $kids >= $max_kids ) {
84       sleep 5;
85       myexit() if sigterm() || sigint();
86       redo;
87     }
88
89     defined( my $pid = fork ) or do {
90       #warn "WARNING: can't fork: $!\n";
91       #next; #don't increment the kid counter
92       die "can't fork: $!\n";
93     };
94
95     if ( $pid ) {
96       $kids++;
97       $kids{$pid} = 1;
98     } else { #kid time
99
100       #get new db handle
101       $FS::UID::dbh->{InactiveDestroy} = 1;
102
103       forksuidsetup($user);
104
105       my $serviceid = $torrus_srvderive->serviceid;
106
107       my @serviceids = $torrus_srvderive->component_serviceids;
108       exit unless @serviceids; #don't try to search for empty virtual ports
109
110       #nonlocking select statements; rows in this table never change
111       if ( driver_name =~ /mysql/i ) {
112         dbh->do('SET SESSION TRANSACTION ISOLATION LEVEL READ UNCOMMITTED');
113         dbh->commit or die dbh->errstr;
114       }
115
116       my @in = ();
117       for my $dir ('_IN', '_OUT') {
118         push @in, map dbh->quote("$_$dir"), @serviceids;
119       }
120       my $in = join(',', @in);
121
122       if ( ! $torrus_srvderive->last_srv_date ) {
123         warn "finding initial last_srv_date for $serviceid\n" if $DEBUG;
124         my $dsql = "SELECT srv_date FROM srvexport WHERE serviceid IN ($in)
125                     ORDER BY srv_date LIMIT 1";
126         my $dsth = dbh->prepare($dsql) or die $DBI::errstr;
127         $dsth->execute or die $dsth->errstr;
128         my $date = $dsth->fetchrow_arrayref->[0];
129         if ( $date ) {
130           warn "found initial last_srv_date of $date; updating $serviceid\n"
131             if $DEBUG;
132           $torrus_srvderive->last_srv_date($date);
133           my $error = $torrus_srvderive->replace;
134           die $error if $error;
135         } else {
136           warn "no initial last_srv_date for $serviceid; skipping\n" if $DEBUG;
137           exit;
138         }
139       }
140
141       #alternate (hopefully more efficient) path: if we're more than a day
142       #behind, call native torrus srvderive
143       my $last_srv_date = $torrus_srvderive->last_srv_date;
144       my $currdate = time2str('%Y-%m-%d', time);
145       if ( $last_srv_date ne $currdate ) {
146         warn "serviceid $serviceid last_srv_date != $currdate\n" if $DEBUG;
147
148         #delete records from last_srv_date
149         my $dsql =
150           'DELETE FROM srvexport WHERE srv_date = ? AND serviceid IN(?,?)';
151          my $dsth = dbh->prepare($dsql) or die $DBI::errstr;
152          $dsth->execute($last_srv_date, $serviceid.'_IN', $serviceid.'_OUT')
153            or die $dsth->errstr;
154         dbh->commit or die dbh->errstr;
155
156         foreach my $dir ('_IN','_OUT') {
157
158           #XX TORRUS_PATH
159           my @cmd = ( '/usr/local/bin/torrus', 'srvderive',
160                         "--start=$last_srv_date", "--end=$currdate",
161                         "--out=$serviceid$dir", "--func=SUM",
162                         map "$_$dir", @serviceids
163                     );
164
165           warn "calling native srvderive: ". join(' ', @cmd). "\n" if $DEBUG;
166           run( \@cmd ); #verbose?  timeout?
167
168         }
169         warn "native srvderive done" if $DEBUG;
170
171         $torrus_srvderive->last_srv_date($currdate);
172         my $error = $torrus_srvderive->replace;
173         die $error if $error;
174
175         #don't bother trying today's immediately
176         warn "done with $serviceid for now\n" if $DEBUG;
177         exit; #end-of-kid
178
179       }
180
181       my $ssql = "
182         $sql AND EXISTS (
183                          SELECT 1 FROM srvexport AS other
184                            WHERE other.serviceid IN ($in)
185                              AND srvexport.srv_date = other.srv_date
186                              AND ABS( $_date - $other_date ) <= 60
187                        )
188       ";
189
190       $ssql .= " AND srv_date >= '". $torrus_srvderive->last_srv_date. "' "
191         if $torrus_srvderive->last_srv_date;
192
193       $ssql .= $orderlimit;
194
195       warn "searching for times to add $serviceid\n" if $DEBUG;
196       warn $ssql if $DEBUG > 2;
197       my $sth = dbh->prepare($ssql) or die $DBI::errstr; #better recovery here?
198
199       eval {
200         my $h = set_sig_handler( 'ALRM', sub { die "_timeout\n"; } );
201         alarm($search_timeout);
202         $sth->execute($serviceid, $serviceid) or die $sth->errstr;
203         alarm(0);
204       };
205       alarm(0);
206       
207       if ( $@ && $@ eq "_timeout\n" ) {
208         #warn "search timed out; reconnecting and restarting\n";
209         warn "search timed out\n";
210         dbh->clone()->do("KILL QUERY ". dbh->{"mysql_thread_id"})
211           if driver_name =~ /mysql/i;
212         dbh->rollback; #or die dbh->errstr;
213         #adminsuidsetup($user);
214         #next SERVICEID; #MAIN;
215         exit;
216       } elsif ( $@ ) {
217         die $@;
218       }
219
220       warn "search for $serviceid finished; checking results\n" if $DEBUG;
221
222       my $prev = 0;
223       while ( my $row = $sth->fetchrow_arrayref ) {
224         last if sigterm() || sigint();
225
226         my( $srv_date, $srv_time ) = @$row;
227         my $cur = str2time( "$srv_date $srv_time" );
228         next if $cur-$prev <= 60;
229         last if time - $cur <= 300;
230
231         warn "no $serviceid for $srv_date $srv_time; adding\n"
232           if $DEBUG;
233         $found++;
234
235         for my $dir ('_IN', '_OUT') {
236
237           my $sin = join(',', map dbh->quote("$_$dir"), @serviceids);
238
239           my $srv_date = time2str('%Y-%m-%d', $cur);
240
241           my $sum = "
242             SELECT COALESCE(SUM(value),0) FROM srvexport AS other
243               WHERE other.serviceid IN ($sin)
244                 AND other.srv_date = '$srv_date'
245                 AND ABS( $cur - $other_date ) <= 60
246           ";
247           my $ssth = dbh->prepare($sum) or die $DBI::errstr;
248           $ssth->execute or die $ssth->errstr; #better recovery?
249           my $value = $ssth->fetchrow_arrayref->[0];
250
251           my $isql = "
252             INSERT INTO srvexport (srv_date, srv_time, serviceid, value, intvl)
253               VALUES ( ?, ?, ?, ?, ? )
254           ";
255           my @param = ( $srv_date,
256                         time2str('%X', $cur), #srv_time
257                         "$serviceid$dir",     #serviceid
258                         $value,
259                         300,                  #intvl ... 
260                       );
261           warn $isql. ' with param '. join(',',@param). "\n"
262             if $DEBUG > 2;
263
264           my $isth = dbh->prepare($isql) or die $DBI::errstr; #better recovery?
265
266           #stupid mysql deadlocks all the time on insert, so we need to recover
267           unless ( $isth->execute(@param) ) {
268             #warn "Error inserting data for $serviceid$dir (restarting): ".
269             #     $isth->errstr;
270             warn "Error inserting data for $serviceid$dir: ". $isth->errstr;
271             dbh->rollback; #or die dbh->errstr;
272             #sleep 5;
273             #next SERVICEID; #MAIN;
274             exit;
275           }
276                           
277         }
278
279         if ( $srv_date ne $torrus_srvderive->last_srv_date ) {
280           warn "updating last_srv_date of $serviceid to $srv_date\n" if $DEBUG;
281           $torrus_srvderive->last_srv_date($srv_date);
282           my $error = $torrus_srvderive->replace;
283           die $error if $error;
284         }
285         dbh->commit or die dbh->errstr;
286
287         $prev = $cur;
288       }
289       warn "done with $serviceid\n" if $DEBUG;
290
291       exit;
292       #end-of-kid
293     }
294
295   } #foreach my $torrus_srvderive
296   dbh->commit or die dbh->errstr;
297
298   myexit() if sigterm() || sigint();
299   warn "restarting main loop\n" if $DEBUG > 1;
300   #sleep 60 unless $found;
301 }
302
303 sub _shouldrun {
304      $conf->exists('network_monitoring_system')
305   && $conf->config('network_monitoring_system') eq 'Torrus_Internal';
306 }
307
308 sub usage { 
309   die "Usage:\n\n  freeside-cdrrewrited user\n";
310 }
311
312 sub reap_kids {
313   foreach my $pid ( keys %kids ) {
314     my $kid = waitpid($pid, WNOHANG);
315     if ( $kid > 0 ) {
316       $kids--;
317       delete $kids{$kid};
318     }
319   }
320 }
321
322 =head1 NAME
323
324 freeside-torrus-srvderive - Freeside's Torrus virtual port daemon.
325
326 =head1 SYNOPSIS
327
328   freeside-torrus-srvderive
329
330 =head1 DESCRIPTION
331
332 Runs continuously, searches for samples in the srvexport table which do not
333 have an entry for combined virtual ports, and adds them.
334
335 =head1 SEE ALSO
336
337 =cut
338
339 1;
340