X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo%2FMouse.git;a=blobdiff_plain;f=lib%2FMouse%2FExporter.pm;h=8be55d94c525257ff150c4692238d0333edf65cf;hp=05bd16969b3f28119f18a2cbd26d9ee9dc640f07;hb=065f79e7cd03765f26c6ea276aaf9b3c5897886a;hpb=8cbcbb47d0f02077d07873c553494a884d9c085f diff --git a/lib/Mouse/Exporter.pm b/lib/Mouse/Exporter.pm index 05bd169..8be55d9 100644 --- a/lib/Mouse/Exporter.pm +++ b/lib/Mouse/Exporter.pm @@ -6,14 +6,14 @@ use Carp qw(confess); my %SPEC; -my $strict_bits = strict::bits(qw(subs refs vars)); +use constant _strict_bits => strict::bits(qw(subs refs vars)); # it must be "require", because Mouse::Util depends on Mouse::Exporter, # which depends on Mouse::Util::import() require Mouse::Util; sub import{ - $^H |= $strict_bits; # strict->import; + $^H |= _strict_bits; # strict->import; ${^WARNING_BITS} = $warnings::Bits{all}; # warnings->import; return; } @@ -24,6 +24,30 @@ sub setup_import_methods{ my $exporting_package = $args{exporting_package} ||= caller(); + my($import, $unimport) = $class->build_import_methods(%args); + + no strict 'refs'; + + *{$exporting_package . '::import'} = $import; + *{$exporting_package . '::unimport'} = $unimport; + + # for backward compatibility + *{$exporting_package . '::export_to_level'} = sub{ + my($package, $level, undef, @args) = @_; # the third argument is redundant + $package->import({ into_level => $level + 1 }, @args); + }; + *{$exporting_package . '::export'} = sub{ + my($package, $into, @args) = @_; + $package->import({ into => $into }, @args); + }; + return; +} + +sub build_import_methods{ + my($class, %args) = @_; + + my $exporting_package = $args{exporting_package} ||= caller(); + $SPEC{$exporting_package} = \%args; # canonicalize args @@ -78,7 +102,7 @@ sub setup_import_methods{ if(my $init_meta = $package->can('init_meta')){ if(!grep{ $_ == $init_meta } @init_meta_methods){ - unshift @init_meta_methods, $init_meta; + push @init_meta_methods, $init_meta; } } } @@ -105,12 +129,7 @@ sub setup_import_methods{ } } - no strict 'refs'; - - *{$exporting_package . '::import'} = \&do_import; - *{$exporting_package . '::unimport'} = \&do_unimport; - - return; + return (\&do_import, \&do_unimport); } @@ -124,10 +143,17 @@ sub do_import { my $into = _get_caller_package(ref($args[0]) ? shift @args : undef); my @exports; + my @traits; - foreach my $arg(@args){ + while(@args){ + my $arg = shift @args; if($arg =~ s/^-//){ - Mouse::Util::not_supported("-$arg"); + if($arg eq 'traits'){ + push @traits, @{shift(@args)}; + } + else { + Mouse::Util::not_supported("-$arg"); + } } elsif($arg =~ s/^://){ my $group = $spec->{groups}{$arg} @@ -139,20 +165,28 @@ sub do_import { } } - $^H |= $strict_bits; # strict->import; + $^H |= _strict_bits; # strict->import; ${^WARNING_BITS} = $warnings::Bits{all}; # warnings->import; - if($into eq 'main' && !$spec->{_export_to_main}){ - warn qq{$package does not export its sugar to the 'main' package.\n}; - return; - } - if($spec->{INIT_META}){ + my $meta; foreach my $init_meta(@{$spec->{INIT_META}}){ - $into->$init_meta(for_class => $into); + $meta = $into->$init_meta(for_class => $into); } - # _apply_meta_traits($into); # TODO + if(@traits){ + my $type = (split /::/, ref $meta)[-1]; # e.g. "Class" for "My::Meta::Class" + @traits = + map{ ref($_) ? $_ : Mouse::Util::resolve_metaclass_alias($type => $_, trait => 1) } + @traits; + + not_supported('-traits'); + require Mouse::Util::MetaRole; + Mouse::Util::MetaRole::apply_metaclass_roles( + for_class => $into, + metaclass_roles => \@traits, + ); + } } if(@exports){ @@ -212,6 +246,8 @@ sub _get_caller_package { } } +#sub _spec{ %SPEC } + 1; __END__ @@ -220,6 +256,10 @@ __END__ Mouse::Exporter - make an import() and unimport() just like Mouse.pm +=head1 VERSION + +This document describes Mouse version 0.40_02 + =head1 SYNOPSIS package MyApp::Mouse; @@ -262,8 +302,15 @@ C methods for your module, based on a spec you provide. Note that C does not provide the C option, but you can easily get the metaclass by C<< caller->meta >> as L shows. +=head1 METHODS + +=head2 C<< setup_import_methods( ARGS ) >> + +=head2 C<< build_import_methods( ARGS ) -> (\&import, \&unimport) >> + =head1 SEE ALSO L =cut +