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

Legend:
Removed from v.375  
changed lines
  Added in v.725

  ViewVC Help
Powered by ViewVC 1.1.26