/[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 583 by dpavlin, Wed Jul 5 00:12:08 2006 UTC revision 619 by dpavlin, Fri Aug 25 12:31:06 2006 UTC
# Line 9  use Exporter 'import'; Line 9  use Exporter 'import';
9          marc marc_indicators marc_repeatable_subfield          marc marc_indicators marc_repeatable_subfield
10          marc_compose marc_leader          marc_compose marc_leader
11          marc_duplicate marc_remove          marc_duplicate marc_remove
12            marc_original_order
13    
14          rec1 rec2 rec          rec1 rec2 rec
15          regex prefix suffix surround          regex prefix suffix surround
# Line 35  WebPAC::Normalize - describe normalisato Line 36  WebPAC::Normalize - describe normalisato
36    
37  =head1 VERSION  =head1 VERSION
38    
39  Version 0.11  Version 0.16
40    
41  =cut  =cut
42    
43  our $VERSION = '0.11';  our $VERSION = '0.16';
44    
45  =head1 SYNOPSIS  =head1 SYNOPSIS
46    
# Line 69  Return data structure Line 70  Return data structure
70          row => $row,          row => $row,
71          rules => $normalize_pl_config,          rules => $normalize_pl_config,
72          marc_encoding => 'utf-8',          marc_encoding => 'utf-8',
73            config => $config,
74    );    );
75    
76  Options C<lookup>, C<row>, C<rules> and C<log> are mandatory while all  Options C<lookup>, C<row>, C<rules> and C<log> are mandatory while all
# Line 90  sub data_structure { Line 92  sub data_structure {
92          no strict 'subs';          no strict 'subs';
93          _set_lookup( $arg->{lookup} );          _set_lookup( $arg->{lookup} );
94          _set_rec( $arg->{row} );          _set_rec( $arg->{row} );
95            _set_config( $arg->{config} );
96          _clean_ds( %{ $arg } );          _clean_ds( %{ $arg } );
97          eval "$arg->{rules}";          eval "$arg->{rules}";
98          die "error evaling $arg->{rules}: $@\n" if ($@);          die "error evaling $arg->{rules}: $@\n" if ($@);
# Line 111  sub _set_rec { Line 114  sub _set_rec {
114          $rec = shift or die "no record hash";          $rec = shift or die "no record hash";
115  }  }
116    
117    =head2 _set_config
118    
119    Set current config hash
120    
121      _set_config( $config );
122    
123    Magic keys are:
124    
125    =over 4
126    
127    =item _
128    
129    Code of current database
130    
131    =item _mfn
132    
133    Current MFN
134    
135    =back
136    
137    =cut
138    
139    my $config;
140    
141    sub _set_config {
142            $config = shift;
143    }
144    
145  =head2 _get_ds  =head2 _get_ds
146    
147  Return hash formatted as data structure  Return hash formatted as data structure
# Line 495  Save values for each MARC subfield expli Line 526  Save values for each MARC subfield expli
526          'c', rec('200','c')          'c', rec('200','c')
527    );    );
528    
529    If you specify C<+> for subfield, value will be appended
530    to previous defined subfield.
531    
532  =cut  =cut
533    
534  sub marc_compose {  sub marc_compose {
# Line 506  sub marc_compose { Line 540  sub marc_compose {
540    
541          warn "### marc_compose input subfields = ", dump(@_),$/ if ($debug > 2);          warn "### marc_compose input subfields = ", dump(@_),$/ if ($debug > 2);
542    
543            if ($#_ % 2 != 1) {
544                    die "ERROR: marc_compose",dump($f,@_)," not valid (must be even).\nDo you need to add first() or join() around some argument?\n";
545            }
546    
547          while (@_) {          while (@_) {
548                  my $sf = shift or die "marc_compose $f needs subfield";                  my $sf = shift;
549                  my $v = shift;                  my $v = shift;
550    
551                  next unless (defined($v) && $v !~ /^\s*$/);                  next unless (defined($v) && $v !~ /^\s*$/);
552                  from_to($v, 'iso-8859-2', $marc_encoding) if ($marc_encoding);                  from_to($v, 'iso-8859-2', $marc_encoding) if ($marc_encoding);
                 push @$m, ( $sf, $v );  
553                  warn "## ++ marc_compose($f,$sf,$v) ", dump( $m ),$/ if ($debug > 1);                  warn "## ++ marc_compose($f,$sf,$v) ", dump( $m ),$/ if ($debug > 1);
554                    if ($sf ne '+') {
555                            push @$m, ( $sf, $v );
556                    } else {
557                            $m->[ $#$m ] .= $v;
558                    }
559          }          }
560    
561          warn "## marc_compose(d) ", dump( $m ),$/ if ($debug > 1);          warn "## marc_compose current marc = ", dump( $m ),$/ if ($debug > 1);
562    
563          push @{ $marc_record->[ $marc_record_offset ] }, $m if ($#{$m} > 2);          push @{ $marc_record->[ $marc_record_offset ] }, $m if ($#{$m} > 2);
564  }  }
# Line 604  sub marc_remove { Line 646  sub marc_remove {
646          warn "## full marc_record = ", dump( @{ $marc_record }), $/ if ($debug > 1);          warn "## full marc_record = ", dump( @{ $marc_record }), $/ if ($debug > 1);
647  }  }
648    
649    =head2 marc_original_order
650    
651    Copy all subfields preserving original order to marc field.
652    
653      marc_original_order( marc_field_number, original_input_field_number );
654    
655    Please note that field numbers are consistent with other commands (marc
656    field number first), but somewhat counter-intuitive (destination and then
657    source).
658    
659    You might want to use this command if you are just renaming subfields or
660    using pre-processing modify_record in C<config.yml> and don't need any
661    post-processing or want to preserve order of original subfields.
662    
663    
664    =cut
665    
666    sub marc_original_order {
667    
668            my ($to, $from) = @_;
669            die "marc_original_order needs from and to fields\n" unless ($from && $to);
670    
671            return unless defined($rec->{$from});
672    
673            my $r = $rec->{$from};
674            die "record field $from isn't array\n" unless (ref($r) eq 'ARRAY');
675    
676            my ($i1,$i2) = defined($marc_indicators->{$to}) ? @{ $marc_indicators->{$to} } : (' ',' ');
677            warn "## marc_original_order($to,$from) source = ", dump( $r ),$/ if ($debug > 1);
678    
679            foreach my $d (@$r) {
680    
681                    if (! defined($d->{subfields}) && ref($d->{subfields}) ne 'ARRAY') {
682                            warn "# marc_original_order($to,$from): field $from doesn't have subfields specification\n";
683                            next;
684                    }
685            
686                    my @sfs = @{ $d->{subfields} };
687    
688                    die "field $from doesn't have even number of subfields specifications\n" unless($#sfs % 2 == 1);
689    
690                    warn "#--> d: ",dump($d), "\n#--> sfs: ",dump(@sfs),$/ if ($debug > 2);
691    
692                    my $m = [ $to, $i1, $i2 ];
693    
694                    while (my $sf = shift @sfs) {
695    
696                            warn "#--> sf: ",dump($sf), $/ if ($debug > 2);
697                            my $offset = shift @sfs;
698                            die "corrupted sufields specification for field $from\n" unless defined($offset);
699    
700                            my $v;
701                            if (ref($d->{$sf}) eq 'ARRAY') {
702                                    $v = $d->{$sf}->[$offset] if (defined($d->{$sf}->[$offset]));
703                            } elsif ($offset == 0) {
704                                    $v = $d->{$sf};
705                            } else {
706                                    die "field $from subfield '$sf' need occurence $offset which doesn't exist", dump($d->{$sf});
707                            }
708                            push @$m, ( $sf, $v ) if (defined($v));
709                    }
710    
711                    if ($#{$m} > 2) {
712                            push @{ $marc_record->[ $marc_record_offset ] }, $m;
713                    }
714            }
715    
716            warn "## marc_record = ", dump( $marc_record ),$/ if ($debug > 1);
717    }
718    
719    
720  =head1 Functions to extract data from input  =head1 Functions to extract data from input
721    
722  This function should be used inside functions to create C<data_structure> described  This function should be used inside functions to create C<data_structure> described
# Line 649  sub rec2 { Line 762  sub rec2 {
762          my $f = shift;          my $f = shift;
763          return unless (defined($rec && $rec->{$f}));          return unless (defined($rec && $rec->{$f}));
764          my $sf = shift;          my $sf = shift;
765          return map { $_->{$sf} } grep { ref($_) eq 'HASH' && $_->{$sf} } @{ $rec->{$f} };          warn "rec2($f,$sf) = ", dump( $rec->{$f} ), $/ if ($debug > 1);
766            return map {
767                    if (ref($_->{$sf}) eq 'ARRAY') {
768                            @{ $_->{$sf} };
769                    } else {
770                            $_->{$sf};
771                    }
772            } grep { ref($_) eq 'HASH' && $_->{$sf} } @{ $rec->{$f} };
773  }  }
774    
775  =head2 rec  =head2 rec
# Line 704  Prefix all values with a string Line 824  Prefix all values with a string
824  =cut  =cut
825    
826  sub prefix {  sub prefix {
827          my $p = shift or die "prefix needs string as first argument";          my $p = shift or return;
828          return map { $p . $_ } grep { defined($_) } @_;          return map { $p . $_ } grep { defined($_) } @_;
829  }  }
830    
# Line 767  sub lookup { Line 887  sub lookup {
887          }          }
888  }  }
889    
890    =head2 config
891    
892    Consult config values stored in C<config.yml>
893    
894      # return database code (key under databases in yaml)
895      $database_code = config();    # use _ from hash
896      $database_name = config('name');
897      $database_input_name = config('input name');
898      $tag = config('input normalize tag');
899    
900    Up to three levels are supported.
901    
902    =cut
903    
904    sub config {
905            return unless ($config);
906    
907            my $p = shift;
908    
909            $p ||= '';
910    
911            my $v;
912    
913            warn "### getting config($p)\n" if ($debug > 1);
914    
915            my @p = split(/\s+/,$p);
916            if ($#p < 0) {
917                    $v = $config->{ '_' };  # special, database code
918            } else {
919    
920                    my $c = dclone( $config );
921    
922                    foreach my $k (@p) {
923                            warn "### k: $k c = ",dump($c),$/ if ($debug > 1);
924                            if (ref($c) eq 'ARRAY') {
925                                    $c = shift @$c;
926                                    warn "config($p) taking first occurence of '$k', probably not what you wanted!\n";
927                                    last;
928                            }
929    
930                            if (! defined($c->{$k}) ) {
931                                    $c = undef;
932                                    last;
933                            } else {
934                                    $c = $c->{$k};
935                            }
936                    }
937                    $v = $c if ($c);
938    
939            }
940    
941            warn "## config( '$p' ) = ",dump( $v ),$/ if ($v && $debug);
942            warn "config( '$p' ) is empty\n" if (! $v);
943    
944            return $v;
945    }
946    
947    =head2 id
948    
949    Returns unique id of this record
950    
951      $id = id();
952    
953    Returns C<42/2> for 2nd occurence of MFN 42.
954    
955    =cut
956    
957    sub id {
958            my $mfn = $config->{_mfn} || die "no _mfn in config data";
959            return $mfn . $#{$marc_record} ? $#{$marc_record} + 1 : '';
960    }
961    
962  =head2 join_with  =head2 join_with
963    
964  Joins walues with some delimiter  Joins walues with some delimiter
# Line 777  Joins walues with some delimiter Line 969  Joins walues with some delimiter
969    
970  sub join_with {  sub join_with {
971          my $d = shift;          my $d = shift;
972            warn "### join_with('$d',",dump(@_),")\n" if ($debug > 2);
973          my $v = join($d, grep { defined($_) && $_ ne '' } @_);          my $v = join($d, grep { defined($_) && $_ ne '' } @_);
974          return '' unless defined($v);          return '' unless defined($v);
975          return $v;          return $v;
# Line 807  sub split_rec_on { Line 1000  sub split_rec_on {
1000          my $v = shift @r;          my $v = shift @r;
1001          warn "### first rec($fld,$sf) = ",dump($v),$/ if ($debug > 2);          warn "### first rec($fld,$sf) = ",dump($v),$/ if ($debug > 2);
1002    
1003          return '' if( ! defined($v) || $v =~ /^\s*$/);          return '' if ( ! defined($v) || $v =~ /^\s*$/);
1004    
1005          my @s = split( $regex, $v );          my @s = split( $regex, $v );
1006          warn "## split_rec_on($fld,$sf,$regex,$part) = ",dump(@s),$/ if ($debug > 1);          warn "## split_rec_on($fld,$sf,$regex,$part) = ",dump(@s),$/ if ($debug > 1);

Legend:
Removed from v.583  
changed lines
  Added in v.619

  ViewVC Help
Powered by ViewVC 1.1.26