AUTHORS mass update; mst doesn't have to take credit for -everything- :)
[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
12__PACKAGE__->mk_classdata(table_class => 'DBIx::Class::ResultSource::Table');
cda04c3a 13
24d67825 14__PACKAGE__->mk_classdata('table_alias'); # FIXME: Doesn't actually do
75d07914 15 # anything yet!
cda04c3a 16
e60dc79f 17sub _init_result_source_instance {
18 my $class = shift;
19
20 $class->mk_classdata('result_source_instance')
21 unless $class->can('result_source_instance');
22
23 my $table = $class->result_source_instance;
24 my $class_has_table_instance = ($table and $table->result_class eq $class);
25 return $table if $class_has_table_instance;
26
846e17a6 27 my $table_class = $class->table_class;
28 $class->ensure_class_loaded($table_class);
29
e60dc79f 30 if( $table ) {
846e17a6 31 $table = $table_class->new({
e60dc79f 32 %$table,
33 result_class => $class,
34 source_name => undef,
35 schema => undef
36 });
37 }
38 else {
846e17a6 39 $table = $table_class->new({
e60dc79f 40 name => undef,
41 result_class => $class,
42 source_name => undef,
43 });
44 }
45
46 $class->result_source_instance($table);
47
e60dc79f 48 return $table;
49}
50
75d07914 51=head1 NAME
cda04c3a 52
24d67825 53DBIx::Class::ResultSourceProxy::Table - provides a classdata table
54object and method proxies
cda04c3a 55
56=head1 SYNOPSIS
57
24d67825 58 __PACKAGE__->table('cd');
59 __PACKAGE__->add_columns(qw/cdid artist title year/);
60 __PACKAGE__->set_primary_key('cdid');
cda04c3a 61
62=head1 METHODS
63
cda04c3a 64=head2 add_columns
65
24d67825 66 __PACKAGE__->add_columns(qw/cdid artist title year/);
cda04c3a 67
68Adds columns to the current class and creates accessors for them.
69
70=cut
71
cda04c3a 72=head2 table
73
74 __PACKAGE__->table('tbl_name');
d4daee7b 75
cda04c3a 76Gets or sets the table name.
77
78=cut
79
80sub table {
81 my ($class, $table) = @_;
b98e75f6 82 return $class->result_source_instance->name unless $table;
c2b7c5dc 83
6298a324 84 unless (blessed $table && $table->isa($class->table_class)) {
846e17a6 85
86 my $table_class = $class->table_class;
87 $class->ensure_class_loaded($table_class);
88
89 $table = $table_class->new({
4376a157 90 $class->can('result_source_instance')
91 ? %{$class->result_source_instance||{}}
92 : ()
93 ,
cda04c3a 94 name => $table,
95 result_class => $class,
5a879106 96 });
cda04c3a 97 }
e87bedbe 98
99 $class->mk_classdata('result_source_instance')
100 unless $class->can('result_source_instance');
101
102 $class->result_source_instance($table);
103
ade8df5b 104 return $class->result_source_instance->name;
cda04c3a 105}
106
988bf309 107=head2 has_column
108
109 if ($obj->has_column($col)) { ... }
110
111Returns 1 if the class has a column of this name, 0 otherwise.
112
113=cut
114
115=head2 column_info
116
117 my $info = $obj->column_info($col);
118
119Returns the column metadata hashref for a column. For a description of
120the various types of column data in this hashref, see
75d07914 121L<DBIx::Class::ResultSource/add_column>
988bf309 122
123=cut
cda04c3a 124
d7156e50 125=head2 columns
126
988bf309 127 my @column_names = $obj->columns;
128
129=cut
cda04c3a 130
cda04c3a 1311;
132
0c11ad0e 133=head1 AUTHOR AND CONTRIBUTORS
cda04c3a 134
0c11ad0e 135See L<AUTHOR|DBIx::Class/AUTHOR> and L<CONTRIBUTORS|DBIx::Class/CONTRIBUTORS> in DBIx::Class
cda04c3a 136
137=head1 LICENSE
138
139You may distribute this code under the same terms as Perl itself.
140
141=cut
142