12 use base qw<B::Deparse>;
16 B::RecDeparse - Deparse recursively into subroutines.
24 our $VERSION = '0.08';
28 # Deparse recursively a Perl one-liner :
29 $ perl -MO=RecDeparse,deparse,@B__Deparse_opts,level,-1 -e '...'
31 # Or a complete Perl script :
32 $ perl -MO=RecDeparse,deparse,@B__Deparse_opts,level,-1 x.pl
34 # Or a single code reference :
37 my $brd = B::RecDeparse->new(
38 deparse => \@B__Deparse_opts,
41 my $code = $brd->coderef2text(sub { ... });
45 This module extends L<B::Deparse> by making it recursively replace subroutine calls encountered when deparsing.
47 Please refer to L<B::Deparse> documentation for what to do and how to do it.
48 Besides the constructor syntax, everything should work the same for the two modules.
54 my $brd = B::RecDeparse->new(
55 deparse => \@B__Deparse_opts,
59 The L<B::RecDeparse> object constructor.
60 You can specify the underlying L<B::Deparse> constructor arguments by passing a string or an array reference as the value of the C<deparse> key.
61 The C<level> 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<B::Deparse> behaviour.
66 # p31268 made pp_entersub call single_delim
69 || ("$]" < 5.009 and "$]" >= 5.008_009)
70 || ($Config{perl_patchlevel} && $Config{perl_patchlevel} >= 31268)
76 Carp::croak('Optional arguments must be passed as key/value pairs');
80 my $deparse = $args{deparse};
81 if (defined $deparse) {
83 $deparse = [ $deparse ];
84 } elsif (ref $deparse ne 'ARRAY') {
91 my $level = $args{level};
92 $level = -1 unless defined $level;
95 return $deparse, $level;
100 $class = ref($class) || $class || __PACKAGE__;
102 my ($deparse, $level) = _parse_args(@_);
104 my $self = bless $class->SUPER::new(@$deparse), $class;
106 $self->{brd_level} = $level;
112 return $_[0]->{brd_level} < 0 || $_[0]->{brd_cur} < $_[0]->{brd_level}
118 my $bd = B::Deparse->new();
119 my ($deparse, $level) = _parse_args(@args);
121 my $compiler = $bd->coderef2text(B::Deparse::compile(@$deparse));
123 ['"]? B::Deparse ['"]? \s* -> \s* (new) \s* \( ([^\)]*) \)
124 /B::RecDeparse->$1(deparse => [ $2 ], level => $level)/gx;
125 $compiler = eval 'sub ' . $compiler;
134 $self->{brd_cur} = 0;
135 $self->{brd_sub} = 0;
136 $self->{brd_seen} = { };
138 $self->SUPER::init(@_);
141 my $key = $; . __PACKAGE__ . $;;
143 if (FOOL_SINGLE_DELIM) {
144 my $oldsd = *B::Deparse::single_delim{CODE};
146 no warnings 'redefine';
147 *B::Deparse::single_delim = sub {
150 if ((caller 1)[0] eq __PACKAGE__ and $body =~ s/^$key//) {
163 unless ($cv->CvFLAGS & B::CVf_ANON()) {
164 $name = $cv->GV->SAFENAME;
167 local $self->{brd_seen}->{$name} = 1 if defined $name;
168 return $self->SUPER::deparse_sub(@_);
175 local $self->{brd_sub} = 1;
176 $self->SUPER::pp_entersub(@_);
179 $body =~ s/^&\s*(\w)/$1/ if $self->_recurse;
188 local $self->{brd_sub} = 0;
189 $self->SUPER::pp_refgen(@_);
196 my $gv = $self->gv_or_padgv($_[0]);
197 my $cv = $gv->FLAGS & B::SVf_ROK ? $gv->RV : undef;
198 my $name = $cv ? $cv->NAME_HEK || $cv->GV->NAME : $gv->NAME;
200 my $seen = $self->{brd_seen};
203 if (!$self->{brd_sub} or !$self->_recurse or $seen->{$name} or !$$cv
204 or !$cv->isa('B::CV') or $cv->ROOT->isa('B::NULL')) {
205 $body = $self->SUPER::pp_gv(@_);
208 local @{$self}{qw<brd_sub brd_cur>} = (0, $self->{brd_cur} + 1);
209 local $seen->{$name} = 1;
210 'sub ' . $self->indent($self->deparse_sub($cv));
213 if (FOOL_SINGLE_DELIM) {
214 $body = $key . $body;
225 The following functions and methods from L<B::Deparse> are reimplemented by this module :
255 Otherwise, L<B::RecDeparse> inherits all methods from L<B::Deparse>.
259 An object-oriented module shouldn't export any function, and so does this one.
265 L<Carp> (standard since perl 5), L<Config> (since perl 5.00307) and L<B::Deparse> (since perl 5.005).
269 Vincent Pit, C<< <perl at profvince.com> >>, L<http://www.profvince.com>.
271 You can contact me by mail or on C<irc.perl.org> (vincent).
275 Please report any bugs or feature requests to C<bug-b-recdeparse at rt.cpan.org>, or through the web interface at L<http://rt.cpan.org/NoAuth/ReportBug.html?Queue=B-RecDeparse>.
276 I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.
280 You can find documentation for this module with the perldoc command.
282 perldoc B::RecDeparse
284 Tests code coverage report is available at L<http://www.profvince.com/perl/cover/B-RecDeparse>.
286 =head1 COPYRIGHT & LICENSE
288 Copyright 2008,2009,2010,2011,2013 Vincent Pit, all rights reserved.
290 This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
294 1; # End of B::RecDeparse