X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=FS%2Fbin%2Ffreeside-cdrrewrited;h=a365d73db931b27f03bc355273c59c3556c9b543;hb=9531bdfc326d205f18a5d5f05312aa20ba1484bc;hp=3382598f69f8f43c45a44a99326e599e9279ea98;hpb=25a2e0e25af651f35cd96ed5c27f8e847b84f060;p=freeside.git diff --git a/FS/bin/freeside-cdrrewrited b/FS/bin/freeside-cdrrewrited index 3382598f6..a365d73db 100644 --- a/FS/bin/freeside-cdrrewrited +++ b/FS/bin/freeside-cdrrewrited @@ -4,7 +4,7 @@ use strict; use vars qw( $conf ); use FS::Daemon ':all'; #daemonize1 drop_root daemonize2 myexit logfile sig* use FS::UID qw( adminsuidsetup ); -use FS::Record qw( qsearch ); #qsearchs); +use FS::Record qw( qsearch qsearchs ); #use FS::cdr; #use FS::cust_pkg; #use FS::queue; @@ -30,6 +30,10 @@ die "not running; cdr-asterisk_forward_rewrite, cdr-charged_party_rewrite ". #-- +my %accountcode_unmatch = (); +my $accountcode_retry = 4 * 60 * 60; # 4 hours +my $accountcode_giveup = 4 * 24 * 60 * 60; # 4 days + while (1) { #hmm... don't want to do an expensive search with an ever-growing bunch @@ -37,14 +41,22 @@ while (1) { # rewritten "skipped", i.e. why we're a daemon in the first place # instead of just doing this search like normal CDRs + my @recent = grep { ($accountcode_unmatch{$_} + $accountcode_retry) < time } + keys %accountcode_unmatch; + #hmm :/ + my $extra_sql = ''; + $extra_sql .= ' AND acctid NOT IN (', join(',', @recent). ') ' + if @recent; + my $found = 0; foreach my $cdr ( qsearch( { 'table' => 'cdr', 'extra_sql' => 'FOR UPDATE', 'hashref' => {}, - 'extra_sql' => 'WHERE freesidestatus IS NULL'. - ' AND freesiderewritestatus IS NULL'. + 'extra_sql' => 'WHERE freesidestatus IS NULL '. + ' AND freesiderewritestatus IS NULL '. + $extra_sql. ' LIMIT 1024', #arbitrary, but don't eat too much memory } ) ) { @@ -90,20 +102,33 @@ while (1) { }); unless ( $primary ) { - warn "WARNING: can't find primary CDR with session ". $cdr->sessionnum. - ", src ". $cdr->subscriber. "; will keep trying\n"; - next; - } - $primary->accountcode( $cdr->lastdata ); - #$primary->freesiderewritestatus( 'taqua-accountcode-primary' ); - my $error = $primary->replace; - if ( $error ) { - warn "WARNING: error rewriting primary CDR (will retry): $error\n"; - next; + my $cantfind = "can't find primary CDR with session ". $cdr->sessionnum. + ", src ". $cdr->subscriber; + if ( $cdr->calldate_unix + $accountcode_giveup < time ) { + push @status, 'taqua-accountcode-NOTFOUND'; + $cdr->status('done'); #so it doesn't try to rate + } else { + warn "WARNING: $cantfind; will keep trying\n"; + $accountcode_unmatch{$cdr->acctid} = time; + next; + } + + } else { + + $primary->accountcode( $cdr->lastdata ); + #$primary->freesiderewritestatus( 'taqua-accountcode-primary' ); + my $error = $primary->replace; + if ( $error ) { + warn "WARNING: error rewriting primary CDR (will retry): $error\n"; + next; + } + + push @status, 'taqua-accountcode'; + $cdr->status('done'); #so it doesn't try to rate + } - push @status, 'taqua-accountcode'; } $cdr->freesiderewritestatus( @@ -118,6 +143,8 @@ while (1) { sleep 30; #i dunno, wait and see if the database comes back? } + last if sigterm() || sigint(); + } myexit() if sigterm() || sigint(); @@ -148,9 +175,9 @@ freeside-cdrrewrited - Real-time daemon for CDR rewriting =head1 DESCRIPTION -Runs continuously, searches for CDRs and does forwarded-call rewriting if the -"cdr-asterisk_forward_rewrite" or "cdr-charged_party_rewrite" config option is -enabled. +Runs continuously, searches for CDRs and does forwarded-call rewriting if any +of the "cdr-asterisk_forward_rewrite", "cdr-charged_party_rewrite" or +"cdr-taqua-accountcode_rewrite" config options are enabled. =head1 SEE ALSO