0d49b4bcbcf19084a6f2fbca6c0ca055469cfd9d
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / Schema.pm
1 package DBIx::Class::Schema;
2
3 use strict;
4 use warnings;
5
6 use DBIx::Class::Exception;
7 use DBIx::Class::Carp;
8 use Try::Tiny;
9 use Scalar::Util qw/weaken blessed/;
10 use Sub::Name 'subname';
11 use B 'svref_2object';
12 use Devel::GlobalDestruction;
13 use namespace::clean;
14
15 use base qw/DBIx::Class/;
16
17 __PACKAGE__->mk_classdata('class_mappings' => {});
18 __PACKAGE__->mk_classdata('source_registrations' => {});
19 __PACKAGE__->mk_classdata('storage_type' => '::DBI');
20 __PACKAGE__->mk_classdata('storage');
21 __PACKAGE__->mk_classdata('exception_action');
22 __PACKAGE__->mk_classdata('stacktrace' => $ENV{DBIC_TRACE} || 0);
23 __PACKAGE__->mk_classdata('default_resultset_attributes' => {});
24
25 =head1 NAME
26
27 DBIx::Class::Schema - composable schemas
28
29 =head1 SYNOPSIS
30
31   package Library::Schema;
32   use base qw/DBIx::Class::Schema/;
33
34   # load all Result classes in Library/Schema/Result/
35   __PACKAGE__->load_namespaces();
36
37   package Library::Schema::Result::CD;
38   use base qw/DBIx::Class::Core/;
39
40   __PACKAGE__->load_components(qw/InflateColumn::DateTime/); # for example
41   __PACKAGE__->table('cd');
42
43   # Elsewhere in your code:
44   my $schema1 = Library::Schema->connect(
45     $dsn,
46     $user,
47     $password,
48     { AutoCommit => 1 },
49   );
50
51   my $schema2 = Library::Schema->connect($coderef_returning_dbh);
52
53   # fetch objects using Library::Schema::Result::DVD
54   my $resultset = $schema1->resultset('DVD')->search( ... );
55   my @dvd_objects = $schema2->resultset('DVD')->search( ... );
56
57 =head1 DESCRIPTION
58
59 Creates database classes based on a schema. This is the recommended way to
60 use L<DBIx::Class> and allows you to use more than one concurrent connection
61 with your classes.
62
63 NB: If you're used to L<Class::DBI> it's worth reading the L</SYNOPSIS>
64 carefully, as DBIx::Class does things a little differently. Note in
65 particular which module inherits off which.
66
67 =head1 SETUP METHODS
68
69 =head2 load_namespaces
70
71 =over 4
72
73 =item Arguments: %options?
74
75 =back
76
77   __PACKAGE__->load_namespaces();
78
79   __PACKAGE__->load_namespaces(
80      result_namespace => 'Res',
81      resultset_namespace => 'RSet',
82      default_resultset_class => '+MyDB::Othernamespace::RSet',
83   );
84
85 With no arguments, this method uses L<Module::Find> to load all of the
86 Result and ResultSet classes under the namespace of the schema from
87 which it is called.  For example, C<My::Schema> will by default find
88 and load Result classes named C<My::Schema::Result::*> and ResultSet
89 classes named C<My::Schema::ResultSet::*>.
90
91 ResultSet classes are associated with Result class of the same name.
92 For example, C<My::Schema::Result::CD> will get the ResultSet class
93 C<My::Schema::ResultSet::CD> if it is present.
94
95 Both Result and ResultSet namespaces are configurable via the
96 C<result_namespace> and C<resultset_namespace> options.
97
98 Another option, C<default_resultset_class> specifies a custom default
99 ResultSet class for Result classes with no corresponding ResultSet.
100
101 All of the namespace and classname options are by default relative to
102 the schema classname.  To specify a fully-qualified name, prefix it
103 with a literal C<+>.  For example, C<+Other::NameSpace::Result>.
104
105 =head3 Warnings
106
107 You will be warned if ResultSet classes are discovered for which there
108 are no matching Result classes like this:
109
110   load_namespaces found ResultSet class $classname with no corresponding Result class
111
112 If a Result class is found to already have a ResultSet class set using
113 L</resultset_class> to some other class, you will be warned like this:
114
115   We found ResultSet class '$rs_class' for '$result', but it seems
116   that you had already set '$result' to use '$rs_set' instead
117
118 =head3 Examples
119
120   # load My::Schema::Result::CD, My::Schema::Result::Artist,
121   #    My::Schema::ResultSet::CD, etc...
122   My::Schema->load_namespaces;
123
124   # Override everything to use ugly names.
125   # In this example, if there is a My::Schema::Res::Foo, but no matching
126   #   My::Schema::RSets::Foo, then Foo will have its
127   #   resultset_class set to My::Schema::RSetBase
128   My::Schema->load_namespaces(
129     result_namespace => 'Res',
130     resultset_namespace => 'RSets',
131     default_resultset_class => 'RSetBase',
132   );
133
134   # Put things in other namespaces
135   My::Schema->load_namespaces(
136     result_namespace => '+Some::Place::Results',
137     resultset_namespace => '+Another::Place::RSets',
138   );
139
140 To search multiple namespaces for either Result or ResultSet classes,
141 use an arrayref of namespaces for that option.  In the case that the
142 same result (or resultset) class exists in multiple namespaces, later
143 entries in the list of namespaces will override earlier ones.
144
145   My::Schema->load_namespaces(
146     # My::Schema::Results_C::Foo takes precedence over My::Schema::Results_B::Foo :
147     result_namespace => [ 'Results_A', 'Results_B', 'Results_C' ],
148     resultset_namespace => [ '+Some::Place::RSets', 'RSets' ],
149   );
150
151 =cut
152
153 # Pre-pends our classname to the given relative classname or
154 #   class namespace, unless there is a '+' prefix, which will
155 #   be stripped.
156 sub _expand_relative_name {
157   my ($class, $name) = @_;
158   return if !$name;
159   $name = $class . '::' . $name if ! ($name =~ s/^\+//);
160   return $name;
161 }
162
163 # Finds all modules in the supplied namespace, or if omitted in the
164 # namespace of $class. Untaints all findings as they can be assumed
165 # to be safe
166 sub _findallmod {
167   my $proto = shift;
168   my $ns = shift || ref $proto || $proto;
169
170   require Module::Find;
171
172   # untaint result
173   return map { $_ =~ /(.+)/ } Module::Find::findallmod($ns);
174 }
175
176 # returns a hash of $shortname => $fullname for every package
177 # found in the given namespaces ($shortname is with the $fullname's
178 # namespace stripped off)
179 sub _map_namespaces {
180   my ($class, @namespaces) = @_;
181
182   my @results_hash;
183   foreach my $namespace (@namespaces) {
184     push(
185       @results_hash,
186       map { (substr($_, length "${namespace}::"), $_) }
187       $class->_findallmod($namespace)
188     );
189   }
190
191   @results_hash;
192 }
193
194 # returns the result_source_instance for the passed class/object,
195 # or dies with an informative message (used by load_namespaces)
196 sub _ns_get_rsrc_instance {
197   my $me = shift;
198   my $rs_class = ref ($_[0]) || $_[0];
199
200   return try {
201     $rs_class->result_source_instance
202   } catch {
203     $me->throw_exception (
204       "Attempt to load_namespaces() class $rs_class failed - are you sure this is a real Result Class?: $_"
205     );
206   };
207 }
208
209 sub load_namespaces {
210   my ($class, %args) = @_;
211
212   my $result_namespace = delete $args{result_namespace} || 'Result';
213   my $resultset_namespace = delete $args{resultset_namespace} || 'ResultSet';
214   my $default_resultset_class = delete $args{default_resultset_class};
215
216   $class->throw_exception('load_namespaces: unknown option(s): '
217     . join(q{,}, map { qq{'$_'} } keys %args))
218       if scalar keys %args;
219
220   $default_resultset_class
221     = $class->_expand_relative_name($default_resultset_class);
222
223   for my $arg ($result_namespace, $resultset_namespace) {
224     $arg = [ $arg ] if !ref($arg) && $arg;
225
226     $class->throw_exception('load_namespaces: namespace arguments must be '
227       . 'a simple string or an arrayref')
228         if ref($arg) ne 'ARRAY';
229
230     $_ = $class->_expand_relative_name($_) for (@$arg);
231   }
232
233   my %results = $class->_map_namespaces(@$result_namespace);
234   my %resultsets = $class->_map_namespaces(@$resultset_namespace);
235
236   my @to_register;
237   {
238     no warnings qw/redefine/;
239     local *Class::C3::reinitialize = sub { } if DBIx::Class::_ENV_::OLD_MRO;
240     use warnings qw/redefine/;
241
242     # ensure classes are loaded and attached in inheritance order
243     for my $res (values %results) {
244       $class->ensure_class_loaded($res);
245     }
246     my %inh_idx;
247     my @subclass_last = sort {
248
249       ($inh_idx{$a} ||=
250         scalar @{mro::get_linear_isa( $results{$a} )}
251       )
252
253           <=>
254
255       ($inh_idx{$b} ||=
256         scalar @{mro::get_linear_isa( $results{$b} )}
257       )
258
259     } keys(%results);
260
261     foreach my $result (@subclass_last) {
262       my $result_class = $results{$result};
263
264       my $rs_class = delete $resultsets{$result};
265       my $rs_set = $class->_ns_get_rsrc_instance ($result_class)->resultset_class;
266
267       if($rs_set && $rs_set ne 'DBIx::Class::ResultSet') {
268         if($rs_class && $rs_class ne $rs_set) {
269           carp "We found ResultSet class '$rs_class' for '$result', but it seems "
270              . "that you had already set '$result' to use '$rs_set' instead";
271         }
272       }
273       elsif($rs_class ||= $default_resultset_class) {
274         $class->ensure_class_loaded($rs_class);
275         if(!$rs_class->isa("DBIx::Class::ResultSet")) {
276             carp "load_namespaces found ResultSet class $rs_class that does not subclass DBIx::Class::ResultSet";
277         }
278
279         $class->_ns_get_rsrc_instance ($result_class)->resultset_class($rs_class);
280       }
281
282       my $source_name = $class->_ns_get_rsrc_instance ($result_class)->source_name || $result;
283
284       push(@to_register, [ $source_name, $result_class ]);
285     }
286   }
287
288   foreach (sort keys %resultsets) {
289     carp "load_namespaces found ResultSet class $_ with no "
290       . 'corresponding Result class';
291   }
292
293   Class::C3->reinitialize if DBIx::Class::_ENV_::OLD_MRO;
294
295   $class->register_class(@$_) for (@to_register);
296
297   return;
298 }
299
300 =head2 load_classes
301
302 =over 4
303
304 =item Arguments: @classes?, { $namespace => [ @classes ] }+
305
306 =back
307
308 L</load_classes> is an alternative method to L</load_namespaces>, both of
309 which serve similar purposes, each with different advantages and disadvantages.
310 In the general case you should use L</load_namespaces>, unless you need to
311 be able to specify that only specific classes are loaded at runtime.
312
313 With no arguments, this method uses L<Module::Find> to find all classes under
314 the schema's namespace. Otherwise, this method loads the classes you specify
315 (using L<use>), and registers them (using L</"register_class">).
316
317 It is possible to comment out classes with a leading C<#>, but note that perl
318 will think it's a mistake (trying to use a comment in a qw list), so you'll
319 need to add C<no warnings 'qw';> before your load_classes call.
320
321 If any classes found do not appear to be Result class files, you will
322 get the following warning:
323
324    Failed to load $comp_class. Can't find source_name method. Is
325    $comp_class really a full DBIC result class? Fix it, move it elsewhere,
326    or make your load_classes call more specific.
327
328 Example:
329
330   My::Schema->load_classes(); # loads My::Schema::CD, My::Schema::Artist,
331                               # etc. (anything under the My::Schema namespace)
332
333   # loads My::Schema::CD, My::Schema::Artist, Other::Namespace::Producer but
334   # not Other::Namespace::LinerNotes nor My::Schema::Track
335   My::Schema->load_classes(qw/ CD Artist #Track /, {
336     Other::Namespace => [qw/ Producer #LinerNotes /],
337   });
338
339 =cut
340
341 sub load_classes {
342   my ($class, @params) = @_;
343
344   my %comps_for;
345
346   if (@params) {
347     foreach my $param (@params) {
348       if (ref $param eq 'ARRAY') {
349         # filter out commented entries
350         my @modules = grep { $_ !~ /^#/ } @$param;
351
352         push (@{$comps_for{$class}}, @modules);
353       }
354       elsif (ref $param eq 'HASH') {
355         # more than one namespace possible
356         for my $comp ( keys %$param ) {
357           # filter out commented entries
358           my @modules = grep { $_ !~ /^#/ } @{$param->{$comp}};
359
360           push (@{$comps_for{$comp}}, @modules);
361         }
362       }
363       else {
364         # filter out commented entries
365         push (@{$comps_for{$class}}, $param) if $param !~ /^#/;
366       }
367     }
368   } else {
369     my @comp = map { substr $_, length "${class}::"  }
370                  $class->_findallmod;
371     $comps_for{$class} = \@comp;
372   }
373
374   my @to_register;
375   {
376     no warnings qw/redefine/;
377     local *Class::C3::reinitialize = sub { } if DBIx::Class::_ENV_::OLD_MRO;
378     use warnings qw/redefine/;
379
380     foreach my $prefix (keys %comps_for) {
381       foreach my $comp (@{$comps_for{$prefix}||[]}) {
382         my $comp_class = "${prefix}::${comp}";
383         $class->ensure_class_loaded($comp_class);
384
385         my $snsub = $comp_class->can('source_name');
386         if(! $snsub ) {
387           carp "Failed to load $comp_class. Can't find source_name method. Is $comp_class really a full DBIC result class? Fix it, move it elsewhere, or make your load_classes call more specific.";
388           next;
389         }
390         $comp = $snsub->($comp_class) || $comp;
391
392         push(@to_register, [ $comp, $comp_class ]);
393       }
394     }
395   }
396   Class::C3->reinitialize if DBIx::Class::_ENV_::OLD_MRO;
397
398   foreach my $to (@to_register) {
399     $class->register_class(@$to);
400   }
401 }
402
403 =head2 storage_type
404
405 =over 4
406
407 =item Arguments: $storage_type|{$storage_type, \%args}
408
409 =item Return Value: $storage_type|{$storage_type, \%args}
410
411 =item Default value: DBIx::Class::Storage::DBI
412
413 =back
414
415 Set the storage class that will be instantiated when L</connect> is called.
416 If the classname starts with C<::>, the prefix C<DBIx::Class::Storage> is
417 assumed by L</connect>.
418
419 You want to use this to set subclasses of L<DBIx::Class::Storage::DBI>
420 in cases where the appropriate subclass is not autodetected.
421
422 If your storage type requires instantiation arguments, those are
423 defined as a second argument in the form of a hashref and the entire
424 value needs to be wrapped into an arrayref or a hashref.  We support
425 both types of refs here in order to play nice with your
426 Config::[class] or your choice. See
427 L<DBIx::Class::Storage::DBI::Replicated> for an example of this.
428
429 =head2 exception_action
430
431 =over 4
432
433 =item Arguments: $code_reference
434
435 =item Return Value: $code_reference
436
437 =item Default value: None
438
439 =back
440
441 When L</throw_exception> is invoked and L</exception_action> is set to a code
442 reference, this reference will be called instead of
443 L<DBIx::Class::Exception/throw>, with the exception message passed as the only
444 argument.
445
446 Your custom throw code B<must> rethrow the exception, as L</throw_exception> is
447 an integral part of DBIC's internal execution control flow.
448
449 Example:
450
451    package My::Schema;
452    use base qw/DBIx::Class::Schema/;
453    use My::ExceptionClass;
454    __PACKAGE__->exception_action(sub { My::ExceptionClass->throw(@_) });
455    __PACKAGE__->load_classes;
456
457    # or:
458    my $schema_obj = My::Schema->connect( .... );
459    $schema_obj->exception_action(sub { My::ExceptionClass->throw(@_) });
460
461 =head2 stacktrace
462
463 =over 4
464
465 =item Arguments: boolean
466
467 =back
468
469 Whether L</throw_exception> should include stack trace information.
470 Defaults to false normally, but defaults to true if C<$ENV{DBIC_TRACE}>
471 is true.
472
473 =head2 sqlt_deploy_hook
474
475 =over
476
477 =item Arguments: $sqlt_schema
478
479 =back
480
481 An optional sub which you can declare in your own Schema class that will get
482 passed the L<SQL::Translator::Schema> object when you deploy the schema via
483 L</create_ddl_dir> or L</deploy>.
484
485 For an example of what you can do with this, see
486 L<DBIx::Class::Manual::Cookbook/Adding Indexes And Functions To Your SQL>.
487
488 Note that sqlt_deploy_hook is called by L</deployment_statements>, which in turn
489 is called before L</deploy>. Therefore the hook can be used only to manipulate
490 the L<SQL::Translator::Schema> object before it is turned into SQL fed to the
491 database. If you want to execute post-deploy statements which can not be generated
492 by L<SQL::Translator>, the currently suggested method is to overload L</deploy>
493 and use L<dbh_do|DBIx::Class::Storage::DBI/dbh_do>.
494
495 =head1 METHODS
496
497 =head2 connect
498
499 =over 4
500
501 =item Arguments: @connectinfo
502
503 =item Return Value: $new_schema
504
505 =back
506
507 Creates and returns a new Schema object. The connection info set on it
508 is used to create a new instance of the storage backend and set it on
509 the Schema object.
510
511 See L<DBIx::Class::Storage::DBI/"connect_info"> for DBI-specific
512 syntax on the C<@connectinfo> argument, or L<DBIx::Class::Storage> in
513 general.
514
515 Note that C<connect_info> expects an arrayref of arguments, but
516 C<connect> does not. C<connect> wraps its arguments in an arrayref
517 before passing them to C<connect_info>.
518
519 =head3 Overloading
520
521 C<connect> is a convenience method. It is equivalent to calling
522 $schema->clone->connection(@connectinfo). To write your own overloaded
523 version, overload L</connection> instead.
524
525 =cut
526
527 sub connect { shift->clone->connection(@_) }
528
529 =head2 resultset
530
531 =over 4
532
533 =item Arguments: L<$source_name|DBIx::Class::ResultSource/source_name>
534
535 =item Return Value: L<$resultset|DBIx::Class::ResultSet>
536
537 =back
538
539   my $rs = $schema->resultset('DVD');
540
541 Returns the L<DBIx::Class::ResultSet> object for the registered source
542 name.
543
544 =cut
545
546 sub resultset {
547   my ($self, $source_name) = @_;
548   $self->throw_exception('resultset() expects a source name')
549     unless defined $source_name;
550   return $self->source($source_name)->resultset;
551 }
552
553 =head2 sources
554
555 =over 4
556
557 =item Return Value: L<@source_names|DBIx::Class::ResultSource/source_name>
558
559 =back
560
561   my @source_names = $schema->sources;
562
563 Lists names of all the sources registered on this Schema object.
564
565 =cut
566
567 sub sources { return keys %{shift->source_registrations}; }
568
569 =head2 source
570
571 =over 4
572
573 =item Arguments: L<$source_name|DBIx::Class::ResultSource/source_name>
574
575 =item Return Value: L<$result_source|DBIx::Class::ResultSource>
576
577 =back
578
579   my $source = $schema->source('Book');
580
581 Returns the L<DBIx::Class::ResultSource> object for the registered
582 source name.
583
584 =cut
585
586 sub source {
587   my $self = shift;
588
589   $self->throw_exception("source() expects a source name")
590     unless @_;
591
592   my $source_name = shift;
593
594   my $sreg = $self->source_registrations;
595   return $sreg->{$source_name} if exists $sreg->{$source_name};
596
597   # if we got here, they probably passed a full class name
598   my $mapped = $self->class_mappings->{$source_name};
599   $self->throw_exception("Can't find source for ${source_name}")
600     unless $mapped && exists $sreg->{$mapped};
601   return $sreg->{$mapped};
602 }
603
604 =head2 class
605
606 =over 4
607
608 =item Arguments: L<$source_name|DBIx::Class::ResultSource/source_name>
609
610 =item Return Value: $classname
611
612 =back
613
614   my $class = $schema->class('CD');
615
616 Retrieves the Result class name for the given source name.
617
618 =cut
619
620 sub class {
621   my ($self, $source_name) = @_;
622   return $self->source($source_name)->result_class;
623 }
624
625 =head2 txn_do
626
627 =over 4
628
629 =item Arguments: C<$coderef>, @coderef_args?
630
631 =item Return Value: The return value of $coderef
632
633 =back
634
635 Executes C<$coderef> with (optional) arguments C<@coderef_args> atomically,
636 returning its result (if any). Equivalent to calling $schema->storage->txn_do.
637 See L<DBIx::Class::Storage/"txn_do"> for more information.
638
639 This interface is preferred over using the individual methods L</txn_begin>,
640 L</txn_commit>, and L</txn_rollback> below.
641
642 WARNING: If you are connected with C<< AutoCommit => 0 >> the transaction is
643 considered nested, and you will still need to call L</txn_commit> to write your
644 changes when appropriate. You will also want to connect with C<< auto_savepoint =>
645 1 >> to get partial rollback to work, if the storage driver for your database
646 supports it.
647
648 Connecting with C<< AutoCommit => 1 >> is recommended.
649
650 =cut
651
652 sub txn_do {
653   my $self = shift;
654
655   $self->storage or $self->throw_exception
656     ('txn_do called on $schema without storage');
657
658   $self->storage->txn_do(@_);
659 }
660
661 =head2 txn_scope_guard
662
663 Runs C<txn_scope_guard> on the schema's storage. See
664 L<DBIx::Class::Storage/txn_scope_guard>.
665
666 =cut
667
668 sub txn_scope_guard {
669   my $self = shift;
670
671   $self->storage or $self->throw_exception
672     ('txn_scope_guard called on $schema without storage');
673
674   $self->storage->txn_scope_guard(@_);
675 }
676
677 =head2 txn_begin
678
679 Begins a transaction (does nothing if AutoCommit is off). Equivalent to
680 calling $schema->storage->txn_begin. See
681 L<DBIx::Class::Storage/"txn_begin"> for more information.
682
683 =cut
684
685 sub txn_begin {
686   my $self = shift;
687
688   $self->storage or $self->throw_exception
689     ('txn_begin called on $schema without storage');
690
691   $self->storage->txn_begin;
692 }
693
694 =head2 txn_commit
695
696 Commits the current transaction. Equivalent to calling
697 $schema->storage->txn_commit. See L<DBIx::Class::Storage/"txn_commit">
698 for more information.
699
700 =cut
701
702 sub txn_commit {
703   my $self = shift;
704
705   $self->storage or $self->throw_exception
706     ('txn_commit called on $schema without storage');
707
708   $self->storage->txn_commit;
709 }
710
711 =head2 txn_rollback
712
713 Rolls back the current transaction. Equivalent to calling
714 $schema->storage->txn_rollback. See
715 L<DBIx::Class::Storage/"txn_rollback"> for more information.
716
717 =cut
718
719 sub txn_rollback {
720   my $self = shift;
721
722   $self->storage or $self->throw_exception
723     ('txn_rollback called on $schema without storage');
724
725   $self->storage->txn_rollback;
726 }
727
728 =head2 storage
729
730   my $storage = $schema->storage;
731
732 Returns the L<DBIx::Class::Storage> object for this Schema. Grab this
733 if you want to turn on SQL statement debugging at runtime, or set the
734 quote character. For the default storage, the documentation can be
735 found in L<DBIx::Class::Storage::DBI>.
736
737 =head2 populate
738
739 =over 4
740
741 =item Arguments: L<$source_name|DBIx::Class::ResultSource/source_name>, [ \@column_list, \@row_values+ ] | [ \%col_data+ ]
742
743 =item Return Value: L<\@result_objects|DBIx::Class::Manual::ResultClass> (scalar context) | L<@result_objects|DBIx::Class::Manual::ResultClass> (list context)
744
745 =back
746
747 A convenience shortcut to L<DBIx::Class::ResultSet/populate>. Equivalent to:
748
749  $schema->resultset($source_name)->populate([...]);
750
751 =over 4
752
753 =item NOTE
754
755 The context of this method call has an important effect on what is
756 submitted to storage. In void context data is fed directly to fastpath
757 insertion routines provided by the underlying storage (most often
758 L<DBI/execute_for_fetch>), bypassing the L<new|DBIx::Class::Row/new> and
759 L<insert|DBIx::Class::Row/insert> calls on the
760 L<Result|DBIx::Class::Manual::ResultClass> class, including any
761 augmentation of these methods provided by components. For example if you
762 are using something like L<DBIx::Class::UUIDColumns> to create primary
763 keys for you, you will find that your PKs are empty.  In this case you
764 will have to explicitly force scalar or list context in order to create
765 those values.
766
767 =back
768
769 =cut
770
771 sub populate {
772   my ($self, $name, $data) = @_;
773   if(my $rs = $self->resultset($name)) {
774     if(defined wantarray) {
775         return $rs->populate($data);
776     } else {
777         $rs->populate($data);
778     }
779   } else {
780       $self->throw_exception("$name is not a resultset");
781   }
782 }
783
784 =head2 connection
785
786 =over 4
787
788 =item Arguments: @args
789
790 =item Return Value: $new_schema
791
792 =back
793
794 Similar to L</connect> except sets the storage object and connection
795 data in-place on the Schema class. You should probably be calling
796 L</connect> to get a proper Schema object instead.
797
798 =head3 Overloading
799
800 Overload C<connection> to change the behaviour of C<connect>.
801
802 =cut
803
804 sub connection {
805   my ($self, @info) = @_;
806   return $self if !@info && $self->storage;
807
808   my ($storage_class, $args) = ref $self->storage_type ?
809     ($self->_normalize_storage_type($self->storage_type),{}) : ($self->storage_type, {});
810
811   $storage_class = 'DBIx::Class::Storage'.$storage_class
812     if $storage_class =~ m/^::/;
813   try {
814     $self->ensure_class_loaded ($storage_class);
815   }
816   catch {
817     $self->throw_exception(
818       "Unable to load storage class ${storage_class}: $_"
819     );
820   };
821   my $storage = $storage_class->new($self=>$args);
822   $storage->connect_info(\@info);
823   $self->storage($storage);
824   return $self;
825 }
826
827 sub _normalize_storage_type {
828   my ($self, $storage_type) = @_;
829   if(ref $storage_type eq 'ARRAY') {
830     return @$storage_type;
831   } elsif(ref $storage_type eq 'HASH') {
832     return %$storage_type;
833   } else {
834     $self->throw_exception('Unsupported REFTYPE given: '. ref $storage_type);
835   }
836 }
837
838 =head2 compose_namespace
839
840 =over 4
841
842 =item Arguments: $target_namespace, $additional_base_class?
843
844 =item Retur Value: $new_schema
845
846 =back
847
848 For each L<DBIx::Class::ResultSource> in the schema, this method creates a
849 class in the target namespace (e.g. $target_namespace::CD,
850 $target_namespace::Artist) that inherits from the corresponding classes
851 attached to the current schema.
852
853 It also attaches a corresponding L<DBIx::Class::ResultSource> object to the
854 new $schema object. If C<$additional_base_class> is given, the new composed
855 classes will inherit from first the corresponding class from the current
856 schema then the base class.
857
858 For example, for a schema with My::Schema::CD and My::Schema::Artist classes,
859
860   $schema->compose_namespace('My::DB', 'Base::Class');
861   print join (', ', @My::DB::CD::ISA) . "\n";
862   print join (', ', @My::DB::Artist::ISA) ."\n";
863
864 will produce the output
865
866   My::Schema::CD, Base::Class
867   My::Schema::Artist, Base::Class
868
869 =cut
870
871 # this might be oversimplified
872 # sub compose_namespace {
873 #   my ($self, $target, $base) = @_;
874
875 #   my $schema = $self->clone;
876 #   foreach my $source_name ($schema->sources) {
877 #     my $source = $schema->source($source_name);
878 #     my $target_class = "${target}::${source_name}";
879 #     $self->inject_base(
880 #       $target_class => $source->result_class, ($base ? $base : ())
881 #     );
882 #     $source->result_class($target_class);
883 #     $target_class->result_source_instance($source)
884 #       if $target_class->can('result_source_instance');
885 #     $schema->register_source($source_name, $source);
886 #   }
887 #   return $schema;
888 # }
889
890 sub compose_namespace {
891   my ($self, $target, $base) = @_;
892
893   my $schema = $self->clone;
894
895   $schema->source_registrations({});
896
897   # the original class-mappings must remain - otherwise
898   # reverse_relationship_info will not work
899   #$schema->class_mappings({});
900
901   {
902     no warnings qw/redefine/;
903     local *Class::C3::reinitialize = sub { } if DBIx::Class::_ENV_::OLD_MRO;
904     use warnings qw/redefine/;
905
906     no strict qw/refs/;
907     foreach my $source_name ($self->sources) {
908       my $orig_source = $self->source($source_name);
909
910       my $target_class = "${target}::${source_name}";
911       $self->inject_base($target_class, $orig_source->result_class, ($base || ()) );
912
913       # register_source examines result_class, and then returns us a clone
914       my $new_source = $schema->register_source($source_name, bless
915         { %$orig_source, result_class => $target_class },
916         ref $orig_source,
917       );
918
919       if ($target_class->can('result_source_instance')) {
920         # give the class a schema-less source copy
921         $target_class->result_source_instance( bless
922           { %$new_source, schema => ref $new_source->{schema} || $new_source->{schema} },
923           ref $new_source,
924         );
925       }
926     }
927
928     foreach my $meth (qw/class source resultset/) {
929       no warnings 'redefine';
930       *{"${target}::${meth}"} = subname "${target}::${meth}" =>
931         sub { shift->schema->$meth(@_) };
932     }
933   }
934
935   Class::C3->reinitialize() if DBIx::Class::_ENV_::OLD_MRO;
936
937   return $schema;
938 }
939
940 sub setup_connection_class {
941   my ($class, $target, @info) = @_;
942   $class->inject_base($target => 'DBIx::Class::DB');
943   #$target->load_components('DB');
944   $target->connection(@info);
945 }
946
947 =head2 svp_begin
948
949 Creates a new savepoint (does nothing outside a transaction).
950 Equivalent to calling $schema->storage->svp_begin.  See
951 L<DBIx::Class::Storage/"svp_begin"> for more information.
952
953 =cut
954
955 sub svp_begin {
956   my ($self, $name) = @_;
957
958   $self->storage or $self->throw_exception
959     ('svp_begin called on $schema without storage');
960
961   $self->storage->svp_begin($name);
962 }
963
964 =head2 svp_release
965
966 Releases a savepoint (does nothing outside a transaction).
967 Equivalent to calling $schema->storage->svp_release.  See
968 L<DBIx::Class::Storage/"svp_release"> for more information.
969
970 =cut
971
972 sub svp_release {
973   my ($self, $name) = @_;
974
975   $self->storage or $self->throw_exception
976     ('svp_release called on $schema without storage');
977
978   $self->storage->svp_release($name);
979 }
980
981 =head2 svp_rollback
982
983 Rollback to a savepoint (does nothing outside a transaction).
984 Equivalent to calling $schema->storage->svp_rollback.  See
985 L<DBIx::Class::Storage/"svp_rollback"> for more information.
986
987 =cut
988
989 sub svp_rollback {
990   my ($self, $name) = @_;
991
992   $self->storage or $self->throw_exception
993     ('svp_rollback called on $schema without storage');
994
995   $self->storage->svp_rollback($name);
996 }
997
998 =head2 clone
999
1000 =over 4
1001
1002 =item Arguments: %attrs?
1003
1004 =item Return Value: $new_schema
1005
1006 =back
1007
1008 Clones the schema and its associated result_source objects and returns the
1009 copy. The resulting copy will have the same attributes as the source schema,
1010 except for those attributes explicitly overriden by the provided C<%attrs>.
1011
1012 =cut
1013
1014 sub clone {
1015   my $self = shift;
1016
1017   my $clone = {
1018       (ref $self ? %$self : ()),
1019       (@_ == 1 && ref $_[0] eq 'HASH' ? %{ $_[0] } : @_),
1020   };
1021   bless $clone, (ref $self || $self);
1022
1023   $clone->$_(undef) for qw/class_mappings source_registrations storage/;
1024
1025   $clone->_copy_state_from($self);
1026
1027   return $clone;
1028 }
1029
1030 # Needed in Schema::Loader - if you refactor, please make a compatibility shim
1031 # -- Caelum
1032 sub _copy_state_from {
1033   my ($self, $from) = @_;
1034
1035   $self->class_mappings({ %{$from->class_mappings} });
1036   $self->source_registrations({ %{$from->source_registrations} });
1037
1038   foreach my $source_name ($from->sources) {
1039     my $source = $from->source($source_name);
1040     my $new = $source->new($source);
1041     # we use extra here as we want to leave the class_mappings as they are
1042     # but overwrite the source_registrations entry with the new source
1043     $self->register_extra_source($source_name => $new);
1044   }
1045
1046   if ($from->storage) {
1047     $self->storage($from->storage);
1048     $self->storage->set_schema($self);
1049   }
1050 }
1051
1052 =head2 throw_exception
1053
1054 =over 4
1055
1056 =item Arguments: $message
1057
1058 =back
1059
1060 Throws an exception. Obeys the exemption rules of L<DBIx::Class::Carp> to report
1061 errors from outer-user's perspective. See L</exception_action> for details on overriding
1062 this method's behavior.  If L</stacktrace> is turned on, C<throw_exception>'s
1063 default behavior will provide a detailed stack trace.
1064
1065 =cut
1066
1067 my $false_exception_action_warned;
1068 sub throw_exception {
1069   my $self = shift;
1070
1071   if (my $act = $self->exception_action) {
1072     if ($act->(@_)) {
1073       DBIx::Class::Exception->throw(
1074           "Invocation of the exception_action handler installed on $self did *not*"
1075         .' result in an exception. DBIx::Class is unable to function without a reliable'
1076         .' exception mechanism, ensure that exception_action does not hide exceptions'
1077         ." (original error: $_[0])"
1078       );
1079     }
1080     elsif(! $false_exception_action_warned++) {
1081       carp (
1082           "The exception_action handler installed on $self returned false instead"
1083         .' of throwing an exception. This behavior has been deprecated, adjust your'
1084         .' handler to always rethrow the supplied error.'
1085       );
1086     }
1087   }
1088
1089   DBIx::Class::Exception->throw($_[0], $self->stacktrace);
1090 }
1091
1092 =head2 deploy
1093
1094 =over 4
1095
1096 =item Arguments: \%sqlt_args, $dir
1097
1098 =back
1099
1100 Attempts to deploy the schema to the current storage using L<SQL::Translator>.
1101
1102 See L<SQL::Translator/METHODS> for a list of values for C<\%sqlt_args>.
1103 The most common value for this would be C<< { add_drop_table => 1 } >>
1104 to have the SQL produced include a C<DROP TABLE> statement for each table
1105 created. For quoting purposes supply C<quote_table_names> and
1106 C<quote_field_names>.
1107
1108 Additionally, the DBIx::Class parser accepts a C<sources> parameter as a hash
1109 ref or an array ref, containing a list of source to deploy. If present, then
1110 only the sources listed will get deployed. Furthermore, you can use the
1111 C<add_fk_index> parser parameter to prevent the parser from creating an index for each
1112 FK.
1113
1114 =cut
1115
1116 sub deploy {
1117   my ($self, $sqltargs, $dir) = @_;
1118   $self->throw_exception("Can't deploy without storage") unless $self->storage;
1119   $self->storage->deploy($self, undef, $sqltargs, $dir);
1120 }
1121
1122 =head2 deployment_statements
1123
1124 =over 4
1125
1126 =item Arguments: See L<DBIx::Class::Storage::DBI/deployment_statements>
1127
1128 =item Return Value: $listofstatements
1129
1130 =back
1131
1132 A convenient shortcut to
1133 C<< $self->storage->deployment_statements($self, @args) >>.
1134 Returns the SQL statements used by L</deploy> and
1135 L<DBIx::Class::Schema::Storage/deploy>.
1136
1137 =cut
1138
1139 sub deployment_statements {
1140   my $self = shift;
1141
1142   $self->throw_exception("Can't generate deployment statements without a storage")
1143     if not $self->storage;
1144
1145   $self->storage->deployment_statements($self, @_);
1146 }
1147
1148 =head2 create_ddl_dir
1149
1150 =over 4
1151
1152 =item Arguments: See L<DBIx::Class::Storage::DBI/create_ddl_dir>
1153
1154 =back
1155
1156 A convenient shortcut to
1157 C<< $self->storage->create_ddl_dir($self, @args) >>.
1158
1159 Creates an SQL file based on the Schema, for each of the specified
1160 database types, in the given directory.
1161
1162 =cut
1163
1164 sub create_ddl_dir {
1165   my $self = shift;
1166
1167   $self->throw_exception("Can't create_ddl_dir without storage") unless $self->storage;
1168   $self->storage->create_ddl_dir($self, @_);
1169 }
1170
1171 =head2 ddl_filename
1172
1173 =over 4
1174
1175 =item Arguments: $database-type, $version, $directory, $preversion
1176
1177 =item Return Value: $normalised_filename
1178
1179 =back
1180
1181   my $filename = $table->ddl_filename($type, $version, $dir, $preversion)
1182
1183 This method is called by C<create_ddl_dir> to compose a file name out of
1184 the supplied directory, database type and version number. The default file
1185 name format is: C<$dir$schema-$version-$type.sql>.
1186
1187 You may override this method in your schema if you wish to use a different
1188 format.
1189
1190  WARNING
1191
1192  Prior to DBIx::Class version 0.08100 this method had a different signature:
1193
1194     my $filename = $table->ddl_filename($type, $dir, $version, $preversion)
1195
1196  In recent versions variables $dir and $version were reversed in order to
1197  bring the signature in line with other Schema/Storage methods. If you
1198  really need to maintain backward compatibility, you can do the following
1199  in any overriding methods:
1200
1201     ($dir, $version) = ($version, $dir) if ($DBIx::Class::VERSION < 0.08100);
1202
1203 =cut
1204
1205 sub ddl_filename {
1206   my ($self, $type, $version, $dir, $preversion) = @_;
1207
1208   require File::Spec;
1209
1210   $version = "$preversion-$version" if $preversion;
1211
1212   my $class = blessed($self) || $self;
1213   $class =~ s/::/-/g;
1214
1215   return File::Spec->catfile($dir, "$class-$version-$type.sql");
1216 }
1217
1218 =head2 thaw
1219
1220 Provided as the recommended way of thawing schema objects. You can call
1221 C<Storable::thaw> directly if you wish, but the thawed objects will not have a
1222 reference to any schema, so are rather useless.
1223
1224 =cut
1225
1226 sub thaw {
1227   my ($self, $obj) = @_;
1228   local $DBIx::Class::ResultSourceHandle::thaw_schema = $self;
1229   require Storable;
1230   return Storable::thaw($obj);
1231 }
1232
1233 =head2 freeze
1234
1235 This doesn't actually do anything more than call L<Storable/nfreeze>, it is just
1236 provided here for symmetry.
1237
1238 =cut
1239
1240 sub freeze {
1241   require Storable;
1242   return Storable::nfreeze($_[1]);
1243 }
1244
1245 =head2 dclone
1246
1247 =over 4
1248
1249 =item Arguments: $object
1250
1251 =item Return Value: dcloned $object
1252
1253 =back
1254
1255 Recommended way of dcloning L<DBIx::Class::Row> and L<DBIx::Class::ResultSet>
1256 objects so their references to the schema object
1257 (which itself is B<not> cloned) are properly maintained.
1258
1259 =cut
1260
1261 sub dclone {
1262   my ($self, $obj) = @_;
1263   local $DBIx::Class::ResultSourceHandle::thaw_schema = $self;
1264   require Storable;
1265   return Storable::dclone($obj);
1266 }
1267
1268 =head2 schema_version
1269
1270 Returns the current schema class' $VERSION in a normalised way.
1271
1272 =cut
1273
1274 sub schema_version {
1275   my ($self) = @_;
1276   my $class = ref($self)||$self;
1277
1278   # does -not- use $schema->VERSION
1279   # since that varies in results depending on if version.pm is installed, and if
1280   # so the perl or XS versions. If you want this to change, bug the version.pm
1281   # author to make vpp and vxs behave the same.
1282
1283   my $version;
1284   {
1285     no strict 'refs';
1286     $version = ${"${class}::VERSION"};
1287   }
1288   return $version;
1289 }
1290
1291
1292 =head2 register_class
1293
1294 =over 4
1295
1296 =item Arguments: $source_name, $component_class
1297
1298 =back
1299
1300 This method is called by L</load_namespaces> and L</load_classes> to install the found classes into your Schema. You should be using those instead of this one.
1301
1302 You will only need this method if you have your Result classes in
1303 files which are not named after the packages (or all in the same
1304 file). You may also need it to register classes at runtime.
1305
1306 Registers a class which isa DBIx::Class::ResultSourceProxy. Equivalent to
1307 calling:
1308
1309   $schema->register_source($source_name, $component_class->result_source_instance);
1310
1311 =cut
1312
1313 sub register_class {
1314   my ($self, $source_name, $to_register) = @_;
1315   $self->register_source($source_name => $to_register->result_source_instance);
1316 }
1317
1318 =head2 register_source
1319
1320 =over 4
1321
1322 =item Arguments: $source_name, L<$result_source|DBIx::Class::ResultSource>
1323
1324 =back
1325
1326 This method is called by L</register_class>.
1327
1328 Registers the L<DBIx::Class::ResultSource> in the schema with the given
1329 source name.
1330
1331 =cut
1332
1333 sub register_source { shift->_register_source(@_) }
1334
1335 =head2 unregister_source
1336
1337 =over 4
1338
1339 =item Arguments: $source_name
1340
1341 =back
1342
1343 Removes the L<DBIx::Class::ResultSource> from the schema for the given source name.
1344
1345 =cut
1346
1347 sub unregister_source { shift->_unregister_source(@_) }
1348
1349 =head2 register_extra_source
1350
1351 =over 4
1352
1353 =item Arguments: $source_name, L<$result_source|DBIx::Class::ResultSource>
1354
1355 =back
1356
1357 As L</register_source> but should be used if the result class already
1358 has a source and you want to register an extra one.
1359
1360 =cut
1361
1362 sub register_extra_source { shift->_register_source(@_, { extra => 1 }) }
1363
1364 sub _register_source {
1365   my ($self, $source_name, $source, $params) = @_;
1366
1367   $source = $source->new({ %$source, source_name => $source_name });
1368
1369   $source->schema($self);
1370   weaken $source->{schema} if ref($self);
1371
1372   my %reg = %{$self->source_registrations};
1373   $reg{$source_name} = $source;
1374   $self->source_registrations(\%reg);
1375
1376   return $source if $params->{extra};
1377
1378   my $rs_class = $source->result_class;
1379   if ($rs_class and my $rsrc = try { $rs_class->result_source_instance } ) {
1380     my %map = %{$self->class_mappings};
1381     if (
1382       exists $map{$rs_class}
1383         and
1384       $map{$rs_class} ne $source_name
1385         and
1386       $rsrc ne $_[2]  # orig_source
1387     ) {
1388       carp
1389         "$rs_class already had a registered source which was replaced by this call. "
1390       . 'Perhaps you wanted register_extra_source(), though it is more likely you did '
1391       . 'something wrong.'
1392       ;
1393     }
1394
1395     $map{$rs_class} = $source_name;
1396     $self->class_mappings(\%map);
1397   }
1398
1399   return $source;
1400 }
1401
1402 my $global_phase_destroy;
1403 sub DESTROY {
1404   return if $global_phase_destroy ||= in_global_destruction;
1405
1406   my $self = shift;
1407   my $srcs = $self->source_registrations;
1408
1409   for my $source_name (keys %$srcs) {
1410     # find first source that is not about to be GCed (someone other than $self
1411     # holds a reference to it) and reattach to it, weakening our own link
1412     #
1413     # during global destruction (if we have not yet bailed out) this should throw
1414     # which will serve as a signal to not try doing anything else
1415     # however beware - on older perls the exception seems randomly untrappable
1416     # due to some weird race condition during thread joining :(((
1417     if (ref $srcs->{$source_name} and svref_2object($srcs->{$source_name})->REFCNT > 1) {
1418       local $@;
1419       eval {
1420         $srcs->{$source_name}->schema($self);
1421         weaken $srcs->{$source_name};
1422         1;
1423       } or do {
1424         $global_phase_destroy = 1;
1425       };
1426
1427       last;
1428     }
1429   }
1430 }
1431
1432 sub _unregister_source {
1433     my ($self, $source_name) = @_;
1434     my %reg = %{$self->source_registrations};
1435
1436     my $source = delete $reg{$source_name};
1437     $self->source_registrations(\%reg);
1438     if ($source->result_class) {
1439         my %map = %{$self->class_mappings};
1440         delete $map{$source->result_class};
1441         $self->class_mappings(\%map);
1442     }
1443 }
1444
1445
1446 =head2 compose_connection (DEPRECATED)
1447
1448 =over 4
1449
1450 =item Arguments: $target_namespace, @db_info
1451
1452 =item Return Value: $new_schema
1453
1454 =back
1455
1456 DEPRECATED. You probably wanted compose_namespace.
1457
1458 Actually, you probably just wanted to call connect.
1459
1460 =begin hidden
1461
1462 (hidden due to deprecation)
1463
1464 Calls L<DBIx::Class::Schema/"compose_namespace"> to the target namespace,
1465 calls L<DBIx::Class::Schema/connection> with @db_info on the new schema,
1466 then injects the L<DBix::Class::ResultSetProxy> component and a
1467 resultset_instance classdata entry on all the new classes, in order to support
1468 $target_namespaces::$class->search(...) method calls.
1469
1470 This is primarily useful when you have a specific need for class method access
1471 to a connection. In normal usage it is preferred to call
1472 L<DBIx::Class::Schema/connect> and use the resulting schema object to operate
1473 on L<DBIx::Class::ResultSet> objects with L<DBIx::Class::Schema/resultset> for
1474 more information.
1475
1476 =end hidden
1477
1478 =cut
1479
1480 sub compose_connection {
1481   my ($self, $target, @info) = @_;
1482
1483   carp_once "compose_connection deprecated as of 0.08000"
1484     unless $INC{"DBIx/Class/CDBICompat.pm"};
1485
1486   my $base = 'DBIx::Class::ResultSetProxy';
1487   try {
1488     eval "require ${base};"
1489   }
1490   catch {
1491     $self->throw_exception
1492       ("No arguments to load_classes and couldn't load ${base} ($_)")
1493   };
1494
1495   if ($self eq $target) {
1496     # Pathological case, largely caused by the docs on early C::M::DBIC::Plain
1497     foreach my $source_name ($self->sources) {
1498       my $source = $self->source($source_name);
1499       my $class = $source->result_class;
1500       $self->inject_base($class, $base);
1501       $class->mk_classdata(resultset_instance => $source->resultset);
1502       $class->mk_classdata(class_resolver => $self);
1503     }
1504     $self->connection(@info);
1505     return $self;
1506   }
1507
1508   my $schema = $self->compose_namespace($target, $base);
1509   {
1510     no strict 'refs';
1511     my $name = join '::', $target, 'schema';
1512     *$name = subname $name, sub { $schema };
1513   }
1514
1515   $schema->connection(@info);
1516   foreach my $source_name ($schema->sources) {
1517     my $source = $schema->source($source_name);
1518     my $class = $source->result_class;
1519     #warn "$source_name $class $source ".$source->storage;
1520     $class->mk_classdata(result_source_instance => $source);
1521     $class->mk_classdata(resultset_instance => $source->resultset);
1522     $class->mk_classdata(class_resolver => $schema);
1523   }
1524   return $schema;
1525 }
1526
1527 1;
1528
1529 =head1 AUTHOR AND CONTRIBUTORS
1530
1531 See L<AUTHOR|DBIx::Class/AUTHOR> and L<CONTRIBUTORS|DBIx::Class/CONTRIBUTORS> in DBIx::Class
1532
1533 =head1 LICENSE
1534
1535 You may distribute this code under the same terms as Perl itself.
1536
1537 =cut