/usr/share/perl5/Context/Preserve.pm is in libcontext-preserve-perl 0.01-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 | package Context::Preserve;
use strict;
use warnings;
use Carp;
use base 'Exporter';
our @EXPORT = qw(preserve_context);
our $VERSION = '0.01';
sub preserve_context(&@) {
my $orig = shift;
my %args = @_;
my $replace = $args{replace};
my $after = $args{after};
croak 'need an "after" or "replace" coderef'
unless $replace || $after;
if(!defined wantarray){
$orig->();
if($after){
$after->();
}
else {
$replace->();
}
return;
}
elsif(wantarray){
my @result = $orig->();
if($after){
my @ignored = $after->(@result);
}
else {
@result = $replace->(@result);
}
return @result;
}
else {
my $result = $orig->();
if($after){
my $ignored = $after->($result);
}
else {
$result = $replace->($result);
}
return $result;
}
}
1;
__END__
=head1 NAME
Context::Preserve - run code after a subroutine call, preserving the context the subroutine would have seen if it were the last statement in the caller
=head1 SYNOPSIS
Have you ever written this?
my ($result, @result);
# run a sub in the correct context
if(!defined wantarray){
some::code();
}
elsif(wantarray){
@result = some::code();
}
else {
$result = some::code();
}
# do something after some::code
$_ += 42 for (@result, $result);
# finally return the correct value
if(!defined wantarray){
return;
}
elsif(wantarray){
return @result;
}
else {
return $result;
}
Now you can just write this instead:
use Context::Preserve;
return preserve_context { some::code() }
after => sub { $_ += 42 for @_ };
=head1 DESCRIPTION
Sometimes you need to call a function, get the results, act on the
results, then return the result of the function. This is painful
because of contexts; the original function can behave different if
it's called in void, scalar, or list context. You can ignore the
various cases and just pick one, but that's fragile. To do things
right, you need to see which case you're being called in, and then
call the function in that context. This results in 3 code paths,
which is a pain to type in (and maintain).
This module automates the process. You provide a coderef that is the
"original function", and another coderef to run after the original
runs. You can modify the return value (aliased to @_) here, and do
whatever else you need to do. C<wantarray> is correct inside both
coderefs; in "after", though, the return value is ignored and the
value C<wantarray> returns is related to the context that the original
function was called in.
=head1 EXPORT
C<preserve_context>
=head1 FUNCTIONS
=head2 preserve_context { original } [after|replace] => sub { after }
Invokes C<original> in the same context as C<preserve_context> was
called in, save the results, runs C<after> in the same context, then
returns the result of C<original> (or C<after> if C<replace> is used).
If the second argument is C<after>, then you can modify C<@_> to
affect the return value. C<after>'s return value is ignored.
If the second argument is C<replace>, then modifying C<@_> doesn't do
anything. The return value of C<after> is returned from
C<preserve_context> instead.
Run C<preserve_context> like this:
sub whatever {
...
return preserve_context { orginal_function() }
after => sub { modify @_ };
}
or
sub whatever {
...
return preserve_context { orginal_function() }
replace => sub { return @new_return };
}
Note that there's no comma between the first block and the C<< after
=> >> part. This is how perl parses functions with the C<(&@)>
prototype. The alternative is to say:
preserve_context(sub { original }, after => sub { after });
You can pick the one you like, but I think the first version is much
prettier.
=head1 AUTHOR AND COPYRIGHT
Jonathan Rockway C<< <jrockway@cpan.org> >>
Copyright (c) 2008 Infinity Interactive. You may redistribute this
module under the same terms as Perl itself.
|