=================================================================== RCS file: /cvs/openbsd/OpenBSDTorrents/lib/BT/MetaInfo/Cached.pm,v retrieving revision 1.1 retrieving revision 1.9 diff -u -r1.1 -r1.9 --- openbsd/OpenBSDTorrents/lib/BT/MetaInfo/Cached.pm 2005/05/02 20:37:28 1.1 +++ openbsd/OpenBSDTorrents/lib/BT/MetaInfo/Cached.pm 2005/05/06 19:30:25 1.9 @@ -1,20 +1,71 @@ -package BT::OBTMetaInfo; +# $Id: Cached.pm,v 1.9 2005/05/06 18:30:25 andrew Exp $ +use strict; +package BT::MetaInfo::Cached; + require 5.6.0; -use strict; +use vars qw( $VERSION @ISA ); +use Cache::FileCache; +use File::Basename; + use BT::MetaInfo; +use base 'BT::MetaInfo'; -$VERSION = do { my @r = (q$Revision: 1.1 $ =~ /\d+/g); sprintf "%d."."%02d" x $#r, @r }; +$VERSION = do { my @r = (q$Id: Cached.pm,v 1.9 2005/05/06 18:30:25 andrew Exp $ =~ /\d+/g); sprintf "%d."."%02d" x $#r, @r }; sub new { - my $classname = shift; - my $pass = shift; + my $class = shift; + my $file = shift; + my $cache_settings = shift; - my $self = $classname->SUPER::new(@_); -} + if (ref $file eq 'HASH') { + $cache_settings = $file; + $file = undef; + } + $cache_settings->{namespace} ||= 'BT::MetaInfo::Cached'; -sub info_hash { return(sha1(bencode($_[0]->info))); } + my $cache = new Cache::FileCache( $cache_settings ); + my $obj = (defined($file)) ? _load($file, $cache) : {}; + + bless($obj, $class); + + $obj->{cache} = $cache; + + return $obj; +} + +sub _load { + my $file = shift; + my $cache = shift; + + my $basename = basename($file); + + my $info = $cache->get( $basename ); + + unless (defined $info) { + $info = BT::MetaInfo::_load($file); + $cache->set( $basename, $info ); + } + return $info; +} + + +sub save +{ + my $self = shift; + my $file = shift; + my $basename = basename($file); + + my $cache = delete $self->{cache}; + + if ( $self->SUPER::save($file, @_) ) { + my %info_hash = %$self; # unbless + $cache->set($basename, \%info_hash) + } + + $self->{cache} = $cache; +}