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

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

  ViewVC Help
Powered by ViewVC 1.1.26