Bump to version 0.001008
[p5sagit/Sub-Exporter-Progressive.git] / lib / Sub / Exporter / Progressive.pm
CommitLineData
6d823d74 1package Sub::Exporter::Progressive;
2
6d823d74 3use strict;
4use warnings;
5
2115051d 6our $VERSION = '0.001008';
18f84e12 7
2b3cd6e0 8use Carp 'croak';
6d823d74 9use List::Util 'first';
10
11sub import {
12 my ($self, @args) = @_;
13
ea84f762 14 my $inner_target = caller;
2b3cd6e0 15 my $export_data = sub_export_options($inner_target, @args);
113a844b 16
17 my $full_exporter;
ea84f762 18 no strict 'refs';
113a844b 19 @{"${inner_target}::EXPORT_OK"} = @{$export_data->{exports}};
20 @{"${inner_target}::EXPORT"} = @{$export_data->{defaults}};
47825557 21 %{"${inner_target}::EXPORT_TAGS"} = %{$export_data->{tags}};
113a844b 22 *{"${inner_target}::import"} = sub {
23 use strict;
24 my ($self, @args) = @_;
25
b94ac53e 26 if (first { ref || !m/ \A [:-]? \w+ \z /xm } @args) {
27 croak 'your usage of Sub::Exporter::Progressive requires Sub::Exporter to be installed'
113a844b 28 unless eval { require Sub::Exporter };
ea84f762 29 $full_exporter ||= Sub::Exporter::build_exporter($export_data->{original});
113a844b 30
31 goto $full_exporter;
32 } else {
33 require Exporter;
b94ac53e 34 s/ \A - /:/xm for @args;
35 @_ = ($self, @args);
113a844b 36 goto \&Exporter::import;
37 }
38 };
ea84f762 39 return;
6d823d74 40}
41
2b3cd6e0 42my $too_complicated = <<'DEATH';
43You are using Sub::Exporter::Progressive, but the features your program uses from
44Sub::Exporter cannot be implemented without Sub::Exporter, so you might as well
45just use vanilla Sub::Exporter
46DEATH
47
6d823d74 48sub sub_export_options {
bb7b321b 49 my ($inner_target, $setup, $options) = @_;
6d823d74 50
6d823d74 51 my @exports;
52 my @defaults;
47825557 53 my %tags;
6d823d74 54
55 if ($setup eq '-setup') {
56 my %options = %$options;
57
58 OPTIONS:
59 for my $opt (keys %options) {
60 if ($opt eq 'exports') {
61
2b3cd6e0 62 croak $too_complicated if ref $options{exports} ne 'ARRAY';
6d823d74 63 @exports = @{$options{exports}};
2b3cd6e0 64 croak $too_complicated if first { ref } @exports;
6d823d74 65
66 } elsif ($opt eq 'groups') {
47825557 67 %tags = %{$options{groups}};
68 for my $tagset (values %tags) {
ea84f762 69 croak $too_complicated if first { / \A - (?! all \b ) /x || ref } @{$tagset};
47825557 70 }
71 @defaults = @{$tags{default} || [] };
6d823d74 72 } else {
2b3cd6e0 73 croak $too_complicated;
6d823d74 74 }
75 }
707baf12 76 @{$_} = map { / \A [:-] all \z /x ? @exports : $_ } @{$_} for \@defaults, values %tags;
77 $tags{all} ||= [ @exports ];
ea84f762 78 my %exports = map { $_ => 1 } @exports;
79 my @errors = grep { not $exports{$_} } @defaults;
80 croak join(', ', @errors) . " is not exported by the $inner_target module\n" if @errors;
6d823d74 81 }
82
2b3cd6e0 83 return {
6d823d74 84 exports => \@exports,
85 defaults => \@defaults,
86 original => $options,
47825557 87 tags => \%tags,
2b3cd6e0 88 };
6d823d74 89}
90
911;
92
62a442f8 93=encoding utf8
94
5cf6a81d 95=head1 NAME
96
97Sub::Exporter::Progressive - Only use Sub::Exporter if you need it
98
6d823d74 99=head1 SYNOPSIS
100
101 package Syntax::Keyword::Gather;
102
103 use Sub::Exporter::Progressive -setup => {
104 exports => [qw( break gather gathered take )],
105 groups => {
106 defaults => [qw( break gather gathered take )],
107 },
108 };
109
110 # elsewhere
111
112 # uses Exporter for speed
113 use Syntax::Keyword::Gather;
114
115 # somewhere else
116
117 # uses Sub::Exporter for features
118 use Syntax::Keyword::Gather 'gather', take => { -as => 'grab' };
119
120=head1 DESCRIPTION
121
122L<Sub::Exporter> is an incredibly powerful module, but with that power comes
123great responsibility, er- as well as some runtime penalties. This module
124is a C<Sub::Exporter> wrapper that will let your users just use L<Exporter>
125if all they are doing is picking exports, but use C<Sub::Exporter> if your
126users try to use C<Sub::Exporter>'s more advanced features features, like
127renaming exports, if they try to use them.
128
47825557 129Note that this module will export C<@EXPORT>, C<@EXPORT_OK> and
130C<%EXPORT_TAGS> package variables for C<Exporter> to work. Additionally, if
131your package uses advanced C<Sub::Exporter> features like currying, this module
132will only ever use C<Sub::Exporter>, so you might as well use it directly.
5cf6a81d 133
134=head1 AUTHOR
135
136frew - Arthur Axel Schmidt (cpan:FREW) <frioux+cpan@gmail.com>
137
138=head1 CONTRIBUTORS
139
140ilmari - Dagfinn Ilmari Mannsåker (cpan:ILMARI) <ilmari@ilmari.org>
141
142mst - Matt S. Trout (cpan:MSTROUT) <mst@shadowcat.co.uk>
143
4afbf82c 144leont - Leon Timmermans (cpan:LEONT) <leont@cpan.org>
145
5cf6a81d 146=head1 COPYRIGHT
147
148Copyright (c) 2012 the Sub::Exporter::Progressive L</AUTHOR> and
149L</CONTRIBUTORS> as listed above.
150
151=head1 LICENSE
152
153This library is free software and may be distributed under the same terms
154as perl itself.
155
156=cut