/[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 265 by dpavlin, Fri Dec 16 16:23:44 2005 UTC revision 285 by dpavlin, Sun Dec 18 21:06:39 2005 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 blib;
7  use base qw/WebPAC::Input WebPAC::Common/;  
8  use Text::Iconv;  use WebPAC::Input;
9    use base qw/WebPAC::Input/;
10    
11  =head1 NAME  =head1 NAME
12    
13  WebPAC::Input::ISIS - support for CDS/ISIS source files  WebPAC::Input::ISIS - support for CDS/ISIS database files
14    
15  =head1 VERSION  =head1 VERSION
16    
17  Version 0.01  Version 0.02
18    
19  =cut  =cut
20    
21  our $VERSION = '0.01';  our $VERSION = '0.02';
   
22    
 # 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 ($@);  
 }  
23    
24  =head1 SYNOPSIS  =head1 SYNOPSIS
25    
26  Open CDS/ISIS, WinISIS or IsisMarc database using Biblio::Isis or OpenIsis  Open CDS/ISIS, WinISIS or IsisMarc database using C<Biblio::Isis> or
27  module and read all records to memory.  C<OpenIsis> module and read all records to memory.
28    
29   my $isis = new WebPAC::Input::ISIS();   my $isis = new WebPAC::Input::ISIS();
30   $isis->open( filename => '/path/to/ISIS/ISIS' );   $isis->open( path => '/path/to/ISIS/ISIS' );
31    
32  =head1 FUNCTIONS  =head1 FUNCTIONS
33    
34  =head2 open  =head2 init
35    
36  This function will read whole database in memory and produce lookups.  Autoconfigure this module to use C<Biblio::Isis> or C<OpenIsis>.
37    
38   $isis->open(  =cut
         filename => '/data/ISIS/ISIS',  
         code_page => '852',  
         limit_mfn => 500,  
         start_mfn => 6000,  
         lookup => $lookup_obj,  
  );  
39    
40  By default, ISIS code page is assumed to be C<852>.  sub init {
41            my $self = shift;
42    
43  If optional parametar C<start_mfn> is set, this will be first MFN to read          eval "use Biblio::Isis 0.13;";
44  from database (so you can skip beginning of your database if you need to).          unless ($@) {
45                    $self->{have_biblio_isis} = 1
46            } else {
47                    eval "use OpenIsis;";
48                    $self->{have_openisis} = 1 unless ($@);
49            }
50    }
51    
52  If optional parametar C<limit_mfn> is set, it will read just 500 records  =head2 open_db
 from database in example above.  
53    
54  Returns size of database, regardless of C<start_mfn> and C<limit_mfn>  Returns handle to database
55  parametars, see also C<$isis->size>.  
56      my $db = $open_db(
57            path => '/path/to/LIBRI'
58      }
59    
60  =cut  =cut
61    
62  sub open {  sub open_db {
63          my $self = shift;          my $self = shift;
64    
65          my $arg = {@_};          my $arg = {@_};
66    
67          my $log = $self->_get_logger();          my $log = $self->_get_logger();
68    
69          $log->logcroak("need filename") if (! $arg->{'filename'});          $log->info("opening ISIS database '$arg->{path}'");
         my $code_page = $arg->{'code_page'} || '852';  
   
         # store data in object  
         $self->{'isis_code_page'} = $code_page;  
         foreach my $v (qw/isis_filename start_mfn limit_mfn/) {  
                 $self->{$v} = $arg->{$v} if ($arg->{$v});  
         }  
   
         # 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");  
70    
71          my ($isis_db,$db_size);          my ($isis_db,$db_size);
72    
73          if ($have_openisis) {          if ($self->{have_openisis}) {
74                  $log->debug("using OpenIsis perl bindings");                  $log->debug("using OpenIsis perl bindings");
75                  $isis_db = OpenIsis::open($arg->{'filename'});                  $isis_db = OpenIsis::open($arg->{path});
76                  $db_size = OpenIsis::maxRowid( $isis_db ) || 1;                  $db_size = OpenIsis::maxRowid( $isis_db ) || 1;
77          } elsif ($have_biblio_isis) {          } elsif ($self->{have_biblio_isis}) {
78                  $log->debug("using Biblio::Isis");                  $log->debug("using Biblio::Isis");
79                  use Biblio::Isis;                  use Biblio::Isis;
80                  $isis_db = new Biblio::Isis(                  $isis_db = new Biblio::Isis(
81                          isisdb => $arg->{'filename'},                          isisdb => $arg->{path},
82                          include_deleted => 1,                          include_deleted => 1,
83                          hash_filter => sub {                          hash_filter => sub {
84                                  my $l = shift || return;                                  my $l = shift || return;
85                                  $l = $cp->convert($l);                                  $l = $self->{iconv}->convert($l) if ($self->{iconv});
86                                  return $l;                                  return $l;
87                          },                          },
88                  ) or $log->logdie("can't find database ",$arg->{'filename'});                  ) or $log->logdie("can't find database $arg->{path}");
89    
90                  $db_size = $isis_db->count;                  $db_size = $isis_db->count;
91    
                 unless ($db_size) {  
                         $log->logwarn("no records in database ", $arg->{'filename'}, ", skipping...");  
                         return;  
                 }  
   
92          } else {          } else {
93                  $log->logdie("Can't find supported ISIS library for perl. I suggent that you install Bilbio::Isis from CPAN.");                  $log->logdie("Can't find supported ISIS library for perl. I suggent that you install Bilbio::Isis from CPAN.");
94          }          }
95    
96            return ($isis_db, $db_size);
         my $startmfn = 1;  
         my $maxmfn = $db_size;  
   
         if (my $s = $self->{'start_mfn'}) {  
                 $log->info("skipping to MFN $s");  
                 $startmfn = $s;  
         } else {  
                 $self->{'start_mfn'} = $startmfn;  
         }  
   
         if ($self->{limit_mfn}) {  
                 $log->info("limiting to ",$self->{limit_mfn}," records");  
                 $maxmfn = $startmfn + $self->{limit_mfn} - 1;  
                 $maxmfn = $db_size if ($maxmfn > $db_size);  
         }  
   
         # store size for later  
         $self->{'size'} = ($maxmfn - $startmfn) ? ($maxmfn - $startmfn + 1) : 0;  
   
         $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?");  
                 }  
   
                 if (! $rec) {  
                         $log->warn("record $mfn empty? skipping...");  
                         next;  
                 }  
   
                 # store  
                 if ($self->{'low_mem'}) {  
                         $self->{'db'}->put($mfn, $rec);  
                 } else {  
                         $self->{'data'}->{$mfn} = $rec;  
                 }  
   
                 # create lookup  
                 $self->{'lookup'}->add( $rec ) if ($rec && $self->{'lookup'});  
   
                 $self->progress_bar($mfn,$maxmfn);  
   
         }  
   
         $self->{'current_mfn'} = -1;  
         $self->{'last_pcnt'} = 0;  
   
         $log->debug("max mfn: $maxmfn");  
   
         # store max mfn and return it.  
         $self->{'max_mfn'} = $maxmfn;  
   
         return $db_size;  
97  }  }
98    
99  =head2 fetch  =head2 fetch_rec
   
 Fetch next record from database. It will also displays progress bar.  
100    
101   my $rec = $isis->fetch;  Return record with ID C<$mfn> from database
102    
103  Record from this function should probably go to C<data_structure> for    my $rec = $self->fetch_rec( $db, $mfn );
 normalisation.  
104    
 =cut  
   
 sub fetch {  
         my $self = shift;  
   
         my $log = $self->_get_logger();  
   
         $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'});  
   
         my $rec;  
   
         if ($self->{'low_mem'}) {  
                 $rec = $self->{'db'}->get($mfn);  
         } else {  
                 $rec = $self->{'data'}->{$mfn};  
         }  
   
         $rec ||= 0E0;  
 }  
   
 =head2 pos  
   
 Returns current record number (MFN).  
   
  print $isis->pos;  
   
 First record in database has position 1.  
   
 =cut  
   
 sub pos {  
         my $self = shift;  
         return $self->{'current_mfn'};  
105  }  }
106    
   
 =head2 size  
   
 Returns number of records in database  
   
  print $isis->size;  
   
 Result from this function can be used to loop through all records  
   
  foreach my $mfn ( 1 ... $isis->size ) { ... }  
   
 because it takes into account C<start_mfn> and C<limit_mfn>.  
   
107  =cut  =cut
108    
109  sub size {  sub fetch_rec {
110          my $self = shift;          my $self = shift;
         return $self->{'size'};  
 }  
111    
112  =head2 seek          my ($isis_db, $mfn) = @_;
113    
114  Seek to specified MFN in file.          my $rec;
   
  $isis->seek(42);  
   
 First record in database has position 1.  
115    
116  =cut          if ($self->{have_openisis}) {
117    
118  sub seek {                  # read record using OpenIsis
119          my $self = shift;                  my $row = OpenIsis::read( $isis_db, $mfn );
         my $pos = shift || return;  
120    
121          my $log = $self->_get_logger();                  # convert record to hash
122                    foreach my $k (keys %{$row}) {
123                            if ($k ne "mfn") {
124                                    foreach my $l (@{$row->{$k}}) {
125                                            $l = $self->{iconv}->convert($l) if ($self->{iconv});
126                                            # has subfields?
127                                            my $val;
128                                            if ($l =~ m/\^/) {
129                                                    foreach my $t (split(/\^/,$l)) {
130                                                            next if (! $t);
131                                                            $val->{substr($t,0,1)} = substr($t,1);
132                                                    }
133                                            } else {
134                                                    $val = $l;
135                                            }
136                                            push @{$rec->{$k}}, $val;
137                                    }
138                            } else {
139                                    push @{$rec->{'000'}}, $mfn;
140                            }
141                    }
142    
143          if ($pos < 1) {          } elsif ($self->{have_biblio_isis}) {
144                  $log->warn("seek before first record");                  $rec = $isis_db->to_hash($mfn);
145                  $pos = 1;          } else {
146          } elsif ($pos > $self->{'max_mfn'}) {                  $self->_get_logger()->logdie("hum? implementation missing?");
                 $log->warn("seek beyond last record");  
                 $pos = $self->{'max_mfn'};  
147          }          }
148    
149          return $self->{'current_mfn'} = (($pos - 1) || -1);          return $rec;
150  }  }
151    
152  =head1 AUTHOR  =head1 AUTHOR

Legend:
Removed from v.265  
changed lines
  Added in v.285

  ViewVC Help
Powered by ViewVC 1.1.26