cycle tests and a weaken call
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / Schema.pm
1 package DBIx::Class::Schema;
2
3 use strict;
4 use warnings;
5
6 use Carp::Clan qw/^DBIx::Class/;
7 use Scalar::Util qw/weaken/;
8
9 use base qw/DBIx::Class/;
10
11 __PACKAGE__->mk_classdata('class_mappings' => {});
12 __PACKAGE__->mk_classdata('source_registrations' => {});
13 __PACKAGE__->mk_classdata('storage_type' => '::DBI');
14 __PACKAGE__->mk_classdata('storage');
15
16 =head1 NAME
17
18 DBIx::Class::Schema - composable schemas
19
20 =head1 SYNOPSIS
21
22   package Library::Schema;
23   use base qw/DBIx::Class::Schema/;
24   
25   # load Library::Schema::CD, Library::Schema::Book, Library::Schema::DVD
26   __PACKAGE__->load_classes(qw/CD Book DVD/);
27
28   package Library::Schema::CD;
29   use base qw/DBIx::Class/;
30   __PACKAGE__->load_components(qw/PK::Auto Core/); # for example
31   __PACKAGE__->table('cd');
32
33   # Elsewhere in your code:
34   my $schema1 = Library::Schema->connect(
35     $dsn,
36     $user,
37     $password,
38     { AutoCommit => 0 },
39   );
40   
41   my $schema2 = Library::Schema->connect($coderef_returning_dbh);
42
43   # fetch objects using Library::Schema::DVD
44   my $resultset = $schema1->resultset('DVD')->search( ... );
45   my @dvd_objects = $schema2->resultset('DVD')->search( ... );
46
47 =head1 DESCRIPTION
48
49 Creates database classes based on a schema. This is the recommended way to
50 use L<DBIx::Class> and allows you to use more than one concurrent connection
51 with your classes.
52
53 NB: If you're used to L<Class::DBI> it's worth reading the L</SYNOPSIS>
54 carefully, as DBIx::Class does things a little differently. Note in
55 particular which module inherits off which.
56
57 =head1 METHODS
58
59 =head2 register_class
60
61 =over 4
62
63 =item Arguments: $moniker, $component_class
64
65 =back
66
67 Registers a class which isa DBIx::Class::ResultSourceProxy. Equivalent to
68 calling:
69
70   $schema->register_source($moniker, $component_class->result_source_instance);
71
72 =cut
73
74 sub register_class {
75   my ($self, $moniker, $to_register) = @_;
76   $self->register_source($moniker => $to_register->result_source_instance);
77 }
78
79 =head2 register_source
80
81 =over 4
82
83 =item Arguments: $moniker, $result_source
84
85 =back
86
87 Registers the L<DBIx::Class::ResultSource> in the schema with the given
88 moniker.
89
90 =cut
91
92 sub register_source {
93   my ($self, $moniker, $source) = @_;
94   my %reg = %{$self->source_registrations};
95   $reg{$moniker} = $source;
96   $self->source_registrations(\%reg);
97   $source->schema($self);
98   weaken($source->{schema}) if ref($self);
99   if ($source->result_class) {
100     my %map = %{$self->class_mappings};
101     $map{$source->result_class} = $moniker;
102     $self->class_mappings(\%map);
103   }
104 }
105
106 =head2 class
107
108 =over 4
109
110 =item Arguments: $moniker
111
112 =item Return Value: $classname
113
114 =back
115
116 Retrieves the result class name for the given moniker. For example:
117
118   my $class = $schema->class('CD');
119
120 =cut
121
122 sub class {
123   my ($self, $moniker) = @_;
124   return $self->source($moniker)->result_class;
125 }
126
127 =head2 source
128
129 =over 4
130
131 =item Arguments: $moniker
132
133 =item Return Value: $result_source
134
135 =back
136
137   my $source = $schema->source('Book');
138
139 Returns the L<DBIx::Class::ResultSource> object for the registered moniker.
140
141 =cut
142
143 sub source {
144   my ($self, $moniker) = @_;
145   my $sreg = $self->source_registrations;
146   return $sreg->{$moniker} if exists $sreg->{$moniker};
147
148   # if we got here, they probably passed a full class name
149   my $mapped = $self->class_mappings->{$moniker};
150   $self->throw_exception("Can't find source for ${moniker}")
151     unless $mapped && exists $sreg->{$mapped};
152   return $sreg->{$mapped};
153 }
154
155 =head2 sources
156
157 =over 4
158
159 =item Return Value: @source_monikers
160
161 =back
162
163 Returns the source monikers of all source registrations on this schema.
164 For example:
165
166   my @source_monikers = $schema->sources;
167
168 =cut
169
170 sub sources { return keys %{shift->source_registrations}; }
171
172 =head2 resultset
173
174 =over 4
175
176 =item Arguments: $moniker
177
178 =item Return Value: $result_set
179
180 =back
181
182   my $rs = $schema->resultset('DVD');
183
184 Returns the L<DBIx::Class::ResultSet> object for the registered moniker.
185
186 =cut
187
188 sub resultset {
189   my ($self, $moniker) = @_;
190   return $self->source($moniker)->resultset;
191 }
192
193 =head2 load_classes
194
195 =over 4
196
197 =item Arguments: @classes?, { $namespace => [ @classes ] }+
198
199 =back
200
201 With no arguments, this method uses L<Module::Find> to find all classes under
202 the schema's namespace. Otherwise, this method loads the classes you specify
203 (using L<use>), and registers them (using L</"register_class">).
204
205 It is possible to comment out classes with a leading C<#>, but note that perl
206 will think it's a mistake (trying to use a comment in a qw list), so you'll
207 need to add C<no warnings 'qw';> before your load_classes call.
208
209 Example:
210
211   My::Schema->load_classes(); # loads My::Schema::CD, My::Schema::Artist,
212                               # etc. (anything under the My::Schema namespace)
213
214   # loads My::Schema::CD, My::Schema::Artist, Other::Namespace::Producer but
215   # not Other::Namespace::LinerNotes nor My::Schema::Track
216   My::Schema->load_classes(qw/ CD Artist #Track /, {
217     Other::Namespace => [qw/ Producer #LinerNotes /],
218   });
219
220 =cut
221
222 sub load_classes {
223   my ($class, @params) = @_;
224   
225   my %comps_for;
226   
227   if (@params) {
228     foreach my $param (@params) {
229       if (ref $param eq 'ARRAY') {
230         # filter out commented entries
231         my @modules = grep { $_ !~ /^#/ } @$param;
232         
233         push (@{$comps_for{$class}}, @modules);
234       }
235       elsif (ref $param eq 'HASH') {
236         # more than one namespace possible
237         for my $comp ( keys %$param ) {
238           # filter out commented entries
239           my @modules = grep { $_ !~ /^#/ } @{$param->{$comp}};
240
241           push (@{$comps_for{$comp}}, @modules);
242         }
243       }
244       else {
245         # filter out commented entries
246         push (@{$comps_for{$class}}, $param) if $param !~ /^#/;
247       }
248     }
249   } else {
250     eval "require Module::Find;";
251     $class->throw_exception(
252       "No arguments to load_classes and couldn't load Module::Find ($@)"
253     ) if $@;
254     my @comp = map { substr $_, length "${class}::"  }
255                  Module::Find::findallmod($class);
256     $comps_for{$class} = \@comp;
257   }
258
259   my @to_register;
260   {
261     no warnings qw/redefine/;
262     local *Class::C3::reinitialize = sub { };
263     foreach my $prefix (keys %comps_for) {
264       foreach my $comp (@{$comps_for{$prefix}||[]}) {
265         my $comp_class = "${prefix}::${comp}";
266         eval "use $comp_class"; # If it fails, assume the user fixed it
267         if ($@) {
268           $comp_class =~ s/::/\//g;
269           die $@ unless $@ =~ /Can't locate.+$comp_class\.pm\sin\s\@INC/;
270           warn $@ if $@;
271         }
272         push(@to_register, [ $comp, $comp_class ]);
273       }
274     }
275   }
276   Class::C3->reinitialize;
277
278   foreach my $to (@to_register) {
279     $class->register_class(@$to);
280     #  if $class->can('result_source_instance');
281   }
282 }
283
284 =head2 compose_connection
285
286 =over 4
287
288 =item Arguments: $target_namespace, @db_info
289
290 =item Return Value: $new_schema
291
292 =back
293
294 Calls L<DBIx::Class::Schema/"compose_namespace"> to the target namespace,
295 calls L<DBIx::Class::Schema/connection> with @db_info on the new schema,
296 then injects the L<DBix::Class::ResultSetProxy> component and a
297 resultset_instance classdata entry on all the new classes, in order to support
298 $target_namespaces::$class->search(...) method calls.
299
300 This is primarily useful when you have a specific need for class method access
301 to a connection. In normal usage it is preferred to call
302 L<DBIx::Class::Schema/connect> and use the resulting schema object to operate
303 on L<DBIx::Class::ResultSet> objects with L<DBIx::Class::Schema/resultset> for
304 more information.
305
306 =cut
307
308 sub compose_connection {
309   my ($self, $target, @info) = @_;
310   my $base = 'DBIx::Class::ResultSetProxy';
311   eval "require ${base};";
312   $self->throw_exception
313     ("No arguments to load_classes and couldn't load ${base} ($@)")
314       if $@;
315
316   if ($self eq $target) {
317     # Pathological case, largely caused by the docs on early C::M::DBIC::Plain
318     foreach my $moniker ($self->sources) {
319       my $source = $self->source($moniker);
320       my $class = $source->result_class;
321       $self->inject_base($class, $base);
322       $class->mk_classdata(resultset_instance => $source->resultset);
323       $class->mk_classdata(class_resolver => $self);
324     }
325     $self->connection(@info);
326     return $self;
327   }
328
329   my $schema = $self->compose_namespace($target, $base);
330   {
331     no strict 'refs';
332     *{"${target}::schema"} = sub { $schema };
333   }
334
335   $schema->connection(@info);
336   foreach my $moniker ($schema->sources) {
337     my $source = $schema->source($moniker);
338     my $class = $source->result_class;
339     #warn "$moniker $class $source ".$source->storage;
340     $class->mk_classdata(result_source_instance => $source);
341     $class->mk_classdata(resultset_instance => $source->resultset);
342     $class->mk_classdata(class_resolver => $schema);
343   }
344   return $schema;
345 }
346
347 =head2 compose_namespace
348
349 =over 4
350
351 =item Arguments: $target_namespace, $additional_base_class?
352
353 =item Return Value: $new_schema
354
355 =back
356
357 For each L<DBIx::Class::ResultSource> in the schema, this method creates a
358 class in the target namespace (e.g. $target_namespace::CD,
359 $target_namespace::Artist) that inherits from the corresponding classes
360 attached to the current schema.
361
362 It also attaches a corresponding L<DBIx::Class::ResultSource> object to the
363 new $schema object. If C<$additional_base_class> is given, the new composed
364 classes will inherit from first the corresponding classe from the current
365 schema then the base class.
366
367 For example, for a schema with My::Schema::CD and My::Schema::Artist classes,
368
369   $schema->compose_namespace('My::DB', 'Base::Class');
370   print join (', ', @My::DB::CD::ISA) . "\n";
371   print join (', ', @My::DB::Artist::ISA) ."\n";
372
373 will produce the output
374
375   My::Schema::CD, Base::Class
376   My::Schema::Artist, Base::Class
377
378 =cut
379
380 sub compose_namespace {
381   my ($self, $target, $base) = @_;
382   my %reg = %{ $self->source_registrations };
383   my %target;
384   my %map;
385   my $schema = $self->clone;
386   {
387     no warnings qw/redefine/;
388     local *Class::C3::reinitialize = sub { };
389     foreach my $moniker ($schema->sources) {
390       my $source = $schema->source($moniker);
391       my $target_class = "${target}::${moniker}";
392       $self->inject_base(
393         $target_class => $source->result_class, ($base ? $base : ())
394       );
395       $source->result_class($target_class);
396     }
397   }
398   Class::C3->reinitialize();
399   {
400     no strict 'refs';
401     foreach my $meth (qw/class source resultset/) {
402       *{"${target}::${meth}"} =
403         sub { shift->schema->$meth(@_) };
404     }
405   }
406   return $schema;
407 }
408
409 =head2 setup_connection_class
410
411 =over 4
412
413 =item Arguments: $target, @info
414
415 =back
416
417 Sets up a database connection class to inject between the schema and the
418 subclasses that the schema creates.
419
420 =cut
421
422 sub setup_connection_class {
423   my ($class, $target, @info) = @_;
424   $class->inject_base($target => 'DBIx::Class::DB');
425   #$target->load_components('DB');
426   $target->connection(@info);
427 }
428
429 =head2 connection
430
431 =over 4
432
433 =item Arguments: @args
434
435 =item Return Value: $new_schema
436
437 =back
438
439 Instantiates a new Storage object of type
440 L<DBIx::Class::Schema/"storage_type"> and passes the arguments to
441 $storage->connect_info. Sets the connection in-place on the schema. See
442 L<DBIx::Class::Storage::DBI/"connect_info"> for more information.
443
444 =cut
445
446 sub connection {
447   my ($self, @info) = @_;
448   return $self if !@info && $self->storage;
449   my $storage_class = $self->storage_type;
450   $storage_class = 'DBIx::Class::Storage'.$storage_class
451     if $storage_class =~ m/^::/;
452   eval "require ${storage_class};";
453   $self->throw_exception(
454     "No arguments to load_classes and couldn't load ${storage_class} ($@)"
455   ) if $@;
456   my $storage = $storage_class->new;
457   $storage->connect_info(\@info);
458   $self->storage($storage);
459   return $self;
460 }
461
462 =head2 connect
463
464 =over 4
465
466 =item Arguments: @info
467
468 =item Return Value: $new_schema
469
470 =back
471
472 This is a convenience method. It is equivalent to calling
473 $schema->clone->connection(@info). See L</connection> and L</clone> for more
474 information.
475
476 =cut
477
478 sub connect { shift->clone->connection(@_) }
479
480 =head2 txn_begin
481
482 Begins a transaction (does nothing if AutoCommit is off). Equivalent to
483 calling $schema->storage->txn_begin. See
484 L<DBIx::Class::Storage::DBI/"txn_begin"> for more information.
485
486 =cut
487
488 sub txn_begin { shift->storage->txn_begin }
489
490 =head2 txn_commit
491
492 Commits the current transaction. Equivalent to calling
493 $schema->storage->txn_commit. See L<DBIx::Class::Storage::DBI/"txn_commit">
494 for more information.
495
496 =cut
497
498 sub txn_commit { shift->storage->txn_commit }
499
500 =head2 txn_rollback
501
502 Rolls back the current transaction. Equivalent to calling
503 $schema->storage->txn_rollback. See
504 L<DBIx::Class::Storage::DBI/"txn_rollback"> for more information.
505
506 =cut
507
508 sub txn_rollback { shift->storage->txn_rollback }
509
510 =head2 txn_do
511
512 =over 4
513
514 =item Arguments: C<$coderef>, @coderef_args?
515
516 =item Return Value: The return value of $coderef
517
518 =back
519
520 Executes C<$coderef> with (optional) arguments C<@coderef_args> atomically,
521 returning its result (if any). If an exception is caught, a rollback is issued
522 and the exception is rethrown. If the rollback fails, (i.e. throws an
523 exception) an exception is thrown that includes a "Rollback failed" message.
524
525 For example,
526
527   my $author_rs = $schema->resultset('Author')->find(1);
528
529   my $coderef = sub {
530     my ($author, @titles) = @_;
531
532     # If any one of these fails, the entire transaction fails
533     $author->create_related('books', {
534       title => $_
535     }) foreach (@titles);
536
537     return $author->books;
538   };
539
540   my $rs;
541   eval {
542     $rs = $schema->txn_do($coderef, $author_rs, qw/Night Day It/);
543   };
544
545   if ($@) {
546     my $error = $@;
547     if ($error =~ /Rollback failed/) {
548       die "something terrible has happened!";
549     } else {
550       deal_with_failed_transaction();
551     }
552   }
553
554 In a nested transaction (calling txn_do() from within a txn_do() coderef) only
555 the outermost transaction will issue a L<DBIx::Class::Schema/"txn_commit"> on
556 the Schema's storage, and txn_do() can be called in void, scalar and list
557 context and it will behave as expected.
558
559 =cut
560
561 sub txn_do {
562   my ($self, $coderef, @args) = @_;
563
564   ref $self or $self->throw_exception
565     ('Cannot execute txn_do as a class method');
566   ref $coderef eq 'CODE' or $self->throw_exception
567     ('$coderef must be a CODE reference');
568
569   my (@return_values, $return_value);
570
571   $self->txn_begin; # If this throws an exception, no rollback is needed
572
573   my $wantarray = wantarray; # Need to save this since the context
574                              # inside the eval{} block is independent
575                              # of the context that called txn_do()
576   eval {
577
578     # Need to differentiate between scalar/list context to allow for
579     # returning a list in scalar context to get the size of the list
580     if ($wantarray) {
581       # list context
582       @return_values = $coderef->(@args);
583     } elsif (defined $wantarray) {
584       # scalar context
585       $return_value = $coderef->(@args);
586     } else {
587       # void context
588       $coderef->(@args);
589     }
590     $self->txn_commit;
591   };
592
593   if ($@) {
594     my $error = $@;
595
596     eval {
597       $self->txn_rollback;
598     };
599
600     if ($@) {
601       my $rollback_error = $@;
602       my $exception_class = "DBIx::Class::Storage::NESTED_ROLLBACK_EXCEPTION";
603       $self->throw_exception($error)  # propagate nested rollback
604         if $rollback_error =~ /$exception_class/;
605
606       $self->throw_exception(
607         "Transaction aborted: $error. Rollback failed: ${rollback_error}"
608       );
609     } else {
610       $self->throw_exception($error); # txn failed but rollback succeeded
611     }
612   }
613
614   return $wantarray ? @return_values : $return_value;
615 }
616
617 =head2 clone
618
619 =over 4
620
621 =item Return Value: $new_schema
622
623 =back
624
625 Clones the schema and its associated result_source objects and returns the
626 copy.
627
628 =cut
629
630 sub clone {
631   my ($self) = @_;
632   my $clone = bless({ (ref $self ? %$self : ()) }, ref $self || $self);
633   foreach my $moniker ($self->sources) {
634     my $source = $self->source($moniker);
635     my $new = $source->new($source);
636     $clone->register_source($moniker => $new);
637   }
638   return $clone;
639 }
640
641 =head2 populate
642
643 =over 4
644
645 =item Arguments: $moniker, \@data;
646
647 =back
648
649 Populates the source registered with the given moniker with the supplied data.
650 @data should be a list of listrefs -- the first containing column names, the
651 second matching values.
652
653 i.e.,
654
655   $schema->populate('Artist', [
656     [ qw/artistid name/ ],
657     [ 1, 'Popular Band' ],
658     [ 2, 'Indie Band' ],
659     ...
660   ]);
661
662 =cut
663
664 sub populate {
665   my ($self, $name, $data) = @_;
666   my $rs = $self->resultset($name);
667   my @names = @{shift(@$data)};
668   my @created;
669   foreach my $item (@$data) {
670     my %create;
671     @create{@names} = @$item;
672     push(@created, $rs->create(\%create));
673   }
674   return @created;
675 }
676
677 =head2 throw_exception
678
679 =over 4
680
681 =item Arguments: $message
682
683 =back
684
685 Throws an exception. Defaults to using L<Carp::Clan> to report errors from
686 user's perspective.
687
688 =cut
689
690 sub throw_exception {
691   my ($self) = shift;
692   croak @_;
693 }
694
695 =head2 deploy (EXPERIMENTAL)
696
697 =over 4
698
699 =item Arguments: $sqlt_args
700
701 =back
702
703 Attempts to deploy the schema to the current storage using L<SQL::Translator>.
704
705 Note that this feature is currently EXPERIMENTAL and may not work correctly
706 across all databases, or fully handle complex relationships.
707
708 =cut
709
710 sub deploy {
711   my ($self, $sqltargs) = @_;
712   $self->throw_exception("Can't deploy without storage") unless $self->storage;
713   $self->storage->deploy($self, undef, $sqltargs);
714 }
715
716 1;
717
718 =head1 AUTHORS
719
720 Matt S. Trout <mst@shadowcatsystems.co.uk>
721
722 =head1 LICENSE
723
724 You may distribute this code under the same terms as Perl itself.
725
726 =cut
727