NAME
methods::import - import methods to be used like keywords
SYNOPSIS
The following calls get
on the $ua
object.
Alternative:
DESCRIPTION
methods::import simplifies the task of calling a lot of methods on a single object.
Instead of:
$thing
->set_foo(1);
$thing
->process();
$thing
->set_foo(2);
$thing
->set_bar(3);
$thing
->process;
You can write:
for
(
$thing
) {
set_foo 1;
process;
set_foo 2;
set_bar 3;
process;
}
# You cannot call process() here because it was lexical
As well as set_foo
and the other functions explicitly named in the import list, methods::import will always export a function called using
.
using
can be used as an alternative to setting $_
to point to an object.
using
$thing
,
sub
{
set_foo 1;
process;
set_foo 2;
set_bar 3;
process;
};
Renaming Imports
An equals sign allows you to rename the imported wrappers.
using
$thing
,
sub
{
foo 1;
process;
foo 2;
bar 3;
process;
};
Even the using
function can be renamed:
processing
$thing
,
sub
{
foo 1;
process;
foo 2;
bar 3;
process;
};
How using
Works
When you import the wrappers, an scalar variable is created in the lexical scope of all the wrappers being imported. The wrappers will attempt to call the method on this scalar variable if it is defined, and fall back to $_
otherwise.
using
accepts an object and a coderef. It sets the scalar variable to point to the object, calls the coderef, then restores the scalar variable to whatever it was before (usally undef). It then returns the return value from calling the coderef.
This means:
bar()
is being called on an undefined object, because using1
only sets the target object for foo
, not bar
.
As a utility, if using
is called with no parameters, it will simply return the current target object. Or if using
is called with one parameter, it will set the target object and return any previous target object.
using
$thing
;
set_foo 1;
process;
set_foo 2;
set_bar 3;
process;
using->some_other_method();
Nested Imports
using LWP::UserAgent->new,
sub
{
my
$headers
= headers();
};
};
Currying
It is possible to curry leading arguments to a method:
"foo"
,
"foo"
=> {
-as
=>
"foo_123"
,
-curry
=> [1,2,3] };
using
$thing
;
foo(1, 2, 3, 4);
# $thing->foo(1, 2, 3, 4)
foo_123(4);
# same
Note that the -as
option has the same effect as =
in the import list. =
is just a shortcut.
Prototypes
using
$thing
;
foo { ... };
# $thing->foo(sub { ... });
There is a shortcut for this too:
Call Stack
methods::import doesn't make any attempt to hide the wrapper functions it exports. They will show up on the call stack.
Lexical Exports
methods::import uses namespace::clean to fake lexical imports.
You can switch off this behaviour by passing -keep
as the first option to import
:
{
using
$object
;
foo();
}
# using() and foo() are still defined here.
Or it can be done on a function by function basis:
"foo"
=> {
-keep
=> 1 },
"bar"
=> {
-keep
=> 0 },
"using"
=> {
-keep
=> 1 },
);
Inheriting from methods::import
If your class inherits from methods::import it can provide a method_list
function that supplies a default list of methods for import
.
For example:
And a module using your HTTP::Tiny::Keywords might do this:
BUGS
Please report any bugs to http://rt.cpan.org/Dist/Display.html?Queue=methods-import.
SEE ALSO
with
.
AUTHOR
Toby Inkster <tobyink@cpan.org>.
COPYRIGHT AND LICENCE
This software is copyright (c) 2019 by Toby Inkster.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.
DISCLAIMER OF WARRANTIES
THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.