/[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 554 by dpavlin, Sat Jul 1 10:19:29 2006 UTC revision 566 by dpavlin, Sun Jul 2 21:17:54 2006 UTC
# Line 7  use Exporter 'import'; Line 7  use Exporter 'import';
7    
8          tag search display          tag search display
9          marc marc_indicators marc_repeatable_subfield          marc marc_indicators marc_repeatable_subfield
10            marc_compose marc_leader
11    
12          rec1 rec2 rec          rec1 rec2 rec
13          regex prefix suffix surround          regex prefix suffix surround
14          first lookup join_with          first lookup join_with
15    
16            split_rec_on
17  /;  /;
18    
19  use warnings;  use warnings;
# Line 30  WebPAC::Normalize - describe normalisato Line 33  WebPAC::Normalize - describe normalisato
33    
34  =head1 VERSION  =head1 VERSION
35    
36  Version 0.07  Version 0.09
37    
38  =cut  =cut
39    
40  our $VERSION = '0.07';  our $VERSION = '0.09';
41    
42  =head1 SYNOPSIS  =head1 SYNOPSIS
43    
# Line 193  sub _get_marc_fields { Line 196  sub _get_marc_fields {
196                  $a->[0] . $a->[3] cmp $b->[0] . $b->[3]                  $a->[0] . $a->[3] cmp $b->[0] . $b->[3]
197          } @{ $marc_record };          } @{ $marc_record };
198    
199            @sorted_marc_record = @{ $marc_record };        ### FIXME disable sorting
200            
201          # output marc fields          # output marc fields
202          my @m;          my @m;
203    
# Line 294  Change level of debug warnings Line 299  Change level of debug warnings
299  sub _debug {  sub _debug {
300          my $l = shift;          my $l = shift;
301          return $debug unless defined($l);          return $debug unless defined($l);
302            warn "debug level $l" if ($l > 0);
303          $debug = $l;          $debug = $l;
304  }  }
305    
# Line 351  sub search { Line 357  sub search {
357          $out->{$name}->{search} = \@o;          $out->{$name}->{search} = \@o;
358  }  }
359    
360    =head2 marc_leader
361    
362    Setup fields within MARC leader or get leader
363    
364      marc_leader('05','c');
365      my $leader = marc_leader();
366    
367    =cut
368    
369    sub marc_leader {
370            my ($offset,$value) = @_;
371    
372            if ($offset) {
373                    $out->{' leader'}->{ $offset } = $value;
374            } else {
375                    return $out->{' leader'};
376            }
377    }
378    
379  =head2 marc  =head2 marc
380    
381  Save value for MARC field  Save value for MARC field
# Line 410  sub marc_indicators { Line 435  sub marc_indicators {
435          @{ $marc_indicators->{$f} } = ($i1,$i2);          @{ $marc_indicators->{$f} } = ($i1,$i2);
436  }  }
437    
438    =head2 marc_compose
439    
440    Save values for each MARC subfield explicitly
441    
442      marc_compose('900',
443            'a', rec('200','a')
444            'b', rec('201','a')
445            'a', rec('200','b')
446            'c', rec('200','c')
447      );
448    
449    =cut
450    
451    sub marc_compose {
452            my $f = shift or die "marc_compose needs field";
453            die "marc_compose field must be numer" unless ($f =~ /^\d+$/);
454    
455            my ($i1,$i2) = defined($marc_indicators->{$f}) ? @{ $marc_indicators->{$f} } : (' ',' ');
456            my $m = [ $f, $i1, $i2 ];
457    
458            while (@_) {
459                    my $sf = shift or die "marc_compose $f needs subfield";
460                    my $v = shift;
461    
462                    next unless (defined($v) && $v !~ /^\s*$/);
463                    from_to($v, 'iso-8859-2', $marc_encoding) if ($marc_encoding);
464                    push @$m, ( $sf, $v );
465                    warn "## ++ marc_compose($f,$sf,$v) ", dump( $m ) if ($debug > 1);
466            }
467    
468            warn "## marc_compose(d) ", dump( $m ) if ($debug > 1);
469    
470            push @{ $marc_record }, $m if ($#{$m} > 2);
471    }
472    
473    
474  =head1 Functions to extract data from input  =head1 Functions to extract data from input
475    
# Line 579  sub join_with { Line 639  sub join_with {
639          return join($d, grep { defined($_) && $_ ne '' } @_);          return join($d, grep { defined($_) && $_ ne '' } @_);
640  }  }
641    
642    =head2 split_rec_on
643    
644    Split record subfield on some regex and take one of parts out
645    
646      $a_before_semi_column =
647            split_rec_on('200','a', /\s*;\s*/, $part);
648    
649    C<$part> is optional number of element. First element is
650    B<1>, not 0!
651    
652    If there is no C<$part> parameter or C<$part> is 0, this function will
653    return all values produced by splitting.
654    
655    =cut
656    
657    sub split_rec_on {
658            die "split_rec_on need (fld,sf,regex[,part]" if ($#_ < 2);
659    
660            my ($fld, $sf, $regex, $part) = @_;
661            warn "### regex ", ref($regex), $regex if ($debug > 2);
662    
663            my @r = rec( $fld, $sf );
664            my $v = shift @r;
665            warn "### first rec($fld,$sf) = ",dump($v) if ($debug > 2);
666    
667            return '' if( ! defined($v) || $v =~ /^\s*$/);
668    
669            my @s = split( $regex, $v );
670            warn "## split_rec_on($fld,$sf,$regex,$part) = ",dump(@s) if ($debug > 1);
671            if ($part && $part > 0) {
672                    return $s[ $part - 1 ];
673            } else {
674                    return [ @s ];
675            }
676    }
677    
678  # END  # END
679  1;  1;

Legend:
Removed from v.554  
changed lines
  Added in v.566

  ViewVC Help
Powered by ViewVC 1.1.26