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