]> git.vpit.fr Git - perl/modules/Scope-Upper.git/blob - lib/Scope/Upper.pm
This is 0.03
[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.03
13
14 =cut
15
16 our $VERSION;
17 BEGIN {
18  $VERSION = '0.03';
19 }
20
21 =head1 SYNOPSIS
22
23     package X;
24
25     use Scope::Upper qw/reap localize localize_elem localize_delete/;
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__) => 1;
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      } => 1;
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      } => 1;
46
47      localize_delete '@ARGV', $#ARGV => 1; # delete last @ARGV element
48     }
49
50     package Y;
51
52     {
53      X::set_tag('pie');
54      # $x is now a X object, and @ARGV has one element less
55      warn 'what'; # warns "pie: what at ..."
56      ...
57     } # "pie: done" is printed
58
59 =head1 DESCRIPTION
60
61 This module lets you defer actions that will take place when the control flow returns into an upper scope.
62 Currently, you can hook an upper scope end, or localize variables, array/hash values or deletions of elements in higher contexts.
63
64 =head1 FUNCTIONS
65
66 =cut
67
68 BEGIN {
69  require XSLoader;
70  XSLoader::load(__PACKAGE__, $VERSION);
71 }
72
73 =head2 C<reap $callback, $level>
74
75 Add a destructor that calls C<$callback> when the C<$level>-th upper scope ends, where C<0> corresponds to the current scope.
76
77 =head2 C<localize $what, $value, $level>
78
79 A C<local> delayed to the time of first return into the C<$level>-th upper scope.
80 C<$what> can be :
81
82 =over 4
83
84 =item *
85
86 A glob, in which case C<$value> can either be a glob or a reference.
87 L</localize> follows then the same syntax as C<local *x = $value>.
88 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>.
89
90 =item *
91
92 A string beginning with a sigil, representing the symbol to localize and to assign to.
93 If the sigil is C<'$'>, L</localize> follows the same syntax as C<local $x = $value>, i.e. C<$value> isn't dereferenced.
94 For example,
95
96     localize '$x', \'foo' => 0;
97
98 will set C<$x> to a reference to the string C<'foo'>.
99 Other sigils (C<'@'>, C<'%'>, C<'&'> and C<'*'>) require C<$value> to be a reference of the corresponding type.
100
101 When the symbol is given by a string, it is resolved when the actual localization takes place and not when C<localize> is called.
102 This means that
103
104     sub tag { localize '$x', $_[0] => 1; }
105
106 will localize in the caller's namespace.
107
108 =back
109
110 =head2 C<localize_elem $what, $key, $value, $level>
111
112 Similar to L</localize> but for array and hash elements.
113 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.
114 C<$key> is either an array index or a hash key, depending of which kind of variable you localize.
115
116 =head2 C<localize_delete $what, $key, $level>
117
118 Similiar to L</localize>, but for deleting variables or array/hash elements.
119 C<$what> can be:
120
121 =over 4
122
123 =item *
124
125 A glob, in which case C<$key> is ignored and the call is equivalent to C<local *x>.
126
127 =item *
128
129 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}>.
130
131 =item *
132
133 A string beginning with C<'&'>, which more or less does C<undef &func> in the upper scope.
134 It's actually more powerful, as C<&func> won't even C<exists> anymore.
135 C<$key> is ignored.
136
137 =back
138
139 =head2 C<TOPLEVEL>
140
141 Returns the level that currently represents the highest scope.
142
143 =head1 EXPORT
144
145 The functions L</reap>, L</localize>, L</localize_elem>, L</localize_delete> and L</TOPLEVEL> are only exported on request, either individually or by the tags C<':funcs'> and C<':all'>.
146
147 =cut
148
149 use base qw/Exporter/;
150
151 our @EXPORT      = ();
152 our %EXPORT_TAGS = (
153  funcs => [ qw/reap localize localize_elem localize_delete TOPLEVEL/ ],
154 );
155 our @EXPORT_OK   = map { @$_ } values %EXPORT_TAGS;
156 $EXPORT_TAGS{'all'} = [ @EXPORT_OK ];
157
158 =head1 CAVEATS
159
160 Be careful that local variables are restored in the reverse order in which they were localized.
161 Consider those examples:
162
163     local $x = 0;
164     {
165      reap sub { print $x } => 0;
166      local $x = 1;
167      ...
168     }
169     # prints '0'
170     ...
171     {
172      local $x = 1;
173      reap sub { $x = 2 } => 0;
174      ...
175     }
176     # $x is 0
177
178 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>.
179
180 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.
181 This is an hopeless case because C<BEGIN> blocks are executed once while localizing constructs should do their job at each run.
182
183 =head1 DEPENDENCIES
184
185 L<XSLoader> (standard since perl 5.006).
186
187 =head1 SEE ALSO
188
189 L<Alias>, L<Hook::Scope>, L<Scope::Guard>, L<Guard>.
190
191 =head1 AUTHOR
192
193 Vincent Pit, C<< <perl at profvince.com> >>, L<http://www.profvince.com>.
194
195 You can contact me by mail or on C<irc.perl.org> (vincent).
196
197 =head1 BUGS
198
199 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.
200
201 =head1 SUPPORT
202
203 You can find documentation for this module with the perldoc command.
204
205     perldoc Scope::Upper
206
207 Tests code coverage report is available at L<http://www.profvince.com/perl/cover/Scope-Upper>.
208
209 =head1 ACKNOWLEDGEMENTS
210
211 Inspired by Ricardo Signes.
212
213 =head1 COPYRIGHT & LICENSE
214
215 Copyright 2008-2009 Vincent Pit, all rights reserved.
216
217 This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
218
219 =cut
220
221 1; # End of Scope::Upper