compile each thing in a separate package, to avoid leakage
[gitmo/Eval-Closure.git] / lib / Eval / Closure.pm
CommitLineData
efb592ef 1package Eval::Closure;
b3bd5eb8 2use strict;
3use warnings;
efb592ef 4use Sub::Exporter -setup => {
5 exports => [qw(eval_closure)],
ce19c70b 6 groups => { default => [qw(eval_closure)] },
efb592ef 7};
ed9a00ae 8# ABSTRACT: safely and cleanly create closures via string eval
efb592ef 9
10use Carp;
11use overload ();
12use Scalar::Util qw(reftype);
13use Try::Tiny;
14
ed9a00ae 15=head1 SYNOPSIS
16
2e6086ab 17 use Eval::Closure;
18
19 my $code = eval_closure(
20 source => 'sub { $foo++ }',
21 environment => {
22 '$foo' => \1,
23 },
24 );
25
26 warn $code->(); # 1
27 warn $code->(); # 2
28
29 my $code2 = eval_closure(
30 source => 'sub { $code->() }',
31 ); # dies, $code isn't in scope
32
ed9a00ae 33=head1 DESCRIPTION
34
2e6086ab 35String eval is often used for dynamic code generation. For instance, C<Moose>
36uses it heavily, to generate inlined versions of accessors and constructors,
37which speeds code up at runtime by a significant amount. String eval is not
38without its issues however - it's difficult to control the scope it's used in
39(which determines which variables are in scope inside the eval), and it can be
40quite slow, especially if doing a large number of evals.
41
42This module attempts to solve both of those problems. It provides an
43C<eval_closure> function, which evals a string in a clean environment, other
44than a fixed list of specified variables. It also caches the result of the
c524c0f3 45eval, so that doing repeated evals of the same source, even with a different
46environment, will be much faster (but note that the description is part of the
47string to be evaled, so it must also be the same (or non-existent) if caching
48is to work properly).
2e6086ab 49
ed9a00ae 50=cut
51
52=func eval_closure(%args)
53
2e6086ab 54This function provides the main functionality of this module. It is exported by
55default. It takes a hash of parameters, with these keys being valid:
56
57=over 4
58
59=item source
60
61The string to be evaled. It should end by returning a code reference. It can
62access any variable declared in the C<environment> parameter (and only those
63variables). It can be either a string, or an arrayref of lines (which will be
64joined with newlines to produce the string).
65
66=item environment
67
68The environment to provide to the eval. This should be a hashref, mapping
69variable names (including sigils) to references of the appropriate type. For
70instance, a valid value for environment would be C<< { '@foo' => [] } >> (which
71would allow the generated function to use an array named C<@foo>). Generally,
72this is used to allow the generated function to access externally defined
73variables (so you would pass in a reference to a variable that already exists).
74
75=item description
76
77This lets you provide a bit more information in backtraces. Normally, when a
78function that was generated through string eval is called, that stack frame
79will show up as "(eval n)", where 'n' is a sequential identifier for every
80string eval that has happened so far in the program. Passing a C<description>
81parameter lets you override that to something more useful (for instance,
82L<Moose> overrides the description for accessors to something like "accessor
c4318911 83foo at MyClass.pm, line 123").
2e6086ab 84
75e6988b 85=item line
86
87This lets you override the particular line number that appears in backtraces,
c8d4a65f 88much like the C<description> option. The default is 1.
75e6988b 89
5617e966 90=item terse_error
91
92Normally, this function appends the source code that failed to compile, and
93prepends some explanatory text. Setting this option to true suppresses that
94behavior so you get only the compilation error that Perl actually reported.
95
2e6086ab 96=back
97
ed9a00ae 98=cut
99
efb592ef 100sub eval_closure {
101 my (%args) = @_;
8e1b3d7b 102
efb592ef 103 $args{source} = _canonicalize_source($args{source});
8e1b3d7b 104 _validate_env($args{environment} ||= {});
efb592ef 105
c8d4a65f 106 $args{source} = _line_directive(@args{qw(line description)})
107 . $args{source}
04918f80 108 if defined $args{description} && !($^P & 0x10);
3efcc087 109
409b8f41 110 my ($code, $e) = _clean_eval_closure(@args{qw(source environment)});
efb592ef 111
5617e966 112 if (!$code) {
113 if ($args{terse_error}) {
114 die "$e\n";
115 }
116 else {
117 croak("Failed to compile source: $e\n\nsource:\n$args{source}")
118 }
119 }
efb592ef 120
121 return $code;
122}
123
124sub _canonicalize_source {
125 my ($source) = @_;
126
127 if (defined($source)) {
128 if (ref($source)) {
129 if (reftype($source) eq 'ARRAY'
130 || overload::Method($source, '@{}')) {
131 return join "\n", @$source;
132 }
133 elsif (overload::Method($source, '""')) {
134 return "$source";
135 }
136 else {
137 croak("The 'source' parameter to eval_closure must be a "
138 . "string or array reference");
139 }
140 }
141 else {
142 return $source;
143 }
144 }
145 else {
146 croak("The 'source' parameter to eval_closure is required");
147 }
148}
149
8e1b3d7b 150sub _validate_env {
151 my ($env) = @_;
152
153 croak("The 'environment' parameter must be a hashref")
154 unless reftype($env) eq 'HASH';
155
156 for my $var (keys %$env) {
b3bd5eb8 157 croak("Environment key '$var' should start with \@, \%, or \$")
8e1b3d7b 158 unless $var =~ /^([\@\%\$])/;
159 croak("Environment values must be references, not $env->{$var}")
160 unless ref($env->{$var});
161 }
162}
163
3efcc087 164sub _line_directive {
75e6988b 165 my ($line, $description) = @_;
166
c8d4a65f 167 $line = 1 unless defined($line);
3efcc087 168
75e6988b 169 return qq{#line $line "$description"\n};
3efcc087 170}
171
efb592ef 172sub _clean_eval_closure {
1a2acf75 173 my ($source, $captures) = @_;
efb592ef 174
25ef0135 175 my @capture_keys = sort keys %$captures;
176
a30f41f7 177 if ($ENV{EVAL_CLOSURE_PRINT_SOURCE}) {
25ef0135 178 _dump_source(_make_compiler_source($source, @capture_keys));
a30f41f7 179 }
efb592ef 180
447800b5 181 my ($compiler, $e) = _make_compiler($source, @capture_keys);
f3c27658 182 my $code;
183 if (defined $compiler) {
447800b5 184 $code = $compiler->(@$captures{@capture_keys});
f3c27658 185 }
26eb0e7a 186
b86710e9 187 if (defined($code) && (!ref($code) || ref($code) ne 'CODE')) {
3eb05ecb 188 $e = "The 'source' parameter must return a subroutine reference, "
189 . "not $code";
26eb0e7a 190 undef $code;
26eb0e7a 191 }
192
18b5b42a 193 return ($code, $e);
efb592ef 194}
195
74225234 196{
197 my %compiler_cache;
198
199 sub _make_compiler {
200 my $source = _make_compiler_source(@_);
201
202 unless (exists $compiler_cache{$source}) {
0fb2ea46 203 $compiler_cache{$source} = _clean_eval($source);
74225234 204 }
205
206 return @{ $compiler_cache{$source} };
207 }
f3c27658 208}
209
794dc9df 210$Eval::Closure::SANDBOX_ID = 0;
211
0fb2ea46 212sub _clean_eval {
794dc9df 213 $Eval::Closure::SANDBOX_ID++;
214 return eval <<EVAL;
215package Eval::Closure::Sandbox_$Eval::Closure::SANDBOX_ID;
216local \$@;
217local \$SIG{__DIE__};
218my \$compiler = eval \$_[0];
219my \$e = \$@;
220[ \$compiler, \$e ];
221EVAL
0fb2ea46 222}
223
f3c27658 224sub _make_compiler_source {
447800b5 225 my ($source, @capture_keys) = @_;
f3c27658 226 my $i = 0;
efb592ef 227 return join "\n", (
f3c27658 228 'sub {',
efb592ef 229 (map {
f3c27658 230 'my ' . $_ . ' = ' . substr($_, 0, 1) . '{$_[' . $i++ . ']};'
447800b5 231 } @capture_keys),
efb592ef 232 $source,
f3c27658 233 '}',
efb592ef 234 );
235}
236
237sub _dump_source {
409b8f41 238 my ($source) = @_;
efb592ef 239
240 my $output;
241 if (try { require Perl::Tidy }) {
242 Perl::Tidy::perltidy(
243 source => \$source,
244 destination => \$output,
9688c823 245 argv => [],
efb592ef 246 );
247 }
248 else {
249 $output = $source;
250 }
251
409b8f41 252 warn "$output\n";
efb592ef 253}
254
ed9a00ae 255=head1 BUGS
256
257No known bugs.
258
259Please report any bugs through RT: email
260C<bug-eval-closure at rt.cpan.org>, or browse to
261L<http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Eval-Closure>.
262
263=head1 SEE ALSO
264
265=over 4
266
267=item * L<Class::MOP::Method::Accessor>
268
269This module is a factoring out of code that used to live here
270
271=back
272
273=head1 SUPPORT
274
275You can find this documentation for this module with the perldoc command.
276
277 perldoc Eval::Closure
278
279You can also look for information at:
280
281=over 4
282
283=item * AnnoCPAN: Annotated CPAN documentation
284
285L<http://annocpan.org/dist/Eval-Closure>
286
287=item * CPAN Ratings
288
289L<http://cpanratings.perl.org/d/Eval-Closure>
290
291=item * RT: CPAN's request tracker
292
293L<http://rt.cpan.org/NoAuth/Bugs.html?Dist=Eval-Closure>
294
295=item * Search CPAN
296
297L<http://search.cpan.org/dist/Eval-Closure>
298
299=back
300
301=head1 AUTHOR
302
303Jesse Luehrs <doy at tozt dot net>
304
305Based on code from L<Class::MOP::Method::Accessor>, by Stevan Little and the
306Moose Cabal.
307
308=cut
309
efb592ef 3101;