X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo%2FMouse.git;a=blobdiff_plain;f=lib%2FMouse%2FUtil.pm;h=0e4d8652ecd184ba3dcd3e758ec9c822e729f4f4;hp=b51f7bc81f6ed7c00c124e0ab7e29e6bbff0033d;hb=1820fffecb0bd1da64edc16ecde534178b841d14;hpb=bc71de540020f1b2b75bafd69e2021c103e1c4e3 diff --git a/lib/Mouse/Util.pm b/lib/Mouse/Util.pm index b51f7bc..0e4d865 100644 --- a/lib/Mouse/Util.pm +++ b/lib/Mouse/Util.pm @@ -10,19 +10,22 @@ our @EXPORT_OK = qw( find_meta does_role resolve_metaclass_alias + apply_all_roles english_list load_class is_class_loaded - apply_all_roles - not_supported - get_linear_isa get_code_info + + not_supported + + does meta dump ); our %EXPORT_TAGS = ( all => \@EXPORT_OK, + meta => [qw(does meta dump)], ); # Moose::Util compatible utilities @@ -32,13 +35,14 @@ sub find_meta{ } sub does_role{ - my ($class_or_obj, $role) = @_; + my ($class_or_obj, $role_name) = @_; my $meta = Mouse::Meta::Module::class_of($class_or_obj); - return 0 unless defined $meta; - return 1 if $meta->does_role($role); - return 0; + (defined $role_name) + || ($meta || 'Mouse::Meta::Class')->throw_error("You must supply a role name to does()"); + + return defined($meta) && $meta->does_role($role_name); } @@ -145,7 +149,6 @@ sub load_first_existing_class { my @classes = @_ or return; - my $found; my %exceptions; for my $class (@classes) { my $e = _try_load_one_class($class); @@ -154,12 +157,11 @@ sub load_first_existing_class { $exceptions{$class} = $e; } else { - $found = $class; - last; + return $class; } } - return $found if $found; + # not found confess join( "\n", map { @@ -276,15 +278,35 @@ sub english_list { return join q{, }, @items, "and $tail"; } + +# common utilities + sub not_supported{ my($feature) = @_; $feature ||= ( caller(1) )[3]; # subroutine name - local $Carp::CarpLevel = $Carp::CarpLevel + 2; - Carp::croak("Mouse does not currently support $feature"); + local $Carp::CarpLevel = $Carp::CarpLevel + 1; + Carp::confess("Mouse does not currently support $feature"); +} + +sub meta{ + return Mouse::Meta::Class->initialize($_[0]); +} + +sub dump { + my($self, $maxdepth) = @_; + + require 'Data/Dumper.pm'; # we don't want to create its namespace + my $dd = Data::Dumper->new([$self]); + $dd->Maxdepth(defined($maxdepth) ? $maxdepth : 2); + $dd->Indent(1); + return $dd->Dump(); } +sub does :method; +*does = \&does_role; # alias + 1; __END__ @@ -295,9 +317,59 @@ Mouse::Util - features, with or without their dependencies =head1 IMPLEMENTATIONS FOR -=head2 L +=head2 Moose::Util + +=head3 C + +=head3 C + +=head3 C + +=head3 C + +=head3 C + +=head2 Class::MOP + +=head2 C<< is_class_loaded(ClassName) -> Bool >> + +Returns whether C is actually loaded or not. It uses a heuristic which +involves checking for the existence of C<$VERSION>, C<@ISA>, and any +locally-defined method. + +=head3 C<< load_class(ClassName) >> + +This will load a given C (or die if it's not loadable). +This function can be used in place of tricks like +C or using C. + +=head2 MRO::Compat + +=head3 C + +=head2 Sub::Identify + +=head3 C + +=head1 UTILITIES FOR MOUSE + +=over 4 + +=item * + +C + +=back + +=head1 SEE ALSO + +L + +L + +L -=head3 get_linear_isa +L =cut