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

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

revision 371 by dpavlin, Sun Jan 8 21:16:27 2006 UTC revision 990 by dpavlin, Sun Nov 4 13:27:12 2007 UTC
# Line 1  Line 1 
1  package WebPAC::Normalize;  package WebPAC::Normalize;
2    use Exporter 'import';
3    our @EXPORT = qw/
4            _set_ds _set_lookup
5            _set_load_row
6            _get_ds _clean_ds
7            _debug
8            _pack_subfields_hash
9    
10            search_display search display sorted
11    
12            marc marc_indicators marc_repeatable_subfield
13            marc_compose marc_leader marc_fixed
14            marc_duplicate marc_remove marc_count
15            marc_original_order
16    
17            rec1 rec2 rec
18            frec
19            regex prefix suffix surround
20            first lookup join_with
21            save_into_lookup
22    
23            split_rec_on
24    
25            get set
26            count
27    
28    /;
29    
30  use warnings;  use warnings;
31  use strict;  use strict;
 use blib;  
 use WebPAC::Common;  
 use base 'WebPAC::Common';  
 use Data::Dumper;  
32    
33  =head1 NAME  #use base qw/WebPAC::Common/;
34    use Data::Dump qw/dump/;
35    use Storable qw/dclone/;
36    use Carp qw/confess/;
37    
38    # debugging warn(s)
39    my $debug = 0;
40    
41  WebPAC::Normalize - data mungling for normalisation  use WebPAC::Normalize::ISBN;
42    push @EXPORT, ( 'isbn_10', 'isbn_13' );
43    
44  =head1 VERSION  =head1 NAME
45    
46  Version 0.08  WebPAC::Normalize - describe normalisaton rules using sets
47    
48  =cut  =cut
49    
50  our $VERSION = '0.08';  our $VERSION = '0.32';
51    
52  =head1 SYNOPSIS  =head1 SYNOPSIS
53    
54  This package contains code that mungle data to produce normalized format.  This module uses C<conf/normalize/*.pl> files to perform normalisation
55    from input records using perl functions which are specialized for set
56    processing.
57    
58    Sets are implemented as arrays, and normalisation file is valid perl, which
59    means that you check it's validity before running WebPAC using
60    C<perl -c normalize.pl>.
61    
62    Normalisation can generate multiple output normalized data. For now, supported output
63    types (on the left side of definition) are: C<search_display>, C<display>, C<search> and
64    C<marc>.
65    
66  It contains several assumptions:  =head1 FUNCTIONS
67    
68  =over  Functions which start with C<_> are private and used by WebPAC internally.
69    All other functions are available for use within normalisation rules.
70    
71  =item *  =head2 data_structure
72    
73  format of fields is defined using C<v123^a> notation for repeatable fields  Return data structure
 or C<s123^a> for single (or first) value, where C<123> is field number and  
 C<a> is subfield.  
74    
75  =item *    my $ds = WebPAC::Normalize::data_structure(
76            lookup => $lookup_hash,
77            row => $row,
78            rules => $normalize_pl_config,
79            marc_encoding => 'utf-8',
80            config => $config,
81            load_row_coderef => sub {
82                    my ($database,$input,$mfn) = @_;
83                    $store->load_row( database => $database, input => $input, id => $mfn );
84            },
85      );
86    
87  source data records (C<$rec>) have unique identifiers in field C<000>  Options C<row>, C<rules> and C<log> are mandatory while all
88    other are optional.
89    
90  =item *  C<load_row_coderef> is closure only used when executing lookups, so they will
91    die if it's not defined.
92    
93  optional C<eval{length('v123^a') == 3}> tag at B<beginning of format> will be  This function will B<die> if normalizastion can't be evaled.
 perl code that is evaluated before producing output (value of field will be  
 interpolated before that)  
94    
95  =item *  Since this function isn't exported you have to call it with
96    C<WebPAC::Normalize::data_structure>.
97    
98  optional C<filter{filter_name}> at B<begining of format> will apply perl  =cut
 code defined as code ref on format after field substitution to producing  
 output  
99    
100  There is one built-in filter called C<regex> which can be use like this:  my $load_row_coderef;
101    
102    filter{regex(s/foo/bar/)}  sub data_structure {
103            my $arg = {@_};
104    
105  =item *          die "need row argument" unless ($arg->{row});
106            die "need normalisation argument" unless ($arg->{rules});
107    
108  optional C<lookup{...}> will be then performed. See C<WebPAC::Lookups>.          no strict 'subs';
109            _set_lookup( $arg->{lookup} ) if defined($arg->{lookup});
110            _set_ds( $arg->{row} );
111            _set_config( $arg->{config} ) if defined($arg->{config});
112            _clean_ds( %{ $arg } );
113            $load_row_coderef = $arg->{load_row_coderef};
114    
115  =item *          eval "$arg->{rules}";
116            die "error evaling $arg->{rules}: $@\n" if ($@);
117    
118  at end, optional C<format>s rules are resolved. Format rules are similar to          return _get_ds();
119  C<sprintf> and can also contain C<lookup{...}> which is performed after  }
 values are inserted in format.  
120    
121  =back  =head2 _set_ds
122    
123  This also describes order in which transformations are applied (eval,  Set current record hash
 filter, lookup, format) which is important to undestand when deciding how to  
 solve your data mungling and normalisation process.  
124    
125      _set_ds( $rec );
126    
127    =cut
128    
129    my $rec;
130    
131  =head1 FUNCTIONS  sub _set_ds {
132            $rec = shift or die "no record hash";
133    }
134    
135  =head2 new  =head2 _set_config
136    
137  Create new normalisation object  Set current config hash
138    
139    my $n = new WebPAC::Normalize::Something(    _set_config( $config );
140          filter => {  
141                  'filter_name_1' => sub {  Magic keys are:
142                          # filter code  
143                          return length($_);  =over 4
                 }, ...  
         },  
         db => $db_obj,  
         lookup_regex => $lookup->regex,  
         lookup => $lookup_obj,  
         prefix => 'foobar',  
   );  
144    
145  Parametar C<filter> defines user supplied snippets of perl code which can  =item _
 be use with C<filter{...}> notation.  
146    
147  C<prefix> is used to form filename for database record (to support multiple  Code of current database
 source files which are joined in one database).  
148    
149  Recommended parametar C<lookup_regex> is used to enable parsing of lookups  =item _mfn
150  in structures. If you pass this parametar, you must also pass C<lookup>  
151  which is C<WebPAC::Lookup> object.  Current MFN
152    
153    =back
154    
155  =cut  =cut
156    
157  sub new {  my $config;
         my $class = shift;  
         my $self = {@_};  
         bless($self, $class);  
158    
159          my $r = $self->{'lookup_regex'} ? 1 : 0;  sub _set_config {
160          my $l = $self->{'lookup'} ? 1 : 0;          $config = shift;
161    }
162    
163          my $log = $self->_get_logger();  =head2 _get_ds
164    
165          # those two must be in pair  Return hash formatted as data structure
         if ( ($r & $l) != ($r || $l) ) {  
                 my $log = $self->_get_logger();  
                 $log->logdie("lookup_regex and lookup must be in pair");  
         }  
166    
167          $log->logdie("lookup must be WebPAC::Lookup object") if ($self->{'lookup'} && ! $self->{'lookup'}->isa('WebPAC::Lookup'));    my $ds = _get_ds();
168    
169          $log->warn("no prefix defined. please check that!") unless ($self->{'prefix'});  =cut
170    
171          $log->debug("using lookup regex: ", $self->{lookup_regex}) if ($r && $l);  my ($out, $marc_record, $marc_encoding, $marc_repeatable_subfield, $marc_indicators, $marc_leader);
172    my ($marc_record_offset, $marc_fetch_offset) = (0, 0);
173    
174          if (! $self->{filter} || ! $self->{filter}->{regex}) {  sub _get_ds {
175                  $log->debug("adding built-in filter regex");  #warn "## out = ",dump($out);
176                  $self->{filter}->{regex} = sub {          return $out;
177                          my ($val, $regex) = @_;  }
178                          eval "\$val =~ $regex";  
179                          return $val;  =head2 _clean_ds
                 };  
         }  
180    
181          $self ? return $self : return undef;  Clean data structure hash for next record
182    
183      _clean_ds();
184    
185    =cut
186    
187    sub _clean_ds {
188            my $a = {@_};
189            ($out,$marc_record, $marc_encoding, $marc_repeatable_subfield, $marc_indicators, $marc_leader) = ();
190            ($marc_record_offset, $marc_fetch_offset) = (0,0);
191            $marc_encoding = $a->{marc_encoding};
192  }  }
193    
194    =head2 _set_lookup
195    
196  =head2 data_structure  Set current lookup hash
197    
198  Create in-memory data structure which represents normalized layout from    _set_lookup( $lookup );
199  C<conf/normalize/*.xml>.  
200    =cut
201    
202    my $lookup;
203    
204    sub _set_lookup {
205            $lookup = shift;
206    }
207    
208  This structures are used to produce output.  =head2 _get_lookup
209    
210   my $ds = $webpac->data_structure($rec);  Get current lookup hash
211    
212      my $lookup = _get_lookup();
213    
214  =cut  =cut
215    
216  sub data_structure {  sub _get_lookup {
217          my $self = shift;          return $lookup;
218    }
219    
220    =head2 _set_load_row
221    
222    Setup code reference which will return L<data_structure> from
223    L<WebPAC::Store>
224    
225          my $log = $self->_get_logger();    _set_load_row(sub {
226                    my ($database,$input,$mfn) = @_;
227                    $store->load_row( database => $database, input => $input, id => $mfn );
228      });
229    
230          my $rec = shift;  =cut
         $log->logconfess("need HASH as first argument!") if ($rec !~ /HASH/o);  
231    
232          $log->debug("data_structure rec = ", sub { Dumper($rec) });  sub _set_load_row {
233            my $coderef = shift;
234            confess "argument isn't CODE" unless ref($coderef) eq 'CODE';
235    
236          $log->logdie("need unique ID (mfn) in field 000 of record " . Dumper($rec) ) unless (defined($rec->{'000'}));          $load_row_coderef = $coderef;
237    }
238    
239          my $id = $rec->{'000'}->[0] || $log->logdie("field 000 isn't array!");  =head2 _get_marc_fields
240    
241          my $cache_file;  Get all fields defined by calls to C<marc>
242    
243          if ($self->{'db'}) {          $marc->add_fields( WebPAC::Normalize:_get_marc_fields() );
                 my $ds = $self->{'db'}->load_ds( id => $id, prefix => $self->{prefix} );  
                 $log->debug("load_ds( rec = ", sub { Dumper($rec) }, ") = ", sub { Dumper($ds) });  
                 return $ds if ($ds);  
                 $log->debug("cache miss, creating");  
         }  
244    
245          my @sorted_tags;  We are using I<magic> which detect repeatable fields only from
246          if ($self->{tags_by_order}) {  sequence of field/subfield data generated by normalization.
247                  @sorted_tags = @{$self->{tags_by_order}};  
248          } else {  Repeatable field is created when there is second occurence of same subfield or
249                  @sorted_tags = sort { $self->_sort_by_order } keys %{$self->{'import_xml'}->{'indexer'}};  if any of indicators are different.
250                  $self->{tags_by_order} = \@sorted_tags;  
251    This is sane for most cases. Something like:
252    
253      900a-1 900b-1 900c-1
254      900a-2 900b-2
255      900a-3
256    
257    will be created from any combination of:
258    
259      900a-1 900a-2 900a-3 900b-1 900b-2 900c-1
260    
261    and following rules:
262    
263      marc('900','a', rec('200','a') );
264      marc('900','b', rec('200','b') );
265      marc('900','c', rec('200','c') );
266    
267    which might not be what you have in mind. If you need repeatable subfield,
268    define it using C<marc_repeatable_subfield> like this:
269    
270      marc_repeatable_subfield('900','a');
271      marc('900','a', rec('200','a') );
272      marc('900','b', rec('200','b') );
273      marc('900','c', rec('200','c') );
274    
275    will create:
276    
277      900a-1 900a-2 900a-3 900b-1 900c-1
278      900b-2
279    
280    There is also support for returning next or specific using:
281    
282      while (my $mf = WebPAC::Normalize:_get_marc_fields( fetch_next => 1 ) ) {
283            # do something with $mf
284      }
285    
286    will always return fields from next MARC record or
287    
288      my $mf = WebPAC::Normalize::_get_marc_fields( offset => 42 );
289    
290    will return 42th copy record (if it exists).
291    
292    =cut
293    
294    my $fetch_pos;
295    
296    sub _get_marc_fields {
297    
298            my $arg = {@_};
299            warn "### _get_marc_fields arg: ", dump($arg), $/ if ($debug > 2);
300            $fetch_pos = $marc_fetch_offset;
301            if ($arg->{offset}) {
302                    $fetch_pos = $arg->{offset};
303            } elsif($arg->{fetch_next}) {
304                    $marc_fetch_offset++;
305          }          }
306    
307          my $ds;          return if (! $marc_record || ref($marc_record) ne 'ARRAY');
308    
309          $log->debug("tags: ",sub { join(", ",@sorted_tags) });          warn "### full marc_record = ", dump( @{ $marc_record }), $/ if ($debug > 2);
310    
311          foreach my $field (@sorted_tags) {          my $marc_rec = $marc_record->[ $fetch_pos ];
312    
313                  my $row;          warn "## _get_marc_fields (at offset: $fetch_pos) -- marc_record = ", dump( @$marc_rec ), $/ if ($debug > 1);
314    
315  #print "field $field [",$self->{'tag'},"] = ",Dumper($self->{'import_xml'}->{'indexer'}->{$field}->{$self->{'tag'}});          return if (! $marc_rec || ref($marc_rec) ne 'ARRAY' || $#{ $marc_rec } < 0);
316    
317                  foreach my $tag (@{$self->{'import_xml'}->{'indexer'}->{$field}->{$self->{'tag'}}}) {          # first, sort all existing fields
318                          my $format;          # XXX might not be needed, but modern perl might randomize elements in hash
319            my @sorted_marc_record = sort {
320                    $a->[0] . ( $a->[3] || '' ) cmp $b->[0] . ( $b->[3] || '')
321            } @{ $marc_rec };
322    
323                          $log->logdie("expected tag HASH and got $tag") unless (ref($tag) eq 'HASH');          @sorted_marc_record = @{ $marc_rec };   ### FIXME disable sorting
324                          $format = $tag->{'value'} || $tag->{'content'};          
325            # output marc fields
326            my @m;
327    
328                          my @v;          # count unique field-subfields (used for offset when walking to next subfield)
329                          if ($self->{'lookup_regex'} && $format =~ $self->{'lookup_regex'}) {          my $u;
330                                  @v = $self->fill_in_to_arr($rec,$format);          map { $u->{ $_->[0] . ( $_->[3] || '')  }++ } @sorted_marc_record;
331                          } else {  
332                                  @v = $self->parse_to_arr($rec,$format);          if ($debug) {
333                          }                  warn "## marc_repeatable_subfield = ", dump( $marc_repeatable_subfield ), $/ if ( $marc_repeatable_subfield );
334                          if (! @v) {                  warn "## marc_record[$fetch_pos] = ", dump( $marc_rec ), $/;
335                                  $log->debug("$field <",$self->{tag},"> format: $format no values");                  warn "## sorted_marc_record = ", dump( \@sorted_marc_record ), $/;
336  #                               next;                  warn "## subfield count = ", dump( $u ), $/;
337                          } else {          }
                                 $log->debug("$field <",$self->{tag},"> format: $format values: ", join(",", @v));  
                         }  
338    
339                          if ($tag->{'sort'}) {          my $len = $#sorted_marc_record;
340                                  @v = $self->sort_arr(@v);          my $visited;
341                          }          my $i = 0;
342            my $field;
343    
344                          # use format?          foreach ( 0 .. $len ) {
                         if ($tag->{'format_name'}) {  
                                 @v = map { $self->apply_format($tag->{'format_name'},$tag->{'format_delimiter'},$_) } @v;  
                         }  
345    
346                          # delimiter will join repeatable fields                  # find next element which isn't visited
347                          if ($tag->{'delimiter'}) {                  while ($visited->{$i}) {
348                                  @v = ( join($tag->{'delimiter'}, @v) );                          $i = ($i + 1) % ($len + 1);
349                          }                  }
350    
351                          # default types                  # mark it visited
352                          my @types = qw(display search);                  $visited->{$i}++;
                         # override by type attribute  
                         @types = ( $tag->{'type'} ) if ($tag->{'type'});  
   
                         foreach my $type (@types) {  
                                 # append to previous line?  
                                 $log->debug("tag $field / $type [",sub { join(",",@v) }, "] ", $row->{'append'} || 'no append');  
                                 if ($tag->{'append'}) {  
   
                                         # I will delimit appended part with  
                                         # delimiter (or ,)  
                                         my $d = $tag->{'delimiter'};  
                                         # default delimiter  
                                         $d ||= " ";  
   
                                         my $last = pop @{$row->{$type}};  
                                         $d = "" if (! $last);  
                                         $last .= $d . join($d, @v);  
                                         push @{$row->{$type}}, $last;  
353    
354                                  } else {                  my $row = dclone( $sorted_marc_record[$i] );
                                         push @{$row->{$type}}, @v;  
                                 }  
                         }  
355    
356                    # field and subfield which is key for
357                    # marc_repeatable_subfield and u
358                    my $fsf = $row->[0] . ( $row->[3] || '' );
359    
360                    if ($debug > 1) {
361    
362                            print "### field so far [", $#$field, "] : ", dump( $field ), " ", $field ? 'T' : 'F', $/;
363                            print "### this [$i]: ", dump( $row ),$/;
364                            print "### sf: ", $row->[3], " vs ", $field->[3],
365                                    $marc_repeatable_subfield->{ $row->[0] . $row->[3] } ? ' (repeatable)' : '', $/,
366                                    if ($#$field >= 0);
367    
368                  }                  }
369    
370                  if ($row) {                  # if field exists
371                          $row->{'tag'} = $field;                  if ( $#$field >= 0 ) {
372                            if (
373                                    $row->[0] ne $field->[0] ||             # field
374                                    $row->[1] ne $field->[1] ||             # i1
375                                    $row->[2] ne $field->[2]                # i2
376                            ) {
377                                    push @m, $field;
378                                    warn "## saved/1 ", dump( $field ),$/ if ($debug);
379                                    $field = $row;
380    
381                            } elsif (
382                                    ( $row->[3] lt $field->[-2] )           # subfield which is not next (e.g. a after c)
383                                    ||
384                                    ( $row->[3] eq $field->[-2] &&          # same subfield, but not repeatable
385                                            ! $marc_repeatable_subfield->{ $fsf }
386                                    )
387                            ) {
388                                    push @m, $field;
389                                    warn "## saved/2 ", dump( $field ),$/ if ($debug);
390                                    $field = $row;
391    
392                          # TODO: name_sigular, name_plural                          } else {
393                          my $name = $self->{'import_xml'}->{'indexer'}->{$field}->{'name'};                                  # append new subfields to existing field
394                          my $row_name = $name ? $self->_x($name) : $field;                                  push @$field, ( $row->[3], $row->[4] );
   
                         # post-sort all values in field  
                         if ($self->{'import_xml'}->{'indexer'}->{$field}->{'sort'}) {  
                                 $log->warn("sort at field tag not implemented");  
395                          }                          }
396                    } else {
397                            # insert first field
398                            $field = $row;
399                    }
400    
401                          $ds->{$row_name} = $row;                  if (! $marc_repeatable_subfield->{ $fsf }) {
402                            # make step to next subfield
403                          $log->debug("row $field: ",sub { Dumper($row) });                          $i = ($i + $u->{ $fsf } ) % ($len + 1);
404                  }                  }
405            }
406    
407            if ($#$field >= 0) {
408                    push @m, $field;
409                    warn "## saved/3 ", dump( $field ),$/ if ($debug);
410          }          }
411    
412          $self->{'db'}->save_ds(          return \@m;
413                  id => $id,  }
                 ds => $ds,  
                 prefix => $self->{prefix},  
         ) if ($self->{'db'});  
414    
415          $log->debug("ds: ", sub { Dumper($ds) });  =head2 _get_marc_leader
416    
417          $log->logconfess("data structure returned is not array any more!") if wantarray;  Return leader from currently fetched record by L</_get_marc_fields>
418    
419          return $ds;    print WebPAC::Normalize::_get_marc_leader();
420    
421    =cut
422    
423    sub _get_marc_leader {
424            die "no fetch_pos, did you called _get_marc_fields first?" unless ( defined( $fetch_pos ) );
425            return $marc_leader->[ $fetch_pos ];
426  }  }
427    
428  =head2 parse  =head2 _debug
429    
430    Change level of debug warnings
431    
432      _debug( 2 );
433    
434    =cut
435    
436    sub _debug {
437            my $l = shift;
438            return $debug unless defined($l);
439            warn "debug level $l",$/ if ($l > 0);
440            $debug = $l;
441    }
442    
443  Perform smart parsing of string, skipping delimiters for fields which aren't  =head1 Functions to create C<data_structure>
 defined. It can also eval code in format starting with C<eval{...}> and  
 return output or nothing depending on eval code.  
444    
445   my $text = $webpac->parse($rec,'eval{"v901^a" eq "Deskriptor"}descriptor: v250^a', $i);  Those functions generally have to first in your normalization file.
446    
447  Filters are implemented here. While simple form of filters looks like this:  =head2 search_display
448    
449    filter{name_of_filter}  Define output for L<search> and L<display> at the same time
450    
451  but, filters can also have variable number of parametars like this:    search_display('Title', rec('200','a') );
452    
   filter{name_of_filter(param,param,param)}  
453    
454  =cut  =cut
455    
456  my $warn_once;  sub search_display {
457            my $name = shift or die "search_display needs name as first argument";
458            my @o = grep { defined($_) && $_ ne '' } @_;
459            return unless (@o);
460            $out->{$name}->{search} = \@o;
461            $out->{$name}->{display} = \@o;
462    }
463    
464  sub parse {  =head2 tag
         my $self = shift;  
465    
466          my ($rec, $format_utf8, $i, $rec_size) = @_;  Old name for L<search_display>, but supported
467    
468          return if (! $format_utf8);  =cut
469    
470          my $log = $self->_get_logger();  sub tag {
471            search_display( @_ );
472    }
473    
474          $log->logconfess("need HASH as first argument!") if ($rec !~ /HASH/o);  =head2 display
475    
476          $i = 0 if (! $i);  Define output just for I<display>
477    
478          my $format = $self->_x($format_utf8) || $log->logconfess("can't convert '$format_utf8' from UTF-8 to ",$self->{'code_page'});    @v = display('Title', rec('200','a') );
479    
480          my @out;  =cut
481    
482          $log->debug("format: $format [$i]");  sub _field {
483            my $type = shift or confess "need type -- BUG?";
484            my $name = shift or confess "needs name as first argument";
485            my @o = grep { defined($_) && $_ ne '' } @_;
486            return unless (@o);
487            $out->{$name}->{$type} = \@o;
488    }
489    
490          my $eval_code;  sub display { _field( 'display', @_ ) }
         # remove eval{...} from beginning  
         $eval_code = $1 if ($format =~ s/^eval{([^}]+)}//s);  
491    
492          my $filter_name;  =head2 search
         # remove filter{...} from beginning  
         $filter_name = $1 if ($format =~ s/^filter{([^}]+)}//s);  
493    
494          # did we found any (att all) field from format in row?  Prepare values just for I<search>
         my $found_any;  
         # prefix before first field which we preserve it $found_any  
         my $prefix;  
495    
496          my $f_step = 1;    @v = search('Title', rec('200','a') );
497    
498          while ($format =~ s/^(.*?)(v|s)(\d+)(?:\^(\w))?//s) {  =cut
499    
500                  my $del = $1 || '';  sub search { _field( 'search', @_ ) }
                 $prefix = $del if ($f_step == 1);  
501    
502                  my $fld_type = lc($2);  =head2 sorted
503    
504                  # repeatable index  Insert into lists which will be automatically sorted
505                  my $r = $i;  
506                  if ($fld_type eq 's') {   sorted('Title', rec('200','a') );
507                          if ($found_any->{'v'}) {  
508                                  $r = 0;  =cut
                         } else {  
                                 return;  
                         }  
                 }  
509    
510                  my $found = 0;  sub sorted { _field( 'sorted', @_ ) }
                 my $tmp = $self->get_data(\$rec,$3,$4,$r,\$found,$rec_size);  
511    
                 if ($found) {  
                         $found_any->{$fld_type} += $found;  
512    
513                          # we will skip delimiter before first occurence of field!  =head2 marc_leader
514                          push @out, $del unless($found_any->{$fld_type} == 1);  
515                          push @out, $tmp;  Setup fields within MARC leader or get leader
516    
517      marc_leader('05','c');
518      my $leader = marc_leader();
519    
520    =cut
521    
522    sub marc_leader {
523            my ($offset,$value) = @_;
524    
525            if ($offset) {
526                    $marc_leader->[ $marc_record_offset ]->{ $offset } = $value;
527            } else {
528                    
529                    if (defined($marc_leader)) {
530                            die "marc_leader not array = ", dump( $marc_leader ) unless (ref($marc_leader) eq 'ARRAY');
531                            return $marc_leader->[ $marc_record_offset ];
532                    } else {
533                            return;
534                  }                  }
                 $f_step++;  
535          }          }
536    }
537    
538    =head2 marc_fixed
539    
540          # test if any fields found?  Create control/indentifier fields with values in fixed positions
         return if (! $found_any->{'v'} && ! $found_any->{'s'});  
541    
542          my $out = join('',@out);    marc_fixed('008', 00, '070402');
543      marc_fixed('008', 39, '|');
544    
545          if ($out) {  Positions not specified will be filled with spaces (C<0x20>).
                 # add rest of format (suffix)  
                 $out .= $format;  
546    
547                  # add prefix if not there  There will be no effort to extend last specified value to full length of
548                  $out = $prefix . $out if ($out !~ m/^\Q$prefix\E/);  field in standard.
549    
550                  $log->debug("result: $out");  =cut
551    
552    sub marc_fixed {
553            my ($f, $pos, $val) = @_;
554            die "need marc(field, position, value)" unless defined($f) && defined($pos);
555    
556            confess "need val" unless defined $val;
557    
558            my $update = 0;
559    
560            map {
561                    if ($_->[0] eq $f) {
562                            my $old = $_->[1];
563                            if (length($old) <= $pos) {
564                                    $_->[1] .= ' ' x ( $pos - length($old) ) . $val;
565                                    warn "## marc_fixed($f,$pos,'$val') append '$old' -> '$_->[1]'\n" if ($debug > 1);
566                            } else {
567                                    $_->[1] = substr($old, 0, $pos) . $val . substr($old, $pos + length($val));
568                                    warn "## marc_fixed($f,$pos,'$val') update '$old' -> '$_->[1]'\n" if ($debug > 1);
569                            }
570                            $update++;
571                    }
572            } @{ $marc_record->[ $marc_record_offset ] };
573    
574            if (! $update) {
575                    my $v = ' ' x $pos . $val;
576                    push @{ $marc_record->[ $marc_record_offset ] }, [ $f, $v ];
577                    warn "## marc_fixed($f,$pos,'val') created '$v'\n" if ($debug > 1);
578          }          }
579    }
580    
581    =head2 marc
582    
583    Save value for MARC field
584    
585      marc('900','a', rec('200','a') );
586      marc('001', rec('000') );
587    
588          if ($eval_code) {  =cut
589                  my $eval = $self->fill_in($rec,$eval_code,$i) || return;  
590                  $log->debug("about to eval{$eval} format: $out");  sub marc {
591                  return if (! $self->_eval($eval));          my $f = shift or die "marc needs field";
592            die "marc field must be numer" unless ($f =~ /^\d+$/);
593    
594            my $sf;
595            if ($f >= 10) {
596                    $sf = shift or die "marc needs subfield";
597          }          }
598            
599          if ($filter_name) {          foreach (@_) {
600                  my @filter_args;                  my $v = $_;             # make var read-write for Encode
601                  if ($filter_name =~ s/(\w+)\((.*)\)/$1/) {                  next unless (defined($v) && $v !~ /^\s*$/);
602                          @filter_args = split(/,/, $2);                  my ($i1,$i2) = defined($marc_indicators->{$f}) ? @{ $marc_indicators->{$f} } : (' ',' ');
603                  }                  if (defined $sf) {
604                  if ($self->{'filter'}->{$filter_name}) {                          push @{ $marc_record->[ $marc_record_offset ] }, [ $f, $i1, $i2, $sf => $v ];
605                          $log->debug("about to filter{$filter_name} format: $out with arguments: ", join(",", @filter_args));                  } else {
606                          unshift @filter_args, $out;                          push @{ $marc_record->[ $marc_record_offset ] }, [ $f, $v ];
                         $out = $self->{'filter'}->{$filter_name}->(@filter_args);  
                         return unless(defined($out));  
                         $log->debug("filter result: $out");  
                 } elsif (! $warn_once->{$filter_name}) {  
                         $log->warn("trying to use undefined filter $filter_name");  
                         $warn_once->{$filter_name}++;  
607                  }                  }
608          }          }
609    }
610    
611          return $out;  =head2 marc_repeatable_subfield
612    
613    Save values for MARC repetable subfield
614    
615      marc_repeatable_subfield('910', 'z', rec('909') );
616    
617    =cut
618    
619    sub marc_repeatable_subfield {
620            my ($f,$sf) = @_;
621            die "marc_repeatable_subfield need field and subfield!\n" unless ($f && $sf);
622            $marc_repeatable_subfield->{ $f . $sf }++;
623            marc(@_);
624  }  }
625    
626  =head2 parse_to_arr  =head2 marc_indicators
627    
628    Set both indicators for MARC field
629    
630  Similar to C<parse>, but returns array of all repeatable fields    marc_indicators('900', ' ', 1);
631    
632   my @arr = $webpac->parse_to_arr($rec,'v250^a');  Any indicator value other than C<0-9> will be treated as undefined.
633    
634  =cut  =cut
635    
636  sub parse_to_arr {  sub marc_indicators {
637          my $self = shift;          my $f = shift || die "marc_indicators need field!\n";
638            my ($i1,$i2) = @_;
639            die "marc_indicators($f, ...) need i1!\n" unless(defined($i1));
640            die "marc_indicators($f, $i1, ...) need i2!\n" unless(defined($i2));
641    
642            $i1 = ' ' if ($i1 !~ /^\d$/);
643            $i2 = ' ' if ($i2 !~ /^\d$/);
644            @{ $marc_indicators->{$f} } = ($i1,$i2);
645    }
646    
647    =head2 marc_compose
648    
649          my ($rec, $format_utf8) = @_;  Save values for each MARC subfield explicitly
650    
651          my $log = $self->_get_logger();    marc_compose('900',
652            'a', rec('200','a')
653            'b', rec('201','a')
654            'a', rec('200','b')
655            'c', rec('200','c')
656      );
657    
658          $log->logconfess("need HASH as first argument!") if ($rec !~ /HASH/o);  If you specify C<+> for subfield, value will be appended
659          return if (! $format_utf8);  to previous defined subfield.
660    
661          my $i = 0;  =cut
662          my @arr;  
663    sub marc_compose {
664            my $f = shift or die "marc_compose needs field";
665            die "marc_compose field must be numer" unless ($f =~ /^\d+$/);
666    
667            my ($i1,$i2) = defined($marc_indicators->{$f}) ? @{ $marc_indicators->{$f} } : (' ',' ');
668            my $m = [ $f, $i1, $i2 ];
669    
670          my $rec_size = { '_' => '_' };          warn "### marc_compose input subfields = ", dump(@_),$/ if ($debug > 2);
671    
672          while (my $v = $self->parse($rec,$format_utf8,$i++,\$rec_size)) {          if ($#_ % 2 != 1) {
673                  push @arr, $v;                  die "ERROR: marc_compose",dump($f,@_)," not valid (must be even).\nDo you need to add first() or join() around some argument?\n";
                 warn "parse rec_size = ", Dumper($rec_size);  
674          }          }
675    
676          $log->debug("format '$format_utf8' returned ",--$i," elements: ", sub { join(" | ",@arr) }) if (@arr);          while (@_) {
677                    my $sf = shift;
678                    my $v = shift;
679    
680                    next unless (defined($v) && $v !~ /^\s*$/);
681                    warn "## ++ marc_compose($f,$sf,$v) ", dump( $m ),$/ if ($debug > 1);
682                    if ($sf ne '+') {
683                            push @$m, ( $sf, $v );
684                    } else {
685                            $m->[ $#$m ] .= $v;
686                    }
687            }
688    
689          return @arr;          warn "## marc_compose current marc = ", dump( $m ),$/ if ($debug > 1);
690    
691            push @{ $marc_record->[ $marc_record_offset ] }, $m if ($#{$m} > 2);
692  }  }
693    
694    =head2 marc_duplicate
695    
696    Generate copy of current MARC record and continue working on copy
697    
698      marc_duplicate();
699    
700    Copies can be accessed using C<< _get_marc_fields( fetch_next => 1 ) >> or
701    C<< _get_marc_fields( offset => 42 ) >>.
702    
703    =cut
704    
705    sub marc_duplicate {
706             my $m = $marc_record->[ -1 ];
707             die "can't duplicate record which isn't defined" unless ($m);
708             push @{ $marc_record }, dclone( $m );
709             push @{ $marc_leader }, dclone( marc_leader() );
710             warn "## marc_duplicate = ", dump(@$marc_leader, @$marc_record), $/ if ($debug > 1);
711             $marc_record_offset = $#{ $marc_record };
712             warn "## marc_record_offset = $marc_record_offset", $/ if ($debug > 1);
713    
714  =head2 fill_in  }
715    
716  Workhourse of all: takes record from in-memory structure of database and  =head2 marc_remove
 strings with placeholders and returns string or array of with substituted  
 values from record.  
717    
718   my $text = $webpac->fill_in($rec,'v250^a');  Remove some field or subfield from MARC record.
719    
720  Optional argument is ordinal number for repeatable fields. By default,    marc_remove('200');
721  it's assume to be first repeatable field (fields are perl array, so first    marc_remove('200','a');
 element is 0).  
 Following example will read second value from repeatable field.  
722    
723   my $text = $webpac->fill_in($rec,'Title: v250^a',1);  This will erase field C<200> or C<200^a> from current MARC record.
724    
725  This function B<does not> perform parsing of format to inteligenty skip    marc_remove('*');
 delimiters before fields which aren't used.  
726    
727  This method will automatically decode UTF-8 string to local code page  Will remove all fields in current MARC record.
 if needed.  
728    
729  There is optional parametar C<$record_size> which can be used to get sizes of  This is useful after calling C<marc_duplicate> or on it's own (but, you
730  all C<field^subfield> combinations in this format.  should probably just remove that subfield definition if you are not
731    using C<marc_duplicate>).
732    
733   my $text = $webpac->fill_in($rec,'got: v900^a v900^x',0,\$rec_size);  FIXME: support fields < 10.
734    
735  =cut  =cut
736    
737  sub fill_in {  sub marc_remove {
738          my $self = shift;          my ($f, $sf) = @_;
739    
740          my $log = $self->_get_logger();          die "marc_remove needs record number" unless defined($f);
741    
742          my ($rec,$format,$i,$rec_size) = @_;          my $marc = $marc_record->[ $marc_record_offset ];
743    
744          $log->logconfess("need data record") unless ($rec);          warn "### marc_remove before = ", dump( $marc ), $/ if ($debug > 2);
         $log->logconfess("need format to parse") unless($format);  
745    
746          # iteration (for repeatable fields)          if ($f eq '*') {
         $i ||= 0;  
747    
748          $log->logdie("infitite loop in format $format") if ($i > ($self->{'max_mfn'} || 9999));                  delete( $marc_record->[ $marc_record_offset ] );
749                    warn "## full marc_record = ", dump( @{ $marc_record }), $/ if ($debug > 1);
750    
751          # FIXME remove for speedup?          } else {
         $log->logconfess("need HASH as first argument!") if ($rec !~ /HASH/o);  
752    
753          if (utf8::is_utf8($format)) {                  my $i = 0;
754                  $format = $self->_x($format);                  foreach ( 0 .. $#{ $marc } ) {
755                            last unless (defined $marc->[$i]);
756                            warn "#### working on ",dump( @{ $marc->[$i] }), $/ if ($debug > 3);
757                            if ($marc->[$i]->[0] eq $f) {
758                                    if (! defined $sf) {
759                                            # remove whole field
760                                            splice @$marc, $i, 1;
761                                            warn "#### slice \@\$marc, $i, 1 = ",dump( @{ $marc }), $/ if ($debug > 3);
762                                            $i--;
763                                    } else {
764                                            foreach my $j ( 0 .. (( $#{ $marc->[$i] } - 3 ) / 2) ) {
765                                                    my $o = ($j * 2) + 3;
766                                                    if ($marc->[$i]->[$o] eq $sf) {
767                                                            # remove subfield
768                                                            splice @{$marc->[$i]}, $o, 2;
769                                                            warn "#### slice \@{\$marc->[$i]}, $o, 2 = ", dump( @{ $marc }), $/ if ($debug > 3);
770                                                            # is record now empty?
771                                                            if ($#{ $marc->[$i] } == 2) {
772                                                                    splice @$marc, $i, 1;
773                                                                    warn "#### slice \@\$marc, $i, 1 = ", dump( @{ $marc }), $/ if ($debug > 3);
774                                                                    $i--;
775                                                            };
776                                                    }
777                                            }
778                                    }
779                            }
780                            $i++;
781                    }
782    
783                    warn "### marc_remove($f", $sf ? ",$sf" : "", ") after = ", dump( $marc ), $/ if ($debug > 2);
784    
785                    $marc_record->[ $marc_record_offset ] = $marc;
786          }          }
787    
788          my $found = 0;          warn "## full marc_record = ", dump( @{ $marc_record }), $/ if ($debug > 1);
789          my $just_single = 1;  }
790    
791          my $eval_code;  =head2 marc_original_order
         # remove eval{...} from beginning  
         $eval_code = $1 if ($format =~ s/^eval{([^}]+)}//s);  
792    
793          my $filter_name;  Copy all subfields preserving original order to marc field.
         # remove filter{...} from beginning  
         $filter_name = $1 if ($format =~ s/^filter{([^}]+)}//s);  
794    
795          # do actual replacement of placeholders    marc_original_order( marc_field_number, original_input_field_number );
         # repeatable fields  
         if ($format =~ s/v(\d+)(?:\^(\w))?/$self->get_data(\$rec,$1,$2,$i,\$found,$rec_size)/ges) {  
                 $just_single = 0;  
         }  
796    
797          # non-repeatable fields  Please note that field numbers are consistent with other commands (marc
798          if ($format =~ s/s(\d+)(?:\^(\w))?/$self->get_data(\$rec,$1,$2,0,\$found,$rec_size)/ges) {  field number first), but somewhat counter-intuitive (destination and then
799                  return if ($i > 0 && $just_single);  source).
800          }  
801    You might want to use this command if you are just renaming subfields or
802    using pre-processing modify_record in C<config.yml> and don't need any
803    post-processing or want to preserve order of original subfields.
804    
805    
806    =cut
807    
808    sub marc_original_order {
809    
810            my ($to, $from) = @_;
811            die "marc_original_order needs from and to fields\n" unless ($from && $to);
812    
813            return unless defined($rec->{$from});
814    
815            my $r = $rec->{$from};
816            die "record field $from isn't array\n" unless (ref($r) eq 'ARRAY');
817    
818            my ($i1,$i2) = defined($marc_indicators->{$to}) ? @{ $marc_indicators->{$to} } : (' ',' ');
819            warn "## marc_original_order($to,$from) source = ", dump( $r ),$/ if ($debug > 1);
820    
821            foreach my $d (@$r) {
822    
823          if ($found) {                  if (! defined($d->{subfields}) && ref($d->{subfields}) ne 'ARRAY') {
824                  $log->debug("format: $format");                          warn "# marc_original_order($to,$from): field $from doesn't have subfields specification\n";
825                  if ($eval_code) {                          next;
                         my $eval = $self->fill_in($rec,$eval_code,$i);  
                         return if (! $self->_eval($eval));  
826                  }                  }
827                  if ($filter_name && $self->{'filter'}->{$filter_name}) {          
828                          $log->debug("filter '$filter_name' for $format");                  my @sfs = @{ $d->{subfields} };
829                          $format = $self->{'filter'}->{$filter_name}->($format);  
830                          return unless(defined($format));                  die "field $from doesn't have even number of subfields specifications\n" unless($#sfs % 2 == 1);
831                          $log->debug("filter result: $format");  
832                    warn "#--> d: ",dump($d), "\n#--> sfs: ",dump(@sfs),$/ if ($debug > 2);
833    
834                    my $m = [ $to, $i1, $i2 ];
835    
836                    while (my $sf = shift @sfs) {
837    
838                            warn "#--> sf: ",dump($sf), $/ if ($debug > 2);
839                            my $offset = shift @sfs;
840                            die "corrupted sufields specification for field $from\n" unless defined($offset);
841    
842                            my $v;
843                            if (ref($d->{$sf}) eq 'ARRAY') {
844                                    $v = $d->{$sf}->[$offset] if (defined($d->{$sf}->[$offset]));
845                            } elsif ($offset == 0) {
846                                    $v = $d->{$sf};
847                            } else {
848                                    die "field $from subfield '$sf' need occurence $offset which doesn't exist", dump($d->{$sf});
849                            }
850                            push @$m, ( $sf, $v ) if (defined($v));
851                    }
852    
853                    if ($#{$m} > 2) {
854                            push @{ $marc_record->[ $marc_record_offset ] }, $m;
855                  }                  }
856                  # do we have lookups?          }
857                  if ($self->{'lookup'}) {  
858                          if ($self->{'lookup'}->can('lookup')) {          warn "## marc_record = ", dump( $marc_record ),$/ if ($debug > 1);
859                                  my @lookup = $self->{lookup}->lookup($format);  }
860                                  $log->debug("lookup $format", join(", ", @lookup));  
861                                  return @lookup;  =head2 marc_count
862    
863    Return number of MARC records created using L</marc_duplicate>.
864    
865      print "created ", marc_count(), " records";
866    
867    =cut
868    
869    sub marc_count {
870            return $#{ $marc_record };
871    }
872    
873    
874    =head1 Functions to extract data from input
875    
876    This function should be used inside functions to create C<data_structure> described
877    above.
878    
879    =head2 _pack_subfields_hash
880    
881     @subfields = _pack_subfields_hash( $h );
882     $subfields = _pack_subfields_hash( $h, 1 );
883    
884    Return each subfield value in array or pack them all together and return scalar
885    with subfields (denoted by C<^>) and values.
886    
887    =cut
888    
889    sub _pack_subfields_hash {
890    
891            warn "## _pack_subfields_hash( ",dump(@_), " )\n" if ($debug > 1);
892    
893            my ($h,$include_subfields) = @_;
894    
895            # sanity and ease of use
896            return $h if (ref($h) ne 'HASH');
897    
898            if ( defined($h->{subfields}) ) {
899                    my $sfs = delete $h->{subfields} || die "no subfields?";
900                    my @out;
901                    while (@$sfs) {
902                            my $sf = shift @$sfs;
903                            push @out, '^' . $sf if ($include_subfields);
904                            my $o = shift @$sfs;
905                            if ($o == 0 && ref( $h->{$sf} ) ne 'ARRAY' ) {
906                                    # single element subfields are not arrays
907    #warn "====> $sf $o / $#$sfs ", dump( $sfs, $h->{$sf} ), "\n";
908    
909                                    push @out, $h->{$sf};
910                          } else {                          } else {
911                                  $log->warn("Have lookup object but can't invoke lookup method");  #warn "====> $sf $o / $#$sfs ", dump( $sfs, $h->{$sf} ), "\n";
912                                    push @out, $h->{$sf}->[$o];
913                          }                          }
914                    }
915                    if ($include_subfields) {
916                            return join('', @out);
917                  } else {                  } else {
918                          return $format;                          return @out;
919                  }                  }
920          } else {          } else {
921                  return;                  if ($include_subfields) {
922                            my $out = '';
923                            foreach my $sf (sort keys %$h) {
924                                    if (ref($h->{$sf}) eq 'ARRAY') {
925                                            $out .= '^' . $sf . join('^' . $sf, @{ $h->{$sf} });
926                                    } else {
927                                            $out .= '^' . $sf . $h->{$sf};
928                                    }
929                            }
930                            return $out;
931                    } else {
932                            # FIXME this should probably be in alphabetical order instead of hash order
933                            values %{$h};
934                    }
935          }          }
936  }  }
937    
938    =head2 rec1
939    
940  =head2 fill_in_to_arr  Return all values in some field
941    
942  Similar to C<fill_in>, but returns array of all repeatable fields. Usable    @v = rec1('200')
 for fields which have lookups, so they shouldn't be parsed but rather  
 C<fill_id>ed.  
943    
944   my @arr = $webpac->fill_in_to_arr($rec,'[v900];;[v250^a]');  TODO: order of values is probably same as in source data, need to investigate that
945    
946  =cut  =cut
947    
948  sub fill_in_to_arr {  sub rec1 {
949          my $self = shift;          my $f = shift;
950            warn "rec1($f) = ", dump( $rec->{$f} ), $/ if ($debug > 1);
951            return unless (defined($rec) && defined($rec->{$f}));
952            warn "rec1($f) = ", dump( $rec->{$f} ), $/ if ($debug > 1);
953            if (ref($rec->{$f}) eq 'ARRAY') {
954                    my @out;
955                    foreach my $h ( @{ $rec->{$f} } ) {
956                            if (ref($h) eq 'HASH') {
957                                    push @out, ( _pack_subfields_hash( $h ) );
958                            } else {
959                                    push @out, $h;
960                            }
961                    }
962                    return @out;
963            } elsif( defined($rec->{$f}) ) {
964                    return $rec->{$f};
965            }
966    }
967    
968    =head2 rec2
969    
970          my ($rec, $format_utf8) = @_;  Return all values in specific field and subfield
971    
972          my $log = $self->_get_logger();    @v = rec2('200','a')
973    
974          $log->logconfess("need HASH as first argument!") if ($rec !~ /HASH/o);  =cut
         return if (! $format_utf8);  
975    
976          my $i = 0;  sub rec2 {
977          my @arr;          my $f = shift;
978            return unless (defined($rec && $rec->{$f}));
979            my $sf = shift;
980            warn "rec2($f,$sf) = ", dump( $rec->{$f} ), $/ if ($debug > 1);
981            return map {
982                    if (ref($_->{$sf}) eq 'ARRAY') {
983                            @{ $_->{$sf} };
984                    } else {
985                            $_->{$sf};
986                    }
987            } grep { ref($_) eq 'HASH' && $_->{$sf} } @{ $rec->{$f} };
988    }
989    
990          my $rec_size;  =head2 rec
991    
992          while (my $v = $self->fill_in($rec,$format_utf8,$i,\$rec_size)) {  syntaxtic sugar for
993                  push @arr, $v;  
994                  warn "rec_size = ", Dumper($rec_size);    @v = rec('200')
995          }    @v = rec('200','a')
996    
997    If rec() returns just single value, it will
998    return scalar, not array.
999    
1000          $log->debug("format '$format_utf8' returned ",--$i," elements: ", sub { join(" | ",@arr) }) if (@arr);  =cut
1001    
1002    sub frec {
1003            my @out = rec(@_);
1004            warn "rec(",dump(@_),") has more than one return value, ignoring\n" if $#out > 0;
1005            return shift @out;
1006    }
1007    
1008          return @arr;  sub rec {
1009            my @out;
1010            if ($#_ == 0) {
1011                    @out = rec1(@_);
1012            } elsif ($#_ == 1) {
1013                    @out = rec2(@_);
1014            }
1015            if ($#out == 0 && ! wantarray) {
1016                    return $out[0];
1017            } elsif (@out) {
1018                    return @out;
1019            } else {
1020                    return '';
1021            }
1022  }  }
1023    
1024    =head2 regex
1025    
1026  =head2 get_data  Apply regex to some or all values
1027    
1028  Returns value from record.    @v = regex( 's/foo/bar/g', @v );
1029    
1030   my $text = $self->get_data(\$rec,$f,$sf,$i,\$found,\$rec_size);  =cut
1031    
1032  Required arguments are:  sub regex {
1033            my $r = shift;
1034            my @out;
1035            #warn "r: $r\n", dump(\@_);
1036            foreach my $t (@_) {
1037                    next unless ($t);
1038                    eval "\$t =~ $r";
1039                    push @out, $t if ($t && $t ne '');
1040            }
1041            return @out;
1042    }
1043    
1044  =over 8  =head2 prefix
1045    
1046  =item C<$rec>  Prefix all values with a string
1047    
1048  record reference    @v = prefix( 'my_', @v );
1049    
1050  =item C<$f>  =cut
1051    
1052  field  sub prefix {
1053            my $p = shift;
1054            return @_ unless defined( $p );
1055            return map { $p . $_ } grep { defined($_) } @_;
1056    }
1057    
1058  =item C<$sf>  =head2 suffix
1059    
1060  optional subfield  suffix all values with a string
1061    
1062  =item C<$i>    @v = suffix( '_my', @v );
1063    
1064  index offset for repeatable values ( 0 ... $rec_size->{'400^a'} )  =cut
1065    
1066  =item C<$found>  sub suffix {
1067            my $s = shift;
1068            return @_ unless defined( $s );
1069            return map { $_ . $s } grep { defined($_) } @_;
1070    }
1071    
1072  optional variable that will be incremeted if preset  =head2 surround
1073    
1074  =item C<$rec_size>  surround all values with a two strings
1075    
1076  hash to hold maximum occurances of C<field^subfield> combinations    @v = surround( 'prefix_', '_suffix', @v );
 (which can be accessed using keys in same format)  
1077    
1078  =back  =cut
1079    
1080    sub surround {
1081            my $p = shift;
1082            my $s = shift;
1083            $p = '' unless defined( $p );
1084            $s = '' unless defined( $s );
1085            return map { $p . $_ . $s } grep { defined($_) } @_;
1086    }
1087    
1088    =head2 first
1089    
1090    Return first element
1091    
1092  Returns value or empty string, updates C<$found> and C<rec_size>    $v = first( @v );
 if present.  
1093    
1094  =cut  =cut
1095    
1096  sub get_data {  sub first {
1097          my $self = shift;          my $r = shift;
1098            return $r;
1099    }
1100    
1101          my ($rec,$f,$sf,$i,$found,$cache) = @_;  =head2 lookup
1102    
1103          return '' unless ($$rec->{$f} && ref($$rec->{$f}) eq 'ARRAY');  Consult lookup hashes for some value
1104    
1105          if (defined($$cache)) {    @v = lookup(
1106                  $$cache->{ $f . ( $sf ? '^' . $sf : '' ) } ||= scalar @{ $$rec->{$f} };          sub {
1107                    'ffkk/peri/mfn'.rec('000')
1108            },
1109            'ffkk','peri','200-a-200-e',
1110            sub {
1111                    first(rec(200,'a')).' '.first(rec('200','e'))
1112          }          }
1113      );
1114    
1115          return '' unless ($$rec->{$f}->[$i]);  Code like above will be B<automatically generated> using L<WebPAC::Parse> from
1116    normal lookup definition in C<conf/lookup/something.pl> which looks like:
1117    
1118          {    lookup(
1119                  no strict 'refs';          # which results to return from record recorded in lookup
1120                  if (defined($sf)) {          sub { 'ffkk/peri/mfn' . rec('000') },
1121                          $$found++ if (defined($$found) && $$rec->{$f}->[$i]->{$sf});          # from which database and input
1122                          return $$rec->{$f}->[$i]->{$sf};          'ffkk','peri',
1123                  } else {          # such that following values match
1124                          $$found++ if (defined($$found));          sub { first(rec(200,'a')) . ' ' . first(rec('200','e')) },
1125                          # it still might have subfields, just          # if this part is missing, we will try to match same fields
1126                          # not specified, so we'll dump some debug info          # from lookup record and current one, or you can override
1127                          if ($$rec->{$f}->[$i] =~ /HASH/o) {          # which records to use from current record using
1128                                  my $out;          sub { rec('900','x') . ' ' . rec('900','y') },
1129                                  foreach my $k (keys %{$$rec->{$f}->[$i]}) {    )
1130                                          $out .= '$' . $k .':' . $$rec->{$f}->[$i]->{$k}." ";  
1131                                  }  You can think about this lookup as SQL (if that helps):
1132                                  return $out;  
1133                          } else {    select
1134                                  return $$rec->{$f}->[$i];          sub { what }
1135                          }    from
1136            database, input
1137      where
1138        sub { filter from lookuped record }
1139      having
1140        sub { optional filter on current record }
1141    
1142    Easy as pie, right?
1143    
1144    =cut
1145    
1146    sub lookup {
1147            my ($what, $database, $input, $key, $having) = @_;
1148    
1149            confess "lookup needs 5 arguments: what, database, input, key, having\n" unless ($#_ == 4);
1150    
1151            warn "## lookup ($database, $input, $key)", $/ if ($debug > 1);
1152            return unless (defined($lookup->{$database}->{$input}->{$key}));
1153    
1154            confess "lookup really need load_row_coderef added to data_structure\n" unless ($load_row_coderef);
1155    
1156            my $mfns;
1157            my @having = $having->();
1158    
1159            warn "## having = ", dump( @having ) if ($debug > 2);
1160    
1161            foreach my $h ( @having ) {
1162                    if (defined($lookup->{$database}->{$input}->{$key}->{$h})) {
1163                            warn "lookup for $database/$input/$key/$h return ",dump($lookup->{$database}->{$input}->{$key}->{$h}),"\n" if ($debug);
1164                            $mfns->{$_}++ foreach keys %{ $lookup->{$database}->{$input}->{$key}->{$h} };
1165                  }                  }
1166          }          }
 }  
1167    
1168            return unless ($mfns);
1169    
1170  =head2 apply_format          my @mfns = sort keys %$mfns;
1171    
1172  Apply format specified in tag with C<format_name="name"> and          warn "# lookup loading $database/$input/$key mfn ", join(",",@mfns)," having ",dump(@having),"\n" if ($debug);
 C<format_delimiter=";;">.  
1173    
1174   my $text = $webpac->apply_format($format_name,$format_delimiter,$data);          my $old_rec = $rec;
1175            my @out;
1176    
1177  Formats can contain C<lookup{...}> if you need them.          foreach my $mfn (@mfns) {
1178                    $rec = $load_row_coderef->( $database, $input, $mfn );
1179    
1180  =cut                  warn "got $database/$input/$mfn = ", dump($rec), $/ if ($debug);
1181    
1182  sub apply_format {                  my @vals = $what->();
         my $self = shift;  
1183    
1184          my ($name,$delimiter,$data) = @_;                  push @out, ( @vals );
1185    
1186          my $log = $self->_get_logger();                  warn "lookup for mfn $mfn returned ", dump(@vals), $/ if ($debug);
1187            }
1188    
1189    #       if (ref($lookup->{$k}) eq 'ARRAY') {
1190    #               return @{ $lookup->{$k} };
1191    #       } else {
1192    #               return $lookup->{$k};
1193    #       }
1194    
1195            $rec = $old_rec;
1196    
1197          if (! $self->{'import_xml'}->{'format'}->{$name}) {          warn "## lookup returns = ", dump(@out), $/ if ($debug);
1198                  $log->warn("<format name=\"$name\"> is not defined in ",$self->{'import_xml_file'});  
1199                  return $data;          if ($#out == 0) {
1200                    return $out[0];
1201            } else {
1202                    return @out;
1203          }          }
1204    }
1205    
1206          $log->warn("no delimiter for format $name") if (! $delimiter);  =head2 save_into_lookup
1207    
1208          my $format = $self->_x($self->{'import_xml'}->{'format'}->{$name}->{'content'}) || $log->logdie("can't find format '$name'");  Save value into lookup. It associates current database, input
1209    and specific keys with one or more values which will be
1210    associated over MFN.
1211    
1212          my @data = split(/\Q$delimiter\E/, $data);  MFN will be extracted from first occurence current of field 000
1213    in current record, or if it doesn't exist from L<_set_config> C<_mfn>.
1214    
1215          my $out = sprintf($format, @data);    my $nr = save_into_lookup($database,$input,$key,sub {
1216          $log->debug("using format $name [$format] on $data to produce: $out");          # code which produce one or more values
1217      });
1218    
1219          if ($self->{'lookup_regex'} && $out =~ $self->{'lookup_regex'}) {  It returns number of items saved.
1220                  return $self->{'lookup'}->lookup($out);  
1221          } else {  This function shouldn't be called directly, it's called from code created by
1222                  return $out;  L<WebPAC::Parser>.
1223    
1224    =cut
1225    
1226    sub save_into_lookup {
1227            my ($database,$input,$key,$coderef) = @_;
1228            die "save_into_lookup needs database" unless defined($database);
1229            die "save_into_lookup needs input" unless defined($input);
1230            die "save_into_lookup needs key" unless defined($key);
1231            die "save_into_lookup needs CODE" unless ( defined($coderef) && ref($coderef) eq 'CODE' );
1232    
1233            warn "## save_into_lookup rec = ", dump($rec), " config = ", dump($config), $/ if ($debug > 2);
1234    
1235            my $mfn =
1236                    defined($rec->{'000'}->[0])     ?       $rec->{'000'}->[0]      :
1237                    defined($config->{_mfn})        ?       $config->{_mfn}         :
1238                                                                                    die "mfn not defined or zero";
1239    
1240            my $nr = 0;
1241    
1242            foreach my $v ( $coderef->() ) {
1243                    $lookup->{$database}->{$input}->{$key}->{$v}->{$mfn}++;
1244                    warn "# saved lookup $database/$input/$key [$v] $mfn\n" if ($debug > 1);
1245                    $nr++;
1246          }          }
1247    
1248            return $nr;
1249  }  }
1250    
1251  =head2 sort_arr  =head2 config
1252    
1253    Consult config values stored in C<config.yml>
1254    
1255  Sort array ignoring case and html in data    # return database code (key under databases in yaml)
1256      $database_code = config();    # use _ from hash
1257      $database_name = config('name');
1258      $database_input_name = config('input name');
1259    
1260   my @sorted = $webpac->sort_arr(@unsorted);  Up to three levels are supported.
1261    
1262  =cut  =cut
1263    
1264  sub sort_arr {  sub config {
1265          my $self = shift;          return unless ($config);
1266    
1267            my $p = shift;
1268    
1269            $p ||= '';
1270    
1271            my $v;
1272    
1273          my $log = $self->_get_logger();          warn "### getting config($p)\n" if ($debug > 1);
1274    
1275          # FIXME add Schwartzian Transformation?          my @p = split(/\s+/,$p);
1276            if ($#p < 0) {
1277                    $v = $config->{ '_' };  # special, database code
1278            } else {
1279    
1280                    my $c = dclone( $config );
1281    
1282                    foreach my $k (@p) {
1283                            warn "### k: $k c = ",dump($c),$/ if ($debug > 1);
1284                            if (ref($c) eq 'ARRAY') {
1285                                    $c = shift @$c;
1286                                    warn "config($p) taking first occurence of '$k', probably not what you wanted!\n";
1287                                    last;
1288                            }
1289    
1290                            if (! defined($c->{$k}) ) {
1291                                    $c = undef;
1292                                    last;
1293                            } else {
1294                                    $c = $c->{$k};
1295                            }
1296                    }
1297                    $v = $c if ($c);
1298    
1299            }
1300    
1301          my @sorted = sort {          warn "## config( '$p' ) = ",dump( $v ),$/ if ($v && $debug);
1302                  $a =~ s#<[^>]+/*>##;          warn "config( '$p' ) is empty\n" if (! $v);
                 $b =~ s#<[^>]+/*>##;  
                 lc($b) cmp lc($a)  
         } @_;  
         $log->debug("sorted values: ",sub { join(", ",@sorted) });  
1303    
1304          return @sorted;          return $v;
1305  }  }
1306    
1307    =head2 id
1308    
1309  =head1 INTERNAL METHODS  Returns unique id of this record
1310    
1311  =head2 _sort_by_order    $id = id();
1312    
1313  Sort xml tags data structure accoding to C<order=""> attribute.  Returns C<42/2> for 2nd occurence of MFN 42.
1314    
1315  =cut  =cut
1316    
1317  sub _sort_by_order {  sub id {
1318          my $self = shift;          my $mfn = $config->{_mfn} || die "no _mfn in config data";
1319            return $mfn . $#{$marc_record} ? $#{$marc_record} + 1 : '';
1320    }
1321    
1322    =head2 join_with
1323    
1324    Joins walues with some delimiter
1325    
1326          my $va = $self->{'import_xml'}->{'indexer'}->{$a}->{'order'} ||    $v = join_with(", ", @v);
1327                  $self->{'import_xml'}->{'indexer'}->{$a};  
1328          my $vb = $self->{'import_xml'}->{'indexer'}->{$b}->{'order'} ||  =cut
                 $self->{'import_xml'}->{'indexer'}->{$b};  
1329    
1330          return $va <=> $vb;  sub join_with {
1331            my $d = shift;
1332            warn "### join_with('$d',",dump(@_),")\n" if ($debug > 2);
1333            my $v = join($d, grep { defined($_) && $_ ne '' } @_);
1334            return '' unless defined($v);
1335            return $v;
1336  }  }
1337    
1338  =head2 _x  =head2 split_rec_on
1339    
1340  Convert strings from C<conf/normalize/*.xml> encoding into application  Split record subfield on some regex and take one of parts out
 specific encoding (optinally specified using C<code_page> to C<new>  
 constructor).  
1341    
1342   my $text = $n->_x('normalize text string');    $a_before_semi_column =
1343            split_rec_on('200','a', /\s*;\s*/, $part);
1344    
1345  This is a stub so that other modules doesn't have to implement it.  C<$part> is optional number of element. First element is
1346    B<1>, not 0!
1347    
1348    If there is no C<$part> parameter or C<$part> is 0, this function will
1349    return all values produced by splitting.
1350    
1351  =cut  =cut
1352    
1353  sub _x {  sub split_rec_on {
1354          my $self = shift;          die "split_rec_on need (fld,sf,regex[,part]" if ($#_ < 2);
1355          return shift;  
1356            my ($fld, $sf, $regex, $part) = @_;
1357            warn "### regex ", ref($regex), $regex, $/ if ($debug > 2);
1358    
1359            my @r = rec( $fld, $sf );
1360            my $v = shift @r;
1361            warn "### first rec($fld,$sf) = ",dump($v),$/ if ($debug > 2);
1362    
1363            return '' if ( ! defined($v) || $v =~ /^\s*$/);
1364    
1365            my @s = split( $regex, $v );
1366            warn "## split_rec_on($fld,$sf,$regex,$part) = ",dump(@s),$/ if ($debug > 1);
1367            if ($part && $part > 0) {
1368                    return $s[ $part - 1 ];
1369            } else {
1370                    return @s;
1371            }
1372  }  }
1373    
1374    my $hash;
1375    
1376  =head1 AUTHOR  =head2 set
1377    
1378  Dobrica Pavlinusic, C<< <dpavlin@rot13.org> >>    set( key => 'value' );
1379    
1380  =head1 COPYRIGHT & LICENSE  =cut
1381    
1382    sub set {
1383            my ($k,$v) = @_;
1384            warn "## set ( $k => ", dump($v), " )", $/ if ( $debug );
1385            $hash->{$k} = $v;
1386    };
1387    
1388    =head2 get
1389    
1390      get( 'key' );
1391    
1392    =cut
1393    
1394    sub get {
1395            my $k = shift || return;
1396            my $v = $hash->{$k};
1397            warn "## get $k = ", dump( $v ), $/ if ( $debug );
1398            return $v;
1399    }
1400    
1401  Copyright 2005 Dobrica Pavlinusic, All Rights Reserved.  =head2 count
1402    
1403  This program is free software; you can redistribute it and/or modify it    if ( count( @result ) == 1 ) {
1404  under the same terms as Perl itself.          # do something if only 1 result is there
1405      }
1406    
1407  =cut  =cut
1408    
1409  1; # End of WebPAC::Normalize  sub count {
1410            warn "## count ",dump(@_),$/ if ( $debug );
1411            return @_ . '';
1412    }
1413    
1414    # END
1415    1;

Legend:
Removed from v.371  
changed lines
  Added in v.990

  ViewVC Help
Powered by ViewVC 1.1.26