X-Git-Url: http://git.vpit.fr/?a=blobdiff_plain;f=lib%2FLaTeX%2FTikZ%2FMeta%2FTypeConstraint%2FAutocoerce.pm;h=165794c8740db2604c54c43967792440b4df560d;hb=a8c5cc8217c83c853306a8f89879471c09b84210;hp=9cc2322913697542f680313b7c9bba6aeba995dc;hpb=2ea319e77977b3651f90953e477e43e23244fcbd;p=perl%2Fmodules%2FLaTeX-TikZ.git diff --git a/lib/LaTeX/TikZ/Meta/TypeConstraint/Autocoerce.pm b/lib/LaTeX/TikZ/Meta/TypeConstraint/Autocoerce.pm index 9cc2322..165794c 100644 --- a/lib/LaTeX/TikZ/Meta/TypeConstraint/Autocoerce.pm +++ b/lib/LaTeX/TikZ/Meta/TypeConstraint/Autocoerce.pm @@ -15,50 +15,71 @@ Version 0.01 our $VERSION = '0.01'; +use Scalar::Util qw/blessed/; + use Sub::Name (); use Any::Moose; +use Any::Moose 'Util' => [ 'find_meta' ]; extends any_moose('Meta::TypeConstraint'); +=head1 ATTRIBUTES + +=head2 C + +=cut + has 'mapper' => ( is => 'ro', isa => 'CodeRef', ); -has 'parent_name' => ( +=head2 C + +=cut + +has 'parent' => ( is => 'ro', - isa => 'ClassName', + isa => any_moose('Meta::TypeConstraint'), required => 1, ); +=head2 C + +=cut + has 'user_constraint' => ( is => 'ro', isa => 'Maybe[CodeRef]', required => 1, ); +=head1 METHODS + +=cut + around 'new' => sub { my ($orig, $class, %args) = @_; unless (exists $args{mapper}) { - $args{mapper} = sub { join '::', $_[0]->parent_name, $_[1] }; + $args{mapper} = sub { join '::', $_[0]->parent->name, $_[1] }; } my $parent = delete $args{parent}; - $args{parent_name} = defined $parent - ? (blessed($parent) ? $parent->name : $parent) - : '__ANON__'; + unless (blessed $parent) { + $parent = find_meta($parent)->type_constraint; + } + __PACKAGE__->meta->find_attribute_by_name('parent') + ->type_constraint->assert_valid($parent); + $args{parent} = $parent; - $args{user_constraint} = $args{constraint}; + $args{user_constraint} = delete $args{constraint}; if (any_moose() eq 'Moose') { $args{coercion} = Moose::Meta::TypeCoercion->new; } - my $parent_name = $args{parent_name}; - $parent_name =~ s/::+/_/g; - my $tc; $args{constraint} = Sub::Name::subname('_load' => sub { $tc->load(@_); @@ -67,9 +88,17 @@ around 'new' => sub { $tc = $class->$orig(%args); }; +=head2 C + +=cut + sub load { my ($tc, $thing) = @_; + # When ->check is called inside coerce, a return value of 0 means that + # coercion should take place, while 1 signifies that the value is already + # OK. + # First, try a possible user defined constraint my $user = $tc->user_constraint; if (defined $user) { @@ -77,23 +106,29 @@ sub load { return 1 if $ok; } - # When ->check is called inside coerce, a return value of 0 means that - # coercion should take place, while 1 signifies that the value is already - # OK. + # Then, try the parent constraint + return 1 if $tc->parent->check($thing); + # If $thing isn't even an object, don't bother trying to coerce it my $class = blessed($thing); - return 0 unless $class; - return 1 if $class->isa($tc->parent_name); + return 0 unless defined $class; + # Find the file to autoload my $mapper = $tc->mapper; my $pm = $class = $tc->$mapper($class); - $pm =~ s{::}{/}g; $pm .= '.pm'; return 0 if $INC{$pm}; # already loaded local $@; - eval { require $pm; 1 }; + eval { + # We die often here, even though we're not really interested in the error. + # However, if a die handler is set (e.g. to \&Carp::confess), this can get + # very slow. Resetting the handler shows a 10% total time improvement for the + # geodyn app. + local $SIG{__DIE__}; + require $pm; + }; return 0; }