/[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 74 by dpavlin, Sun Nov 20 20:13:39 2005 UTC revision 750 by dpavlin, Sun Oct 8 13:24:46 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_row
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 base 'WebPAC::Common';  
27  use Data::Dumper;  #use base qw/WebPAC::Common/;
28    use Data::Dump qw/dump/;
29    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.02  Version 0.23
43    
44  =cut  =cut
45    
46  our $VERSION = '0.02';  our $VERSION = '0.23';
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    =head1 FUNCTIONS
63    
64    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    =head2 data_structure
68    
69    Return data structure
70    
71      my $ds = WebPAC::Normalize::data_structure(
72            lookup => $lookup_hash,
73            row => $row,
74            rules => $normalize_pl_config,
75            marc_encoding => 'utf-8',
76            config => $config,
77            load_row_coderef => sub {
78                    my ($database,$input,$mfn) = shift;
79                    $store->load_row( database => $database, input => $input, id => $mfn );
80            },
81      );
82    
83    Options C<row>, C<rules> and C<log> are mandatory while all
84    other are optional.
85    
86    C<load_row_coderef> is closure only used when executing lookups, so they will
87    die if it's not defined.
88    
89    This function will B<die> if normalizastion can't be evaled.
90    
91    Since this function isn't exported you have to call it with
92    C<WebPAC::Normalize::data_structure>.
93    
94    =cut
95    
96    my $load_row_coderef;
97    
98    sub data_structure {
99            my $arg = {@_};
100    
101            die "need row argument" unless ($arg->{row});
102            die "need normalisation argument" unless ($arg->{rules});
103    
104            no strict 'subs';
105            _set_lookup( $arg->{lookup} ) if defined($arg->{lookup});
106            _set_rec( $arg->{row} );
107            _set_config( $arg->{config} ) if defined($arg->{config});
108            _clean_ds( %{ $arg } );
109            $load_row_coderef = $arg->{load_row_coderef};
110    
111            eval "$arg->{rules}";
112            die "error evaling $arg->{rules}: $@\n" if ($@);
113    
114            return _get_ds();
115    }
116    
117  It contains several assumptions:  =head2 _set_rec
118    
119  =over  Set current record hash
120    
121  =item *    _set_rec( $rec );
122    
123  format of fields is defined using C<v123^a> notation for repeatable fields  =cut
124  or C<s123^a> for single (or first) value, where C<123> is field number and  
125  C<a> is subfield.  my $rec;
126    
127  =item *  sub _set_rec {
128            $rec = shift or die "no record hash";
129    }
130    
131  source data records (C<$rec>) have unique identifiers in field C<000>  =head2 _set_config
132    
133  =item *  Set current config hash
134    
135  optional C<eval{length('v123^a') == 3}> tag at B<beginning of format> will be    _set_config( $config );
 perl code that is evaluated before producing output (value of field will be  
 interpolated before that)  
136    
137  =item *  Magic keys are:
138    
139  optional C<filter{filter_name}> at B<begining of format> will apply perl  =over 4
 code defined as code ref on format after field substitution to producing  
 output  
140    
141  =item *  =item _
142    
143  optional C<lookup{...}> will be then performed. See C<WebPAC::Lookups>.  Code of current database
144    
145  =item *  =item _mfn
146    
147  at end, optional C<format>s rules are resolved. Format rules are similar to  Current MFN
 C<sprintf> and can also contain C<lookup{...}> which is performed after  
 values are inserted in format.  
148    
149  =back  =back
150    
151  This also describes order in which transformations are applied (eval,  =cut
 filter, lookup, format) which is important to undestand when deciding how to  
 solve your data mungling and normalisation process.  
152    
153    my $config;
154    
155    sub _set_config {
156            $config = shift;
157    }
158    
159    =head2 _get_ds
160    
161  =head1 FUNCTIONS  Return hash formatted as data structure
162    
163  =head2 new    my $ds = _get_ds();
164    
165  Create new normalisation object  =cut
166    
167    my $n = new WebPAC::Normalize::Something(  my ($out, $marc_record, $marc_encoding, $marc_repeatable_subfield, $marc_indicators, $leader);
168          filter => {  my ($marc_record_offset, $marc_fetch_offset) = (0, 0);
                 'filter_name_1' => sub {  
                         # filter code  
                         return length($_);  
                 }, ...  
         },  
         db => $db_obj,  
         lookup_regex => $lookup->regex,  
         lookup => $lookup_obj,  
   );  
169    
170  Parametar C<filter> defines user supplied snippets of perl code which can  sub _get_ds {
171  be use with C<filter{...}> notation.          return $out;
172    }
173    
174    =head2 _clean_ds
175    
176  Recommended parametar C<lookup_regex> is used to enable parsing of lookups  Clean data structure hash for next record
177  in structures. If you pass this parametar, you must also pass C<lookup>  
178  which is C<WebPAC::Lookup> object.    _clean_ds();
179    
180  =cut  =cut
181    
182  sub new {  sub _clean_ds {
183          my $class = shift;          my $a = {@_};
184          my $self = {@_};          ($out,$marc_record, $marc_encoding, $marc_repeatable_subfield, $marc_indicators, $leader) = ();
185          bless($self, $class);          ($marc_record_offset, $marc_fetch_offset) = (0,0);
186            $marc_encoding = $a->{marc_encoding};
187    }
188    
189          my $r = $self->{'lookup_regex'} ? 1 : 0;  =head2 _set_lookup
         my $l = $self->{'lookup'} ? 1 : 0;  
190    
191          my $log = $self->_get_logger();  Set current lookup hash
192    
193          # those two must be in pair    _set_lookup( $lookup );
194          if ( ($r & $l) != ($r || $l) ) {  
195                  my $log = $self->_get_logger();  =cut
                 $log->logdie("lookup_regex and lookup must be in pair");  
         }  
196    
197          $log->logdie("lookup must be WebPAC::Lookup object") if ($self->{'lookup'} && ! $self->{'lookup'}->isa('WebPAC::Lookup'));  my $lookup;
198    
199          $self ? return $self : return undef;  sub _set_lookup {
200            $lookup = shift;
201  }  }
202    
203    =head2 _get_lookup
204    
205  =head2 data_structure  Get current lookup hash
206    
207  Create in-memory data structure which represents normalized layout from    my $lookup = _get_lookup();
 C<conf/normalize/*.xml>.  
208    
209  This structures are used to produce output.  =cut
210    
211    sub _get_lookup {
212            return $lookup;
213    }
214    
215   my $ds = $webpac->data_structure($rec);  =head2 _set_load_row
216    
217  B<Note: historical oddity follows>  Setup code reference which will return L<data_structure> from
218    L<WebPAC::Store>
219    
220  This method will also set C<< $webpac->{'currnet_filename'} >> if there is    _set_load_row(sub {
221  C<< <filename> >> tag and C<< $webpac->{'headline'} >> if there is                  my ($database,$input,$mfn) = @_;
222  C<< <headline> >> tag.                  $store->load_row( database => $database, input => $input, id => $mfn );
223      });
224    
225  =cut  =cut
226    
227  sub data_structure {  sub _set_load_row {
228          my $self = shift;          my $coderef = shift;
229            confess "argument isn't CODE" unless ref($coderef) eq 'CODE';
230    
231          my $log = $self->_get_logger();          $load_row_coderef = $coderef;
232    }
233    
234          my $rec = shift;  =head2 _get_marc_fields
         $log->logconfess("need HASH as first argument!") if ($rec !~ /HASH/o);  
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($rec);  
                 $log->debug("load_ds( rec = ", sub { Dumper($rec) }, ") = ", sub { Dumper($ds) });  
                 return $ds if ($ds);  
                 $log->debug("cache miss, creating");  
         }  
239    
240          undef $self->{'currnet_filename'};  We are using I<magic> which detect repeatable fields only from
241          undef $self->{'headline'};  sequence of field/subfield data generated by normalization.
242    
243          my @sorted_tags;  Repeatable field is created when there is second occurence of same subfield or
244          if ($self->{tags_by_order}) {  if any of indicators are different.
                 @sorted_tags = @{$self->{tags_by_order}};  
         } else {  
                 @sorted_tags = sort { $self->_sort_by_order } keys %{$self->{'import_xml'}->{'indexer'}};  
                 $self->{tags_by_order} = \@sorted_tags;  
         }  
245    
246          my $ds;  This is sane for most cases. Something like:
247    
248          $log->debug("tags: ",sub { join(", ",@sorted_tags) });    900a-1 900b-1 900c-1
249      900a-2 900b-2
250      900a-3
251    
252          foreach my $field (@sorted_tags) {  will be created from any combination of:
253    
254                  my $row;    900a-1 900a-2 900a-3 900b-1 900b-2 900c-1
255    
256  #print "field $field [",$self->{'tag'},"] = ",Dumper($self->{'import_xml'}->{'indexer'}->{$field}->{$self->{'tag'}});  and following rules:
257    
258                  foreach my $tag (@{$self->{'import_xml'}->{'indexer'}->{$field}->{$self->{'tag'}}}) {    marc('900','a', rec('200','a') );
259                          my $format;    marc('900','b', rec('200','b') );
260      marc('900','c', rec('200','c') );
261    
262                          $log->logdie("expected tag HASH and got $tag") unless (ref($tag) eq 'HASH');  which might not be what you have in mind. If you need repeatable subfield,
263                          $format = $tag->{'value'} || $tag->{'content'};  define it using C<marc_repeatable_subfield> like this:
264    
265                          $log->debug("format: $format");    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                          my @v;  will create:
                         if ($self->{'lookup_regex'} && $format =~ $self->{'lookup_regex'}) {  
                                 @v = $self->fill_in_to_arr($rec,$format);  
                         } else {  
                                 @v = $self->parse_to_arr($rec,$format);  
                         }  
                         next if (! @v);  
271    
272                          if ($tag->{'sort'}) {    900a-1 900a-2 900a-3 900b-1 900c-1
273                                  @v = $self->sort_arr(@v);    900b-2
                         }  
274    
275                          # use format?  There is also support for returning next or specific using:
                         if ($tag->{'format_name'}) {  
                                 @v = map { $self->apply_format($tag->{'format_name'},$tag->{'format_delimiter'},$_) } @v;  
                         }  
276    
277                          if ($field eq 'filename') {    while (my $mf = WebPAC::Normalize:_get_marc_fields( fetch_next => 1 ) ) {
278                                  $self->{'current_filename'} = join('',@v);          # do something with $mf
279                                  $log->debug("filename: ",$self->{'current_filename'});    }
                         } elsif ($field eq 'headline') {  
                                 $self->{'headline'} .= join('',@v);  
                                 $log->debug("headline: ",$self->{'headline'});  
                                 next; # don't return headline in data_structure!  
                         }  
280    
281                          # delimiter will join repeatable fields  will always return fields from next MARC record or
                         if ($tag->{'delimiter'}) {  
                                 @v = ( join($tag->{'delimiter'}, @v) );  
                         }  
282    
283                          # default types    my $mf = WebPAC::Normalize::_get_marc_fields( offset => 42 );
                         my @types = qw(display search);  
                         # override by type attribute  
                         @types = ( $tag->{'type'} ) if ($tag->{'type'});  
   
                         foreach my $type (@types) {  
                                 # append to previous line?  
                                 $log->debug("type: $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;  
284    
285                                  } else {  will return 42th copy record (if it exists).
286                                          push @{$row->{$type}}, @v;  
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            return if (! $marc_record || ref($marc_record) ne 'ARRAY');
301    
302            warn "### full marc_record = ", dump( @{ $marc_record }), $/ if ($debug > 2);
303    
304            my $marc_rec = $marc_record->[ $offset ];
305    
306            warn "## _get_marc_fields (at offset: $offset) -- marc_record = ", dump( @$marc_rec ), $/ if ($debug > 1);
307    
308            return if (! $marc_rec || ref($marc_rec) ne 'ARRAY' || $#{ $marc_rec } < 0);
309    
310            # first, sort all existing fields
311            # 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            @sorted_marc_record = @{ $marc_rec };   ### FIXME disable sorting
317            
318            # output marc fields
319            my @m;
320    
321            # count unique field-subfields (used for offset when walking to next subfield)
322            my $u;
323            map { $u->{ $_->[0] . ( $_->[3] || '')  }++ } @sorted_marc_record;
324    
325            if ($debug) {
326                    warn "## marc_repeatable_subfield = ", dump( $marc_repeatable_subfield ), $/ if ( $marc_repeatable_subfield );
327                    warn "## marc_record[$offset] = ", dump( $marc_rec ), $/;
328                    warn "## sorted_marc_record = ", dump( \@sorted_marc_record ), $/;
329                    warn "## subfield count = ", dump( $u ), $/;
330            }
331    
332            my $len = $#sorted_marc_record;
333            my $visited;
334            my $i = 0;
335            my $field;
336    
337            foreach ( 0 .. $len ) {
338    
339                    # find next element which isn't visited
340                    while ($visited->{$i}) {
341                            $i = ($i + 1) % ($len + 1);
342                  }                  }
343    
344                  if ($row) {                  # mark it visited
345                          $row->{'tag'} = $field;                  $visited->{$i}++;
346    
347                          # TODO: name_sigular, name_plural                  my $row = dclone( $sorted_marc_record[$i] );
348                          my $name = $self->{'import_xml'}->{'indexer'}->{$field}->{'name'};  
349                          my $row_name = $name ? $self->_x($name) : $field;                  # field and subfield which is key for
350                    # marc_repeatable_subfield and u
351                          # post-sort all values in field                  my $fsf = $row->[0] . ( $row->[3] || '' );
352                          if ($self->{'import_xml'}->{'indexer'}->{$field}->{'sort'}) {  
353                                  $log->warn("sort at field tag not implemented");                  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                          $ds->{$row_name} = $row;                  }
362    
363                    # if field exists
364                    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                          $log->debug("row $field: ",sub { Dumper($row) });                          } else {
386                                    # append new subfields to existing field
387                                    push @$field, ( $row->[3], $row->[4] );
388                            }
389                    } else {
390                            # insert first field
391                            $field = $row;
392                  }                  }
393    
394                    if (! $marc_repeatable_subfield->{ $fsf }) {
395                            # make step to next subfield
396                            $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          $log->logdie("there is no current_filename defined! Do you have filename tag in conf/normalize/?.xml") unless ($self->{'current_filename'});          return \@m;
406    }
407    
408          $self->{'db'}->save_ds(  =head2 _debug
                 ds => $ds,  
                 current_filename => $self->{'current_filename'},  
                 headline => $self->{'headline'},  
         ) if ($self->{'db'});  
409    
410          $log->debug("ds: ", sub { Dumper($ds) });  Change level of debug warnings
411    
412          $log->logconfess("data structure returned is not array any more!") if wantarray;    _debug( 2 );
413    
414          return $ds;  =cut
415    
416    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  =head2 parse  =head1 Functions to create C<data_structure>
424    
425    Those functions generally have to first in your normalization file.
426    
427    =head2 tag
428    
429  Perform smart parsing of string, skipping delimiters for fields which aren't  Define new tag for I<search> and I<display>.
430  defined. It can also eval code in format starting with C<eval{...}> and  
431  return output or nothing depending on eval code.    tag('Title', rec('200','a') );
432    
  my $text = $webpac->parse($rec,'eval{"v901^a" eq "Deskriptor"}descriptor: v250^a', $i);  
433    
434  =cut  =cut
435    
436  sub parse {  sub tag {
437          my $self = shift;          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          my ($rec, $format_utf8, $i) = @_;  =head2 display
446    
447          return if (! $format_utf8);  Define tag just for I<display>
448    
449          my $log = $self->_get_logger();    @v = display('Title', rec('200','a') );
450    
451          $log->logconfess("need HASH as first argument!") if ($rec !~ /HASH/o);  =cut
452    
453          $i = 0 if (! $i);  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          my $format = $self->_x($format_utf8) || $log->logconfess("can't convert '$format_utf8' from UTF-8 to ",$self->{'code_page'});  =head2 search
462    
463          my @out;  Prepare values just for I<search>
464    
465          $log->debug("format: $format");    @v = search('Title', rec('200','a') );
466    
467          my $eval_code;  =cut
         # remove eval{...} from beginning  
         $eval_code = $1 if ($format =~ s/^eval{([^}]+)}//s);  
468    
469          my $filter_name;  sub search {
470          # remove filter{...} from beginning          my $name = shift or die "search needs name as first argument";
471          $filter_name = $1 if ($format =~ s/^filter{([^}]+)}//s);          my @o = grep { defined($_) && $_ ne '' } @_;
472            return unless (@o);
473            $out->{$name}->{tag} = $name;
474            $out->{$name}->{search} = \@o;
475    }
476    
477          my $prefix;  =head2 marc_leader
         my $all_found=0;  
478    
479          while ($format =~ s/^(.*?)(v|s)(\d+)(?:\^(\w))?//s) {  Setup fields within MARC leader or get leader
480    
481                  my $del = $1 || '';    marc_leader('05','c');
482                  $prefix ||= $del if ($all_found == 0);    my $leader = marc_leader();
483    
484                  # repeatable index  =cut
                 my $r = $i;  
                 $r = 0 if (lc("$2") eq 's');  
485    
486                  my $found = 0;  sub marc_leader {
487                  my $tmp = $self->get_data(\$rec,$3,$4,$r,\$found);          my ($offset,$value) = @_;
488    
489                  if ($found) {          if ($offset) {
490                          push @out, $del;                  $leader->{ $offset } = $value;
491                          push @out, $tmp;          } else {
492                          $all_found += $found;                  return $leader;
                 }  
493          }          }
494    }
495    
496          return if (! $all_found);  =head2 marc
497    
498          my $out = join('',@out);  Save value for MARC field
499    
500          if ($out) {    marc('900','a', rec('200','a') );
501                  # add rest of format (suffix)    marc('001', rec('000') );
                 $out .= $format;  
502    
503                  # add prefix if not there  =cut
                 $out = $prefix . $out if ($out !~ m/^\Q$prefix\E/);  
504    
505                  $log->debug("result: $out");  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          if ($eval_code) {          foreach (@_) {
515                  my $eval = $self->fill_in($rec,$eval_code,$i) || return;                  my $v = $_;             # make var read-write for Encode
516                  $log->debug("about to eval{$eval} format: $out");                  next unless (defined($v) && $v !~ /^\s*$/);
517                  return if (! $self->_eval($eval));                  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          if ($filter_name && $self->{'filter'}->{$filter_name}) {                  } else {
521                  $log->debug("about to filter{$filter_name} format: $out");                          push @{ $marc_record->[ $marc_record_offset ] }, [ $f, $v ];
522                  $out = $self->{'filter'}->{$filter_name}->($out);                  }
                 return unless(defined($out));  
                 $log->debug("filter result: $out");  
523          }          }
524    }
525    
526          return $out;  =head2 marc_repeatable_subfield
527    
528    Save values for MARC repetable subfield
529    
530      marc_repeatable_subfield('910', 'z', rec('909') );
531    
532    =cut
533    
534    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 parse_to_arr  =head2 marc_indicators
542    
543    Set both indicators for MARC field
544    
545  Similar to C<parse>, but returns array of all repeatable fields    marc_indicators('900', ' ', 1);
546    
547   my @arr = $webpac->parse_to_arr($rec,'v250^a');  Any indicator value other than C<0-9> will be treated as undefined.
548    
549  =cut  =cut
550    
551  sub parse_to_arr {  sub marc_indicators {
552          my $self = shift;          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          my ($rec, $format_utf8) = @_;  =head2 marc_compose
563    
564          my $log = $self->_get_logger();  Save values for each MARC subfield explicitly
565    
566          $log->logconfess("need HASH as first argument!") if ($rec !~ /HASH/o);    marc_compose('900',
567          return if (! $format_utf8);          'a', rec('200','a')
568            'b', rec('201','a')
569            'a', rec('200','b')
570            'c', rec('200','c')
571      );
572    
573          my $i = 0;  If you specify C<+> for subfield, value will be appended
574          my @arr;  to previous defined subfield.
575    
576          while (my $v = $self->parse($rec,$format_utf8,$i++)) {  =cut
                 push @arr, $v;  
         }  
577    
578          $log->debug("format '$format_utf8' returned ",--$i," elements: ", sub { join(" | ",@arr) }) if (@arr);  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          return @arr;          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  =head2 fill_in          while (@_) {
592                    my $sf = shift;
593                    my $v = shift;
594    
595                    next unless (defined($v) && $v !~ /^\s*$/);
596                    warn "## ++ marc_compose($f,$sf,$v) ", dump( $m ),$/ if ($debug > 1);
597                    if ($sf ne '+') {
598                            push @$m, ( $sf, $v );
599                    } else {
600                            $m->[ $#$m ] .= $v;
601                    }
602            }
603    
604  Workhourse of all: takes record from in-memory structure of database and          warn "## marc_compose current marc = ", dump( $m ),$/ if ($debug > 1);
 strings with placeholders and returns string or array of with substituted  
 values from record.  
605    
606   my $text = $webpac->fill_in($rec,'v250^a');          push @{ $marc_record->[ $marc_record_offset ] }, $m if ($#{$m} > 2);
607    }
608    
609  Optional argument is ordinal number for repeatable fields. By default,  =head2 marc_duplicate
 it's assume to be first repeatable field (fields are perl array, so first  
 element is 0).  
 Following example will read second value from repeatable field.  
610    
611   my $text = $webpac->fill_in($rec,'Title: v250^a',1);  Generate copy of current MARC record and continue working on copy
612    
613  This function B<does not> perform parsing of format to inteligenty skip    marc_duplicate();
 delimiters before fields which aren't used.  
614    
615  This method will automatically decode UTF-8 string to local code page  Copies can be accessed using C<< _get_marc_fields( fetch_next => 1 ) >> or
616  if needed.  C<< _get_marc_fields( offset => 42 ) >>.
617    
618  =cut  =cut
619    
620  sub fill_in {  sub marc_duplicate {
621          my $self = shift;           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          my $log = $self->_get_logger();  =head2 marc_remove
630    
631          my $rec = shift || $log->logconfess("need data record");  Remove some field or subfield from MARC record.
         my $format = shift || $log->logconfess("need format to parse");  
         # iteration (for repeatable fields)  
         my $i = shift || 0;  
632    
633          $log->logdie("infitite loop in format $format") if ($i > ($self->{'max_mfn'} || 9999));    marc_remove('200');
634      marc_remove('200','a');
635    
636          # FIXME remove for speedup?  This will erase field C<200> or C<200^a> from current MARC record.
         $log->logconfess("need HASH as first argument!") if ($rec !~ /HASH/o);  
637    
638          if (utf8::is_utf8($format)) {  This is useful after calling C<marc_duplicate> or on it's own (but, you
639                  $format = $self->_x($format);  should probably just remove that subfield definition if you are not
640          }  using C<marc_duplicate>).
641    
642          my $found = 0;  FIXME: support fields < 10.
643    
644          my $eval_code;  =cut
         # remove eval{...} from beginning  
         $eval_code = $1 if ($format =~ s/^eval{([^}]+)}//s);  
645    
646          my $filter_name;  sub marc_remove {
647          # remove filter{...} from beginning          my ($f, $sf) = @_;
         $filter_name = $1 if ($format =~ s/^filter{([^}]+)}//s);  
648    
649          # do actual replacement of placeholders          die "marc_remove needs record number" unless defined($f);
         # repeatable fields  
         $format =~ s/v(\d+)(?:\^(\w))?/$self->get_data(\$rec,$1,$2,$i,\$found)/ges;  
         # non-repeatable fields  
         $format =~ s/s(\d+)(?:\^(\w))?/$self->get_data(\$rec,$1,$2,0,\$found)/ges;  
650    
651          if ($found) {          my $marc = $marc_record->[ $marc_record_offset ];
652                  $log->debug("format: $format");  
653                  if ($eval_code) {          warn "### marc_remove before = ", dump( $marc ), $/ if ($debug > 2);
654                          my $eval = $self->fill_in($rec,$eval_code,$i);  
655                          return if (! $self->_eval($eval));          my $i = 0;
656                  }          foreach ( 0 .. $#{ $marc } ) {
657                  if ($filter_name && $self->{'filter'}->{$filter_name}) {                  last unless (defined $marc->[$i]);
658                          $log->debug("filter '$filter_name' for $format");                  warn "#### working on ",dump( @{ $marc->[$i] }), $/ if ($debug > 3);
659                          $format = $self->{'filter'}->{$filter_name}->($format);                  if ($marc->[$i]->[0] eq $f) {
660                          return unless(defined($format));                          if (! defined $sf) {
661                          $log->debug("filter result: $format");                                  # remove whole field
662                  }                                  splice @$marc, $i, 1;
663                  # do we have lookups?                                  warn "#### slice \@\$marc, $i, 1 = ",dump( @{ $marc }), $/ if ($debug > 3);
664                  if ($self->{'lookup'}) {                                  $i--;
                         if ($self->{'lookup'}->can('lookup')) {  
                                 return $self->{'lookup'}->lookup($format);  
665                          } else {                          } else {
666                                  $log->warn("Have lookup object but can't invoke lookup method");                                  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                          }                          }
                 } else {  
                         return $format;  
681                  }                  }
682          } else {                  $i++;
                 return;  
683          }          }
684    
685            warn "### marc_remove($f", $sf ? ",$sf" : "", ") after = ", dump( $marc ), $/ if ($debug > 2);
686    
687            $marc_record->[ $marc_record_offset ] = $marc;
688    
689            warn "## full marc_record = ", dump( @{ $marc_record }), $/ if ($debug > 1);
690  }  }
691    
692    =head2 marc_original_order
693    
694    Copy all subfields preserving original order to marc field.
695    
696  =head2 fill_in_to_arr    marc_original_order( marc_field_number, original_input_field_number );
697    
698  Similar to C<fill_in>, but returns array of all repeatable fields. Usable  Please note that field numbers are consistent with other commands (marc
699  for fields which have lookups, so they shouldn't be parsed but rather  field number first), but somewhat counter-intuitive (destination and then
700  C<fill_id>ed.  source).
701    
702    You might want to use this command if you are just renaming subfields or
703    using pre-processing modify_record in C<config.yml> and don't need any
704    post-processing or want to preserve order of original subfields.
705    
  my @arr = $webpac->fill_in_to_arr($rec,'[v900];;[v250^a]');  
706    
707  =cut  =cut
708    
709  sub fill_in_to_arr {  sub marc_original_order {
         my $self = shift;  
710    
711          my ($rec, $format_utf8) = @_;          my ($to, $from) = @_;
712            die "marc_original_order needs from and to fields\n" unless ($from && $to);
713    
714          my $log = $self->_get_logger();          return unless defined($rec->{$from});
715    
716          $log->logconfess("need HASH as first argument!") if ($rec !~ /HASH/o);          my $r = $rec->{$from};
717          return if (! $format_utf8);          die "record field $from isn't array\n" unless (ref($r) eq 'ARRAY');
718    
719          my $i = 0;          my ($i1,$i2) = defined($marc_indicators->{$to}) ? @{ $marc_indicators->{$to} } : (' ',' ');
720          my @arr;          warn "## marc_original_order($to,$from) source = ", dump( $r ),$/ if ($debug > 1);
721    
722          while (my @v = $self->fill_in($rec,$format_utf8,$i++)) {          foreach my $d (@$r) {
                 push @arr, @v;  
         }  
723    
724          $log->debug("format '$format_utf8' returned ",--$i," elements: ", sub { join(" | ",@arr) }) if (@arr);                  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            
729                    my @sfs = @{ $d->{subfields} };
730    
731          return @arr;                  die "field $from doesn't have even number of subfields specifications\n" unless($#sfs % 2 == 1);
732  }  
733                    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 {
749                                    die "field $from subfield '$sf' need occurence $offset which doesn't exist", dump($d->{$sf});
750                            }
751                            push @$m, ( $sf, $v ) if (defined($v));
752                    }
753    
754                    if ($#{$m} > 2) {
755                            push @{ $marc_record->[ $marc_record_offset ] }, $m;
756                    }
757            }
758    
759            warn "## marc_record = ", dump( $marc_record ),$/ if ($debug > 1);
760    }
761    
 =head2 get_data  
762    
763  Returns value from record.  =head1 Functions to extract data from input
764    
765   my $text = $self->get_data(\$rec,$f,$sf,$i,\$found);  This function should be used inside functions to create C<data_structure> described
766    above.
767    
768  Arguments are:  =head2 _pack_subfields_hash
 record reference C<$rec>,  
 field C<$f>,  
 optional subfiled C<$sf>,  
 index for repeatable values C<$i>.  
769    
770  Optinal variable C<$found> will be incremeted if there   @subfields = _pack_subfields_hash( $h );
771  is field.   $subfields = _pack_subfields_hash( $h, 1 );
772    
773  Returns value or empty string.  Return each subfield value in array or pack them all together and return scalar
774    with subfields (denoted by C<^>) and values.
775    
776  =cut  =cut
777    
778  sub get_data {  sub _pack_subfields_hash {
         my $self = shift;  
779    
780          my ($rec,$f,$sf,$i,$found) = @_;          warn "## _pack_subfields_hash( ",dump(@_), " )\n" if ($debug > 1);
781    
782          if ($$rec->{$f}) {          my ($h,$include_subfields) = @_;
783                  return '' if (! $$rec->{$f}->[$i]);  
784                  no strict 'refs';          if ( defined($h->{subfields}) ) {
785                  if ($sf && $$rec->{$f}->[$i]->{$sf}) {                  my $sfs = delete $h->{subfields} || die "no subfields?";
786                          $$found++ if (defined($$found));                  my @out;
787                          return $$rec->{$f}->[$i]->{$sf};                  while (@$sfs) {
788                  } elsif (! $sf && $$rec->{$f}->[$i]) {                          my $sf = shift @$sfs;
789                          $$found++ if (defined($$found));                          push @out, '^' . $sf if ($include_subfields);
790                          # it still might have subfield, just                          my $o = shift @$sfs;
791                          # not specified, so we'll dump all                          if ($o == 0 && ref( $h->{$sf} ) ne 'ARRAY' ) {
792                          if ($$rec->{$f}->[$i] =~ /HASH/o) {                                  # single element subfields are not arrays
793                                  my $out;  #warn "====> $sf $o / $#$sfs ", dump( $sfs, $h->{$sf} ), "\n";
794                                  foreach my $k (keys %{$$rec->{$f}->[$i]}) {  
795                                          $out .= $$rec->{$f}->[$i]->{$k}." ";                                  push @out, $h->{$sf};
796                            } else {
797    #warn "====> $sf $o / $#$sfs ", dump( $sfs, $h->{$sf} ), "\n";
798                                    push @out, $h->{$sf}->[$o];
799                            }
800                    }
801                    if ($include_subfields) {
802                            return join('', @out);
803                    } else {
804                            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                                  return $out;                          }
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 {                          } else {
845                                  return $$rec->{$f}->[$i];                                  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    Return all values in specific field and subfield
857    
858      @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 {                  } else {
871                          return '';                          $_->{$sf};
872                  }                  }
873            } grep { ref($_) eq 'HASH' && $_->{$sf} } @{ $rec->{$f} };
874    }
875    
876    =head2 rec
877    
878    syntaxtic sugar for
879    
880      @v = rec('200')
881      @v = rec('200','a')
882    
883    If rec() returns just single value, it will
884    return scalar, not array.
885    
886    =cut
887    
888    sub rec {
889            my @out;
890            if ($#_ == 0) {
891                    @out = rec1(@_);
892            } elsif ($#_ == 1) {
893                    @out = rec2(@_);
894            }
895            if ($#out == 0 && ! wantarray) {
896                    return $out[0];
897            } elsif (@out) {
898                    return @out;
899          } else {          } else {
900                  return '';                  return '';
901          }          }
902  }  }
903    
904    =head2 regex
905    
906    Apply regex to some or all values
907    
908      @v = regex( 's/foo/bar/g', @v );
909    
910    =cut
911    
912    sub regex {
913            my $r = shift;
914            my @out;
915            #warn "r: $r\n", dump(\@_);
916            foreach my $t (@_) {
917                    next unless ($t);
918                    eval "\$t =~ $r";
919                    push @out, $t if ($t && $t ne '');
920            }
921            return @out;
922    }
923    
924    =head2 prefix
925    
926    Prefix all values with a string
927    
928      @v = prefix( 'my_', @v );
929    
930    =cut
931    
932    sub prefix {
933            my $p = shift or return;
934            return map { $p . $_ } grep { defined($_) } @_;
935    }
936    
937    =head2 suffix
938    
939    suffix all values with a string
940    
941      @v = suffix( '_my', @v );
942    
943    =cut
944    
945    sub suffix {
946            my $s = shift or die "suffix needs string as first argument";
947            return map { $_ . $s } grep { defined($_) } @_;
948    }
949    
950    =head2 surround
951    
952    surround all values with a two strings
953    
954      @v = surround( 'prefix_', '_suffix', @v );
955    
956    =cut
957    
958    sub surround {
959            my $p = shift or die "surround need prefix as first argument";
960            my $s = shift or die "surround needs suffix as second argument";
961            return map { $p . $_ . $s } grep { defined($_) } @_;
962    }
963    
964    =head2 first
965    
966    Return first element
967    
968      $v = first( @v );
969    
970    =cut
971    
972    sub first {
973            my $r = shift;
974            return $r;
975    }
976    
977    =head2 lookup
978    
979  =head2 apply_format  Consult lookup hashes for some value
980    
981      @v = lookup(
982            sub {
983                    'ffkk/peri/mfn'.rec('000')
984            },
985            'ffkk','peri','200-a-200-e',
986            sub {
987                    first(rec(200,'a')).' '.first(rec('200','e'))
988            }
989      );
990    
991  Apply format specified in tag with C<format_name="name"> and  Code like above will be B<automatically generated> using L<WebPAC::Parse> from
992  C<format_delimiter=";;">.  normal lookup definition in C<conf/lookup/something.pl> which looks like:
993    
994   my $text = $webpac->apply_format($format_name,$format_delimiter,$data);    lookup(
995            # which results to return from record recorded in lookup
996            sub { 'ffkk/peri/mfn' . rec('000') },
997            # from which database and input
998            'ffkk','peri',
999            # such that following values match
1000            sub { first(rec(200,'a')) . ' ' . first(rec('200','e')) },
1001            # if this part is missing, we will try to match same fields
1002            # from lookup record and current one, or you can override
1003            # which records to use from current record using
1004            sub { rec('900','x') . ' ' . rec('900','y') },
1005      )
1006    
1007    You can think about this lookup as SQL (if that helps):
1008    
1009      select
1010            sub { what }
1011      from
1012            database, input
1013      where
1014        sub { filter from lookuped record }
1015      having
1016        sub { optional filter on current record }
1017    
1018  Formats can contain C<lookup{...}> if you need them.  Easy as pie, right?
1019    
1020  =cut  =cut
1021    
1022  sub apply_format {  sub lookup {
1023          my $self = shift;          my ($what, $database, $input, $key, $having) = @_;
1024    
1025          my ($name,$delimiter,$data) = @_;          confess "lookup needs 5 arguments: what, database, input, key, having" unless ($#_ == 4);
1026    
1027          my $log = $self->_get_logger();          warn "## lookup ($database, $input, $key)", $/ if ($debug > 1);
1028            return unless (defined($lookup->{$database}->{$input}->{$key}));
1029    
1030          if (! $self->{'import_xml'}->{'format'}->{$name}) {          confess "lookup really need load_row_coderef added to data_structure\n" unless ($load_row_coderef);
1031                  $log->warn("<format name=\"$name\"> is not defined in ",$self->{'import_xml_file'});  
1032                  return $data;          my $mfns;
1033            my @having = $having->();
1034    
1035            warn "## having = ", dump( @having ) if ($debug > 2);
1036    
1037            foreach my $h ( @having ) {
1038                    if (defined($lookup->{$database}->{$input}->{$key}->{$h})) {
1039                            warn "lookup for $database/$input/$key/$h return ",dump($lookup->{$database}->{$input}->{$key}->{$h}),"\n";
1040                            $mfns->{$_}++ foreach keys %{ $lookup->{$database}->{$input}->{$key}->{$h} };
1041                    }
1042          }          }
1043    
1044          $log->warn("no delimiter for format $name") if (! $delimiter);          return unless ($mfns);
1045    
1046          my $format = $self->_x($self->{'import_xml'}->{'format'}->{$name}->{'content'}) || $log->logdie("can't find format '$name'");          my @mfns = sort keys %$mfns;
1047    
1048          my @data = split(/\Q$delimiter\E/, $data);          warn "# lookup loading $database/$input/$key mfn ", join(",",@mfns)," having ",dump(@having),"\n" if ($debug);
1049    
1050          my $out = sprintf($format, @data);          my $old_rec = $rec;
1051          $log->debug("using format $name [$format] on $data to produce: $out");          my @out;
1052    
1053          if ($self->{'lookup_regex'} && $out =~ $self->{'lookup_regex'}) {          foreach my $mfn (@mfns) {
1054                  return $self->{'lookup'}->lookup($out);                  $rec = $load_row_coderef->( $database, $input, $mfn );
1055          } else {  
1056                  return $out;                  warn "got $database/$input/$mfn = ", dump($rec), $/;
1057    
1058                    my @vals = $what->();
1059    
1060                    push @out, ( @vals );
1061    
1062                    warn "lookup for mfn $mfn returned ", dump(@vals), $/;
1063          }          }
1064    
1065    #       if (ref($lookup->{$k}) eq 'ARRAY') {
1066    #               return @{ $lookup->{$k} };
1067    #       } else {
1068    #               return $lookup->{$k};
1069    #       }
1070    
1071            $rec = $old_rec;
1072    
1073            warn "## lookup returns = ", dump(@out), $/ if ($debug);
1074    
1075            if ($#out == 0) {
1076                    return $out[0];
1077            } else {
1078                    return @out;
1079            }
1080  }  }
1081    
1082  =head2 sort_arr  =head2 save_into_lookup
1083    
1084  Sort array ignoring case and html in data  Save value into lookup. It associates current database, input
1085    and specific keys with one or more values which will be
1086    associated over MFN.
1087    
1088   my @sorted = $webpac->sort_arr(@unsorted);  MFN will be extracted from first occurence current of field 000
1089    in current record, or if it doesn't exist from L<_set_config> C<_mfn>.
1090    
1091  =cut    my $nr = save_into_lookup($database,$input,$key,sub {
1092            # code which produce one or more values
1093      });
1094    
1095  sub sort_arr {  It returns number of items saved.
         my $self = shift;  
1096    
1097          my $log = $self->_get_logger();  This function shouldn't be called directly, it's called from code created by
1098    L<WebPAC::Parser>.
1099    
1100          # FIXME add Schwartzian Transformation?  =cut
1101    
1102          my @sorted = sort {  sub save_into_lookup {
1103                  $a =~ s#<[^>]+/*>##;          my ($database,$input,$key,$coderef) = @_;
1104                  $b =~ s#<[^>]+/*>##;          die "save_into_lookup needs database" unless defined($database);
1105                  lc($b) cmp lc($a)          die "save_into_lookup needs input" unless defined($input);
1106          } @_;          die "save_into_lookup needs key" unless defined($key);
1107          $log->debug("sorted values: ",sub { join(", ",@sorted) });          die "save_into_lookup needs CODE" unless ( defined($coderef) && ref($coderef) eq 'CODE' );
1108    
1109            warn "## save_into_lookup rec = ", dump($rec), " config = ", dump($config), $/ if ($debug > 2);
1110    
1111            my $mfn =
1112                    defined($rec->{'000'}->[0])     ?       $rec->{'000'}->[0]      :
1113                    defined($config->{_mfn})        ?       $config->{_mfn}         :
1114                                                                                    die "mfn not defined or zero";
1115    
1116            my $nr = 0;
1117    
1118            foreach my $v ( $coderef->() ) {
1119                    $lookup->{$database}->{$input}->{$key}->{$v}->{$mfn}++;
1120                    warn "# saved lookup $database/$input/$key [$v] $mfn\n" if ($debug > 1);
1121                    $nr++;
1122            }
1123    
1124          return @sorted;          return $nr;
1125  }  }
1126    
1127    =head2 config
1128    
1129  =head1 INTERNAL METHODS  Consult config values stored in C<config.yml>
1130    
1131  =head2 _sort_by_order    # return database code (key under databases in yaml)
1132      $database_code = config();    # use _ from hash
1133      $database_name = config('name');
1134      $database_input_name = config('input name');
1135      $tag = config('input normalize tag');
1136    
1137  Sort xml tags data structure accoding to C<order=""> attribute.  Up to three levels are supported.
1138    
1139  =cut  =cut
1140    
1141  sub _sort_by_order {  sub config {
1142          my $self = shift;          return unless ($config);
1143    
1144            my $p = shift;
1145    
1146            $p ||= '';
1147    
1148            my $v;
1149    
1150            warn "### getting config($p)\n" if ($debug > 1);
1151    
1152            my @p = split(/\s+/,$p);
1153            if ($#p < 0) {
1154                    $v = $config->{ '_' };  # special, database code
1155            } else {
1156    
1157                    my $c = dclone( $config );
1158    
1159                    foreach my $k (@p) {
1160                            warn "### k: $k c = ",dump($c),$/ if ($debug > 1);
1161                            if (ref($c) eq 'ARRAY') {
1162                                    $c = shift @$c;
1163                                    warn "config($p) taking first occurence of '$k', probably not what you wanted!\n";
1164                                    last;
1165                            }
1166    
1167                            if (! defined($c->{$k}) ) {
1168                                    $c = undef;
1169                                    last;
1170                            } else {
1171                                    $c = $c->{$k};
1172                            }
1173                    }
1174                    $v = $c if ($c);
1175    
1176          my $va = $self->{'import_xml'}->{'indexer'}->{$a}->{'order'} ||          }
                 $self->{'import_xml'}->{'indexer'}->{$a};  
         my $vb = $self->{'import_xml'}->{'indexer'}->{$b}->{'order'} ||  
                 $self->{'import_xml'}->{'indexer'}->{$b};  
1177    
1178          return $va <=> $vb;          warn "## config( '$p' ) = ",dump( $v ),$/ if ($v && $debug);
1179            warn "config( '$p' ) is empty\n" if (! $v);
1180    
1181            return $v;
1182  }  }
1183    
1184  =head2 _x  =head2 id
1185    
1186  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).  
1187    
1188   my $text = $n->_x('normalize text string');    $id = id();
1189    
1190  This is a stub so that other modules doesn't have to implement it.  Returns C<42/2> for 2nd occurence of MFN 42.
1191    
1192  =cut  =cut
1193    
1194  sub _x {  sub id {
1195          my $self = shift;          my $mfn = $config->{_mfn} || die "no _mfn in config data";
1196          return shift;          return $mfn . $#{$marc_record} ? $#{$marc_record} + 1 : '';
1197  }  }
1198    
1199    =head2 join_with
1200    
1201    Joins walues with some delimiter
1202    
1203      $v = join_with(", ", @v);
1204    
1205    =cut
1206    
1207    sub join_with {
1208            my $d = shift;
1209            warn "### join_with('$d',",dump(@_),")\n" if ($debug > 2);
1210            my $v = join($d, grep { defined($_) && $_ ne '' } @_);
1211            return '' unless defined($v);
1212            return $v;
1213    }
1214    
1215  =head1 AUTHOR  =head2 split_rec_on
1216    
1217  Dobrica Pavlinusic, C<< <dpavlin@rot13.org> >>  Split record subfield on some regex and take one of parts out
1218    
1219  =head1 COPYRIGHT & LICENSE    $a_before_semi_column =
1220            split_rec_on('200','a', /\s*;\s*/, $part);
1221    
1222  Copyright 2005 Dobrica Pavlinusic, All Rights Reserved.  C<$part> is optional number of element. First element is
1223    B<1>, not 0!
1224    
1225  This program is free software; you can redistribute it and/or modify it  If there is no C<$part> parameter or C<$part> is 0, this function will
1226  under the same terms as Perl itself.  return all values produced by splitting.
1227    
1228  =cut  =cut
1229    
1230  1; # End of WebPAC::DB  sub split_rec_on {
1231            die "split_rec_on need (fld,sf,regex[,part]" if ($#_ < 2);
1232    
1233            my ($fld, $sf, $regex, $part) = @_;
1234            warn "### regex ", ref($regex), $regex, $/ if ($debug > 2);
1235    
1236            my @r = rec( $fld, $sf );
1237            my $v = shift @r;
1238            warn "### first rec($fld,$sf) = ",dump($v),$/ if ($debug > 2);
1239    
1240            return '' if ( ! defined($v) || $v =~ /^\s*$/);
1241    
1242            my @s = split( $regex, $v );
1243            warn "## split_rec_on($fld,$sf,$regex,$part) = ",dump(@s),$/ if ($debug > 1);
1244            if ($part && $part > 0) {
1245                    return $s[ $part - 1 ];
1246            } else {
1247                    return @s;
1248            }
1249    }
1250    
1251    # END
1252    1;

Legend:
Removed from v.74  
changed lines
  Added in v.750

  ViewVC Help
Powered by ViewVC 1.1.26