8 Scope::Upper - Act on upper scopes.
25 use Scope::Upper qw/reap localize localize_elem localize_delete :words/;
27 sub desc { shift->{desc} }
32 # First localize $x so that it gets destroyed last
33 localize '$x' => bless({ desc => $desc }, __PACKAGE__) => UP; # one scope up
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
41 localize_elem '%SIG', '__WARN__' => sub {
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
47 # delete last @ARGV element
48 localize_delete '@ARGV', -1 => UP SUB HERE; # same as UP here
55 # $x is now a X object, and @ARGV has one element less
56 warn 'what'; # warns "pie: what at ..."
58 } # "pie: done" is printed
62 use Scope::Upper qw/unwind want_at :words/;
65 my @result = shift->();
67 unwind +(want_at($cx) ? @result : scalar @result) => $cx;
74 return @things; # returns to try() and then outside zap()
78 my @what = zap(); # @what contains @things
82 This module lets you defer actions that will take place when the control flow returns into an upper scope.
83 Currently, you can hook an upper scope end, or localize variables, array/hash values or deletions of elements in higher contexts.
84 You can also return to an upper level and know which context was in use then.
88 In all those functions, C<$context> refers to the target scope.
90 You have to use one or a combination of L</WORDS> to build the C<$context> to pass to these functions.
91 This is needed in order to ensure that the module still works when your program is ran in the debugger.
92 Don't try to use a raw value or things will get messy.
94 The only thing you can assume is that it is an I<absolute> indicator of the frame.
95 This means that you can safely store it at some point and use it when needed, and it will still denote the original scope.
101 XSLoader::load(__PACKAGE__, $VERSION);
104 =head2 C<reap $callback, $context>
106 Add a destructor that calls C<$callback> when the upper scope represented by C<$context> ends.
108 =head2 C<localize $what, $value, $context>
110 A C<local> delayed to the time of first return into the upper scope denoted by C<$context>.
117 A glob, in which case C<$value> can either be a glob or a reference.
118 L</localize> follows then the same syntax as C<local *x = $value>.
119 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>.
123 A string beginning with a sigil, representing the symbol to localize and to assign to.
124 If the sigil is C<'$'>, L</localize> follows the same syntax as C<local $x = $value>, i.e. C<$value> isn't dereferenced.
127 localize '$x', \'foo' => HERE;
129 will set C<$x> to a reference to the string C<'foo'>.
130 Other sigils (C<'@'>, C<'%'>, C<'&'> and C<'*'>) require C<$value> to be a reference of the corresponding type.
132 When the symbol is given by a string, it is resolved when the actual localization takes place and not when C<localize> is called.
135 sub tag { localize '$x', $_[0] => UP }
137 will localize in the caller's namespace.
141 =head2 C<localize_elem $what, $key, $value, $context>
143 Similar to L</localize> but for array and hash elements.
144 If C<$what> is a glob, the slot to fill is determined from which type of reference C<$value> is ; otherwise it's inferred from the sigil.
145 C<$key> is either an array index or a hash key, depending of which kind of variable you localize.
147 =head2 C<localize_delete $what, $key, $context>
149 Similiar to L</localize>, but for deleting variables or array/hash elements.
156 A glob, in which case C<$key> is ignored and the call is equivalent to C<local *x>.
160 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}>.
164 A string beginning with C<'&'>, which more or less does C<undef &func> in the upper scope.
165 It's actually more powerful, as C<&func> won't even C<exists> anymore.
170 =head2 C<unwind @values, $context>
172 Returns C<@values> I<from> the context pointed by C<$context>, i.e. from the subroutine, eval or format just above C<$context>.
174 The upper context isn't coerced onto C<@values>, which is hence always evaluated in list context.
178 my @a = ('a' .. 'z');
182 will set C<$num> to C<'z'>.
183 You can use L</want_at> to handle these cases.
185 =head2 C<want_at $context>
187 Like C<wantarray>, but for the subroutine/eval/format just above C<$context>.
189 The previous example can then be "corrected" :
192 my @a = ('a' .. 'z');
193 unwind +(want_at(HERE) ? @a : scalar @a) => HERE;
196 will righteously set C<$num> to C<26>.
204 Returns the context that currently represents the highest scope.
208 The context of the current scope.
210 =head2 Getting a context from a context
212 For any of those functions, C<$from> is expected to be a context.
213 When omitted, it defaults to the the current context.
217 The context of the scope just above C<$from>.
221 The context of the closest subroutine above C<$from>.
225 The context of the closest eval above C<$from>.
227 =head2 Getting a context from a level
229 Here, C<$level> should denote a number of scopes above the current one.
230 When omitted, it defaults to C<0> and those functions return the same context as L</HERE>.
232 =head3 C<SCOPE $level>
234 The C<$level>-th upper context, regardless of its type.
236 =head3 C<CALLER $level>
238 The context of the C<$level>-th upper subroutine/eval/format.
239 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.
243 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'>.
245 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'>.
249 use base qw/Exporter/;
253 funcs => [ qw/reap localize localize_elem localize_delete unwind want_at/ ],
254 words => [ qw/TOP HERE UP SUB EVAL SCOPE CALLER/ ],
256 our @EXPORT_OK = map { @$_ } values %EXPORT_TAGS;
257 $EXPORT_TAGS{'all'} = [ @EXPORT_OK ];
261 Be careful that local variables are restored in the reverse order in which they were localized.
262 Consider those examples:
266 reap sub { print $x } => HERE;
274 reap sub { $x = 2 } => HERE;
279 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>.
281 L</reap>, L</localize> and L</localize_elem> effects can't cross C<BEGIN> blocks, hence calling those functions in C<import> is deemed to be useless.
282 This is an hopeless case because C<BEGIN> blocks are executed once while localizing constructs should do their job at each run.
284 Some rare oddities may still happen when running inside the debugger.
285 It may help to use a perl higher than 5.8.9 or 5.10.0, as they contain some context fixes.
289 L<XSLoader> (standard since perl 5.006).
293 L<Alias>, L<Hook::Scope>, L<Scope::Guard>, L<Guard>.
297 Vincent Pit, C<< <perl at profvince.com> >>, L<http://www.profvince.com>.
299 You can contact me by mail or on C<irc.perl.org> (vincent).
303 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>. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.
307 You can find documentation for this module with the perldoc command.
311 Tests code coverage report is available at L<http://www.profvince.com/perl/cover/Scope-Upper>.
313 =head1 ACKNOWLEDGEMENTS
315 Inspired by Ricardo Signes.
317 Thanks to Shawn M. Moore for motivation.
319 =head1 COPYRIGHT & LICENSE
321 Copyright 2008-2009 Vincent Pit, all rights reserved.
323 This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
327 1; # End of Scope::Upper