X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo%2FMouse.git;a=blobdiff_plain;f=lib%2FMouse%2FPurePerl.pm;h=5741014eec12c46e0445fbb3172719dd5b2b4179;hp=b3cfe047972a28a1226968552160221f9aa49712;hb=adb5eb76f6875283f11d6f2b8d281568f0a4a688;hpb=506fb74dbff3e8f756230c643d8bff7b85ae9ca3 diff --git a/lib/Mouse/PurePerl.pm b/lib/Mouse/PurePerl.pm index b3cfe04..5741014 100644 --- a/lib/Mouse/PurePerl.pm +++ b/lib/Mouse/PurePerl.pm @@ -97,6 +97,32 @@ sub generate_isa_predicate_for { return $predicate; } +sub generate_can_predicate_for { + my($methods_ref, $name) = @_; + + my @methods = @{$methods_ref}; + + my $predicate = sub{ + my($instance) = @_; + if(Scalar::Util::blessed($instance)){ + foreach my $method(@methods){ + if(!$instance->can($method)){ + return 0; + } + } + return 1; + } + return 0; + }; + + if(defined $name){ + no strict 'refs'; + *{ caller() . '::' . $name } = $predicate; + return; + } + + return $predicate; +} package Mouse::Util::TypeConstraints; @@ -204,78 +230,6 @@ sub add_method { return; } -my %SIGIL_MAP = ( - '$' => 'SCALAR', - '@' => 'ARRAY', - '%' => 'HASH', - '&' => 'CODE', - '*' => 'GLOB', -); - -sub _deconstruct_variable_name { - my($self, $variable) = @_; - - (defined $variable) - || $self->throw_error("You must pass a variable name"); - - my $sigil = substr($variable, 0, 1, ''); - - (defined $sigil) - || $self->throw_error("The variable name must include a sigil"); - - (exists $SIGIL_MAP{$sigil}) - || $self->throw_error("I do not recognize that sigil '$sigil'"); - - return ($variable, $SIGIL_MAP{$sigil}); -} - -sub has_package_symbol { - my($self, $variable) = @_; - - my($name, $type) = $self->_deconstruct_variable_name($variable); - - my $namespace = $self->namespace; - - return 0 unless exists $namespace->{$name}; - - my $entry_ref = \$namespace->{$name}; - if ( ref($entry_ref) eq 'GLOB' ) { - return defined( *{$entry_ref}{$type} ); - } - else { - # a symbol table entry can be -1 (stub), string (stub with prototype), - # or reference (constant) - return $type eq 'CODE'; - } -} - -sub get_package_symbol { - my ($self, $variable) = @_; - - my($name, $type) = $self->_deconstruct_variable_name($variable); - - my $namespace = $self->namespace; - - return undef - unless exists $namespace->{$name}; - - my $entry_ref = \$namespace->{$name}; - - if ( ref($entry_ref) eq 'GLOB' ) { - return *{$entry_ref}{$type}; - } - else { - if ( $type eq 'CODE' ) { - no strict 'refs'; - return \&{ $self->name . '::' . $name }; - } - else { - return undef; - } - } -} - - package Mouse::Meta::Class; @@ -559,6 +513,24 @@ sub DESTROY { die $e if $e; # rethrow } +sub BUILDALL { + my $self = shift; + + # short circuit + return unless $self->can('BUILD'); + + for my $class (reverse $self->meta->linearized_isa) { + my $build = Mouse::Util::get_code_ref($class, 'BUILD') + || next; + + $self->$build(@_); + } + return; +} + +sub DEMOLISHALL; +*DEMOLISHALL = \&DESTROY; + 1; __END__ @@ -568,7 +540,7 @@ Mouse::PurePerl - A Mouse guts in pure Perl =head1 VERSION -This document describes Mouse version 0.40_09 +This document describes Mouse version 0.44 =head1 SEE ALSO