X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FDBIx%2FClass%2FAccessorGroup.pm;h=ea25e4f793fb0d10c4bfe52fd8cbf721c5fba7ef;hb=e04535201f33f1d9c6222106a218944cf9eb3dbe;hp=f553a87be2aedbdf61b35205fda261e823a53a21;hpb=73281318ecc581cd163ac66047189019999d5b28;p=dbsrgits%2FDBIx-Class.git diff --git a/lib/DBIx/Class/AccessorGroup.pm b/lib/DBIx/Class/AccessorGroup.pm index f553a87..ea25e4f 100644 --- a/lib/DBIx/Class/AccessorGroup.pm +++ b/lib/DBIx/Class/AccessorGroup.pm @@ -4,6 +4,35 @@ use strict; use warnings; use base qw/Class::Accessor::Grouped/; +use Scalar::Util qw/weaken blessed/; +use namespace::clean; + +my $successfully_loaded_components; + +sub get_component_class { + my $class = $_[0]->get_inherited($_[1]); + + # It's already an object, just go for it. + return $class if blessed $class; + + if (defined $class and ! $successfully_loaded_components->{$class} ) { + $_[0]->ensure_class_loaded($class); + + no strict 'refs'; + $successfully_loaded_components->{$class} + = ${"${class}::__LOADED__BY__DBIC__CAG__COMPONENT_CLASS__"} + = do { \(my $anon = 'loaded') }; + weaken($successfully_loaded_components->{$class}); + } + + $class; +}; + +sub set_component_class { + shift->set_inherited(@_); +} + +1; =head1 NAME @@ -15,15 +44,15 @@ DBIx::Class::AccessorGroup - See Class::Accessor::Grouped This class now exists in its own right on CPAN as Class::Accessor::Grouped -1; - -=head1 AUTHORS +=head1 FURTHER QUESTIONS? -Matt S. Trout +Check the list of L. -=head1 LICENSE +=head1 COPYRIGHT AND LICENSE -You may distribute this code under the same terms as Perl itself. +This module is free software L +by the L. You can +redistribute it and/or modify it under the same terms as the +L. =cut -