/[Biblio-Isis]/trunk/scripts/dump_isisdb.pl
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /trunk/scripts/dump_isisdb.pl

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 36 by dpavlin, Thu Jan 6 20:48:07 2005 UTC revision 50 by dpavlin, Fri Jul 7 21:11:01 2006 UTC
# Line 4  use strict; Line 4  use strict;
4  use blib;  use blib;
5    
6  use Biblio::Isis;  use Biblio::Isis;
7  use Data::Dumper;  use Getopt::Std;
8    
9  my $isisdb = shift @ARGV || '/data/isis_data/ps/LIBRI/LIBRI',  BEGIN {
10  my $debug = shift @ARGV;          eval "use Data::Dump";
11    
12            if (! $@) {
13                    *Dumper = *Data::Dump::dump;
14            } else {
15                    use Data::Dumper;
16            }
17    }
18    
19    my %opt;
20    getopts('dn:', \%opt);
21    
22    my $isisdb = shift @ARGV || die "usage: $0 [-n number] [-d] /path/to/isis/BIBL\n";
23    
24  my $isis = Biblio::Isis->new (  my $isis = Biblio::Isis->new (
25          isisdb => $isisdb,          isisdb => $isisdb,
26          debug => $debug,          debug => $opt{'d'} ? 2 : 0,
27          include_deleted => 1,          include_deleted => 1,
28  #       read_fdt => 1,  #       read_fdt => 1,
29  );  );
30    
31  print "rows: ",$isis->count,"\n\n";  print "rows: ",$isis->count,"\n\n";
32    
33  for(my $mfn = 1; $mfn <= $isis->count; $mfn++) {  my $min = 1;
34          print STDERR Dumper($isis->to_hash($mfn)),"\n" if ($debug);  my $max = $isis->count;
35    $max = $opt{n} if ($opt{n});
36    
37    for my $mfn ($min .. $max) {
38            print STDERR Dumper($isis->to_hash($mfn)),"\n" if ($opt{'d'});
39          print $isis->to_ascii($mfn),"\n";          print $isis->to_ascii($mfn),"\n";
40    
41  }  }

Legend:
Removed from v.36  
changed lines
  Added in v.50

  ViewVC Help
Powered by ViewVC 1.1.26