/[webpac2]/trunk/lib/WebPAC/Input/ISIS.pm
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/lib/WebPAC/Input/ISIS.pm

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

revision 9 by dpavlin, Sat Jul 16 17:14:43 2005 UTC revision 623 by dpavlin, Sat Aug 26 12:00:25 2006 UTC
# Line 3  package WebPAC::Input::ISIS; Line 3  package WebPAC::Input::ISIS;
3  use warnings;  use warnings;
4  use strict;  use strict;
5    
6  use WebPAC::Common;  use WebPAC::Input;
7  use base qw/WebPAC::Input WebPAC::Common/;  use Biblio::Isis 0.23;
 use Text::Iconv;  
8    
9  =head1 NAME  =head1 NAME
10    
11  WebPAC::Input::ISIS - support for CDS/ISIS source files  WebPAC::Input::ISIS - support for CDS/ISIS database files
12    
13  =head1 VERSION  =head1 VERSION
14    
15  Version 0.01  Version 0.06
16    
17  =cut  =cut
18    
19  our $VERSION = '0.01';  our $VERSION = '0.06';
20    
21    
 # auto-configure  
   
 my ($have_biblio_isis, $have_openisis) = (0,0);  
   
 eval "use Biblio::Isis 0.13;";  
 unless ($@) {  
         $have_biblio_isis = 1  
 } else {  
         eval "use OpenIsis;";  
         $have_openisis = 1 unless ($@);  
 }  
   
22  =head1 SYNOPSIS  =head1 SYNOPSIS
23    
24  Open CDS/ISIS, WinISIS or IsisMarc database using Biblio::Isis or OpenIsis  Open CDS/ISIS, WinISIS or IsisMarc database using C<Biblio::Isis>
25  module and read all records to memory.  and read all records to memory.
26    
27   my $isis = new WebPAC::Input::ISIS();   my $isis = new WebPAC::Input::ISIS();
28   $isis->open( filename => '/path/to/ISIS/ISIS' );   $isis->open( path => '/path/to/ISIS/ISIS' );
29    
30  =head1 FUNCTIONS  =head1 FUNCTIONS
31    
32  =head2 open  =head2 open_db
33    
34  This function will read whole database in memory and produce lookups.  Returns handle to database and size in records
35    
36   $isis->open(    my ($db,$size) = $isis->open_db(
37          filename => '/data/ISIS/ISIS',          path => '/path/to/LIBRI'
38          code_page => '852',          filter => sub {
39          limit_mfn => 500,                  my ($l,$field_nr) = @_;
40          start_mfn => 6000,                  # do something with $l which is line of input file
41          lookup => $lookup_obj,                  return $l;
42   );          },
43      }
44    
45  By default, ISIS code page is assumed to be C<852>.  Options:
46    
47  If optional parametar C<start_mfn> is set, this will be first MFN to read  =over 4
 from database (so you can skip beginning of your database if you need to).  
48    
49  If optional parametar C<limit_mfn> is set, it will read just 500 records  =item path
 from database in example above.  
50    
51  Returns number of last record read into memory (size of database, really).  path to CDS/ISIS database
52    
53    =back
54    
55  =cut  =cut
56    
57  sub open {  sub open_db {
58          my $self = shift;          my $self = shift;
59    
60          my $arg = {@_};          my $arg = {@_};
61    
62          my $log = $self->_get_logger();          my $log = $self->_get_logger();
63    
64          $log->logcroak("need filename") if (! $arg->{'filename'});          $log->info("opening ISIS database '$arg->{path}'");
         my $code_page = $arg->{'code_page'} || '852';  
   
         $log->logdie("can't find database ",$arg->{'filename'}) unless (glob($arg->{'filename'}.'.*'));  
65    
66          # store data in object          $log->debug("using Biblio::Isis");
67          $self->{'isis_filename'} = $arg->{'filename'};          my $isis_db = new Biblio::Isis(
68          $self->{'isis_code_page'} = $code_page;                  isisdb => $arg->{path},
69                    include_deleted => 1,
70          #$self->{'isis_code_page'} = $code_page;                  hash_filter => $arg->{filter} ? sub { return $arg->{filter}->(@_); } : undef,
71            ) or $log->logdie("can't find database $arg->{path}");
         # create Text::Iconv object  
         my $cp = Text::Iconv->new($code_page,$self->{'code_page'});  
   
         $log->info("reading ISIS database '",$arg->{'filename'},"'");  
         $log->debug("isis code page: $code_page");  
   
         my ($isis_db,$maxmfn);  
   
         if ($have_openisis) {  
                 $log->debug("using OpenIsis perl bindings");  
                 $isis_db = OpenIsis::open($arg->{'filename'});  
                 $maxmfn = OpenIsis::maxRowid( $isis_db ) || 1;  
         } elsif ($have_biblio_isis) {  
                 $log->debug("using Biblio::Isis");  
                 use Biblio::Isis;  
                 $isis_db = new Biblio::Isis(  
                         isisdb => $arg->{'filename'},  
                         include_deleted => 1,  
                         hash_filter => sub {  
                                 my $l = shift || return;  
                                 $l = $cp->convert($l);  
                                 return $l;  
                         },  
                 );  
                 $maxmfn = $isis_db->count;  
   
                 unless ($maxmfn) {  
                         $log->logwarn("no records in database ", $arg->{'filename'}, ", skipping...");  
                         return;  
                 }  
   
         } else {  
                 $log->logdie("Can't find supported ISIS library for perl. I suggent that you install Bilbio::Isis from CPAN.");  
         }  
   
   
         my $startmfn = 1;  
   
         if (my $s = $self->{'start_mfn'}) {  
                 $log->info("skipping to MFN $s");  
                 $startmfn = $s;  
         } else {  
                 $self->{'start_mfn'} = $startmfn;  
         }  
   
         $maxmfn = $startmfn + $self->{limit_mfn} if ($self->{limit_mfn});  
   
         $log->info("processing ",($maxmfn-$startmfn)." records using ",( $have_openisis ? 'OpenIsis' : 'Biblio::Isis'));  
   
   
         # read database  
         for (my $mfn = $startmfn; $mfn <= $maxmfn; $mfn++) {  
   
                 $log->debug("mfn: $mfn\n");  
   
                 my $rec;  
   
                 if ($have_openisis) {  
   
                         # read record using OpenIsis  
                         my $row = OpenIsis::read( $isis_db, $mfn );  
                         foreach my $k (keys %{$row}) {  
                                 if ($k ne "mfn") {  
                                         foreach my $l (@{$row->{$k}}) {  
                                                 $l = $cp->convert($l);  
                                                 # has subfields?  
                                                 my $val;  
                                                 if ($l =~ m/\^/) {  
                                                         foreach my $t (split(/\^/,$l)) {  
                                                                 next if (! $t);  
                                                                 $val->{substr($t,0,1)} = substr($t,1);  
                                                         }  
                                                 } else {  
                                                         $val = $l;  
                                                 }  
   
                                                 push @{$rec->{$k}}, $val;  
                                         }  
                                 } else {  
                                         push @{$rec->{'000'}}, $mfn;  
                                 }  
                         }  
   
                 } elsif ($have_biblio_isis) {  
                         $rec = $isis_db->to_hash($mfn);  
                 } else {  
                         $log->logdie("hum? implementation missing?");  
                 }  
   
                 $log->confess("record $mfn empty?") unless ($rec);  
   
                 # store  
                 if ($self->{'low_mem'}) {  
                         $self->{'db'}->put($mfn, $rec);  
                 } else {  
                         $self->{'data'}->{$mfn} = $rec;  
                 }  
   
                 # create lookup  
                 $self->{'lookup'}->add( $rec ) if ($self->{'lookup'} && can($self->{'lookup'}->add));  
   
                 $self->progress_bar($mfn,$maxmfn);  
   
         }  
72    
73          $self->{'current_mfn'} = -1;          my $size = $isis_db->count;
         $self->{'last_pcnt'} = 0;  
74    
75          $log->debug("max mfn: $maxmfn");          return ($isis_db, $size);
   
         # store max mfn and return it.  
         return $self->{'max_mfn'} = $maxmfn;  
76  }  }
77    
78  =head2 fetch_rec  =head2 fetch_rec
79    
80  Fetch next record from database. It will also displays progress bar.  Return record with ID C<$mfn> from database
   
  my $rec = $webpac->fetch_rec;  
81    
82  You should rearly have the need to call this function directly. Instead use    my $rec = $self->fetch_rec( $db, $mfn, $filter_coderef);
 C<fetch_data_structure> which returns normalised data.  
83    
84  =cut  =cut
85    
86  sub fetch_rec {  sub fetch_rec {
87          my $self = shift;          my $self = shift;
88    
89          my $log = $self->_get_logger();          my ($isis_db, $mfn, $filter_coderef) = @_;
   
         $log->logconfess("it seems that you didn't load database!") unless ($self->{'current_mfn'});  
   
         if ($self->{'current_mfn'} == -1) {  
                 $self->{'current_mfn'} = $self->{'start_mfn'};  
         } else {  
                 $self->{'current_mfn'}++;  
         }  
   
         my $mfn = $self->{'current_mfn'};  
   
         if ($mfn > $self->{'max_mfn'}) {  
                 $self->{'current_mfn'} = $self->{'max_mfn'};  
                 $log->debug("at EOF");  
                 return;  
         }  
   
         $self->progress_bar($mfn,$self->{'max_mfn'});  
   
         if ($self->{'low_mem'}) {  
                 return $self->{'db'}->get($mfn);  
         } else {  
                 return $self->{'data'}->{$mfn};  
         }  
 }  
   
 =head2 fetch_data_structure  
   
 Fetch data structure of next record from database.  
   
  my @ds = $webpac->fetch_data_structure;  
   
 =cut  
   
 sub fetch_data_structure {  
         my $self = shift;  
   
         return $self->data_structure(  
                 $self->fetch_rec(@_)  
         );  
 }  
   
 =head2 mfn  
90    
91  Returns current record number (MFN).  use Data::Dump qw/dump/;
92    warn "fetch_rec filter_coderef = ", dump($filter_coderef), $/;
93    
94   print $webpac->mfn;          my $rec = $isis_db->to_hash({
95                    mfn => $mfn,
96                    include_subfields => 1,
97                    hash_filter => sub {
98                            my ($l,$f) = @_;
99                            warn "## in hash_filter ($l,$f)\n";
100                            my $o = $filter_coderef->($l,$f);
101                            warn "## out hash_filter = $o\n";
102                            return $o;
103                    },
104            });
105    
106  =cut          return $rec;
   
 sub mfn {  
         my $self = shift;  
         return $self->{'current_mfn'};  
107  }  }
108    
109  =head1 AUTHOR  =head1 AUTHOR

Legend:
Removed from v.9  
changed lines
  Added in v.623

  ViewVC Help
Powered by ViewVC 1.1.26