/usr/share/perl5/Kavorka.pm is in libkavorka-perl 0.036-2.
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 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 | use 5.014;
use strict;
use warnings;
no warnings 'void';
use Carp ();
use Exporter::Tiny ();
use PadWalker ();
use Parse::Keyword ();
use Module::Runtime ();
use Scalar::Util ();
use Sub::Util ();
package Kavorka;
our $AUTHORITY = 'cpan:TOBYINK';
our $VERSION = '0.036';
our @ISA = qw( Exporter::Tiny );
our @EXPORT = qw( fun method );
our @EXPORT_OK = qw( fun method after around before override augment classmethod objectmethod multi );
our %EXPORT_TAGS = (
modifiers => [qw( after around before )],
allmodifiers => [qw( after around before override augment )],
);
our %IMPLEMENTATION = (
after => 'Kavorka::Sub::After',
around => 'Kavorka::Sub::Around',
augment => 'Kavorka::Sub::Augment',
before => 'Kavorka::Sub::Before',
classmethod => 'Kavorka::Sub::ClassMethod',
f => 'Kavorka::Sub::Fun',
fun => 'Kavorka::Sub::Fun',
func => 'Kavorka::Sub::Fun',
function => 'Kavorka::Sub::Fun',
method => 'Kavorka::Sub::Method',
multi => 'Kavorka::Multi',
objectmethod => 'Kavorka::Sub::ObjectMethod',
override => 'Kavorka::Sub::Override',
);
our %INFO;
sub info
{
my $me = shift;
my $code = $_[0];
$INFO{$code};
}
sub guess_implementation
{
my $me = shift;
$IMPLEMENTATION{$_[0]};
}
sub compose_implementation
{
shift;
require Moo::Role;
Moo::Role->create_class_with_roles(@_);
}
sub _exporter_validate_opts
{
my $class = shift;
$^H{'Kavorka/package'} = $_[0]{into};
$_[0]{replace} = 1 unless exists $_[0]{replace};
}
sub _fqname ($;$)
{
my $name = shift;
my ($package, $subname);
$name =~ s{'}{::}g;
if ($name =~ /::/)
{
($package, $subname) = $name =~ m{^(.+)::(\w+)$};
}
else
{
my $caller = @_ ? shift : $^H{'Kavorka/package'};
($package, $subname) = ($caller, $name);
}
return wantarray ? ($package, $subname) : "$package\::$subname";
}
sub _exporter_fail
{
my $me = shift;
my ($name, $args, $globals) = @_;
my $implementation =
$args->{'implementation'}
// $me->guess_implementation($name)
// $me;
my $into = $globals->{into};
Module::Runtime::use_package_optimistically($implementation);
{
my $traits = $globals->{traits} // $args->{traits};
$implementation = $me->compose_implementation($implementation, @$traits)
if $traits;
}
$implementation->can('parse')
or Carp::croak("No suitable implementation for keyword '$name'");
# Workaround for RT#95786 which might be caused by a bug in the Perl
# interpreter.
# Also RT#98666 is why we can't just call undefer_all.
require Sub::Defer;
for (keys %Sub::Defer::DEFERRED) {
no warnings;
Sub::Defer::undefer_sub($_)
if $Sub::Defer::DEFERRED{$_} && $Sub::Defer::DEFERRED{$_}[0] =~ /\AKavorkaX?\b/;
}
# Kavorka::Multi (for example) needs to know what Kavorka keywords are
# currently in scope.
$^H{'Kavorka'} .= "$name=$implementation ";
# This is the code that gets called at run-time.
#
my $code = Sub::Util::set_subname(
"$me\::$name",
sub {
unless (Scalar::Util::blessed($_[0]) and $_[0]->DOES('Kavorka::Sub'))
{
return $implementation->bypass_custom_parsing($name, $into, \@_);
}
my $subroutine = shift;
# Post-parse clean-up
$subroutine->_post_parse();
# Store $subroutine for introspection
$INFO{ $subroutine->body } = $subroutine;
# Install sub
my @r = wantarray
? $subroutine->install_sub
: scalar($subroutine->install_sub);
# Workarounds for closure issues in Parse::Keyword
if ($subroutine->is_anonymous)
{
my $orig = $r[0];
my $caller_vars = PadWalker::peek_my(1);
@r = Sub::Util::set_subname($subroutine->package."::__ANON__", sub {
$subroutine->_poke_pads($caller_vars);
goto $orig;
});
&Scalar::Util::set_prototype($r[0], $_) for grep defined, prototype($orig);
$INFO{ $r[0] } = $subroutine;
Scalar::Util::weaken($INFO{ $r[0] });
}
else
{
$subroutine->_poke_pads( PadWalker::peek_my(1) );
}
# Prevents a cycle between %INFO and $subroutine.
Scalar::Util::weaken($subroutine->{body})
unless Scalar::Util::isweak($subroutine->{body});
wantarray ? @r : $r[0];
},
);
# This joins up the code above with our custom parsing via
# Parse::Keyword
#
Parse::Keyword::install_keyword_handler(
$code => Sub::Util::set_subname(
"$me\::parse_$name",
sub {
local $Carp::CarpLevel = $Carp::CarpLevel + 1;
my $subroutine = $implementation->parse(keyword => $name);
return (
sub { ($subroutine, $args) },
!! $subroutine->declared_name,
);
},
),
);
# Symbol for Exporter::Tiny to export
return ($name => $code);
}
1;
__END__
=pod
=encoding utf-8
=for stopwords invocant invocants lexicals unintuitive yada globals
=head1 NAME
Kavorka - function signatures with the lure of the animal
=head1 SYNOPSIS
use Kavorka;
fun maxnum (Num @numbers) {
my $max = shift @numbers;
for (@numbers) {
$max = $_ if $max < $_;
}
return $max;
}
my $biggest = maxnum(42, 3.14159, 666);
=head1 STATUS
Kavorka is still at a very early stage of development; there are likely
to be many bugs that still need to be shaken out. Certain syntax
features are a little odd and may need to be changed in incompatible
ways.
=head1 DESCRIPTION
Kavorka provides C<fun> and C<method> keywords for declaring functions
and methods. It uses Perl 5.14's keyword API, so should work more
reliably than source filters or L<Devel::Declare>-based modules.
The syntax provided by Kavorka is largely inspired by Perl 6, though
it has also been greatly influenced by L<Method::Signatures> and
L<Function::Parameters>.
For information using the keywords exported by Kavorka:
=over
=item *
L<Kavorka::Manual::Functions>
=item *
L<Kavorka::Manual::Methods>
=item *
L<Kavorka::Manual::MethodModifiers>
=item *
L<Kavorka::Manual::MultiSubs>
=back
=head2 Exports
=over
=item C<< -default >>
Exports C<fun> and C<method>.
=item C<< -modifiers >>
Exports C<before>, C<after>, and C<around>.
=item C<< -allmodifiers >>
Exports C<before>, C<after>, C<around>, C<augment>, and C<override>.
=item C<< -all >>
Exports C<fun>, C<method>, C<before>, C<after>, C<around>,
C<augment>, C<override>, C<classmethod>, C<objectmethod>,
and C<multi>.
=back
For example:
# Everything except objectmethod and multi...
use Kavorka qw( -default -allmodifiers classmethod );
You can rename imported functions:
use Kavorka method => { -as => 'meth' };
You can provide alternative implementations:
# use My::Sub::Method instead of Kavorka::Sub::Method
use Kavorka method => { implementation => 'My::Sub::Method' };
Or add traits to the default implementation:
use Kavorka method => { traits => ['My::Sub::Role::Foo'] };
See L<Exporter::Tiny> for more tips.
=head2 Function Introspection API
The coderef for any sub created by Kavorka can be passed to the
C<< Kavorka->info >> method. This returns a blessed object that
does the L<Kavorka::Sub> role.
fun foo (:$x, :$y) { }
my $info = Kavorka->info(\&foo);
my $function_name = $info->qualified_name;
my @named_params = $info->signature->named_params;
say $named_params[0]->named_names->[0]; # says 'x'
See L<Kavorka::Sub>, L<Kavorka::Signature> and
L<Kavorka::Parameter> for further details.
If you're using Moose, consider using L<MooseX::KavorkaInfo> to expose
Kavorka method signatures via the meta object protocol.
L<Kavorka::Manual::API> provides more details and examples using the
introspection API.
=head1 CAVEATS
=over
=item *
As noted in L<Kavorka::Manual::PrototypeAndAttributes>, subroutine
attributes don't work properly for anonymous functions.
=item *
This module is based on L<Parse::Keyword>, which has a chronically
broken implementation of closures. Kavorka uses L<PadWalker> to attempt
to work around the problem. This mostly seems to work, but you may
experience some problems in edge cases, especially for anonymous
functions and methods.
=item *
If importing Kavorka's method modifiers into Moo/Mouse/Moose classes,
pay attention to load order:
use Moose;
use Kavorka -all; # ok
If you do it this way, Moose's C<before>, C<after>, and C<around>
keywords will stomp on top of Kavorka's...
use Kavorka -all;
use Moose; # STOMP, STOMP, STOMP! :-(
This can lead to delightfully hard to debug errors.
=back
=head1 BUGS
Please report any bugs to
L<http://rt.cpan.org/Dist/Display.html?Queue=Kavorka>.
=head1 SUPPORT
B<< IRC: >> support is available through in the I<< #moops >> channel
on L<irc.perl.org|http://www.irc.perl.org/channels.html>.
=head1 SEE ALSO
L<Kavorka::Manual>.
B<< Inspirations: >>
L<http://perlcabal.org/syn/S06.html>,
L<Function::Parameters>,
L<Method::Signatures>.
L<http://en.wikipedia.org/wiki/The_Conversion_(Seinfeld)>.
=head1 AUTHOR
Toby Inkster E<lt>tobyink@cpan.orgE<gt>.
=head1 COPYRIGHT AND LICENCE
This software is copyright (c) 2013-2014 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.
=head1 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.
|