--- trunk/parse_format.pm 2003/11/29 18:58:34 187 +++ branches/tehnika/parse_format.pm 2004/04/04 22:11:13 303 @@ -55,6 +55,9 @@ my $f = $format; + my $eval; + $eval = $1 if ($f =~ s/^eval{([^}]+)}//); + if ($f =~ s/^([^\d]+)//) { if ($f) { # there is more to parse push @fmt,$1; @@ -111,6 +114,9 @@ } } push @fmt,'' if ($#fmt % 3 != 0); # add empty suffix + + $cache->{format_eval}->{$format} = $eval; # store eval string (if any) + $cache->{format}->{$format} = \@fmt; # print STDERR "storing format for '$format': [",join("|",@fmt),"]\n"; @@ -151,9 +157,29 @@ $sufix = shift @fmt; } $display = $prefix.$display.$sufix if ($display); - print STDERR "format left unused: [",join("|",@fmt),"]\n" if (@fmt); - print STDERR "format: [",join("|",@{$tmp}),"]\n" if (@fmt); + my $eval = $cache->{format_eval}->{$format}; + if ($eval) { + sub fld2str { + my ($func,$row,$f,$sf,$i) = @_; +#print STDERR "## in fld2str\n"; + my $tmp = $codepage->convert(&$func($row,$f,$sf,$i)) || ''; + return "'$tmp'"; + } + + $eval =~ s/v(\d+)\^(\w*)/fld2str($func,$row,$1,$2,$i)/eg; +#print STDERR "## eval: $eval\n"; + if (eval "$eval") { + return ($swish,$display); + } else { + return (undef,undef); + } + } + + if (@fmt) { + print STDERR "format left unused: [",join("|",@fmt),"]\n"; + print STDERR "format: [",join("|",@{$tmp}),"]\n"; + } # print STDERR "format: {",$format || '',"} display: {",$display || '',"} swish: {",$swish || '',"}\n"; @@ -198,7 +224,7 @@ } elsif ($format =~ s/^([^A-Z\|]+)(\|[A-Z]{1,2}\|)/$2/) { $prefix .= $1 if ($display); } else { - print STDERR "unparsed format: $format\n"; + #print STDERR "unparsed format: $format\n"; $prefix .= $format; $format = ""; }