10 Scope::Upper - Act on upper scopes.
25 L</reap>, L</localize>, L</localize_elem>, L</localize_delete> and L</WORDS> :
30 reap localize localize_elem localize_delete
35 my ($class, $name) = @_;
37 localize '$tag' => bless({ name => $name }, $class) => UP;
39 reap { print Scope->tag->name, ": end\n" } UP;
42 # Get the tag stored in the caller namespace
45 my $pkg = __PACKAGE__;
46 $pkg = caller $l++ while $pkg eq __PACKAGE__;
52 sub name { shift->{name} }
54 # Locally capture warnings and reprint them with the name prefixed
56 localize_elem '%SIG', '__WARN__' => sub {
57 print Scope->tag->name, ': ', @_;
63 for (reverse 0 .. $#INC) {
64 # First UP is the for loop, second is the sub boundary
65 localize_delete '@INC', $_ => UP UP;
74 Scope->new("top"); # initializes $UserLand::tag
78 my $one = 1 + undef; # prints "top: Use of uninitialized value..."
83 print $@; # prints "Can't locate Cwd.pm in @INC
84 } # (@INC contains:) at..."
86 require Cwd; # loads Cwd.pm
89 } # prints "top: done"
91 L</unwind> and L</want_at> :
95 use Scope::Upper qw<unwind want_at :words>;
98 my @result = shift->();
99 my $cx = SUB UP; # Point to the sub above this one
100 unwind +(want_at($cx) ? @result : scalar @result) => $cx;
107 my @things = qw<a b c>;
108 return @things; # returns to try() and then outside zap()
114 my @stuff = zap(); # @stuff contains qw<a b c>
115 my $stuff = zap(); # $stuff contains 3
121 use Scope::Upper qw<uplevel CALLER>;
129 my $sub = (caller 0)[3];
130 print "$_[0] from $sub()";
134 target('hello'); # "hello from Uplevel::target()"
136 L</uid> and L</validate_uid> :
138 use Scope::Upper qw<uid validate_uid>;
145 if ($uid eq uid(UP)) { # yes
148 if (validate_uid($uid)) { # yes
154 if (validate_uid($uid)) { # no
160 This module lets you defer actions I<at run-time> that will take place when the control flow returns into an upper scope.
167 hook an upper scope end with L</reap> ;
171 localize variables, array/hash values or deletions of elements in higher contexts with respectively L</localize>, L</localize_elem> and L</localize_delete> ;
175 return values immediately to an upper level with L</unwind>, L</yield> and L</leave> ;
179 gather information about an upper context with L</want_at> and L</context_info> ;
183 execute a subroutine in the setting of an upper subroutine stack frame with L</uplevel> ;
187 uniquely identify contexts with L</uid> and L</validate_uid>.
193 In all those functions, C<$context> refers to the target scope.
195 You have to use one or a combination of L</WORDS> to build the C<$context> passed to these functions.
196 This is needed in order to ensure that the module still works when your program is ran in the debugger.
197 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.
203 XSLoader::load(__PACKAGE__, $VERSION);
209 reap { ... } $context;
210 &reap($callback, $context);
212 Adds a destructor that calls C<$callback> (in void context) when the upper scope represented by C<$context> ends.
216 localize $what, $value;
217 localize $what, $value, $context;
219 Introduces a C<local> delayed to the time of first return into the upper scope denoted by C<$context>.
226 A glob, in which case C<$value> can either be a glob or a reference.
227 L</localize> follows then the same syntax as C<local *x = $value>.
228 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>.
232 A string beginning with a sigil, representing the symbol to localize and to assign to.
233 If the sigil is C<'$'>, L</localize> follows the same syntax as C<local $x = $value>, i.e. C<$value> isn't dereferenced.
236 localize '$x', \'foo' => HERE;
238 will set C<$x> to a reference to the string C<'foo'>.
239 Other sigils (C<'@'>, C<'%'>, C<'&'> and C<'*'>) require C<$value> to be a reference of the corresponding type.
241 When the symbol is given by a string, it is resolved when the actual localization takes place and not when L</localize> is called.
242 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 L</localize> call was compiled.
247 sub new { localize '$tag', $_[0] => UP }
258 will localize C<$Tool::tag> and not C<$Scope::tag>.
259 If you want the other behaviour, you just have to specify C<$what> as a glob or a qualified name.
261 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.
262 This situation never arises with C<local> because it only compiles when the localized variable is already declared.
263 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.
267 =head2 C<localize_elem>
269 localize_elem $what, $key, $value;
270 localize_elem $what, $key, $value, $context;
272 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>.
273 Unlike L</localize>, C<$what> must be a string and the type of localization is inferred from its sigil.
274 The two only valid types are array and hash ; for anything besides those, L</localize_elem> will throw an exception.
275 C<$key> is either an array index or a hash key, depending of which kind of variable you localize.
277 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.
279 =head2 C<localize_delete>
281 localize_delete $what, $key;
282 localize_delete $what, $key, $context;
284 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>.
291 A glob, in which case C<$key> is ignored and the call is equivalent to C<local *x>.
295 A string beginning with C<'@'> or C<'%'>, for which the call is equivalent to respectively C<local $a[$key]; delete $a[$key]> and C<local $h{$key}; delete $h{$key}>.
299 A string beginning with C<'&'>, which more or less does C<undef &func> in the upper scope.
300 It's actually more powerful, as C<&func> won't even C<exists> anymore.
308 unwind @values, $context;
310 Returns C<@values> I<from> the subroutine, eval or format context pointed by or just above C<$context>, and immediately restarts the program flow at this point - thus effectively returning C<@values> to an upper scope.
311 If C<@values> is empty, then the C<$context> parameter is optional and defaults to the current context (making the call equivalent to a bare C<return;>) ; otherwise it is mandatory.
313 The upper context isn't coerced onto C<@values>, which is hence always evaluated in list context.
317 my @a = ('a' .. 'z');
322 will set C<$num> to C<'z'>.
323 You can use L</want_at> to handle these cases.
328 yield @values, $context;
330 Returns C<@values> I<from> the context pointed by or just above C<$context>, and immediately restarts the program flow at this point.
331 If C<@values> is empty, then the C<$context> parameter is optional and defaults to the current context ; otherwise it is mandatory.
333 L</yield> differs from L</unwind> in that it can target I<any> upper scope (besides a C<s///e> substitution context) and not necessarily a sub, an eval or a format.
334 Hence you can use it to return values from a C<do> or a C<map> block :
338 eval { require Time::HiRes } or yield time() => HERE;
343 yield if $seen{$_}++; # returns the empty list from the block
347 Like for L</unwind>, the upper context isn't coerced onto C<@values>.
348 You can use the fifth value returned by L</context_info> to handle context coercion.
355 Immediately returns C<@values> from the current block, whatever it may be (besides a C<s///e> substitution context).
356 C<leave> is actually a synonym for C<yield HERE>, while C<leave @values> is a synonym for C<yield @values, HERE>.
358 Like for L</yield>, you can use the fifth value returned by L</context_info> to handle context coercion.
363 my $want = want_at $context;
365 Like L<perlfunc/wantarray>, but for the subroutine, eval or format context located at or just above C<$context>.
367 It can be used to revise the example showed in L</unwind> :
370 my @a = ('a' .. 'z');
371 unwind +(want_at(HERE) ? @a : scalar @a) => HERE;
375 will rightfully set C<$num> to C<26>.
377 =head2 C<context_info>
379 my ($package, $filename, $line, $subroutine, $hasargs,
380 $wantarray, $evaltext, $is_require, $hints, $bitmask,
381 $hinthash) = context_info $context;
383 Gives information about the context denoted by C<$context>, akin to what L<perlfunc/caller> provides but not limited only to subroutine, eval and format contexts.
384 When C<$context> is omitted, it defaults to the current context.
386 The returned values are, in order :
392 I<(index 0)> : the namespace in use when the context was created ;
396 I<(index 1)> : the name of the file at the point where the context was created ;
400 I<(index 2)> : the line number at the point where the context was created ;
404 I<(index 3)> : the name of the subroutine called for this context, or C<undef> if this is not a subroutine context ;
408 I<(index 4)> : a boolean indicating whether a new instance of C<@_> was set up for this context, or C<undef> if this is not a subroutine context ;
412 I<(index 5)> : the context (in the sense of L<perlfunc/wantarray>) in which the context (in our sense) is executed ;
416 I<(index 6)> : the contents of the string being compiled for this context, or C<undef> if this is not an eval context ;
420 I<(index 7)> : a boolean indicating whether this eval context was created by C<require>, or C<undef> if this is not an eval context ;
424 I<(index 8)> : the value of the lexical hints in use when the context was created ;
428 I<(index 9)> : a bit string representing the warnings in use when the context was created ;
432 I<(index 10)> : a reference to the lexical hints hash in use when the context was created (only on perl 5.10 or greater).
438 my @ret = uplevel { ...; return @ret };
439 my @ret = uplevel { my @args = @_; ...; return @ret } @args, $context;
440 my @ret = &uplevel($callback, @args, $context);
442 Executes the code reference C<$callback> with arguments C<@args> as if it were located at the subroutine stack frame pointed by C<$context>, effectively fooling C<caller> and C<die> into believing that the call actually happened higher in the stack.
443 The code is executed in the context of the C<uplevel> call, and what it returns is returned as-is by C<uplevel>.
455 my @inverses = target(1, 2, 4); # @inverses contains (0, 0.5, 0.25)
456 my $count = target(1, 2, 4); # $count is 3
458 Note that if C<@args> is empty, then the C<$context> parameter is optional and defaults to the current context ; otherwise it is mandatory.
460 L<Sub::Uplevel> also implements a pure-Perl version of C<uplevel>.
461 Both are identical, with the following caveats :
467 The L<Sub::Uplevel> implementation of C<uplevel> may execute a code reference in the context of B<any> upper stack frame.
468 The L<Scope::Upper> version can only uplevel to a B<subroutine> stack frame, and will croak if you try to target an C<eval> or a format.
472 Exceptions thrown from the code called by this version of C<uplevel> will not be caught by C<eval> blocks between the target frame and the uplevel call, while they will for L<Sub::Uplevel>'s version.
480 uplevel { die 'wut' } CALLER(2); # for Scope::Upper
481 # uplevel(3, sub { die 'wut' }) # for Sub::Uplevel
484 print "inner block: $@";
488 print "outer block: $@";
490 will print "inner block: wut..." with L<Sub::Uplevel> and "outer block: wut..." with L<Scope::Upper>.
494 L<Sub::Uplevel> globally overrides the Perl keyword C<caller>, while L<Scope::Upper> does not.
498 A simple wrapper lets you mimic the interface of L<Sub::Uplevel/uplevel> :
505 my $cxt = Scope::Upper::CALLER($frame);
506 &Scope::Upper::uplevel($code => @_ => $cxt);
509 Albeit the three exceptions listed above, it passes all the tests of L<Sub::Uplevel>.
514 my $uid = uid $context;
516 Returns an unique identifier (UID) for the context (or dynamic scope) pointed by C<$context>, or for the current context if C<$context> is omitted.
517 This UID will only be valid for the life time of the context it represents, and another UID will be generated next time the same scope is executed.
523 if ($uid eq uid()) { # yes, this is the same context
527 if ($uid eq uid()) { # no, we are one scope below
530 if ($uid eq uid(UP)) { # yes, UP points to the same scope as $uid
536 # $uid is now invalid
539 if ($uid eq uid()) { # no, this is another block
544 For example, each loop iteration gets its own UID :
553 # %uids has 5 entries
555 The UIDs are not guaranteed to be numbers, so you must use the C<eq> operator to compare them.
557 To check whether a given UID is valid, you can use the L</validate_uid> function.
559 =head2 C<validate_uid>
561 my $is_valid = validate_uid $uid;
563 Returns true if and only if C<$uid> is the UID of a currently valid context (that is, it designates a scope that is higher than the current one in the call stack).
569 if (validate_uid($uid)) { # yes
573 if (validate_uid($uid)) { # yes
579 if (validate_uid($uid)) { # no
585 =head2 C<SU_THREADSAFE>
587 True iff the module could have been built when thread-safety features.
595 my $top_context = TOP;
597 Returns the context that currently represents the highest scope.
601 my $current_context = HERE;
603 The context of the current scope.
605 =head2 Getting a context from a context
607 For any of those functions, C<$from> is expected to be a context.
608 When omitted, it defaults to the current context.
612 my $upper_context = UP;
613 my $upper_context = UP $from;
615 The context of the scope just above C<$from>.
619 my $sub_context = SUB;
620 my $sub_context = SUB $from;
622 The context of the closest subroutine above C<$from>.
623 Note that C<$from> is returned if it is already a subroutine context ; hence C<SUB SUB == SUB>.
627 my $eval_context = EVAL;
628 my $eval_context = EVAL $from;
630 The context of the closest eval above C<$from>.
631 Note that C<$from> is returned if it is already an eval context ; hence C<EVAL EVAL == EVAL>.
633 =head2 Getting a context from a level
635 Here, C<$level> should denote a number of scopes above the current one.
636 When omitted, it defaults to C<0> and those functions return the same context as L</HERE>.
641 my $context = SCOPE $level;
643 The C<$level>-th upper context, regardless of its type.
647 my $context = CALLER;
648 my $context = CALLER $level;
650 The context of the C<$level>-th upper subroutine/eval/format.
651 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.
655 Where L</reap> fires depending on the C<$cxt> :
661 reap \&cleanup => $cxt;
663 } # $cxt = SCOPE(0) = HERE
665 }->(); # $cxt = SCOPE(1) = UP = SUB = CALLER(0)
667 }; # $cxt = SCOPE(2) = UP UP = UP SUB = EVAL = CALLER(1)
669 }->(); # $cxt = SCOPE(3) = SUB UP SUB = SUB EVAL = CALLER(2)
672 Where L</localize>, L</localize_elem> and L</localize_delete> act depending on the C<$cxt> :
678 localize '$x' => 1 => $cxt;
679 # $cxt = SCOPE(0) = HERE
682 # $cxt = SCOPE(1) = UP = SUB = CALLER(0)
685 # $cxt = SCOPE(2) = UP UP = UP SUB = EVAL = CALLER(1)
688 # $cxt = SCOPE(3) = SUB UP SUB = SUB EVAL = CALLER(2)
691 # $cxt = SCOPE(4), UP SUB UP SUB = UP SUB EVAL = UP CALLER(2) = TOP
694 Where L</unwind>, L</yield>, L</want_at>, L</context_info> and L</uplevel> point to depending on the C<$cxt>:
700 unwind @things => $cxt; # or yield @things => $cxt
701 # or uplevel { ... } $cxt
705 }->(); # $cxt = SCOPE(0) = SCOPE(1) = HERE = UP = SUB = CALLER(0)
707 }; # $cxt = SCOPE(2) = UP UP = UP SUB = EVAL = CALLER(1) (*)
709 }->(); # $cxt = SCOPE(3) = SUB UP SUB = SUB EVAL = CALLER(2)
712 # (*) Note that uplevel() will croak if you pass that scope frame,
713 # because it cannot target eval scopes.
717 The functions L</reap>, L</localize>, L</localize_elem>, L</localize_delete>, L</unwind>, L</yield>, L</leave>, L</want_at>, L</context_info> and L</uplevel> are only exported on request, either individually or by the tags C<':funcs'> and C<':all'>.
719 The constant L</SU_THREADSAFE> is also only exported on request, individually or by the tags C<':consts'> and C<':all'>.
721 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'>.
725 use base qw<Exporter>;
731 localize localize_elem localize_delete
737 words => [ qw<TOP HERE UP SUB EVAL SCOPE CALLER> ],
738 consts => [ qw<SU_THREADSAFE> ],
740 our @EXPORT_OK = map { @$_ } values %EXPORT_TAGS;
741 $EXPORT_TAGS{'all'} = [ @EXPORT_OK ];
745 Be careful that local variables are restored in the reverse order in which they were localized.
746 Consider those examples:
750 reap sub { print $x } => HERE;
758 reap sub { $x = 2 } => HERE;
763 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>.
765 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.
766 This is an hopeless case because C<BEGIN> blocks are executed once while localizing constructs should do their job at each run.
767 However, it's possible to hook the end of the current scope compilation with L<B::Hooks::EndOfScope>.
769 Some rare oddities may still happen when running inside the debugger.
770 It may help to use a perl higher than 5.8.9 or 5.10.0, as they contain some context-related fixes.
772 Calling C<goto> to replace an L</uplevel>'d code frame does not work :
778 for a C<perl> older than the 5.8 series ;
782 for a C<DEBUGGING> C<perl> run with debugging flags set (as in C<perl -D ...>) ;
786 when the runloop callback is replaced by another module.
790 In those three cases, L</uplevel> will look for a C<goto &sub> statement in its callback and, if there is one, throw an exception before executing the code.
792 Moreover, in order to handle C<goto> statements properly, L</uplevel> currently has to suffer a run-time overhead proportional to the size of the callback in every case (with a small ratio), and proportional to the size of B<all> the code executed as the result of the L</uplevel> call (including subroutine calls inside the callback) when a C<goto> statement is found in the L</uplevel> callback.
793 Despite this shortcoming, this XS version of L</uplevel> should still run way faster than the pure-Perl version from L<Sub::Uplevel>.
800 This module may happen to build with a C++ compiler as well, but don't rely on it, as no guarantee is made in this regard.
802 L<XSLoader> (core since perl 5.6.0).
806 L<perlfunc/local>, L<perlsub/"Temporary Values via local()">.
808 L<Alias>, L<Hook::Scope>, L<Scope::Guard>, L<Guard>.
812 L<Continuation::Escape> is a thin wrapper around L<Scope::Upper> that gives you a continuation passing style interface to L</unwind>.
813 It's easier to use, but it requires you to have control over the scope where you want to return.
819 Vincent Pit, C<< <perl at profvince.com> >>, L<http://www.profvince.com>.
821 You can contact me by mail or on C<irc.perl.org> (vincent).
825 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>.
826 I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.
830 You can find documentation for this module with the perldoc command.
834 Tests code coverage report is available at L<http://www.profvince.com/perl/cover/Scope-Upper>.
836 =head1 ACKNOWLEDGEMENTS
838 Inspired by Ricardo Signes.
840 Thanks to Shawn M. Moore for motivation.
842 =head1 COPYRIGHT & LICENSE
844 Copyright 2008,2009,2010,2011,2012,2013,2014,2015 Vincent Pit, all rights reserved.
846 This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
850 1; # End of Scope::Upper