Comprehensive diagnostic on incorrect ResultSource metadata use
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / ResultSourceProxy / Table.pm
CommitLineData
80c90f5d 1package DBIx::Class::ResultSourceProxy::Table;
cda04c3a 2
3use strict;
4use warnings;
5
80c90f5d 6use base qw/DBIx::Class::ResultSourceProxy/;
cda04c3a 7
3e110410 8use DBIx::Class::ResultSource::Table;
6298a324 9use Scalar::Util 'blessed';
10use namespace::clean;
3e110410 11
d46eac43 12# FIXME - both of these *PROBABLY* need to be 'inherited_ro_instance' type
e5053694 13__PACKAGE__->mk_classaccessor(table_class => 'DBIx::Class::ResultSource::Table');
e5053694 14# FIXME: Doesn't actually do anything yet!
15__PACKAGE__->mk_group_accessors( inherited => 'table_alias' );
cda04c3a 16
e60dc79f 17sub _init_result_source_instance {
18 my $class = shift;
19
f064a2ab 20 $class->mk_group_accessors( inherited => [ result_source_instance => '_result_source' ] )
e5053694 21 unless $class->can('result_source_instance');
e60dc79f 22
d46eac43 23 # might be pre-made for us courtesy of DBIC::DB::result_source_instance()
24 my $rsrc = $class->result_source_instance;
25
26 return $rsrc
27 if $rsrc and $rsrc->result_class eq $class;
e60dc79f 28
846e17a6 29 my $table_class = $class->table_class;
30 $class->ensure_class_loaded($table_class);
31
d46eac43 32 if( $rsrc ) {
0ff33686 33 #
34 # NOTE! - not using clone() here and *NOT* marking source as derived
35 # from the one already existing on the class (if any)
36 #
d46eac43 37 $rsrc = $table_class->new({
38 %$rsrc,
e60dc79f 39 result_class => $class,
40 source_name => undef,
41 schema => undef
42 });
43 }
44 else {
d46eac43 45 $rsrc = $table_class->new({
e60dc79f 46 name => undef,
47 result_class => $class,
48 source_name => undef,
49 });
50 }
51
d46eac43 52 $class->result_source_instance($rsrc);
e60dc79f 53}
54
75d07914 55=head1 NAME
cda04c3a 56
24d67825 57DBIx::Class::ResultSourceProxy::Table - provides a classdata table
58object and method proxies
cda04c3a 59
60=head1 SYNOPSIS
61
24d67825 62 __PACKAGE__->table('cd');
63 __PACKAGE__->add_columns(qw/cdid artist title year/);
64 __PACKAGE__->set_primary_key('cdid');
cda04c3a 65
66=head1 METHODS
67
cda04c3a 68=head2 add_columns
69
24d67825 70 __PACKAGE__->add_columns(qw/cdid artist title year/);
cda04c3a 71
72Adds columns to the current class and creates accessors for them.
73
74=cut
75
cda04c3a 76=head2 table
77
78 __PACKAGE__->table('tbl_name');
d4daee7b 79
cda04c3a 80Gets or sets the table name.
81
82=cut
83
84sub table {
e570488a 85 return $_[0]->result_source->name unless @_ > 1;
d46eac43 86
cda04c3a 87 my ($class, $table) = @_;
c2b7c5dc 88
6298a324 89 unless (blessed $table && $table->isa($class->table_class)) {
846e17a6 90
0ff33686 91 my $ancestor = $class->can('result_source_instance')
92 ? $class->result_source_instance
93 : undef
94 ;
95
73f54e27 96 # Folks calling ->table on a class *might* expect the name
97 # to shift everywhere, but that can't happen
98 # So what we do is mark the ancestor as "dirty"
99 # even though it will have no "derived" link to the one we
100 # will use afterwards
101 if(
102 defined $ancestor
103 and
104 $ancestor->name ne $table
105 and
106 scalar $ancestor->__derived_instances
107 ) {
108 # Trigger the "descendants are dirty" logic, without giving
109 # it an explicit externally-callable interface
110 # This is ugly as sin, but likely saner in the long run
111 local $ancestor->{__in_rsrc_setter_callstack} = 1
112 unless $ancestor->{__in_rsrc_setter_callstack};
113 my $old_name = $ancestor->name;
114 $ancestor->set_rsrc_instance_specific_attribute( name => "\0" );
115 $ancestor->set_rsrc_instance_specific_attribute( name => $old_name );
116 }
117
118
846e17a6 119 my $table_class = $class->table_class;
120 $class->ensure_class_loaded($table_class);
121
0ff33686 122
123 # NOTE! - not using clone() here and *NOT* marking source as derived
124 # from the one already existing on the class (if any)
125 # This is logically sound as we are operating at class-level, and is
126 # in fact necessary, as otherwise any base-class with a "dummy" table
127 # will be marked as an ancestor of everything
846e17a6 128 $table = $table_class->new({
0ff33686 129 %{ $ancestor || {} },
cda04c3a 130 name => $table,
131 result_class => $class,
5a879106 132 });
cda04c3a 133 }
e87bedbe 134
f064a2ab 135 $class->mk_group_accessors( inherited => [ result_source_instance => '_result_source' ] )
e87bedbe 136 unless $class->can('result_source_instance');
137
d46eac43 138 $class->result_source_instance($table)->name;
cda04c3a 139}
140
8893ffd0 141=head2 table_class
142
143 __PACKAGE__->table_class('DBIx::Class::ResultSource::Table');
144
145Gets or sets the table class used for construction and validation.
146
988bf309 147=head2 has_column
148
149 if ($obj->has_column($col)) { ... }
150
151Returns 1 if the class has a column of this name, 0 otherwise.
152
988bf309 153=head2 column_info
154
155 my $info = $obj->column_info($col);
156
157Returns the column metadata hashref for a column. For a description of
158the various types of column data in this hashref, see
75d07914 159L<DBIx::Class::ResultSource/add_column>
988bf309 160
d7156e50 161=head2 columns
162
988bf309 163 my @column_names = $obj->columns;
164
a2bd3796 165=head1 FURTHER QUESTIONS?
cda04c3a 166
a2bd3796 167Check the list of L<additional DBIC resources|DBIx::Class/GETTING HELP/SUPPORT>.
cda04c3a 168
a2bd3796 169=head1 COPYRIGHT AND LICENSE
cda04c3a 170
a2bd3796 171This module is free software L<copyright|DBIx::Class/COPYRIGHT AND LICENSE>
172by the L<DBIx::Class (DBIC) authors|DBIx::Class/AUTHORS>. You can
173redistribute it and/or modify it under the same terms as the
174L<DBIx::Class library|DBIx::Class/COPYRIGHT AND LICENSE>.
cda04c3a 175
a2bd3796 176=cut
cda04c3a 177
a2bd3796 1781;
cda04c3a 179
cda04c3a 180