cleanup cursor class handling
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / Storage.pm
CommitLineData
4012acd8 1package DBIx::Class::Storage;
a62cf8d4 2
3use strict;
4use warnings;
5
046ad905 6use base qw/DBIx::Class/;
7
8use Scalar::Util qw/weaken/;
aaba9524 9use Carp::Clan qw/^DBIx::Class/;
942cd0c1 10use IO::File;
046ad905 11
046ad905 12__PACKAGE__->mk_group_accessors('simple' => qw/debug debugobj schema/);
e4eb8ee1 13__PACKAGE__->mk_group_accessors('inherited' => 'cursor_class');
14
15__PACKAGE__->cursor_class('DBIx::Class::Cursor');
16
17sub cursor { shift->cursor_class(@_); }
046ad905 18
4012acd8 19package # Hide from PAUSE
20 DBIx::Class::Storage::NESTED_ROLLBACK_EXCEPTION;
21
22use overload '"' => sub {
23 'DBIx::Class::Storage::NESTED_ROLLBACK_EXCEPTION'
24};
25
26sub new {
27 my $class = shift;
28 my $self = {};
29 return bless $self, $class;
30}
31
32package DBIx::Class::Storage;
33
046ad905 34=head1 NAME
35
36DBIx::Class::Storage - Generic Storage Handler
37
38=head1 DESCRIPTION
39
40A base implementation of common Storage methods. For specific
41information about L<DBI>-based storage, see L<DBIx::Class::Storage::DBI>.
42
43=head1 METHODS
44
45=head2 new
46
47Arguments: $schema
48
49Instantiates the Storage object.
50
51=cut
52
53sub new {
54 my ($self, $schema) = @_;
55
56 $self = ref $self if ref $self;
57
58 my $new = {};
59 bless $new, $self;
60
61 $new->set_schema($schema);
62 $new->debugobj(new DBIx::Class::Storage::Statistics());
63
64 my $fh;
65
66 my $debug_env = $ENV{DBIX_CLASS_STORAGE_DBI_DEBUG}
67 || $ENV{DBIC_TRACE};
68
69 if (defined($debug_env) && ($debug_env =~ /=(.+)$/)) {
70 $fh = IO::File->new($1, 'w')
71 or $new->throw_exception("Cannot open trace file $1");
72 } else {
73 $fh = IO::File->new('>&STDERR');
74 }
75
942cd0c1 76 $fh->autoflush(1);
046ad905 77 $new->debugfh($fh);
78 $new->debug(1) if $debug_env;
79
80 $new;
81}
82
83=head2 set_schema
84
85Used to reset the schema class or object which owns this
86storage object, such as during L<DBIx::Class::Schema/clone>.
87
88=cut
89
90sub set_schema {
91 my ($self, $schema) = @_;
92 $self->schema($schema);
93 weaken($self->{schema}) if ref $self->{schema};
94}
95
96=head2 connected
97
98Returns true if we have an open storage connection, false
99if it is not (yet) open.
100
101=cut
102
a62cf8d4 103sub connected { die "Virtual method!" }
046ad905 104
105=head2 disconnect
106
107Closes any open storage connection unconditionally.
108
109=cut
110
111sub disconnect { die "Virtual method!" }
112
113=head2 ensure_connected
114
115Initiate a connection to the storage if one isn't already open.
116
117=cut
118
a62cf8d4 119sub ensure_connected { die "Virtual method!" }
046ad905 120
121=head2 throw_exception
122
123Throws an exception - croaks.
124
125=cut
126
127sub throw_exception {
128 my $self = shift;
129
130 $self->schema->throw_exception(@_) if $self->schema;
131 croak @_;
132}
a62cf8d4 133
4012acd8 134=head2 txn_do
a62cf8d4 135
4012acd8 136=over 4
a62cf8d4 137
4012acd8 138=item Arguments: C<$coderef>, @coderef_args?
a62cf8d4 139
4012acd8 140=item Return Value: The return value of $coderef
141
142=back
143
144Executes C<$coderef> with (optional) arguments C<@coderef_args> atomically,
145returning its result (if any). If an exception is caught, a rollback is issued
146and the exception is rethrown. If the rollback fails, (i.e. throws an
147exception) an exception is thrown that includes a "Rollback failed" message.
148
149For example,
150
151 my $author_rs = $schema->resultset('Author')->find(1);
152 my @titles = qw/Night Day It/;
153
154 my $coderef = sub {
155 # If any one of these fails, the entire transaction fails
156 $author_rs->create_related('books', {
157 title => $_
158 }) foreach (@titles);
159
160 return $author->books;
161 };
162
163 my $rs;
164 eval {
165 $rs = $schema->txn_do($coderef);
166 };
167
168 if ($@) { # Transaction failed
169 die "something terrible has happened!" #
170 if ($@ =~ /Rollback failed/); # Rollback failed
171
172 deal_with_failed_transaction();
173 }
174
175In a nested transaction (calling txn_do() from within a txn_do() coderef) only
176the outermost transaction will issue a L</txn_commit>, and txn_do() can be
177called in void, scalar and list context and it will behave as expected.
178
6500d50f 179Please note that all of the code in your coderef, including non-DBIx::Class
180code, is part of a transaction. This transaction may fail out halfway, or
181it may get partially double-executed (in the case that our DB connection
182failed halfway through the transaction, in which case we reconnect and
183restart the txn). Therefore it is best that any side-effects in your coderef
184are idempotent (that is, can be re-executed multiple times and get the
185same result), and that you check up on your side-effects in the case of
186transaction failure.
187
4012acd8 188=cut
189
190sub txn_do {
191 my ($self, $coderef, @args) = @_;
192
193 ref $coderef eq 'CODE' or $self->throw_exception
194 ('$coderef must be a CODE reference');
195
196 my (@return_values, $return_value);
197
198 $self->txn_begin; # If this throws an exception, no rollback is needed
199
200 my $wantarray = wantarray; # Need to save this since the context
201 # inside the eval{} block is independent
202 # of the context that called txn_do()
203 eval {
204
205 # Need to differentiate between scalar/list context to allow for
206 # returning a list in scalar context to get the size of the list
207 if ($wantarray) {
208 # list context
209 @return_values = $coderef->(@args);
210 } elsif (defined $wantarray) {
211 # scalar context
212 $return_value = $coderef->(@args);
213 } else {
214 # void context
215 $coderef->(@args);
216 }
217 $self->txn_commit;
218 };
219
220 if ($@) {
221 my $error = $@;
222
223 eval {
224 $self->txn_rollback;
225 };
226
227 if ($@) {
228 my $rollback_error = $@;
229 my $exception_class = "DBIx::Class::Storage::NESTED_ROLLBACK_EXCEPTION";
230 $self->throw_exception($error) # propagate nested rollback
231 if $rollback_error =~ /$exception_class/;
232
233 $self->throw_exception(
234 "Transaction aborted: $error. Rollback failed: ${rollback_error}"
235 );
236 } else {
237 $self->throw_exception($error); # txn failed but rollback succeeded
238 }
239 }
240
241 return $wantarray ? @return_values : $return_value;
a62cf8d4 242}
243
046ad905 244=head2 txn_begin
245
246Starts a transaction.
247
248See the preferred L</txn_do> method, which allows for
249an entire code block to be executed transactionally.
250
251=cut
252
253sub txn_begin { die "Virtual method!" }
254
255=head2 txn_commit
256
257Issues a commit of the current transaction.
258
259=cut
260
261sub txn_commit { die "Virtual method!" }
262
263=head2 txn_rollback
264
265Issues a rollback of the current transaction. A nested rollback will
266throw a L<DBIx::Class::Storage::NESTED_ROLLBACK_EXCEPTION> exception,
267which allows the rollback to propagate to the outermost transaction.
268
269=cut
270
271sub txn_rollback { die "Virtual method!" }
272
273=head2 sql_maker
274
275Returns a C<sql_maker> object - normally an object of class
276C<DBIC::SQL::Abstract>.
277
278=cut
279
280sub sql_maker { die "Virtual method!" }
281
282=head2 debug
283
284Causes trace information to be emitted on the C<debugobj> object.
285(or C<STDERR> if C<debugobj> has not specifically been set).
286
287This is the equivalent to setting L</DBIC_TRACE> in your
288shell environment.
289
290=head2 debugfh
291
292Set or retrieve the filehandle used for trace/debug output. This should be
293an IO::Handle compatible ojbect (only the C<print> method is used. Initially
294set to be STDERR - although see information on the
295L<DBIC_TRACE> environment variable.
296
297=cut
298
299sub debugfh {
300 my $self = shift;
301
302 if ($self->debugobj->can('debugfh')) {
303 return $self->debugobj->debugfh(@_);
304 }
305}
306
307=head2 debugobj
308
309Sets or retrieves the object used for metric collection. Defaults to an instance
310of L<DBIx::Class::Storage::Statistics> that is compatible with the original
311method of using a coderef as a callback. See the aforementioned Statistics
312class for more information.
313
314=head2 debugcb
315
316Sets a callback to be executed each time a statement is run; takes a sub
317reference. Callback is executed as $sub->($op, $info) where $op is
318SELECT/INSERT/UPDATE/DELETE and $info is what would normally be printed.
319
320See L<debugobj> for a better way.
321
322=cut
323
324sub debugcb {
325 my $self = shift;
326
327 if ($self->debugobj->can('callback')) {
328 return $self->debugobj->callback(@_);
329 }
330}
331
e4eb8ee1 332=head2 cursor_class
046ad905 333
334The cursor class for this Storage object.
335
336=cut
337
046ad905 338=head2 deploy
339
340Deploy the tables to storage (CREATE TABLE and friends in a SQL-based
341Storage class). This would normally be called through
342L<DBIx::Class::Schema/deploy>.
343
344=cut
345
346sub deploy { die "Virtual method!" }
347
a3eaff0e 348=head2 connect_info
349
350The arguments of C<connect_info> are always a single array reference,
351and are Storage-handler specific.
352
353This is normally accessed via L<DBIx::Class::Schema/connection>, which
354encapsulates its argument list in an arrayref before calling
355C<connect_info> here.
356
357=cut
358
046ad905 359sub connect_info { die "Virtual method!" }
a3eaff0e 360
361=head2 select
362
363Handle a select statement.
364
365=cut
366
367sub select { die "Virtual method!" }
368
369=head2 insert
370
371Handle an insert statement.
372
373=cut
374
046ad905 375sub insert { die "Virtual method!" }
a3eaff0e 376
377=head2 update
378
379Handle an update statement.
380
381=cut
382
046ad905 383sub update { die "Virtual method!" }
a3eaff0e 384
385=head2 delete
386
387Handle a delete statement.
388
389=cut
390
046ad905 391sub delete { die "Virtual method!" }
a3eaff0e 392
393=head2 select_single
394
395Performs a select, fetch and return of data - handles a single row
396only.
397
398=cut
399
046ad905 400sub select_single { die "Virtual method!" }
a3eaff0e 401
402=head2 columns_info_for
403
c22c7625 404Returns metadata for the given source's columns. This
405is *deprecated*, and will be removed before 1.0. You should
406be specifying the metadata yourself if you need it.
a3eaff0e 407
408=cut
409
046ad905 410sub columns_info_for { die "Virtual method!" }
411
412=head1 ENVIRONMENT VARIABLES
413
414=head2 DBIC_TRACE
415
416If C<DBIC_TRACE> is set then trace information
417is produced (as when the L<debug> method is set).
418
419If the value is of the form C<1=/path/name> then the trace output is
420written to the file C</path/name>.
421
422This environment variable is checked when the storage object is first
423created (when you call connect on your schema). So, run-time changes
424to this environment variable will not take effect unless you also
425re-connect on your schema.
426
427=head2 DBIX_CLASS_STORAGE_DBI_DEBUG
428
429Old name for DBIC_TRACE
430
431=head1 AUTHORS
432
433Matt S. Trout <mst@shadowcatsystems.co.uk>
434
435Andy Grundman <andy@hybridized.org>
436
437=head1 LICENSE
438
439You may distribute this code under the same terms as Perl itself.
440
441=cut
442
a62cf8d4 4431;