changes for 0.05006 release
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / ResultSetManager.pm
1 package DBIx::Class::ResultSetManager;
2 use strict;
3 use base 'DBIx::Class';
4 use Class::Inspector;
5
6 __PACKAGE__->mk_classdata($_) for qw/ base_resultset_class table_resultset_class_suffix /;
7 __PACKAGE__->base_resultset_class('DBIx::Class::ResultSet');
8 __PACKAGE__->table_resultset_class_suffix('::_resultset');
9
10 sub table {
11     my ($self,@rest) = @_;
12     my $ret = $self->next::method(@rest);
13     if (@rest) {
14         $self->_register_attributes;
15         $self->_register_resultset_class;        
16     }
17     return $ret;
18 }
19
20 sub load_resultset_components {
21     my ($self,@comp) = @_;
22     my $resultset_class = $self->_setup_resultset_class;
23     $resultset_class->load_components(@comp);
24 }
25
26 sub _register_attributes {
27     my $self = shift;
28     return unless $self->can('_attr_cache');
29
30     my $cache = $self->_attr_cache;
31     foreach my $meth (@{Class::Inspector->methods($self) || []}) {
32         my $attrs = $cache->{$self->can($meth)};
33         next unless $attrs;
34         if ($attrs->[0] eq 'ResultSet') {
35             no strict 'refs';
36             my $resultset_class = $self->_setup_resultset_class;
37             *{"$resultset_class\::$meth"} = $self->can($meth);
38             delete ${"${self}::"}{$meth};
39         }
40     }
41 }
42
43 sub _setup_resultset_class {
44     my $self = shift;
45     my $resultset_class = $self . $self->table_resultset_class_suffix;
46     no strict 'refs';
47     unless (@{"$resultset_class\::ISA"}) {
48         @{"$resultset_class\::ISA"} = ($self->base_resultset_class);
49     }
50     return $resultset_class;
51 }
52
53 sub _register_resultset_class {
54     my $self = shift;
55     my $resultset_class = $self . $self->table_resultset_class_suffix;
56     no strict 'refs';
57     if (@{"$resultset_class\::ISA"}) {
58         $self->result_source_instance->resultset_class($resultset_class);        
59     } else {
60         $self->result_source_instance->resultset_class($self->base_resultset_class);        
61     }
62 }
63
64 1;
65
66 __END__
67
68 =head1 NAME 
69
70     DBIx::Class::ResultSetManager - helpful methods for managing resultset classes (EXPERIMENTAL)
71
72 =head1 SYNOPSIS
73
74     # in a table class
75     __PACKAGE__->load_components(qw/ResultSetManager/);
76     __PACKAGE__->load_resultset_components(qw/AlwaysRS/);
77     
78     # will be removed from the table class and inserted into a table-specific resultset class
79     sub foo : ResultSet { ... }
80
81 =head1 DESCRIPTION
82
83 This package implements two useful features for customizing resultset classes.
84 C<load_resultset_components> loads components in addition to C<DBIx::Class::ResultSet>
85 (or whatever you set as C<base_resultset_class>). Any methods tagged with the C<ResultSet>
86 attribute will be moved into a table-specific resultset class (by default called
87 C<Class::_resultset>).
88
89 =head1 AUTHORS
90
91 David Kamholz <dkamholz@cpan.org>
92
93 =head1 LICENSE
94
95 You may distribute this code under the same terms as Perl itself.
96
97 =cut