X-Git-Url: http://dxcluster.net/gitweb/gitweb.cgi?a=blobdiff_plain;f=perl%2FUSDB.pm;h=d5ac1d8a59cd2a5ea5fe90e77d60eea13965bd3f;hb=4b66b2a1eb8b919480eb87827a7215fcb359b7d0;hp=ed519b4b86aa5e2cc03d6222ffcb824586774fbe;hpb=d0e554d25adfe94a2d5a1c3f57b48bfab1a9f4a2;p=spider.git diff --git a/perl/USDB.pm b/perl/USDB.pm index ed519b4b..d5ac1d8a 100644 --- a/perl/USDB.pm +++ b/perl/USDB.pm @@ -28,7 +28,12 @@ $dbfn = "$main::data/usdb.v1"; sub init { end(); - tie %db, 'DB_File', $dbfn and $present = 1; + if (tie %db, 'DB_File', $dbfn, O_RDONLY, 0664, $DB_BTREE) { + $present = 1; + dbg("US Database loaded"); + } else { + dbg("US Database not loaded"); + } } sub end @@ -90,18 +95,19 @@ sub load my %dbn; if (-e $dbfn ) { - syscopy($dbfn, "$dbfn.new") or return "cannot copy $dbfn -> $dbfn.new $!"; + copy($dbfn, "$dbfn.new") or return "cannot copy $dbfn -> $dbfn.new $!"; } tie %dbn, 'DB_File', "$dbfn.new", O_RDWR|O_CREAT, 0664, $a or return "cannot tie $dbfn.new $!"; # now write away all the files for (@_) { - my $fn = shift; - my $f = gzopen($fn, "r") or return "Cannot open $fn $!"; - my $l; - while ($f->gzreadline($l)) { - chomp $l; + my $ofn = shift; + my $of = new IO::File "$ofn" or return "Cannot read $ofn $!"; + + while (<$of>) { + my $l = $_; + $l =~ s/[\r\n]+$//; my ($call, $city, $state) = split /\|/, $l; # lookup the city @@ -117,11 +123,13 @@ sub load } $dbn{$call} = $ctyn; } - $f->gzclose; + $of->close; + unlink $ofn; } untie %dbn; rename "$dbfn.new", $dbfn; + return (); } 1;