=================================================================== RCS file: /cvs/openbsd/OpenBSDTorrents/CurrentTorrents.pl,v retrieving revision 1.15 retrieving revision 1.20 diff -u -r1.15 -r1.20 --- openbsd/OpenBSDTorrents/CurrentTorrents.pl 2005/05/04 01:48:35 1.15 +++ openbsd/OpenBSDTorrents/CurrentTorrents.pl 2005/06/01 19:01:46 1.20 @@ -1,14 +1,15 @@ #!/usr/bin/perl -T -#$Id: CurrentTorrents.pl,v 1.15 2005/05/04 00:48:35 andrew Exp $ +#$Id: CurrentTorrents.pl,v 1.20 2005/06/01 18:01:46 andrew Exp $ use strict; use warnings; use diagnostics; use Time::Local; +use Fcntl ':flock'; use lib 'lib'; use OpenBSDTorrents; -use BT::OBTMetaInfo; +use BT::MetaInfo::Cached; %ENV = (); @@ -87,9 +88,16 @@ next; } - my $t; - eval { $t = BT::OBTMetaInfo->new( $torrent ); }; + eval { + $t = BT::MetaInfo::Cached->new( + $torrent, + { + cache_root => + $OBT->{DIR_HOME} . '/FileCache' + } + ); + }; if ($@) { warn "Error reading torrent $torrent\n"; @@ -106,12 +114,13 @@ next; } - my $hash = $t->info_hash_cached($torrent); + my $hash = $t->info_hash; $hash = unpack("H*", $hash); + undef $t; + $files{torrent}{$name}{$epoch}{info_hash} = $hash; - undef $t; if (exists $keep{$name}) { if (exists $keep{$name}{$hash}) {