X-Git-Url: http://git.vpit.fr/?a=blobdiff_plain;f=lib%2FLaTeX%2FTikZ%2FFunctor%2FRule.pm;h=8cebab1daf0bd8a667115d6e59950c8ed098dd69;hb=3661d7849ae4636b74000e33e068493d90ed8337;hp=bccbb48d739707e5a5f416d4356c98533596416d;hpb=e82708f9111395800d13087a846bbec8a76cfcca;p=perl%2Fmodules%2FLaTeX-TikZ.git diff --git a/lib/LaTeX/TikZ/Functor/Rule.pm b/lib/LaTeX/TikZ/Functor/Rule.pm index bccbb48..8cebab1 100644 --- a/lib/LaTeX/TikZ/Functor/Rule.pm +++ b/lib/LaTeX/TikZ/Functor/Rule.pm @@ -24,9 +24,9 @@ A functor is basically an ordered collection of rules. use Carp (); -use Any::Moose; -use Any::Moose 'Util' => [ qw[find_meta does_role] ]; -use Any::Moose 'Util::TypeConstraints'; +use Mouse; +use Mouse::Util qw; +use Mouse::Util::TypeConstraints; =head1 ATTRIBUTES @@ -105,7 +105,7 @@ around 'BUILDARGS' => sub { my $meta = find_meta($target); Carp::confess("No meta object associated with target $target") unless defined $meta; - $args{is_role} = $meta->isa(any_moose('Meta::Role')); + $args{is_role} = $meta->isa('Mouse::Meta::Role'); my $is_set; if (does_role($target, 'LaTeX::TikZ::Set')) { @@ -123,8 +123,9 @@ around 'BUILDARGS' => sub { =head2 C<< insert into => \@list, overwrite => $overwrite, replace => $replace >> Inserts the current rule into the list of rules C<@list>. +The list is expected to be ordered, in that each rule must come after all the rules that have a target that inherits or consumes the original rule's own target. -If C<$replace> is false, then the rule will be appended to the C<@list> ; except if there already is an existent entry for the same target, in which case it will be overwritten if C<$overwrite> is true, or an exception will be thrown if it is false. +If C<$replace> is false, then the rule will be inserted into C<@list> after all the rules applying to the target's subclasses/subroles and before all its superclasses/superroles ; except if there is already an existent entry for the same target, in which case it will be overwritten if C<$overwrite> is true, or an exception will be thrown if it is false. If C<$replace> is true, then the rule will replace the first rule in the list that is a subclass or that consumes the role denoted by the target. All the subsequent rules in the list that inherit or consume the target will be removed. @@ -167,15 +168,37 @@ sub insert { } else { # Replace only an existent rule my $target = $rule->target; + my $last_descendant = undef; + my $first_ancestor = undef; + for my $i (0 .. $#$list) { - my $old_target = $list->[$i]->target; + my $old_rule = $list->[$i]; + my $old_target = $old_rule->target; if ($old_target eq $target) { Carp::confess("Default rule already defined for target $target") unless $overwrite; splice @$list, $i, 1, $rule; return 1; + } elsif ($rule->handles($old_target)) { + $last_descendant = $i; + } elsif ($old_rule->handles($target)) { + $first_ancestor = $i; } } + + my $pos; + if (defined $first_ancestor) { + Carp::confess("Unsorted rule list") + if defined $last_descendant and $first_ancestor <= $last_descendant; + $pos = $first_ancestor; + } elsif (defined $last_descendant) { + $pos = $last_descendant + 1; + } + + if (defined $pos) { + splice @$list, $pos, 1, $rule; + return 0; + } } push @$list, $rule;