e462063d8e0959c8b537c7c563dcb3df91c3a944
[p5sagit/Eval-WithLexicals.git] / lib / Eval / WithLexicals.pm
1 package Eval::WithLexicals;
2
3 use Moo;
4 use Moo::Role ();
5 use Sub::Quote;
6
7 our $VERSION = '1.001000'; # 1.1.0
8 $VERSION = eval $VERSION;
9
10 has lexicals => (is => 'rw', default => quote_sub q{ {} });
11
12 {
13   my %valid_contexts = map +($_ => 1), qw(list scalar void);
14
15   has context => (
16     is => 'rw', default => quote_sub(q{ 'list' }),
17     isa => sub {
18       my ($val) = @_;
19       die "Invalid context type $val - should be list, scalar or void"
20         unless $valid_contexts{$val};
21     },
22   );
23 }
24
25 has in_package => (
26   is => 'rw', default => quote_sub q{ 'Eval::WithLexicals::Scratchpad' }
27 );
28
29 has prelude => (
30   is => 'rw', default => quote_sub q{ 'use strictures 1;' }
31 );
32
33 sub with_plugins {
34   my($class, @names) = @_;
35
36   Moo::Role->create_class_with_roles($class,
37     map "Eval::WithLexicals::With$_", @names);
38 }
39
40 sub setup_code {
41   my($self) = @_;
42   $self->prelude;
43 }
44
45 sub capture_code {
46   ( qq{ BEGIN { Eval::WithLexicals::Util::capture_list() } } )
47 }
48
49 sub eval {
50   my ($self, $to_eval) = @_;
51   local *Eval::WithLexicals::Cage::current_line;
52   local *Eval::WithLexicals::Cage::pad_capture;
53   local *Eval::WithLexicals::Cage::grab_captures;
54
55   my $package = $self->in_package;
56   my $setup_code = join '', $self->setup_code,
57     # $_[2] being what is passed to _eval_do below
58     Sub::Quote::capture_unroll('$_[2]', $self->lexicals, 2);
59
60   my $capture_code = join '', $self->capture_code;
61
62   local our $current_code = qq!
63 ${setup_code}
64 sub Eval::WithLexicals::Cage::current_line {
65 package ${package};
66 #line 1 "(eval)"
67 ${to_eval}
68 ;sub Eval::WithLexicals::Cage::pad_capture { }
69 ${capture_code}
70 sub Eval::WithLexicals::Cage::grab_captures {
71   no warnings 'closure'; no strict 'vars';
72   package Eval::WithLexicals::VarScope;!;
73   # rest is appended by Eval::WithLexicals::Util::capture_list, called
74   # during parsing by the BEGIN block from capture_code.
75
76   $self->_eval_do(\$current_code, $self->lexicals, $to_eval);
77   $self->_run(\&Eval::WithLexicals::Cage::current_line);
78 }
79
80 sub _run {
81   my($self, $code) = @_;
82
83   my @ret;
84   my $ctx = $self->context;
85   if ($ctx eq 'list') {
86     @ret = $code->();
87   } elsif ($ctx eq 'scalar') {
88     $ret[0] = $code->();
89   } else {
90     $code->();
91   }
92   $self->lexicals({
93     %{$self->lexicals},
94     %{$self->_grab_captures},
95   });
96   @ret;
97 }
98
99 sub _grab_captures {
100   my ($self) = @_;
101   my $cap = Eval::WithLexicals::Cage::grab_captures();
102   foreach my $key (keys %$cap) {
103     my ($sigil, $name) = $key =~ /^(.)(.+)$/;
104     my $var_scope_name = $sigil.'Eval::WithLexicals::VarScope::'.$name;
105     if ($cap->{$key} eq eval "\\${var_scope_name}") {
106       delete $cap->{$key};
107     }
108   }
109   $cap;
110 }
111
112 sub _eval_do {
113   my ($self, $text_ref, $lexical, $original) = @_;
114   local @INC = (sub {
115     if ($_[1] eq '/eval_do') {
116       open my $fh, '<', $text_ref;
117       $fh;
118     } else {
119       ();
120     }
121   }, @INC);
122   do '/eval_do' or die $@;
123 }
124
125 {
126   package Eval::WithLexicals::Util;
127
128   use B qw(svref_2object);
129
130   sub capture_list {
131     my $pad_capture = \&Eval::WithLexicals::Cage::pad_capture;
132     my @names = grep $_ ne '&', map $_->PV, grep $_->isa('B::PV'),
133       svref_2object($pad_capture)->OUTSIDE->PADLIST->ARRAYelt(0)->ARRAY;
134     $Eval::WithLexicals::current_code .=
135       '+{ '.join(', ', map "'$_' => \\$_", @names).' };'
136       ."\n}\n}\n1;\n";
137   }
138 }
139
140 =head1 NAME
141
142 Eval::WithLexicals - pure perl eval with persistent lexical variables
143
144 =head1 SYNOPSIS
145
146   # file: bin/tinyrepl
147
148   #!/usr/bin/env perl
149
150   use strictures 1;
151   use Eval::WithLexicals;
152   use Term::ReadLine;
153   use Data::Dumper;
154
155   $SIG{INT} = sub { warn "SIGINT\n" };
156
157   { package Data::Dumper; no strict 'vars';
158     $Terse = $Indent = $Useqq = $Deparse = $Sortkeys = 1;
159     $Quotekeys = 0;
160   }
161
162   my $eval = Eval::WithLexicals->new;
163   my $read = Term::ReadLine->new('Perl REPL');
164   while (1) {
165     my $line = $read->readline('re.pl$ ');
166     exit unless defined $line;
167     my @ret; eval {
168       local $SIG{INT} = sub { die "Caught SIGINT" };
169       @ret = $eval->eval($line); 1;
170     } or @ret = ("Error!", $@);
171     print Dumper @ret;
172   }
173
174   # shell session:
175
176   $ perl -Ilib bin/tinyrepl 
177   re.pl$ my $x = 0;
178   0
179   re.pl$ ++$x;
180   1
181   re.pl$ $x + 3;
182   4
183   re.pl$ ^D
184   $
185
186 =head1 METHODS
187
188 =head2 new
189
190   my $eval = Eval::WithLexicals->new(
191     lexicals => { '$x' => \1 },      # default {}
192     in_package => 'PackageToEvalIn', # default Eval::WithLexicals::Scratchpad
193     context => 'scalar',             # default 'list'
194     prelude => 'use warnings',       # default 'use strictures 1'
195   );
196
197 =head2 eval
198
199   my @return_value = $eval->eval($code_to_eval);
200
201 =head2 lexicals
202
203   my $current_lexicals = $eval->lexicals;
204
205   $eval->lexicals(\%new_lexicals);
206
207 =head2 in_package
208
209   my $current_package = $eval->in_package;
210
211   $eval->in_package($new_package);
212
213 =head2 context
214
215   my $current_context = $eval->context;
216
217   $eval->context($new_context); # 'list', 'scalar' or 'void'
218
219 =head2 prelude
220
221 Code to run before evaling code. Loads L<strictures> by default.
222
223   my $current_prelude = $eval->prelude;
224
225   $eval->prelude(q{use warnings}); # only warnings, not strict.
226
227 =head2 with_plugins
228
229   my $eval = Eval::WithLexicals->with_plugins("HintPersistence")->new;
230
231 Construct a class with the given plugins. Plugins are roles located under
232 a package name like C<Eval::WithLexicals::With*>.
233
234 Current plugins are:
235
236 =over 4
237
238 =item * HintPersistence
239
240 When enabled this will persist pragams and other compile hints between evals
241 (for example the L<strict> and L<warnings> flags in effect). See
242 L<Eval::WithLexicals::WithHintPersistence> for further details.
243
244 =back
245
246 =head1 AUTHOR
247
248 Matt S. Trout <mst@shadowcat.co.uk>
249
250 =head1 CONTRIBUTORS
251
252 David Leadbeater <dgl@dgl.cx>
253
254 =head1 COPYRIGHT
255
256 Copyright (c) 2010 the Eval::WithLexicals L</AUTHOR> and L</CONTRIBUTORS>
257 as listed above.
258
259 =head1 LICENSE
260
261 This library is free software and may be distributed under the same terms
262 as perl itself.
263
264 =cut
265
266 1;