Initial Commit
This commit is contained in:
218
database/perl/vendor/lib/Sub/Exporter/ForMethods.pm
vendored
Normal file
218
database/perl/vendor/lib/Sub/Exporter/ForMethods.pm
vendored
Normal file
@@ -0,0 +1,218 @@
|
||||
use strict;
|
||||
use warnings;
|
||||
package Sub::Exporter::ForMethods;
|
||||
# ABSTRACT: helper routines for using Sub::Exporter to build methods
|
||||
$Sub::Exporter::ForMethods::VERSION = '0.100052';
|
||||
use Scalar::Util 'blessed';
|
||||
use Sub::Name ();
|
||||
|
||||
use Sub::Exporter 0.978 -setup => {
|
||||
exports => [ qw(method_installer) ],
|
||||
};
|
||||
|
||||
#pod =head1 SYNOPSIS
|
||||
#pod
|
||||
#pod In an exporting library:
|
||||
#pod
|
||||
#pod package Method::Builder;
|
||||
#pod
|
||||
#pod use Sub::Exporter::ForMethods qw(method_installer);
|
||||
#pod
|
||||
#pod use Sub::Exporter -setup => {
|
||||
#pod exports => [ method => \'_method_generator' ],
|
||||
#pod installer => method_installer,
|
||||
#pod };
|
||||
#pod
|
||||
#pod sub _method_generator {
|
||||
#pod my ($self, $name, $arg, $col) = @_;
|
||||
#pod return sub { ... };
|
||||
#pod };
|
||||
#pod
|
||||
#pod In an importing library:
|
||||
#pod
|
||||
#pod package Vehicle::Autobot;
|
||||
#pod use Method::Builder method => { -as => 'transform' };
|
||||
#pod
|
||||
#pod =head1 DESCRIPTION
|
||||
#pod
|
||||
#pod The synopsis section, above, looks almost indistinguishable from any other
|
||||
#pod use of L<Sub::Exporter|Sub::Exporter>, apart from the use of
|
||||
#pod C<method_installer>. It is nearly indistinguishable in behavior, too. The
|
||||
#pod only change is that subroutines exported from Method::Builder into named slots
|
||||
#pod in Vehicle::Autobot will be wrapped in a subroutine called
|
||||
#pod C<Vehicle::Autobot::transform>. This will insert a named frame into stack
|
||||
#pod traces to aid in debugging.
|
||||
#pod
|
||||
#pod More importantly (for the author, anyway), they will not be removed by
|
||||
#pod L<namespace::autoclean|namespace::autoclean>. This makes the following code
|
||||
#pod work:
|
||||
#pod
|
||||
#pod package MyLibrary;
|
||||
#pod
|
||||
#pod use Math::Trig qw(tan); # uses Exporter.pm
|
||||
#pod use String::Truncate qw(trunc); # uses Sub::Exporter's defaults
|
||||
#pod
|
||||
#pod use Sub::Exporter::ForMethods qw(method_installer);
|
||||
#pod use Mixin::Linewise { installer => method_installer }, qw(read_file);
|
||||
#pod
|
||||
#pod use namespace::autoclean;
|
||||
#pod
|
||||
#pod ...
|
||||
#pod
|
||||
#pod 1;
|
||||
#pod
|
||||
#pod After MyLibrary is compiled, C<namespace::autoclean> will remove C<tan> and
|
||||
#pod C<trunc> as foreign contaminants, but will leave C<read_file> in place. It
|
||||
#pod will also remove C<method_installer>, an added win.
|
||||
#pod
|
||||
#pod =head1 EXPORTS
|
||||
#pod
|
||||
#pod Sub::Exporter::ForMethods offers only one routine for export, and it may also
|
||||
#pod be called by its full package name:
|
||||
#pod
|
||||
#pod =head2 method_installer
|
||||
#pod
|
||||
#pod my $installer = method_installer(\%arg);
|
||||
#pod
|
||||
#pod This routine returns an installer suitable for use as the C<installer> argument
|
||||
#pod to Sub::Exporter. It updates the C<\@to_export> argument to wrap all code that
|
||||
#pod will be installed by name in a named subroutine, then passes control to the
|
||||
#pod default Sub::Exporter installer.
|
||||
#pod
|
||||
#pod The only argument to C<method_installer> is an optional hashref which may
|
||||
#pod contain a single entry for C<rebless>. If the value for C<rebless> is true,
|
||||
#pod when a blessed subroutine is wrapped, the wrapper will be blessed into the same
|
||||
#pod package.
|
||||
#pod
|
||||
#pod =cut
|
||||
|
||||
sub method_installer {
|
||||
my ($mxi_arg) = @_;
|
||||
my $rebless = $mxi_arg->{rebless};
|
||||
|
||||
sub {
|
||||
my ($arg, $to_export) = @_;
|
||||
|
||||
my $into = $arg->{into};
|
||||
|
||||
for (my $i = 0; $i < @$to_export; $i += 2) {
|
||||
my ($as, $code) = @$to_export[ $i, $i+1 ];
|
||||
|
||||
next if ref $as;
|
||||
my $sub = sub { $code->(@_) };
|
||||
if ($rebless and defined (my $code_pkg = blessed $code)) {
|
||||
bless $sub, $code_pkg;
|
||||
}
|
||||
|
||||
$to_export->[ $i + 1 ] = Sub::Name::subname(
|
||||
join(q{::}, $into, $as),
|
||||
$sub,
|
||||
);
|
||||
}
|
||||
|
||||
Sub::Exporter::default_installer($arg, $to_export);
|
||||
};
|
||||
}
|
||||
|
||||
1;
|
||||
|
||||
__END__
|
||||
|
||||
=pod
|
||||
|
||||
=encoding UTF-8
|
||||
|
||||
=head1 NAME
|
||||
|
||||
Sub::Exporter::ForMethods - helper routines for using Sub::Exporter to build methods
|
||||
|
||||
=head1 VERSION
|
||||
|
||||
version 0.100052
|
||||
|
||||
=head1 SYNOPSIS
|
||||
|
||||
In an exporting library:
|
||||
|
||||
package Method::Builder;
|
||||
|
||||
use Sub::Exporter::ForMethods qw(method_installer);
|
||||
|
||||
use Sub::Exporter -setup => {
|
||||
exports => [ method => \'_method_generator' ],
|
||||
installer => method_installer,
|
||||
};
|
||||
|
||||
sub _method_generator {
|
||||
my ($self, $name, $arg, $col) = @_;
|
||||
return sub { ... };
|
||||
};
|
||||
|
||||
In an importing library:
|
||||
|
||||
package Vehicle::Autobot;
|
||||
use Method::Builder method => { -as => 'transform' };
|
||||
|
||||
=head1 DESCRIPTION
|
||||
|
||||
The synopsis section, above, looks almost indistinguishable from any other
|
||||
use of L<Sub::Exporter|Sub::Exporter>, apart from the use of
|
||||
C<method_installer>. It is nearly indistinguishable in behavior, too. The
|
||||
only change is that subroutines exported from Method::Builder into named slots
|
||||
in Vehicle::Autobot will be wrapped in a subroutine called
|
||||
C<Vehicle::Autobot::transform>. This will insert a named frame into stack
|
||||
traces to aid in debugging.
|
||||
|
||||
More importantly (for the author, anyway), they will not be removed by
|
||||
L<namespace::autoclean|namespace::autoclean>. This makes the following code
|
||||
work:
|
||||
|
||||
package MyLibrary;
|
||||
|
||||
use Math::Trig qw(tan); # uses Exporter.pm
|
||||
use String::Truncate qw(trunc); # uses Sub::Exporter's defaults
|
||||
|
||||
use Sub::Exporter::ForMethods qw(method_installer);
|
||||
use Mixin::Linewise { installer => method_installer }, qw(read_file);
|
||||
|
||||
use namespace::autoclean;
|
||||
|
||||
...
|
||||
|
||||
1;
|
||||
|
||||
After MyLibrary is compiled, C<namespace::autoclean> will remove C<tan> and
|
||||
C<trunc> as foreign contaminants, but will leave C<read_file> in place. It
|
||||
will also remove C<method_installer>, an added win.
|
||||
|
||||
=head1 EXPORTS
|
||||
|
||||
Sub::Exporter::ForMethods offers only one routine for export, and it may also
|
||||
be called by its full package name:
|
||||
|
||||
=head2 method_installer
|
||||
|
||||
my $installer = method_installer(\%arg);
|
||||
|
||||
This routine returns an installer suitable for use as the C<installer> argument
|
||||
to Sub::Exporter. It updates the C<\@to_export> argument to wrap all code that
|
||||
will be installed by name in a named subroutine, then passes control to the
|
||||
default Sub::Exporter installer.
|
||||
|
||||
The only argument to C<method_installer> is an optional hashref which may
|
||||
contain a single entry for C<rebless>. If the value for C<rebless> is true,
|
||||
when a blessed subroutine is wrapped, the wrapper will be blessed into the same
|
||||
package.
|
||||
|
||||
=head1 AUTHOR
|
||||
|
||||
Ricardo Signes <rjbs@cpan.org>
|
||||
|
||||
=head1 COPYRIGHT AND LICENSE
|
||||
|
||||
This software is copyright (c) 2015 by Ricardo Signes.
|
||||
|
||||
This is free software; you can redistribute it and/or modify it under
|
||||
the same terms as the Perl 5 programming language system itself.
|
||||
|
||||
=cut
|
||||
174
database/perl/vendor/lib/Sub/Exporter/Progressive.pm
vendored
Normal file
174
database/perl/vendor/lib/Sub/Exporter/Progressive.pm
vendored
Normal file
@@ -0,0 +1,174 @@
|
||||
package Sub::Exporter::Progressive;
|
||||
$Sub::Exporter::Progressive::VERSION = '0.001013';
|
||||
use strict;
|
||||
use warnings;
|
||||
|
||||
# ABSTRACT: Only use Sub::Exporter if you need it
|
||||
|
||||
sub _croak {
|
||||
require Carp;
|
||||
&Carp::croak;
|
||||
}
|
||||
|
||||
sub import {
|
||||
my ($self, @args) = @_;
|
||||
|
||||
my $inner_target = caller;
|
||||
my $export_data = sub_export_options($inner_target, @args);
|
||||
|
||||
my $full_exporter;
|
||||
no strict 'refs';
|
||||
no warnings 'once';
|
||||
@{"${inner_target}::EXPORT_OK"} = @{$export_data->{exports}};
|
||||
@{"${inner_target}::EXPORT"} = @{$export_data->{defaults}};
|
||||
%{"${inner_target}::EXPORT_TAGS"} = %{$export_data->{tags}};
|
||||
*{"${inner_target}::import"} = sub {
|
||||
use strict;
|
||||
my ($self, @args) = @_;
|
||||
|
||||
if ( grep {
|
||||
length ref $_
|
||||
or
|
||||
$_ !~ / \A [:-]? \w+ \z /xm
|
||||
} @args ) {
|
||||
_croak 'your usage of Sub::Exporter::Progressive requires Sub::Exporter to be installed'
|
||||
unless eval { require Sub::Exporter };
|
||||
$full_exporter ||= Sub::Exporter::build_exporter($export_data->{original});
|
||||
|
||||
goto $full_exporter;
|
||||
} elsif ( defined( (my ($num) = grep { m/^\d/ } @args)[0] ) ) {
|
||||
_croak "cannot export symbols with a leading digit: '$num'";
|
||||
} else {
|
||||
require Exporter;
|
||||
s/ \A - /:/xm for @args;
|
||||
@_ = ($self, @args);
|
||||
goto \&Exporter::import;
|
||||
}
|
||||
};
|
||||
return;
|
||||
}
|
||||
|
||||
my $too_complicated = <<'DEATH';
|
||||
You are using Sub::Exporter::Progressive, but the features your program uses from
|
||||
Sub::Exporter cannot be implemented without Sub::Exporter, so you might as well
|
||||
just use vanilla Sub::Exporter
|
||||
DEATH
|
||||
|
||||
sub sub_export_options {
|
||||
my ($inner_target, $setup, $options) = @_;
|
||||
|
||||
my @exports;
|
||||
my @defaults;
|
||||
my %tags;
|
||||
|
||||
if ( ($setup||'') eq '-setup') {
|
||||
my %options = %$options;
|
||||
|
||||
OPTIONS:
|
||||
for my $opt (keys %options) {
|
||||
if ($opt eq 'exports') {
|
||||
|
||||
_croak $too_complicated if ref $options{exports} ne 'ARRAY';
|
||||
@exports = @{$options{exports}};
|
||||
_croak $too_complicated if grep { length ref $_ } @exports;
|
||||
|
||||
} elsif ($opt eq 'groups') {
|
||||
%tags = %{$options{groups}};
|
||||
for my $tagset (values %tags) {
|
||||
_croak $too_complicated if grep {
|
||||
length ref $_
|
||||
or
|
||||
$_ =~ / \A - (?! all \b ) /x
|
||||
} @{$tagset};
|
||||
}
|
||||
@defaults = @{$tags{default} || [] };
|
||||
} else {
|
||||
_croak $too_complicated;
|
||||
}
|
||||
}
|
||||
@{$_} = map { / \A [:-] all \z /x ? @exports : $_ } @{$_} for \@defaults, values %tags;
|
||||
$tags{all} ||= [ @exports ];
|
||||
my %exports = map { $_ => 1 } @exports;
|
||||
my @errors = grep { not $exports{$_} } @defaults;
|
||||
_croak join(', ', @errors) . " is not exported by the $inner_target module\n" if @errors;
|
||||
}
|
||||
|
||||
return {
|
||||
exports => \@exports,
|
||||
defaults => \@defaults,
|
||||
original => $options,
|
||||
tags => \%tags,
|
||||
};
|
||||
}
|
||||
|
||||
1;
|
||||
|
||||
__END__
|
||||
|
||||
=pod
|
||||
|
||||
=encoding UTF-8
|
||||
|
||||
=head1 NAME
|
||||
|
||||
Sub::Exporter::Progressive - Only use Sub::Exporter if you need it
|
||||
|
||||
=head1 VERSION
|
||||
|
||||
version 0.001013
|
||||
|
||||
=head1 SYNOPSIS
|
||||
|
||||
package Syntax::Keyword::Gather;
|
||||
|
||||
use Sub::Exporter::Progressive -setup => {
|
||||
exports => [qw( break gather gathered take )],
|
||||
groups => {
|
||||
default => [qw( break gather gathered take )],
|
||||
},
|
||||
};
|
||||
|
||||
# elsewhere
|
||||
|
||||
# uses Exporter for speed
|
||||
use Syntax::Keyword::Gather;
|
||||
|
||||
# somewhere else
|
||||
|
||||
# uses Sub::Exporter for features
|
||||
use Syntax::Keyword::Gather 'gather', take => { -as => 'grab' };
|
||||
|
||||
=head1 DESCRIPTION
|
||||
|
||||
L<Sub::Exporter> is an incredibly powerful module, but with that power comes
|
||||
great responsibility, er- as well as some runtime penalties. This module
|
||||
is a C<Sub::Exporter> wrapper that will let your users just use L<Exporter>
|
||||
if all they are doing is picking exports, but use C<Sub::Exporter> if your
|
||||
users try to use C<Sub::Exporter>'s more advanced features, like
|
||||
renaming exports, if they try to use them.
|
||||
|
||||
Note that this module will export C<@EXPORT>, C<@EXPORT_OK> and
|
||||
C<%EXPORT_TAGS> package variables for C<Exporter> to work. Additionally, if
|
||||
your package uses advanced C<Sub::Exporter> features like currying, this module
|
||||
will only ever use C<Sub::Exporter>, so you might as well use it directly.
|
||||
|
||||
=head1 CONTRIBUTORS
|
||||
|
||||
ilmari - Dagfinn Ilmari Mannsåker (cpan:ILMARI) <ilmari@ilmari.org>
|
||||
|
||||
mst - Matt S. Trout (cpan:MSTROUT) <mst@shadowcat.co.uk>
|
||||
|
||||
leont - Leon Timmermans (cpan:LEONT) <leont@cpan.org>
|
||||
|
||||
=head1 AUTHOR
|
||||
|
||||
Arthur Axel "fREW" Schmidt <Sub-Exporter-Progressive@afoolishmanifesto.com>
|
||||
|
||||
=head1 COPYRIGHT AND LICENSE
|
||||
|
||||
This software is copyright (c) 2016 by Arthur Axel "fREW" Schmidt.
|
||||
|
||||
This is free software; you can redistribute it and/or modify it under
|
||||
the same terms as the Perl 5 programming language system itself.
|
||||
|
||||
=cut
|
||||
Reference in New Issue
Block a user