--- trunk/parse_format.pm 2003/07/04 23:28:17 66 +++ trunk/parse_format.pm 2003/07/04 23:29:27 67 @@ -16,6 +16,8 @@ return parse_excel_format($format,$row,$i,$codepage); } elsif ($type eq "marc") { return parse_iso_format($format,$row,$i,$codepage,'marc_sf'); + } elsif ($type eq "feed") { + return parse_feed_format($format,$row,$i,$codepage); } } @@ -142,4 +144,54 @@ return ($swish,$display); } +#------------------------------------------------------------- + +sub parse_feed_format { + my $format = shift; + my $data = shift; + my $i = shift; + my $codepage = shift; + + my $out; + my $out_swish; + + my $prefix = ""; + if ($format =~ s/^([^\d\|]{1,3})//) { + $prefix = $1; + } + + my $display; + my $swish; + + while ($format && length($format) > 0) { +#print STDERR "\n#### $format #"; + if ($format =~ s/^\|(\d+)\|//) { +#print STDERR "--$1-> $format -[",length($format),"] "; + if ($data->{$1}) { + my $tmp = $data->{$1}; + if ($codepage) { + $tmp = $codepage->convert($tmp) || warn "feed: $1 '$tmp' can't convert\n"; + } + $display .= $prefix . $tmp; + $swish .= $tmp." "; +#print STDERR " == $tmp"; + } + $prefix = ""; + } elsif ($format =~ s/^([^\d\|]+)(\|\d+\|)/$2/) { + $prefix .= $1 if ($display); + } else { + print STDERR "unparsed format: $format\n"; + $prefix .= $format; + $format = ""; + } +#print STDERR " display: $display swish: $swish [format: $format]"; + } + # add suffix + $display .= $prefix if ($display); + + return ($swish,$display); +} + +#------------------------------------------------------------- + 1;