/[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 652 by dpavlin, Thu Sep 7 15:01:45 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.07
16    
17  =cut  =cut
18    
19  our $VERSION = '0.01';  our $VERSION = '0.07';
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
   
 This function will read whole database in memory and produce lookups.  
   
  $isis->open(  
         filename => '/data/ISIS/ISIS',  
         code_page => '852',  
         limit_mfn => 500,  
         start_mfn => 6000,  
         lookup => $lookup_obj,  
  );  
   
 By default, ISIS code page is assumed to be C<852>.  
   
 If optional parametar C<start_mfn> is set, this will be first MFN to read  
 from database (so you can skip beginning of your database if you need to).  
   
 If optional parametar C<limit_mfn> is set, it will read just 500 records  
 from database in example above.  
   
 Returns size of database, regardless of C<start_mfn> and C<limit_mfn>  
 parametars, see also C<$isis->size>.  
   
 =cut  
   
 sub open {  
         my $self = shift;  
         my $arg = {@_};  
   
         my $log = $self->_get_logger();  
   
         $log->logcroak("need filename") if (! $arg->{'filename'});  
         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");  
   
         my ($isis_db,$db_size);  
   
         if ($have_openisis) {  
                 $log->debug("using OpenIsis perl bindings");  
                 $isis_db = OpenIsis::open($arg->{'filename'});  
                 $db_size = 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;  
                         },  
                 ) or $log->logdie("can't find database ",$arg->{'filename'});  
   
                 $db_size = $isis_db->count;  
   
                 unless ($db_size) {  
                         $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;  
         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;  
33    
34          $log->debug("max mfn: $maxmfn");  Returns handle to database and size in records
35    
36          # store max mfn and return it.    my ($db,$size) = $isis->open_db(
37          $self->{'max_mfn'} = $maxmfn;          path => '/path/to/LIBRI'
38            filter => sub {
39                    my ($l,$field_nr) = @_;
40                    # do something with $l which is line of input file
41                    return $l;
42            },
43      }
44    
45          return $db_size;  Options:
 }  
46    
47  =head2 fetch  =over 4
48    
49  Fetch next record from database. It will also displays progress bar.  =item path
50    
51   my $rec = $isis->fetch;  path to CDS/ISIS database
52    
53  Record from this function should probably go to C<data_structure> for  =back
 normalisation.  
54    
55  =cut  =cut
56    
57  sub fetch {  sub open_db {
58          my $self = shift;          my $self = shift;
59    
60          my $log = $self->_get_logger();          my $arg = {@_};
   
         $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'}++;  
         }  
61    
62          my $mfn = $self->{'current_mfn'};          my $log = $self->_get_logger();
63    
64          if ($mfn > $self->{'max_mfn'}) {          $log->info("opening ISIS database '$arg->{path}'");
                 $self->{'current_mfn'} = $self->{'max_mfn'};  
                 $log->debug("at EOF");  
                 return;  
         }  
65    
66          $self->progress_bar($mfn,$self->{'max_mfn'});          $log->debug("using Biblio::Isis");
67            my $isis_db = new Biblio::Isis(
68                    isisdb => $arg->{path},
69                    include_deleted => 1,
70                    hash_filter => $arg->{filter} ? sub { return $arg->{filter}->(@_); } : undef,
71            ) or $log->logdie("can't find database $arg->{path}");
72    
73          my $rec;          my $size = $isis_db->count;
74    
75          if ($self->{'low_mem'}) {          $self->{_isis_db} = $isis_db;
                 $rec = $self->{'db'}->get($mfn);  
         } else {  
                 $rec = $self->{'data'}->{$mfn};  
         }  
76    
77          $rec ||= 0E0;          return ($isis_db, $size);
78  }  }
79    
80  =head2 pos  =head2 fetch_rec
   
 Returns current record number (MFN).  
81    
82   print $isis->pos;  Return record with ID C<$mfn> from database
83    
84  First record in database has position 1.    my $rec = $self->fetch_rec( $mfn, $filter_coderef);
85    
86  =cut  =cut
87    
88  sub pos {  sub fetch_rec {
89          my $self = shift;          my $self = shift;
         return $self->{'current_mfn'};  
 }  
   
   
 =head2 size  
90    
91  Returns number of records in database          my ($mfn, $filter_coderef) = @_;
92    
93   print $isis->size;          my $rec = $self->{_isis_db}->to_hash({
94                    mfn => $mfn,
95                    include_subfields => 1,
96                    hash_filter => $filter_coderef,
97    #               hash_filter => sub {
98    #                       my ($l,$f) = @_;
99    #                       warn "## in hash_filter ($l,$f)\n";
100    #                       my $o = $filter_coderef->($l,$f) if ($filter_coderef);
101    #                       warn "## out hash_filter = $o\n";
102    #                       return $o;
103    #               },
104            });
105    
106  Result from this function can be used to loop through all records          return $rec;
   
  foreach my $mfn ( 1 ... $isis->size ) { ... }  
   
 because it takes into account C<start_mfn> and C<limit_mfn>.  
   
 =cut  
   
 sub size {  
         my $self = shift;  
         return $self->{'size'};  
107  }  }
108    
109  =head2 seek  =head2 dump_rec
   
 Seek to specified MFN in file.  
110    
111   $isis->seek(42);  Return dump of record ID C<$mfn> from database
112    
113  First record in database has position 1.    my $rec = $self->dump_rec( $db, $mfn );
114    
115  =cut  =cut
116    
117  sub seek {  sub dump_rec {
118          my $self = shift;          my $self = shift;
         my $pos = shift || return;  
   
         my $log = $self->_get_logger();  
119    
120          if ($pos < 1) {          my $mfn = shift;
                 $log->warn("seek before first record");  
                 $pos = 1;  
         } elsif ($pos > $self->{'max_mfn'}) {  
                 $log->warn("seek beyond last record");  
                 $pos = $self->{'max_mfn'};  
         }  
121    
122          return $self->{'current_mfn'} = (($pos - 1) || -1);          return $self->{_isis_db}->to_ascii( $mfn );
123  }  }
124    
125  =head1 AUTHOR  =head1 AUTHOR

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

  ViewVC Help
Powered by ViewVC 1.1.26