remove pointless "required" fields for attrs with defaults/builders
[p5sagit/Devel-REPL.git] / lib / Devel / REPL / Plugin / LexEnv.pm
CommitLineData
85cd2780 1package Devel::REPL::Plugin::LexEnv;
2
6a5409bc 3use Devel::REPL::Plugin;
aa8b7647 4use namespace::autoclean;
85cd2780 5use Lexical::Persistence;
6
3a400715 7sub BEFORE_PLUGIN {
8 my $self = shift;
9 $self->load_plugin('FindVariable');
10}
bd67131f 11
85cd2780 12has 'lexical_environment' => (
13 isa => 'Lexical::Persistence',
14 is => 'rw',
85cd2780 15 lazy => 1,
16 default => sub { Lexical::Persistence->new }
17);
18
2bdaa93e 19has '_hints' => (
20 isa => "ArrayRef",
21 is => "rw",
22 predicate => '_has_hints',
23);
24
85cd2780 25around 'mangle_line' => sub {
26 my $orig = shift;
27 my ($self, @rest) = @_;
28 my $line = $self->$orig(@rest);
29 my $lp = $self->lexical_environment;
4d33251a 30 # Collate my declarations for all LP context vars then add '';
31 # so an empty statement doesn't return anything (with a no warnings
32 # to prevent "Useless use ..." warning)
2bdaa93e 33 return join('',
34 'BEGIN { if ( $_REPL->_has_hints ) { ( $^H, %^H ) = @{ $_REPL->_hints } } }',
35 ( map { "my $_;\n" } keys %{$lp->get_context('_')} ),
36 qq{{ no warnings 'void'; ''; }\n},
37 $line,
38 '; BEGIN { $_REPL->_hints([ $^H, %^H ]) }',
39 );
85cd2780 40};
41
42around 'execute' => sub {
43 my $orig = shift;
44 my ($self, $to_exec, @rest) = @_;
45 my $wrapped = $self->lexical_environment->wrap($to_exec);
46 return $self->$orig($wrapped, @rest);
47};
48
6d22063d 49# this doesn't work! yarg. we now just check $self->can('lexical_environment')
50# in FindVariable
51
52#around 'find_variable' => sub {
53# my $orig = shift;
54# my ($self, $name) = @_;
55#
56# return \( $self->lexical_environment->get_context('_')->{$name} )
57# if exists $self->lexical_environment->get_context('_')->{$name};
58#
59# return $orig->(@_);
60#};
bd67131f 61
85cd2780 621;
cfd1094b 63
64__END__
65
66=head1 NAME
67
68Devel::REPL::Plugin::LexEnv - Provide a lexical environment for the REPL
69
e4761e81 70=head1 SYNOPSIS
71
72 # in your re.pl file:
73 use Devel::REPL;
74 my $repl = Devel::REPL->new;
75 $repl->load_plugin('LexEnv');
76
77 $repl->lexical_environment->do(<<'CODEZ');
78 use FindBin;
79 use lib "$FindBin::Bin/../lib";
80 use MyApp::Schema;
81 my $s = MyApp::Schema->connect('dbi:Pg:dbname=foo','broseph','elided');
82 CODEZ
83
84 $repl->run;
85
86 # after you run re.pl:
87 $ warn $s->resultset('User')->first->first_name # <-- note that $s works
88
cfd1094b 89=cut
90