5d9a4b58d56c09be89e7f59451414775ee862d9e
[p5sagit/Devel-REPL.git] / lib / Devel / REPL / Plugin / B / Concise.pm
1 use strict;
2 use warnings;
3 package Devel::REPL::Plugin::B::Concise;
4
5 our $VERSION = '1.003027';
6
7 use Devel::REPL::Plugin;
8 use B::Concise 0.62 ();
9 use namespace::autoclean;
10
11 B::Concise::compileOpts qw(-nobanner);
12
13 sub BEFORE_PLUGIN {
14     my $self = shift;
15     $self->load_plugin('Turtles');
16 }
17
18 sub AFTER_PLUGIN {
19   my $self = shift;
20
21   my $prefix = $self->default_command_prefix;
22
23   $self->add_turtles_matcher(qr/^
24     \#(concise) \s+
25     ( (?:\-\w+\s+)* ) # options for concise
26     (.*) # the code
27     /x);
28 }
29
30 sub expr_command_concise {
31   my ( $self, $eval, $opts, $code ) = @_;
32
33   die unless $code;
34
35   my %opts = map { $_ => 1 } (split /\s+/, $opts);
36
37   my $sub = $self->compile($code, no_mangling => !delete($opts{"-mangle"}) );
38
39   if ( $self->is_error($sub) ) {
40     return $self->format($sub);
41   } else {
42     open my $fh, ">", \my $out;
43     {
44       local *STDOUT = $fh;
45       B::Concise::compile(keys %opts, $sub)->();
46     }
47
48     return $out;
49   }
50 }
51
52 __PACKAGE__
53
54 __END__
55
56 =pod
57
58 =head1 NAME
59
60 Devel::REPL::Plugin::B::Concise - B::Concise dumping of expression optrees
61
62 =head1 SYNOPSIS
63
64   repl> #concise -exec -terse {
65   > foo => foo(),
66   > }
67   COP (0x138b1e0) nextstate
68   OP (0x13bd280) pushmark
69   SVOP (0x138c6a0) const  PV (0xbbab50) "foo"
70   OP (0x13bbae0) pushmark
71   SVOP (0x13bcee0) gv  GV (0xbbb250) *Devel::REPL::Plugin::B::Concise::foo
72   UNOP (0x13890a0) entersub [1]
73   LISTOP (0x13ba020) anonhash
74   UNOP (0x5983d0) leavesub [1]
75
76 =head1 DESCRIPTION
77
78 This plugin provides a C<concise> command that uses L<B::Concise> to dump
79 optrees of expressions.
80
81 The code is not actually executed, which means that when used with
82 L<Deve::REPL::Plugin::OutputCache> there is no new value in C<_>.
83
84 The command takes the same options as L<B::Concise/compile>, e.g. C<-basic> or
85 C<-exec> to determine the dump order, C<-debug>, C<-concise> and C<-terse> to
86 determine the formatting, etc.
87
88 =head1 AUTHOR
89
90 Yuval Kogman E<lt>nothingmuch@woobling.orgE<gt>
91
92 =cut
93
94