--- trunk/lib/WebPAC/Normalize/MARC.pm 2007/11/10 11:11:16 1021 +++ trunk/lib/WebPAC/Normalize/MARC.pm 2007/11/10 11:13:58 1023 @@ -80,31 +80,35 @@ my $fields_re = join('|', keys %$to_subfields ); - my $pos_templates; my $fill_in; my @marc_out; - my ( $marc_template_order, @marc_order ); # = _parse_template( $args->{marc_template} ); + my $marc_template; + _parse_template( $args->{marc_template}, $marc_template ); - my $templates = $args->{marc_template}; + sub _parse_template { + my ( $templates, $marc_template_order ) = @_; - foreach my $template ( @{ $templates } ) { - my $count; - my @marc_order; - sub my_count { - my $sf = shift; - my $nr = $count->{$sf}++; - push @marc_order, [ $sf, $nr ]; - return $sf . $nr; + foreach my $template ( @{ $templates } ) { + our $count = {}; + our @marc_order = (); + sub my_count { + my $sf = shift; + my $nr = $count->{$sf}++; + push @marc_order, [ $sf, $nr ]; + return $sf . $nr; + } + my $pos_template = $template; + $pos_template =~ s/($fields_re)/my_count($1)/ge; + my $count_key = dump( $count ); + warn "### template: |$template| -> |$pos_template| count = $count_key marc_order = ",dump( @marc_order ),$/; + $marc_template->{pos}->{ $count_key } = $pos_template; + $marc_template->{order}->{ $pos_template } = [ @marc_order ]; } - my $pos_template = $template; - $pos_template =~ s/($fields_re)/my_count($1)/ge; - my $count_key = dump( $count ); - warn "### template: |$template| -> |$pos_template| count = $count_key marc_order = ",dump( @marc_order ),$/; - $pos_templates->{ $count_key } = $pos_template; - $marc_template_order->{ $pos_template } = [ @marc_order ]; + warn "### from ",dump( $templates ), " created ", dump( $marc_template ); } - warn "### from ",dump( $templates ), " created ", dump( $pos_templates ), " and ", dump( $marc_template_order ); + + warn "### marc_template = ",dump( $marc_template ); my $m; @@ -137,8 +141,8 @@ warn "### from_count = ",dump( $from_count ), $/; warn "### to_count = ",dump( $to_count ), $/; - my $template = $pos_templates->{ $from_count_key } || - die "I don't have template for:\n$from_count_key\n## available templates\n", dump( $pos_templates ); + my $template = $marc_template->{pos}->{ $from_count_key } || + die "I don't have template for:\n$from_count_key\n## available templates\n", dump( $marc_template->{pos} ); warn "### selected template: |$template|\n"; @@ -168,9 +172,9 @@ warn "#### >>>> $sf with fill_in = ",dump( $fill_in ),$/; } - warn "## template: |$template|\n## marc_template_order = ",dump( $marc_template_order ); + warn "## template: |$template|\n## marc_template = ",dump( $marc_template ); - foreach my $sf ( @{ $marc_template_order->{$template} } ) { + foreach my $sf ( @{ $marc_template->{order}->{$template} } ) { my ( $sf, $nr ) = @$sf; my $v = $fill_in->{$sf}->[$nr] || die "can't find fill_in $sf/$nr"; warn "++ $sf/$nr |$v|\n";