X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FDBIx%2FClass%2FComponentised.pm;h=d4a66418dc425e613e0ec89a6f2fedd0ce1520a2;hb=3e0e9e276de1823691989e19575edc86658155f3;hp=72dd6f23fb5da5c0eb33a53ad03f91c3826342a7;hpb=227d4dee52a91339e04dd509712ac062450bbb82;p=dbsrgits%2FDBIx-Class-Historic.git diff --git a/lib/DBIx/Class/Componentised.pm b/lib/DBIx/Class/Componentised.pm index 72dd6f2..d4a6641 100644 --- a/lib/DBIx/Class/Componentised.pm +++ b/lib/DBIx/Class/Componentised.pm @@ -1,17 +1,28 @@ package DBIx::Class::Componentised; +use Class::C3; + sub inject_base { my ($class, $target, @to_inject) = @_; { no strict 'refs'; - unshift(@{"${target}::ISA"}, grep { $target ne $_ } @to_inject); + unshift(@{"${target}::ISA"}, grep { $target ne $_ && !$target->isa($_)} @to_inject); } + + # Yes, this is hack. But it *does* work. Please don't submit tickets about + # it on the basis of the comments in Class::C3, the author was on #dbix-class + # while I was implementing this. + + my $table = { Class::C3::_dump_MRO_table }; + eval "package $target; import Class::C3;" unless exists $table->{$target}; } sub load_components { my $class = shift; - my @comp = map { "DBIx::Class::$_" } grep { $_ !~ /^#/ } @_; + my $base = $class->component_base_class; + my @comp = map { "${base}::$_" } grep { $_ !~ /^#/ } @_; $class->_load_components(@comp); + Class::C3::reinitialize(); } sub load_own_components {