X-Git-Url: http://git.vpit.fr/?a=blobdiff_plain;f=lib%2FB%2FRecDeparse.pm;h=286b28920ba06f29f1650448ac788b9b81d89f94;hb=22cd37cb62e8ca05600172ecb35338f59581e023;hp=26986677a01a66de8182191f0b2645dd4975744e;hpb=ec8262f6b90d1c456270cbe1678cb8ff2c80d660;p=perl%2Fmodules%2FB-RecDeparse.git diff --git a/lib/B/RecDeparse.pm b/lib/B/RecDeparse.pm index 2698667..286b289 100644 --- a/lib/B/RecDeparse.pm +++ b/lib/B/RecDeparse.pm @@ -1,14 +1,15 @@ package B::RecDeparse; -use 5.008; +use 5.008_001; use strict; use warnings; -use Carp qw/croak/; +use B (); + use Config; -use base qw/B::Deparse/; +use base qw; =head1 NAME @@ -16,46 +17,66 @@ B::RecDeparse - Deparse recursively into subroutines. =head1 VERSION -Version 0.03 +Version 0.10 =cut -our $VERSION = '0.03'; +our $VERSION = '0.10'; =head1 SYNOPSIS - perl -MO=RecDeparse,deparse,[@B__Deparse_opts],level,-1 [ -e '...' | bleh.pl ] + # Deparse recursively a Perl one-liner : + $ perl -MO=RecDeparse,deparse,@B__Deparse_opts,level,-1 -e '...' + + # Or a complete Perl script : + $ perl -MO=RecDeparse,deparse,@B__Deparse_opts,level,-1 x.pl - # Or as a module : + # Or a single code reference : use B::RecDeparse; - my $brd = B::RecDeparse->new(deparse => [ @b__deparse_opts ], level => $level); + my $brd = B::RecDeparse->new( + deparse => \@B__Deparse_opts, + level => $level, + ); my $code = $brd->coderef2text(sub { ... }); =head1 DESCRIPTION This module extends L by making it recursively replace subroutine calls encountered when deparsing. -Please refer to L documentation for what to do and how to do it. Besides the constructor syntax, everything should work the same for the two modules. +Please refer to L documentation for what to do and how to do it. +Besides the constructor syntax, everything should work the same for the two modules. =head1 METHODS -=head2 C<< new < deparse => [ @B__Deparse_opts ], level => $level > >> +=head2 C -The L object constructor. You can specify the underlying L constructor arguments by passing a string or an array reference as the value of the C key. The C option expects an integer that specifies how many levels of recursions are allowed : C<-1> means infinite while C<0> means none and match L behaviour. + my $brd = B::RecDeparse->new( + deparse => \@B__Deparse_opts, + level => $level, + ); + +The L object constructor. +You can specify the underlying L constructor arguments by passing a string or an array reference as the value of the C key. +The C option expects an integer that specifies how many levels of recursions are allowed : C<-1> means infinite while C<0> means none and match L behaviour. =cut use constant { # p31268 made pp_entersub call single_delim FOOL_SINGLE_DELIM => - ($^V ge v5.9.5) + ("$]" >= 5.009_005) + || ("$]" < 5.009 and "$]" >= 5.008_009) || ($Config{perl_patchlevel} && $Config{perl_patchlevel} >= 31268) }; sub _parse_args { - croak 'Optional arguments must be passed as key/value pairs' if @_ % 2; + if (@_ % 2) { + require Carp; + Carp::croak('Optional arguments must be passed as key/value pairs'); + } my %args = @_; + my $deparse = $args{deparse}; if (defined $deparse) { if (!ref $deparse) { @@ -66,18 +87,24 @@ sub _parse_args { } else { $deparse = [ ]; } - my $level = $args{level}; - $level = -1 unless defined $level; - $level = int $level; + + my $level = $args{level}; + $level = -1 unless defined $level; + $level = int $level; + return $deparse, $level; } sub new { my $class = shift; $class = ref($class) || $class || __PACKAGE__; + my ($deparse, $level) = _parse_args(@_); + my $self = bless $class->SUPER::new(@$deparse), $class; + $self->{brd_level} = $level; + return $self; } @@ -86,22 +113,28 @@ sub _recurse { } sub compile { - my $bd = B::Deparse->new(); my @args = @_; + + my $bd = B::Deparse->new(); my ($deparse, $level) = _parse_args(@args); + my $compiler = $bd->coderef2text(B::Deparse::compile(@$deparse)); $compiler =~ s/ ['"]? B::Deparse ['"]? \s* -> \s* (new) \s* \( ([^\)]*) \) /B::RecDeparse->$1(deparse => [ $2 ], level => $level)/gx; $compiler = eval 'sub ' . $compiler; die if $@; + return $compiler; } sub init { my $self = shift; - $self->{brd_cur} = 0; - $self->{brd_sub} = 0; + + $self->{brd_cur} = 0; + $self->{brd_sub} = 0; + $self->{brd_seen} = { }; + $self->SUPER::init(@_); } @@ -109,10 +142,12 @@ my $key = $; . __PACKAGE__ . $;; if (FOOL_SINGLE_DELIM) { my $oldsd = *B::Deparse::single_delim{CODE}; + no warnings 'redefine'; *B::Deparse::single_delim = sub { my $body = $_[2]; - if ($body =~ s/^$key//) { + + if ((caller 1)[0] eq __PACKAGE__ and $body =~ s/^$key//) { return $body; } else { $oldsd->(@_); @@ -120,55 +155,115 @@ if (FOOL_SINGLE_DELIM) { } } +sub deparse_sub { + my $self = shift; + my $cv = $_[0]; + + my $name; + unless ($cv->CvFLAGS & B::CVf_ANON()) { + $name = $cv->GV->SAFENAME; + } + + local $self->{brd_seen}->{$name} = 1 if defined $name; + return $self->SUPER::deparse_sub(@_); +} + sub pp_entersub { my $self = shift; + my $body = do { local $self->{brd_sub} = 1; $self->SUPER::pp_entersub(@_); }; + $body =~ s/^&\s*(\w)/$1/ if $self->_recurse; + return $body; } sub pp_refgen { my $self = shift; + return do { local $self->{brd_sub} = 0; $self->SUPER::pp_refgen(@_); } } +sub pp_srefgen { + my $self = shift; + + return do { + local $self->{brd_sub} = 0; + $self->SUPER::pp_srefgen(@_); + } +} + sub pp_gv { my $self = shift; + + my $gv = $self->gv_or_padgv($_[0]); + my $cv = $gv->FLAGS & B::SVf_ROK ? $gv->RV : undef; + my $name = $cv ? $cv->NAME_HEK || $cv->GV->NAME : $gv->NAME; + $cv ||= $gv->CV; + my $seen = $self->{brd_seen}; + my $body; - if ($self->{brd_sub} <= 0 || !$self->_recurse) { + if (!$self->{brd_sub} or !$self->_recurse or $seen->{$name} or !$$cv + or !$cv->isa('B::CV') or $cv->ROOT->isa('B::NULL')) { $body = $self->SUPER::pp_gv(@_); } else { - my $gv = $self->gv_or_padgv($_[0]); $body = do { - local @{$self}{qw/brd_sub brd_cur/} = (0, $self->{brd_cur} + 1); - 'sub ' . $self->indent($self->deparse_sub($gv->CV)); + local @{$self}{qw} = (0, $self->{brd_cur} + 1); + local $seen->{$name} = 1; + 'sub ' . $self->indent($self->deparse_sub($cv)); }; + if (FOOL_SINGLE_DELIM) { $body = $key . $body; } else { $body .= '->'; } } + return $body; } -=head2 C +=pod -=head2 C +The following functions and methods from L are reimplemented by this module : -=head2 C +=over 4 -=head2 C +=item * -=head2 C +C -Functions and methods from L reimplemented by this module. Never call them directly. +=item * + +C + +=item * + +C + +=item * + +C + +=item * + +C + +=item * + +C + +=item * + +C + +=back Otherwise, L inherits all methods from L. @@ -178,6 +273,8 @@ An object-oriented module shouldn't export any function, and so does this one. =head1 DEPENDENCIES +L 5.8.1. + L (standard since perl 5), L (since perl 5.00307) and L (since perl 5.005). =head1 AUTHOR @@ -188,7 +285,8 @@ You can contact me by mail or on C (vincent). =head1 BUGS -Please report any bugs or feature requests to C, or through the web interface at L. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes. +Please report any bugs or feature requests to C, or through the web interface at L. +I will be notified, and then you'll automatically be notified of progress on your bug as I make changes. =head1 SUPPORT @@ -200,7 +298,7 @@ Tests code coverage report is available at L