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