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