[BACK]Return to Cached.pm CVS log [TXT][DIR] Up to [local] / openbsd / OpenBSDTorrents / lib / BT / MetaInfo

Diff for /openbsd/OpenBSDTorrents/lib/BT/MetaInfo/Cached.pm between version 1.3 and 1.4

version 1.3, 2005/05/02 22:46:48 version 1.4, 2005/05/05 20:34:31
Line 7 
Line 7 
 use vars qw( $VERSION @ISA );  use vars qw( $VERSION @ISA );
   
 use Digest::SHA1 qw(sha1);  use Digest::SHA1 qw(sha1);
 use Fcntl ':flock'; # import LOCK_* constants  use YAML qw/ DumpFile LoadFile /;
   
 use BT::MetaInfo;  use BT::MetaInfo;
 use base 'BT::MetaInfo';  use base 'BT::MetaInfo';
   
 use OpenBSDTorrents;  use OpenBSDTorrents;
   
 use Data::Dumper;  
   
 $VERSION = do { my @r = (q$Id$ =~ /\d+/g); sprintf "%d."."%02d" x $#r, @r };  $VERSION = do { my @r = (q$Id$ =~ /\d+/g); sprintf "%d."."%02d" x $#r, @r };
   
 sub new  sub new
 {  {
         my $classname   = shift;          my $class = shift;
         return $classname->SUPER::new(@_);          my $file  = shift;
   
           my $obj = (defined($file)) ? _load($file, @_) : {};
           return(bless($obj, $class));
 }  }
   
   sub _load {
           my $file = shift;
           my $meta_file = shift;
           my $regen = shift;
   
           my $info;
           if ($meta_file && ! $regen && -e $meta_file) {
                   $info = LoadFile($meta_file);
           }
   
 sub info_hash_cached          unless ($info) {
 {                  $info = BT::MetaInfo::_load($file);
         my $self = shift;                  DumpFile($meta_file, $info) if $meta_file;
         my $torrent = shift;  
   
         return $self->SUPER::info_hash unless $torrent;  
   
         my $meta_file = $torrent;  
         $meta_file =~ s/\.torrent$/.$OBT->{META_EXT}/;  
   
         my $hash = undef;  
   
         if (-e $meta_file) {  
                 #print "Reading meta file: $meta_file\n";  
                 open my $meta, $meta_file or die "Couldn't open $meta_file: $!";  
                 flock($meta, LOCK_SH);  
                 binmode $meta;  
   
                 $hash = do { local $/; <$meta> };  
   
                 flock($meta, LOCK_UN);  
                 close $meta;  
         } else {  
                 $hash = $self->SUPER::info_hash;  
                 #print "Writing meta file: $meta_file\n";  
                 open my $meta, '>', $meta_file  
                         or die "Couldn't open $meta_file: $!";  
                 flock($meta, LOCK_EX);  
                 binmode $meta;  
   
                 print $meta $hash;  
   
                 flock($meta, LOCK_UN);  
                 close $meta;  
   
         }          }
         #my $text_hash = unpack("H*", $hash);  
         #print "INFO_HASH: $text_hash\n";          return $info;
   
         return $hash;  
 }  }
   
   #sub cached
   #{
   #       my $self = shift;
   #        my $which_info = shift;
   #       my $file = shift;
   #       my @args = @_;
   #
   #       if (@args) {
   #               return $self->$which_info(@args),
   #       }
   #
   #       return undef unless $which_info;
   #       return $self->$which_info unless $file;
   #
   #       my $info = undef;
   #
   #       if (-e $file) {
   #               #print "Reading meta file: $file\n";
   #               $info = LoadFile($file);
   #       }
   #
   #       unless ($info->{$which_info}) {
   #               my $cur_info = $self->$which_info;
   #
   #               $info->{$which_info} = $cur_info;
   #               DumpFile($file, $info);
   #       }
   #
   #       if (defined $info->{$which_info}) {
   #               return $info->{$which_info};
   #       } else {
   #               return $self->$which_info;
   #       }
   #}
   
 1  1

Legend:
Removed from v.1.3  
changed lines
  Added in v.1.4

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>