X-Git-Url: http://scm.dxcluster.org/gitweb/gitweb.cgi?a=blobdiff_plain;f=perl%2FDXLog.pm;h=0327a7c7d251913200acc69ee2e015aad9975503;hb=6227d68be0d99f20afc56c023b81455d100924b7;hp=785483533c562f50dfc438e30ecfebfda9cf024b;hpb=cbf3c0cd90df4c4df05dae6a00d03f7f9482d631;p=spider.git diff --git a/perl/DXLog.pm b/perl/DXLog.pm index 78548353..0327a7c7 100644 --- a/perl/DXLog.pm +++ b/perl/DXLog.pm @@ -20,7 +20,7 @@ # # Copyright (c) - 1998 Dirk Koopman G1TLH # -# $Id$ +# # package DXLog; @@ -38,14 +38,10 @@ use Carp; use strict; -use vars qw($VERSION $BRANCH); -$VERSION = sprintf( "%d.%03d", q$Revision$ =~ /(\d+)\.(\d+)/ ); -$BRANCH = sprintf( "%d.%03d", q$Revision$ =~ /\d+\.\d+\.(\d+)\.(\d+)/ || (0,0)); -$main::build += $VERSION; -$main::branch += $BRANCH; - use vars qw($log); +our %logobj; + $log = new('log', 'dat', 'm'); # create a log object that contains all the useful info needed @@ -61,7 +57,9 @@ sub new # make sure the directory exists mkdir($ref->{prefix}, 0777) unless -e $ref->{prefix}; - return bless $ref; + my $self = bless $ref; + $logobj{$self} = $self; + return $self; } sub _genfn @@ -96,7 +94,7 @@ sub open my $fh = new IO::File $self->{fn}, $mode, 0666; return undef if !$fh; - $fh->autoflush(1) if $mode ne 'r'; # make it autoflushing if writable + $fh->autoflush(0) if $mode ne 'r'; # make it (not) autoflushing if writable $self->{fh} = $fh; # print "opening $self->{fn}\n"; @@ -187,9 +185,17 @@ sub close delete $self->{fh}; } +sub flush_all +{ + foreach my $l (values %logobj) { + $l->{fh}->flush if exists $l->{fh}; + } +} + sub DESTROY { my $self = shift; + delete $logobj{$self}; undef $self->{fh}; # close the filehandle delete $self->{fh} if $self->{fh}; } @@ -200,18 +206,21 @@ sub DESTROY # The user is responsible for making sense of this! sub Log { + return unless $log; + my $t = time; $log->writeunix($t, join('^', $t, @_) ); } sub LogDbg { - DXDebug::dbg($_[$#_]); + DXDebug::dbg($_) for @_; Log(@_); } sub Logclose { $log->close(); + undef $log; } 1;