add start of torrus srvderive daemon, RT#10574
authorivan <ivan>
Sun, 27 Feb 2011 21:31:53 +0000 (21:31 +0000)
committerivan <ivan>
Sun, 27 Feb 2011 21:31:53 +0000 (21:31 +0000)
FS/bin/freeside-torrus-srvderive

index 9d9fcb6..cb2bcf4 100644 (file)
@@ -51,10 +51,14 @@ my $sql = "
                            AND srvexport.srv_date = other.srv_date
                            AND ABS( $_date - $other_date ) <= 60
                      )
+";
+
+my $orderlimit = "
     ORDER BY srv_date, srv_time
     LIMIT 100
 ";
 
+
 while (1) {
 
   my $found = 0;
@@ -63,6 +67,24 @@ while (1) {
 
     my $serviceid = $torrus_srvderive->serviceid;
 
+    my @serviceids = $torrus_srvderive->component_serviceids;
+
+    my @in = ();
+    for my $dir ('_IN', '_OUT') {
+      push @in, map dbh->quote("$_$dir"), @serviceids;
+    }
+    my $in = join(',', @in);
+
+    my $ssql = "
+      $sql AND EXISTS (
+                       SELECT 1 FROM srvexport AS other
+                         WHERE other.serviceid IN ($in)
+                           AND srvexport.srv_date = other.srv_date
+                           AND ABS( $_date - $other_date ) <= 60
+                     )
+      $orderlimit
+    ";
+
     warn $sql if $DEBUG > 2;
     my $sth = dbh->prepare($sql) or die $DBI::errstr; #better recovery?
     $sth->execute($serviceid, $serviceid) or die $sth->errstr;
@@ -79,8 +101,6 @@ while (1) {
         if $DEBUG;
       $found++;
 
-      my @serviceids = $torrus_srvderive->component_serviceids;
-
       for my $dir ('_IN', '_OUT') {
 
         my $sin = join(',', map dbh->quote("$_$dir"), @serviceids);