fixup source registration bugs where schema-specific things were being set on class...
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / DB.pm
1 package DBIx::Class::DB;
2
3 use strict;
4 use warnings;
5
6 use base qw/DBIx::Class/;
7 use DBIx::Class::Schema;
8 use DBIx::Class::Storage::DBI;
9 use DBIx::Class::ClassResolver::PassThrough;
10 use DBI;
11 use Scalar::Util;
12
13 unless ($INC{"DBIx/Class/CDBICompat.pm"}) {
14   warn "IMPORTANT: DBIx::Class::DB is DEPRECATED AND *WILL* BE REMOVED. DO NOT USE.\n";
15 }
16
17 __PACKAGE__->load_components(qw/ResultSetProxy/);
18
19 {
20     no warnings 'once';
21     *dbi_commit = \&txn_commit;
22     *dbi_rollback = \&txn_rollback;
23 }
24
25 sub storage { shift->schema_instance(@_)->storage; }
26
27 =head1 NAME
28
29 DBIx::Class::DB - (DEPRECATED) classdata schema component
30
31 =head1 DESCRIPTION
32
33 This class is designed to support the Class::DBI connection-as-classdata style
34 for DBIx::Class. You are *strongly* recommended to use a DBIx::Class::Schema
35 instead; DBIx::Class::DB will not undergo new development and will be moved
36 to being a CDBICompat-only component before 1.0. In order to discourage further
37 use, documentation has been removed as of 0.08000
38
39 =begin HIDE_BECAUSE_THIS_CLASS_IS_DEPRECATED
40
41 =head1 METHODS
42
43 =head2 storage
44
45 Sets or gets the storage backend. Defaults to L<DBIx::Class::Storage::DBI>.
46
47 =head2 class_resolver
48
49 ****DEPRECATED****
50
51 Sets or gets the class to use for resolving a class. Defaults to
52 L<DBIx::Class::ClassResolver::Passthrough>, which returns whatever you give
53 it. See resolve_class below.
54
55 =cut
56
57 __PACKAGE__->mk_classdata('class_resolver' =>
58                           'DBIx::Class::ClassResolver::PassThrough');
59
60 =head2 connection
61
62   __PACKAGE__->connection($dsn, $user, $pass, $attrs);
63
64 Specifies the arguments that will be passed to DBI->connect(...) to
65 instantiate the class dbh when required.
66
67 =cut
68
69 sub connection {
70   my ($class, @info) = @_;
71   $class->setup_schema_instance unless $class->can('schema_instance');
72   $class->schema_instance->connection(@info);
73 }
74
75 =head2 setup_schema_instance
76
77 Creates a class method ->schema_instance which contains a DBIx::Class::Schema;
78 all class-method operations are proxies through to this object. If you don't
79 call ->connection in your DBIx::Class::DB subclass at load time you *must*
80 call ->setup_schema_instance in order for subclasses to find the schema and
81 register themselves with it.
82
83 =cut
84
85 sub setup_schema_instance {
86   my $class = shift;
87   my $schema = {};
88   bless $schema, 'DBIx::Class::Schema';
89   $class->mk_classdata('schema_instance' => $schema);
90 }
91
92 =head2 txn_begin
93
94 Begins a transaction (does nothing if AutoCommit is off).
95
96 =cut
97
98 sub txn_begin { shift->schema_instance->txn_begin(@_); }
99
100 =head2 txn_commit
101
102 Commits the current transaction.
103
104 =cut
105
106 sub txn_commit { shift->schema_instance->txn_commit(@_); }
107
108 =head2 txn_rollback
109
110 Rolls back the current transaction.
111
112 =cut
113
114 sub txn_rollback { shift->schema_instance->txn_rollback(@_); }
115
116 =head2 txn_do
117
118 Executes a block of code transactionally. If this code reference
119 throws an exception, the transaction is rolled back and the exception
120 is rethrown. See L<DBIx::Class::Schema/"txn_do"> for more details.
121
122 =cut
123
124 sub txn_do { shift->schema_instance->txn_do(@_); }
125
126 {
127   my $warn;
128
129   sub resolve_class {
130     warn "resolve_class deprecated as of 0.04999_02" unless $warn++;
131     return shift->class_resolver->class(@_);
132   }
133 }
134
135 =head2 resultset_instance
136
137 Returns an instance of a resultset for this class - effectively
138 mapping the L<Class::DBI> connection-as-classdata paradigm into the
139 native L<DBIx::Class::ResultSet> system.
140
141 =cut
142
143 sub resultset_instance {
144   $_[0]->result_source_instance->resultset
145 }
146
147 =head2 result_source_instance
148
149 Returns an instance of the result source for this class
150
151 =cut
152
153 __PACKAGE__->mk_classdata('_result_source_instance' => []);
154
155 # Yep. this is horrific. Basically what's happening here is that
156 # (with good reason) DBIx::Class::Schema copies the result source for
157 # registration. Because we have a retarded setup order forced on us we need
158 # to actually make our ->result_source_instance -be- the source used, and we
159 # need to get the source name and schema into ourselves. So this makes it
160 # happen.
161
162 sub _maybe_attach_source_to_schema {
163   my ($class, $source) = @_;
164   if (my $meth = $class->can('schema_instance')) {
165     my $schema = $class->$meth;
166     $schema->register_class($class, $class);
167     my $new_source = $schema->source($class);
168     %$source = %$new_source;
169     $schema->source_registrations->{$class} = $source;
170   }
171 }
172
173 sub result_source_instance {
174   my $class = shift;
175   $class = ref $class || $class;
176   
177   if (@_) {
178     my $source = $_[0];
179     $class->_result_source_instance([$source, $class]);
180     $class->_maybe_attach_source_to_schema($source);
181     return $source;
182   }
183
184   my($source, $result_class) = @{$class->_result_source_instance};
185   return unless Scalar::Util::blessed($source);
186
187   if ($result_class ne $class) {  # new class
188     # Give this new class it's own source and register it.
189     $source = $source->new({ 
190         %$source, 
191         source_name  => $class,
192         result_class => $class
193     } );
194     $class->_result_source_instance([$source, $class]);
195     $class->_maybe_attach_source_to_schema($source);
196   }
197   return $source;
198 }
199
200 =head2 resolve_class
201
202 ****DEPRECATED****
203
204 See L<class_resolver>
205
206 =head2 dbi_commit
207
208 ****DEPRECATED****
209
210 Alias for L<txn_commit>
211
212 =head2 dbi_rollback
213
214 ****DEPRECATED****
215
216 Alias for L<txn_rollback>
217
218 =end HIDE_BECAUSE_THIS_CLASS_IS_DEPRECATED
219
220 =head1 AUTHORS
221
222 Matt S. Trout <mst@shadowcatsystems.co.uk>
223
224 =head1 LICENSE
225
226 You may distribute this code under the same terms as Perl itself.
227
228 =cut
229
230 1;