From: Vincent Pit Date: Thu, 25 Aug 2011 09:20:29 +0000 (+0200) Subject: Clean up _wrap() X-Git-Tag: v0.10~13 X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2FSub-Prototype-Util.git;a=commitdiff_plain;h=c7c6c66b6fb5da113036318ca7e196ac422b32b0 Clean up _wrap() --- diff --git a/lib/Sub/Prototype/Util.pm b/lib/Sub/Prototype/Util.pm index d52b905..d2564d8 100644 --- a/lib/Sub/Prototype/Util.pm +++ b/lib/Sub/Prototype/Util.pm @@ -158,47 +158,52 @@ For example, this allows you to recall into C and C by us =cut sub _wrap { - my ($name, $proto, $i, $args, $cr, $opts) = @_; + my ($name, $proto, $i, $args, $coderefs, $opts) = @_; + while ($proto =~ s/(\\?)(\[[^\]]+\]|[^\];])//) { - my ($ref, $p) = ($1, $2); - $p = $1 if $p =~ /^\[([^\]]+)\]/; - my $cur = '$_[' . $i . ']'; + my ($ref, $sigil) = ($1, $2); + $sigil = $1 if $sigil =~ /^\[([^\]]+)\]/; + + my $cur = "\$_[$i]"; + if ($ref) { - if (length $p > 1) { - return 'my $r = ' . $opts->{ref} . '(' . $cur . '); ' - . join ' els', - map( { - "if (\$r eq '" . $reftypes{$_} ."') { " - . _wrap($name, $proto, ($i + 1), - $args . $_ . '{' . $cur . '}, ', - $cr, $opts) - . ' }' - } split //, $p), - 'e { ' . $opts->{wrong_ref} . ' }' + if (length $sigil > 1) { + my $code = "my \$r = $opts->{ref}($cur); "; + my @branches = map { + my $subcall = _wrap( + $name, $proto, ($i + 1), $args . "$_\{$cur}, ", $coderefs, $opts + ); + "if (\$r eq '$reftypes{$_}') { $subcall }"; + } split //, $sigil; + $code .= join ' els', @branches, "e { $opts->{wrong_ref} }"; + return $code; } else { - $args .= $p . '{' . $cur . '}, '; + $args .= "$sigil\{$cur}, "; } - } elsif ($p =~ /[\@\%]/) { + } elsif ($sigil =~ /[\@\%]/) { $args .= '@_[' . $i . '..$#_]'; - } elsif ($p =~ /\&/) { - my %h = do { my $c; map { $_ => $c++ } @$cr }; + } elsif ($sigil =~ /\&/) { + my %h = do { my $c; map { $_ => $c++ } @$coderefs }; my $j; - if (not exists $h{$i}) { - push @$cr, $i; - $j = $#{$cr}; - } else { + if (exists $h{$i}) { $j = int $h{$i}; + } else { + push @$coderefs, $i; + $j = $#{$coderefs}; } - $args .= 'sub{&{$c[' . $j . ']}}, '; - } elsif ($p eq '_') { - $args .= '((@_ > ' . $i . ') ? ' . $cur . ' : $_), '; + $args .= "sub{&{\$c[$j]}}, "; + } elsif ($sigil eq '_') { + $args .= "((\@_ > $i) ? $cur : \$_), "; } else { - $args .= $cur . ', '; + $args .= "$cur, "; } + } continue { ++$i; } + $args =~ s/,\s*$//; - return $name . '(' . $args . ')'; + + return "$name($args)"; } sub _check_name {