]> git.vpit.fr Git - perl/modules/Scope-Upper.git/blob - lib/Scope/Upper.pm
Assorted documentation tweaks and clarifications
[perl/modules/Scope-Upper.git] / lib / Scope / Upper.pm
1 package Scope::Upper;
2
3 use strict;
4 use warnings;
5
6 =head1 NAME
7
8 Scope::Upper - Act on upper scopes.
9
10 =head1 VERSION
11
12 Version 0.10
13
14 =cut
15
16 our $VERSION;
17 BEGIN {
18  $VERSION = '0.10';
19 }
20
21 =head1 SYNOPSIS
22
23     package X;
24
25     use Scope::Upper qw/reap localize localize_elem localize_delete :words/;
26
27     sub desc { shift->{desc} }
28
29     sub set_tag {
30      my ($desc) = @_;
31
32      # First localize $x so that it gets destroyed last
33      localize '$x' => bless({ desc => $desc }, __PACKAGE__) => UP; # one scope up
34
35      reap sub {
36       my $pkg = caller;
37       my $x = do { no strict 'refs'; ${$pkg.'::x'} }; # Get the $x in the scope
38       print $x->desc . ": done\n";
39      } => SCOPE 1; # same as UP here
40
41      localize_elem '%SIG', '__WARN__' => sub {
42       my $pkg = caller;
43       my $x = do { no strict 'refs'; ${$pkg.'::x'} }; # Get the $x in the scope
44       CORE::warn($x->desc . ': ' . join('', @_));
45      } => UP CALLER 0; # same as UP here
46
47      # delete last @ARGV element
48      localize_delete '@ARGV', -1 => UP SUB HERE; # same as UP here
49     }
50
51     package Y;
52
53     {
54      X::set_tag('pie');
55      # $x is now a X object, and @ARGV has one element less
56      warn 'what'; # warns "pie: what at ..."
57      ...
58     } # "pie: done" is printed
59
60     package Z;
61
62     use Scope::Upper qw/unwind want_at :words/;
63
64     sub try (&) {
65      my @result = shift->();
66      my $cx = SUB UP SUB;
67      unwind +(want_at($cx) ? @result : scalar @result) => $cx;
68     }
69
70     ...
71
72     sub zap {
73      try {
74       return @things; # returns to try() and then outside zap()
75       # not reached
76      }
77      # not reached
78     }
79
80     my @what = zap(); # @what contains @things
81
82 =head1 DESCRIPTION
83
84 This module lets you defer actions I<at run-time> that will take place when the control flow returns into an upper scope.
85 Currently, you can:
86
87 =over 4
88
89 =item *
90
91 hook an upper scope end with L</reap> ;
92
93 =item *
94
95 localize variables, array/hash values or deletions of elements in higher contexts with respectively L</localize>, L</localize_elem> and L</localize_delete> ;
96
97 =item *
98
99 return values immediately to an upper level with L</unwind>, and know which context was in use then with L</want_at>.
100
101 =back
102
103 =head1 FUNCTIONS
104
105 In all those functions, C<$context> refers to the target scope.
106
107 You have to use one or a combination of L</WORDS> to build the C<$context> passed to these functions.
108 This is needed in order to ensure that the module still works when your program is ran in the debugger.
109 The only thing you can assume is that it is an I<absolute> indicator of the frame, which means that you can safely store it at some point and use it when needed, and it will still denote the original scope.
110
111 =cut
112
113 BEGIN {
114  require XSLoader;
115  XSLoader::load(__PACKAGE__, $VERSION);
116 }
117
118 =head2 C<reap $callback, $context>
119
120 Adds a destructor that calls C<$callback> (in void context) when the upper scope represented by C<$context> ends.
121
122 =head2 C<localize $what, $value, $context>
123
124 Introduces a C<local> delayed to the time of first return into the upper scope denoted by C<$context>.
125 C<$what> can be :
126
127 =over 4
128
129 =item *
130
131 A glob, in which case C<$value> can either be a glob or a reference.
132 L</localize> follows then the same syntax as C<local *x = $value>.
133 For example, if C<$value> is a scalar reference, then the C<SCALAR> slot of the glob will be set to C<$$value> - just like C<local *x = \1> sets C<$x> to C<1>.
134
135 =item *
136
137 A string beginning with a sigil, representing the symbol to localize and to assign to.
138 If the sigil is C<'$'>, L</localize> follows the same syntax as C<local $x = $value>, i.e. C<$value> isn't dereferenced.
139 For example,
140
141     localize '$x', \'foo' => HERE;
142
143 will set C<$x> to a reference to the string C<'foo'>.
144 Other sigils (C<'@'>, C<'%'>, C<'&'> and C<'*'>) require C<$value> to be a reference of the corresponding type.
145
146 When the symbol is given by a string, it is resolved when the actual localization takes place and not when C<localize> is called.
147 Thus, if the symbol name is not qualified, it will refer to the variable in the package where the localization actually takes place and not in the one where the C<localize> call was compiled.
148 For example,
149
150     {
151      package Scope;
152      sub new { localize '$tag', $_[0] => UP }
153     }
154
155     {
156      package Tool;
157      {
158       Scope->new;
159       ...
160      }
161     }
162
163 will localize C<$Tool::tag> and not C<$Scope::tag>.
164 If you want the other behaviour, you just have to specify C<$what> as a glob or a qualified name.
165
166 Note that if C<$what> is a string denoting a variable that wasn't declared beforehand, the relevant slot will be vivified as needed and won't be deleted from the glob when the localization ends.
167 This situation never arises with C<local> because it only compiles when the localized variable is already declared.
168 Although I believe it shouldn't be a problem as glob slots definedness is pretty much an implementation detail, this behaviour may change in the future if proved harmful.
169
170 =back
171
172 =head2 C<localize_elem $what, $key, $value, $context>
173
174 Introduces a C<local $what[$key] = $value> or C<local $what{$key} = $value> delayed to the time of first return into the upper scope denoted by C<$context>.
175 Just like for L</localize>, the type of localization is determined from which kind of reference C<$value> is when C<$what> is a glob, and from the sigil when it's a string.
176 C<$key> is either an array index or a hash key, depending of which kind of variable you localize.
177
178 If C<$what> is a string pointing to an undeclared variable, the variable will be vivified as soon as the localization occurs and emptied when it ends, although it will still exist in its glob.
179
180 =head2 C<localize_delete $what, $key, $context>
181
182 Introduces the deletion of a variable or an array/hash element delayed to the time of first return into the upper scope denoted by C<$context>.
183 C<$what> can be:
184
185 =over 4
186
187 =item *
188
189 A glob, in which case C<$key> is ignored and the call is equivalent to C<local *x>.
190
191 =item *
192
193 A string beginning with C<'@'> or C<'%'>, for which the call is equivalent to respectiveley C<local $a[$key]; delete $a[$key]> and C<local $h{$key}; delete $h{$key}>.
194
195 =item *
196
197 A string beginning with C<'&'>, which more or less does C<undef &func> in the upper scope.
198 It's actually more powerful, as C<&func> won't even C<exists> anymore.
199 C<$key> is ignored.
200
201 =back
202
203 =head2 C<unwind @values, $context>
204
205 Returns C<@values> I<from> the context pointed by C<$context>, i.e. from the subroutine, eval or format at or just above C<$context>, and immediately restart the program flow at this point - thus effectively returning to an upper scope.
206
207 The upper context isn't coerced onto C<@values>, which is hence always evaluated in list context.
208 This means that
209
210     my $num = sub {
211      my @a = ('a' .. 'z');
212      unwind @a => HERE;
213      # not reached
214     }->();
215
216 will set C<$num> to C<'z'>.
217 You can use L</want_at> to handle these cases.
218
219 =head2 C<want_at $context>
220
221 Like C<wantarray>, but for the subroutine/eval/format at or just above C<$context>.
222
223 The previous example can then be "corrected" :
224
225     my $num = sub {
226      my @a = ('a' .. 'z');
227      unwind +(want_at(HERE) ? @a : scalar @a) => HERE;
228      # not reached
229     }->();
230
231 will rightfully set C<$num> to C<26>.
232
233 =head1 CONSTANTS
234
235 =head2 C<SU_THREADSAFE>
236
237 True iff the module could have been built when thread-safety features.
238
239 =head1 WORDS
240
241 =head2 Constants
242
243 =head3 C<TOP>
244
245 Returns the context that currently represents the highest scope.
246
247 =head3 C<HERE>
248
249 The context of the current scope.
250
251 =head2 Getting a context from a context
252
253 For any of those functions, C<$from> is expected to be a context.
254 When omitted, it defaults to the the current context.
255
256 =head3 C<UP $from>
257
258 The context of the scope just above C<$from>.
259
260 =head3 C<SUB $from>
261
262 The context of the closest subroutine above C<$from>.
263 Note that C<$from> is returned if it is already a subroutine context ; hence C<SUB SUB == SUB>.
264
265 =head3 C<EVAL $from>
266
267 The context of the closest eval above C<$from>.
268 Note that C<$from> is returned if it is already an eval context ; hence C<EVAL EVAL == EVAL>.
269
270 =head2 Getting a context from a level
271
272 Here, C<$level> should denote a number of scopes above the current one.
273 When omitted, it defaults to C<0> and those functions return the same context as L</HERE>.
274
275 =head3 C<SCOPE $level>
276
277 The C<$level>-th upper context, regardless of its type.
278
279 =head3 C<CALLER $level>
280
281 The context of the C<$level>-th upper subroutine/eval/format.
282 It kind of corresponds to the context represented by C<caller $level>, but while e.g. C<caller 0> refers to the caller context, C<CALLER 0> will refer to the top scope in the current context.
283
284 =head2 Examples
285
286 Where L</reap> fires depending on the C<$cxt> :
287
288     sub {
289      eval {
290       sub {
291        {
292         reap \&cleanup => $cxt;
293         ...
294        }     # $cxt = SCOPE(0), or HERE
295        ...
296       }->(); # $cxt = SCOPE(1), or UP, or SUB, or CALLER, or CALLER(0)
297       ...
298      };      # $cxt = SCOPE(2), or UP UP, or UP SUB, or EVAL, or CALLER(1)
299      ...
300     }->();   # $cxt = SCOPE(3), or SUB UP SUB, or SUB EVAL, or CALLER(2)
301     ...
302
303 Where L</localize>, L</localize_elem> and L</localize_delete> act depending on the C<$cxt> :
304
305     sub {
306      eval {
307       sub {
308        {
309         localize '$x' => 1 => $cxt;
310         # $cxt = SCOPE(0), or HERE
311         ...
312        }
313        # $cxt = SCOPE(1), or UP, or SUB, or CALLER, or CALLER(0)
314        ...
315       }->();
316       # $cxt = SCOPE(2), or UP UP, or UP SUB, or EVAL, or CALLER(1)
317       ...
318      };
319      # $cxt = SCOPE(3), or SUB UP SUB, or SUB EVAL, or CALLER(2)
320      ...
321     }->();
322     # $cxt = SCOPE(4), UP SUB UP SUB, or UP SUB EVAL, or UP CALLER(2), or TOP
323     ...
324
325 Where L</unwind> and L</want_at> point to depending on the C<$cxt>:
326
327     sub {
328      eval {
329       sub {
330        {
331         unwind @things => $cxt;
332         ...
333        }
334        ...
335       }->(); # $cxt = SCOPE(0 .. 1), or HERE, or UP, or SUB, or CALLER(0)
336       ...
337      };      # $cxt = SCOPE(2), or UP UP, or UP SUB, or EVAL, or CALLER(1)
338      ...
339     }->();   # $cxt = SCOPE(3), or SUB UP SUB, or SUB EVAL, or CALLER(2)
340     ...
341
342 =head1 EXPORT
343
344 The functions L</reap>, L</localize>, L</localize_elem>, L</localize_delete>,  L</unwind> and L</want_at> are only exported on request, either individually or by the tags C<':funcs'> and C<':all'>.
345
346 The constant L</SU_THREADSAFE> is also only exported on request, individually or by the tags C<':consts'> and C<':all'>.
347
348 Same goes for the words L</TOP>, L</HERE>, L</UP>, L</SUB>, L</EVAL>, L</SCOPE> and L</CALLER> that are only exported on request, individually or by the tags C<':words'> and C<':all'>.
349
350 =cut
351
352 use base qw/Exporter/;
353
354 our @EXPORT      = ();
355 our %EXPORT_TAGS = (
356  funcs  => [ qw/reap localize localize_elem localize_delete unwind want_at/ ],
357  words  => [ qw/TOP HERE UP SUB EVAL SCOPE CALLER/ ],
358  consts => [ qw/SU_THREADSAFE/ ],
359 );
360 our @EXPORT_OK   = map { @$_ } values %EXPORT_TAGS;
361 $EXPORT_TAGS{'all'} = [ @EXPORT_OK ];
362
363 =head1 CAVEATS
364
365 Be careful that local variables are restored in the reverse order in which they were localized.
366 Consider those examples:
367
368     local $x = 0;
369     {
370      reap sub { print $x } => HERE;
371      local $x = 1;
372      ...
373     }
374     # prints '0'
375     ...
376     {
377      local $x = 1;
378      reap sub { $x = 2 } => HERE;
379      ...
380     }
381     # $x is 0
382
383 The first case is "solved" by moving the C<local> before the C<reap>, and the second by using L</localize> instead of L</reap>.
384
385 The effects of L</reap>, L</localize> and L</localize_elem> can't cross C<BEGIN> blocks, hence calling those functions in C<import> is deemed to be useless.
386 This is an hopeless case because C<BEGIN> blocks are executed once while localizing constructs should do their job at each run.
387 However, it's possible to hook the end of the current scope compilation with L<B::Hooks::EndOfScope>.
388
389 Some rare oddities may still happen when running inside the debugger.
390 It may help to use a perl higher than 5.8.9 or 5.10.0, as they contain some context-related fixes.
391
392 =head1 DEPENDENCIES
393
394 L<XSLoader> (standard since perl 5.006).
395
396 =head1 SEE ALSO
397
398 L<Alias>, L<Hook::Scope>, L<Scope::Guard>, L<Guard>.
399
400 L<Continuation::Escape> is a thin wrapper around L<Scope::Upper> that gives you a continuation passing style interface to L</unwind>.
401 It's easier to use, but it requires you to have control over the scope where you want to return.
402
403 =head1 AUTHOR
404
405 Vincent Pit, C<< <perl at profvince.com> >>, L<http://www.profvince.com>.
406
407 You can contact me by mail or on C<irc.perl.org> (vincent).
408
409 =head1 BUGS
410
411 Please report any bugs or feature requests to C<bug-scope-upper at rt.cpan.org>, or through the web interface at L<http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Scope-Upper>.
412 I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.
413
414 =head1 SUPPORT
415
416 You can find documentation for this module with the perldoc command.
417
418     perldoc Scope::Upper
419
420 Tests code coverage report is available at L<http://www.profvince.com/perl/cover/Scope-Upper>.
421
422 =head1 ACKNOWLEDGEMENTS
423
424 Inspired by Ricardo Signes.
425
426 Thanks to Shawn M. Moore for motivation.
427
428 =head1 COPYRIGHT & LICENSE
429
430 Copyright 2008,2009,2010 Vincent Pit, all rights reserved.
431
432 This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
433
434 =cut
435
436 1; # End of Scope::Upper