This was commented out in 2008 (5b0b4df8) and never used
[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';
7
70c28808 8use DBIx::Class::Carp;
9780718f 9use Try::Tiny;
aea59b74 10use Scalar::Util qw/weaken blessed/;
ddcc02d1 11use DBIx::Class::_Util qw(
12 refcount quote_sub scope_guard
13 is_exception dbic_internal_try
14);
d6b39e46 15use Devel::GlobalDestruction;
fd323bf1 16use namespace::clean;
a02675cd 17
0dc79249 18__PACKAGE__->mk_classdata('class_mappings' => {});
19__PACKAGE__->mk_classdata('source_registrations' => {});
1e10a11d 20__PACKAGE__->mk_classdata('storage_type' => '::DBI');
d7156e50 21__PACKAGE__->mk_classdata('storage');
82cc0386 22__PACKAGE__->mk_classdata('exception_action');
4b946902 23__PACKAGE__->mk_classdata('stacktrace' => $ENV{DBIC_TRACE} || 0);
e6c747fd 24__PACKAGE__->mk_classdata('default_resultset_attributes' => {});
a02675cd 25
c2da098a 26=head1 NAME
27
28DBIx::Class::Schema - composable schemas
29
30=head1 SYNOPSIS
31
24d67825 32 package Library::Schema;
c2da098a 33 use base qw/DBIx::Class::Schema/;
bab77431 34
829517d4 35 # load all Result classes in Library/Schema/Result/
36 __PACKAGE__->load_namespaces();
c2da098a 37
829517d4 38 package Library::Schema::Result::CD;
d88ecca6 39 use base qw/DBIx::Class::Core/;
40
41 __PACKAGE__->load_components(qw/InflateColumn::DateTime/); # for example
24d67825 42 __PACKAGE__->table('cd');
c2da098a 43
5d9076f2 44 # Elsewhere in your code:
24d67825 45 my $schema1 = Library::Schema->connect(
a3d93194 46 $dsn,
47 $user,
48 $password,
ef131d82 49 { AutoCommit => 1 },
a3d93194 50 );
bab77431 51
24d67825 52 my $schema2 = Library::Schema->connect($coderef_returning_dbh);
c2da098a 53
829517d4 54 # fetch objects using Library::Schema::Result::DVD
24d67825 55 my $resultset = $schema1->resultset('DVD')->search( ... );
56 my @dvd_objects = $schema2->resultset('DVD')->search( ... );
c2da098a 57
58=head1 DESCRIPTION
59
a3d93194 60Creates database classes based on a schema. This is the recommended way to
61use L<DBIx::Class> and allows you to use more than one concurrent connection
62with your classes.
429bd4f1 63
03312470 64NB: If you're used to L<Class::DBI> it's worth reading the L</SYNOPSIS>
2053ab2a 65carefully, as DBIx::Class does things a little differently. Note in
03312470 66particular which module inherits off which.
67
829517d4 68=head1 SETUP METHODS
c2da098a 69
829517d4 70=head2 load_namespaces
87c4e602 71
27f01d1f 72=over 4
73
829517d4 74=item Arguments: %options?
27f01d1f 75
76=back
076652e8 77
a5bd5d88 78 package MyApp::Schema;
829517d4 79 __PACKAGE__->load_namespaces();
66d9ef6b 80
829517d4 81 __PACKAGE__->load_namespaces(
6f731572 82 result_namespace => 'Res',
83 resultset_namespace => 'RSet',
a5bd5d88 84 default_resultset_class => '+MyApp::Othernamespace::RSet',
6f731572 85 );
86
87With no arguments, this method uses L<Module::Find> to load all of the
88Result and ResultSet classes under the namespace of the schema from
89which it is called. For example, C<My::Schema> will by default find
90and load Result classes named C<My::Schema::Result::*> and ResultSet
91classes named C<My::Schema::ResultSet::*>.
92
93ResultSet classes are associated with Result class of the same name.
94For example, C<My::Schema::Result::CD> will get the ResultSet class
95C<My::Schema::ResultSet::CD> if it is present.
96
97Both Result and ResultSet namespaces are configurable via the
98C<result_namespace> and C<resultset_namespace> options.
076652e8 99
6f731572 100Another option, C<default_resultset_class> specifies a custom default
101ResultSet class for Result classes with no corresponding ResultSet.
c2da098a 102
6f731572 103All of the namespace and classname options are by default relative to
104the schema classname. To specify a fully-qualified name, prefix it
105with a literal C<+>. For example, C<+Other::NameSpace::Result>.
106
107=head3 Warnings
74b92d9a 108
672687db 109You will be warned if ResultSet classes are discovered for which there
829517d4 110are no matching Result classes like this:
87c4e602 111
829517d4 112 load_namespaces found ResultSet class $classname with no corresponding Result class
27f01d1f 113
5529838f 114If a ResultSource instance is found to already have a ResultSet class set
115using L<resultset_class|DBIx::Class::ResultSource/resultset_class> to some
116other class, you will be warned like this:
27f01d1f 117
5529838f 118 We found ResultSet class '$rs_class' for '$result_class', but it seems
119 that you had already set '$result_class' to use '$rs_set' instead
076652e8 120
6f731572 121=head3 Examples
2a4d9487 122
829517d4 123 # load My::Schema::Result::CD, My::Schema::Result::Artist,
124 # My::Schema::ResultSet::CD, etc...
125 My::Schema->load_namespaces;
2a4d9487 126
829517d4 127 # Override everything to use ugly names.
128 # In this example, if there is a My::Schema::Res::Foo, but no matching
129 # My::Schema::RSets::Foo, then Foo will have its
130 # resultset_class set to My::Schema::RSetBase
131 My::Schema->load_namespaces(
132 result_namespace => 'Res',
133 resultset_namespace => 'RSets',
134 default_resultset_class => 'RSetBase',
135 );
2a4d9487 136
829517d4 137 # Put things in other namespaces
138 My::Schema->load_namespaces(
139 result_namespace => '+Some::Place::Results',
140 resultset_namespace => '+Another::Place::RSets',
141 );
2a4d9487 142
6f731572 143To search multiple namespaces for either Result or ResultSet classes,
144use an arrayref of namespaces for that option. In the case that the
145same result (or resultset) class exists in multiple namespaces, later
146entries in the list of namespaces will override earlier ones.
2a4d9487 147
829517d4 148 My::Schema->load_namespaces(
149 # My::Schema::Results_C::Foo takes precedence over My::Schema::Results_B::Foo :
150 result_namespace => [ 'Results_A', 'Results_B', 'Results_C' ],
151 resultset_namespace => [ '+Some::Place::RSets', 'RSets' ],
152 );
2a4d9487 153
154=cut
155
829517d4 156# Pre-pends our classname to the given relative classname or
157# class namespace, unless there is a '+' prefix, which will
158# be stripped.
159sub _expand_relative_name {
160 my ($class, $name) = @_;
93d7452f 161 $name =~ s/^\+// or $name = "${class}::${name}";
829517d4 162 return $name;
2a4d9487 163}
164
f3405058 165# Finds all modules in the supplied namespace, or if omitted in the
166# namespace of $class. Untaints all findings as they can be assumed
167# to be safe
168sub _findallmod {
3b80fa31 169 require Module::Find;
93d7452f 170 return map
171 { $_ =~ /(.+)/ } # untaint result
172 Module::Find::findallmod( $_[1] || ref $_[0] || $_[0] )
173 ;
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 {
93d7452f 180 my ($me, $namespaces) = @_;
181
182 my %res;
183 for my $ns (@$namespaces) {
184 $res{ substr($_, length "${ns}::") } = $_
185 for $me->_findallmod($ns);
0dc79249 186 }
27f01d1f 187
93d7452f 188 \%res;
ea20d0fd 189}
190
b488020e 191# returns the result_source_instance for the passed class/object,
192# or dies with an informative message (used by load_namespaces)
193sub _ns_get_rsrc_instance {
dee99c24 194 my $me = shift;
195 my $rs_class = ref ($_[0]) || $_[0];
196
ddcc02d1 197 return dbic_internal_try {
dee99c24 198 $rs_class->result_source_instance
199 } catch {
200 $me->throw_exception (
201 "Attempt to load_namespaces() class $rs_class failed - are you sure this is a real Result Class?: $_"
b488020e 202 );
dee99c24 203 };
b488020e 204}
205
829517d4 206sub load_namespaces {
207 my ($class, %args) = @_;
0dc79249 208
829517d4 209 my $result_namespace = delete $args{result_namespace} || 'Result';
210 my $resultset_namespace = delete $args{resultset_namespace} || 'ResultSet';
93d7452f 211
829517d4 212 my $default_resultset_class = delete $args{default_resultset_class};
0dc79249 213
93d7452f 214 $default_resultset_class = $class->_expand_relative_name($default_resultset_class)
215 if $default_resultset_class;
216
829517d4 217 $class->throw_exception('load_namespaces: unknown option(s): '
218 . join(q{,}, map { qq{'$_'} } keys %args))
219 if scalar keys %args;
0dc79249 220
829517d4 221 for my $arg ($result_namespace, $resultset_namespace) {
93d7452f 222 $arg = [ $arg ] if ( $arg and ! ref $arg );
9b1ba0f2 223
829517d4 224 $class->throw_exception('load_namespaces: namespace arguments must be '
225 . 'a simple string or an arrayref')
226 if ref($arg) ne 'ARRAY';
9b1ba0f2 227
829517d4 228 $_ = $class->_expand_relative_name($_) for (@$arg);
229 }
ea20d0fd 230
93d7452f 231 my $results_by_source_name = $class->_map_namespaces($result_namespace);
232 my $resultsets_by_source_name = $class->_map_namespaces($resultset_namespace);
27f01d1f 233
829517d4 234 my @to_register;
235 {
87bf71d5 236 no warnings qw/redefine/;
237 local *Class::C3::reinitialize = sub { } if DBIx::Class::_ENV_::OLD_MRO;
238 use warnings qw/redefine/;
27f01d1f 239
3988ce40 240 # ensure classes are loaded and attached in inheritance order
93d7452f 241 for my $result_class (values %$results_by_source_name) {
242 $class->ensure_class_loaded($result_class);
f5ef5fa1 243 }
3988ce40 244 my %inh_idx;
93d7452f 245 my @source_names_by_subclass_last = sort {
3988ce40 246
247 ($inh_idx{$a} ||=
93d7452f 248 scalar @{mro::get_linear_isa( $results_by_source_name->{$a} )}
3988ce40 249 )
250
251 <=>
252
253 ($inh_idx{$b} ||=
93d7452f 254 scalar @{mro::get_linear_isa( $results_by_source_name->{$b} )}
3988ce40 255 )
256
93d7452f 257 } keys(%$results_by_source_name);
3988ce40 258
93d7452f 259 foreach my $source_name (@source_names_by_subclass_last) {
260 my $result_class = $results_by_source_name->{$source_name};
82b01c38 261
93d7452f 262 my $preset_resultset_class = $class->_ns_get_rsrc_instance ($result_class)->resultset_class;
263 my $found_resultset_class = delete $resultsets_by_source_name->{$source_name};
3988ce40 264
93d7452f 265 if($preset_resultset_class && $preset_resultset_class ne 'DBIx::Class::ResultSet') {
266 if($found_resultset_class && $found_resultset_class ne $preset_resultset_class) {
267 carp "We found ResultSet class '$found_resultset_class' matching '$results_by_source_name->{$source_name}', but it seems "
268 . "that you had already set the '$results_by_source_name->{$source_name}' resultet to '$preset_resultset_class' instead";
829517d4 269 }
270 }
93d7452f 271 # elsif - there may be *no* default_resultset_class, in which case we fallback to
272 # DBIx::Class::Resultset and there is nothing to check
273 elsif($found_resultset_class ||= $default_resultset_class) {
274 $class->ensure_class_loaded($found_resultset_class);
275 if(!$found_resultset_class->isa("DBIx::Class::ResultSet")) {
276 carp "load_namespaces found ResultSet class '$found_resultset_class' that does not subclass DBIx::Class::ResultSet";
1d3108a4 277 }
278
93d7452f 279 $class->_ns_get_rsrc_instance ($result_class)->resultset_class($found_resultset_class);
829517d4 280 }
82b01c38 281
93d7452f 282 my $source_name = $class->_ns_get_rsrc_instance ($result_class)->source_name || $source_name;
0e6c5d58 283
284 push(@to_register, [ $source_name, $result_class ]);
829517d4 285 }
286 }
ea20d0fd 287
93d7452f 288 foreach (sort keys %$resultsets_by_source_name) {
289 carp "load_namespaces found ResultSet class '$resultsets_by_source_name->{$_}' "
290 .'with no corresponding Result class';
829517d4 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}::" }
93d7452f 370 $class->_findallmod($class);
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
93d7452f 567sub sources { 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
93d7452f 802 my ($storage_class, $args) = ref $self->storage_type
803 ? $self->_normalize_storage_type($self->storage_type)
804 : $self->storage_type
805 ;
806
807 $storage_class =~ s/^::/DBIx::Class::Storage::/;
d4daee7b 808
ddcc02d1 809 dbic_internal_try {
9780718f 810 $self->ensure_class_loaded ($storage_class);
811 }
812 catch {
813 $self->throw_exception(
dee99c24 814 "Unable to load storage class ${storage_class}: $_"
9780718f 815 );
816 };
93d7452f 817
818 my $storage = $storage_class->new( $self => $args||{} );
829517d4 819 $storage->connect_info(\@info);
820 $self->storage($storage);
821 return $self;
822}
823
824sub _normalize_storage_type {
825 my ($self, $storage_type) = @_;
826 if(ref $storage_type eq 'ARRAY') {
827 return @$storage_type;
828 } elsif(ref $storage_type eq 'HASH') {
829 return %$storage_type;
830 } else {
831 $self->throw_exception('Unsupported REFTYPE given: '. ref $storage_type);
832 }
833}
834
835=head2 compose_namespace
82cc0386 836
837=over 4
838
829517d4 839=item Arguments: $target_namespace, $additional_base_class?
840
8600b1c1 841=item Return Value: $new_schema
829517d4 842
843=back
844
845For each L<DBIx::Class::ResultSource> in the schema, this method creates a
846class in the target namespace (e.g. $target_namespace::CD,
847$target_namespace::Artist) that inherits from the corresponding classes
848attached to the current schema.
849
850It also attaches a corresponding L<DBIx::Class::ResultSource> object to the
851new $schema object. If C<$additional_base_class> is given, the new composed
48580715 852classes will inherit from first the corresponding class from the current
829517d4 853schema then the base class.
854
855For example, for a schema with My::Schema::CD and My::Schema::Artist classes,
856
857 $schema->compose_namespace('My::DB', 'Base::Class');
858 print join (', ', @My::DB::CD::ISA) . "\n";
859 print join (', ', @My::DB::Artist::ISA) ."\n";
860
861will produce the output
862
863 My::Schema::CD, Base::Class
864 My::Schema::Artist, Base::Class
865
866=cut
867
829517d4 868sub compose_namespace {
869 my ($self, $target, $base) = @_;
dee99c24 870
829517d4 871 my $schema = $self->clone;
dee99c24 872
873 $schema->source_registrations({});
874
875 # the original class-mappings must remain - otherwise
876 # reverse_relationship_info will not work
877 #$schema->class_mappings({});
878
829517d4 879 {
880 no warnings qw/redefine/;
87bf71d5 881 local *Class::C3::reinitialize = sub { } if DBIx::Class::_ENV_::OLD_MRO;
882 use warnings qw/redefine/;
883
fb13a49f 884 foreach my $source_name ($self->sources) {
885 my $orig_source = $self->source($source_name);
dee99c24 886
fb13a49f 887 my $target_class = "${target}::${source_name}";
dee99c24 888 $self->inject_base($target_class, $orig_source->result_class, ($base || ()) );
889
890 # register_source examines result_class, and then returns us a clone
fb13a49f 891 my $new_source = $schema->register_source($source_name, bless
dee99c24 892 { %$orig_source, result_class => $target_class },
893 ref $orig_source,
829517d4 894 );
a8c2c746 895
dee99c24 896 if ($target_class->can('result_source_instance')) {
897 # give the class a schema-less source copy
898 $target_class->result_source_instance( bless
899 { %$new_source, schema => ref $new_source->{schema} || $new_source->{schema} },
900 ref $new_source,
901 );
a8c2c746 902 }
829517d4 903 }
dee99c24 904
8d73fcd4 905 quote_sub "${target}::${_}" => "shift->schema->$_(\@_)"
906 for qw(class source resultset);
829517d4 907 }
dee99c24 908
909 Class::C3->reinitialize() if DBIx::Class::_ENV_::OLD_MRO;
910
829517d4 911 return $schema;
912}
913
914sub setup_connection_class {
915 my ($class, $target, @info) = @_;
916 $class->inject_base($target => 'DBIx::Class::DB');
917 #$target->load_components('DB');
918 $target->connection(@info);
919}
920
921=head2 svp_begin
922
fd323bf1 923Creates a new savepoint (does nothing outside a transaction).
829517d4 924Equivalent to calling $schema->storage->svp_begin. See
8bfce9d5 925L<DBIx::Class::Storage/"svp_begin"> for more information.
829517d4 926
927=cut
928
929sub svp_begin {
930 my ($self, $name) = @_;
931
932 $self->storage or $self->throw_exception
933 ('svp_begin called on $schema without storage');
934
935 $self->storage->svp_begin($name);
936}
937
938=head2 svp_release
939
fd323bf1 940Releases a savepoint (does nothing outside a transaction).
829517d4 941Equivalent to calling $schema->storage->svp_release. See
8bfce9d5 942L<DBIx::Class::Storage/"svp_release"> for more information.
829517d4 943
944=cut
945
946sub svp_release {
947 my ($self, $name) = @_;
948
949 $self->storage or $self->throw_exception
950 ('svp_release called on $schema without storage');
82cc0386 951
829517d4 952 $self->storage->svp_release($name);
953}
82cc0386 954
829517d4 955=head2 svp_rollback
db5dc233 956
fd323bf1 957Rollback to a savepoint (does nothing outside a transaction).
829517d4 958Equivalent to calling $schema->storage->svp_rollback. See
8bfce9d5 959L<DBIx::Class::Storage/"svp_rollback"> for more information.
82cc0386 960
829517d4 961=cut
82cc0386 962
829517d4 963sub svp_rollback {
964 my ($self, $name) = @_;
82cc0386 965
829517d4 966 $self->storage or $self->throw_exception
967 ('svp_rollback called on $schema without storage');
82cc0386 968
829517d4 969 $self->storage->svp_rollback($name);
970}
db5dc233 971
829517d4 972=head2 clone
613397e7 973
84c5863b 974=over 4
613397e7 975
71829446 976=item Arguments: %attrs?
977
829517d4 978=item Return Value: $new_schema
613397e7 979
980=back
981
829517d4 982Clones the schema and its associated result_source objects and returns the
71829446 983copy. The resulting copy will have the same attributes as the source schema,
4a0eed52 984except for those attributes explicitly overridden by the provided C<%attrs>.
829517d4 985
986=cut
987
988sub clone {
71829446 989 my $self = shift;
990
991 my $clone = {
992 (ref $self ? %$self : ()),
993 (@_ == 1 && ref $_[0] eq 'HASH' ? %{ $_[0] } : @_),
994 };
829517d4 995 bless $clone, (ref $self || $self);
996
93963f59 997 $clone->$_(undef) for qw/class_mappings source_registrations storage/;
998
999 $clone->_copy_state_from($self);
1000
1001 return $clone;
1002}
1003
1004# Needed in Schema::Loader - if you refactor, please make a compatibility shim
1005# -- Caelum
1006sub _copy_state_from {
1007 my ($self, $from) = @_;
1008
1009 $self->class_mappings({ %{$from->class_mappings} });
1010 $self->source_registrations({ %{$from->source_registrations} });
1011
fb13a49f 1012 foreach my $source_name ($from->sources) {
1013 my $source = $from->source($source_name);
829517d4 1014 my $new = $source->new($source);
1015 # we use extra here as we want to leave the class_mappings as they are
1016 # but overwrite the source_registrations entry with the new source
fb13a49f 1017 $self->register_extra_source($source_name => $new);
829517d4 1018 }
dee99c24 1019
93963f59 1020 if ($from->storage) {
1021 $self->storage($from->storage);
1022 $self->storage->set_schema($self);
1023 }
829517d4 1024}
613397e7 1025
5160b401 1026=head2 throw_exception
701da8c4 1027
75d07914 1028=over 4
82b01c38 1029
ebc77b53 1030=item Arguments: $message
82b01c38 1031
1032=back
1033
70c28808 1034Throws an exception. Obeys the exemption rules of L<DBIx::Class::Carp> to report
1035errors from outer-user's perspective. See L</exception_action> for details on overriding
4b946902 1036this method's behavior. If L</stacktrace> is turned on, C<throw_exception>'s
1037default behavior will provide a detailed stack trace.
701da8c4 1038
1039=cut
1040
1041sub throw_exception {
e240b8ba 1042 my ($self, @args) = @_;
4981dc70 1043
ddcc02d1 1044 if (
1045 ! DBIx::Class::_Util::in_internal_try()
1046 and
1047 my $act = $self->exception_action
1048 ) {
7cb35852 1049
1050 my $guard_disarmed;
1051
1052 my $guard = scope_guard {
1053 return if $guard_disarmed;
1054 local $SIG{__WARN__};
1055 Carp::cluck("
1056 !!! DBIx::Class INTERNAL PANIC !!!
1057
1058The exception_action() handler installed on '$self'
1059aborted the stacktrace below via a longjmp (either via Return::Multilevel or
1060plain goto, or Scope::Upper or something equally nefarious). There currently
1061is nothing safe DBIx::Class can do, aside from displaying this error. A future
1062version ( 0.082900, when available ) will reduce the cases in which the
1063handler is invoked, but this is neither a complete solution, nor can it do
1064anything for other software that might be affected by a similar problem.
1065
1066 !!! FIX YOUR ERROR HANDLING !!!
1067
1068This guard was activated beginning"
1069 );
1070 };
1071
7704dbc9 1072 dbic_internal_try {
118b2c36 1073 # if it throws - good, we'll assign to @args in the end
e240b8ba 1074 # if it doesn't - do different things depending on RV truthiness
1075 if( $act->(@args) ) {
1076 $args[0] = (
c3e9f718 1077 "Invocation of the exception_action handler installed on $self did *not*"
1078 .' result in an exception. DBIx::Class is unable to function without a reliable'
118b2c36 1079 .' exception mechanism, ensure your exception_action does not hide exceptions'
e240b8ba 1080 ." (original error: $args[0])"
1081 );
1082 }
1083 else {
1084 carp_unique (
1085 "The exception_action handler installed on $self returned false instead"
1086 .' of throwing an exception. This behavior has been deprecated, adjust your'
7cb35852 1087 .' handler to always rethrow the supplied error'
e240b8ba 1088 );
1089 }
7cb35852 1090
118b2c36 1091 1;
7cb35852 1092 }
7704dbc9 1093 catch {
1094 # We call this to get the necessary warnings emitted and disregard the RV
1095 # as it's definitely an exception if we got as far as this catch{} block
1096 is_exception(
1097 $args[0] = $_
1098 );
1099 };
f9080e45 1100
118b2c36 1101 # Done guarding against https://github.com/PerlDancer/Dancer2/issues/1125
1102 $guard_disarmed = 1;
c3e9f718 1103 }
1104
e240b8ba 1105 DBIx::Class::Exception->throw( $args[0], $self->stacktrace );
701da8c4 1106}
1107
dfccde48 1108=head2 deploy
1c339d71 1109
82b01c38 1110=over 4
1111
10976519 1112=item Arguments: \%sqlt_args, $dir
82b01c38 1113
1114=back
1115
1116Attempts to deploy the schema to the current storage using L<SQL::Translator>.
ec6704d4 1117
10976519 1118See L<SQL::Translator/METHODS> for a list of values for C<\%sqlt_args>.
1119The most common value for this would be C<< { add_drop_table => 1 } >>
1120to have the SQL produced include a C<DROP TABLE> statement for each table
b5d783cd 1121created. For quoting purposes supply C<quote_identifiers>.
51bace1c 1122
fd323bf1 1123Additionally, the DBIx::Class parser accepts a C<sources> parameter as a hash
1124ref or an array ref, containing a list of source to deploy. If present, then
0e2c6809 1125only the sources listed will get deployed. Furthermore, you can use the
1126C<add_fk_index> parser parameter to prevent the parser from creating an index for each
1127FK.
499adf63 1128
1c339d71 1129=cut
1130
1131sub deploy {
6e73ac25 1132 my ($self, $sqltargs, $dir) = @_;
1c339d71 1133 $self->throw_exception("Can't deploy without storage") unless $self->storage;
6e73ac25 1134 $self->storage->deploy($self, undef, $sqltargs, $dir);
1c339d71 1135}
1136
0e0ce6c1 1137=head2 deployment_statements
1138
1139=over 4
1140
10976519 1141=item Arguments: See L<DBIx::Class::Storage::DBI/deployment_statements>
0e0ce6c1 1142
fb13a49f 1143=item Return Value: $listofstatements
829517d4 1144
0e0ce6c1 1145=back
1146
10976519 1147A convenient shortcut to
1148C<< $self->storage->deployment_statements($self, @args) >>.
5529838f 1149Returns the statements used by L</deploy> and
1150L<DBIx::Class::Storage/deploy>.
0e0ce6c1 1151
1152=cut
1153
1154sub deployment_statements {
7ad93f5a 1155 my $self = shift;
0e0ce6c1 1156
1157 $self->throw_exception("Can't generate deployment statements without a storage")
1158 if not $self->storage;
1159
7ad93f5a 1160 $self->storage->deployment_statements($self, @_);
0e0ce6c1 1161}
1162
6dfbe2f8 1163=head2 create_ddl_dir
c0f61310 1164
1165=over 4
1166
10976519 1167=item Arguments: See L<DBIx::Class::Storage::DBI/create_ddl_dir>
c0f61310 1168
1169=back
1170
fd323bf1 1171A convenient shortcut to
10976519 1172C<< $self->storage->create_ddl_dir($self, @args) >>.
c9d2e0a2 1173
10976519 1174Creates an SQL file based on the Schema, for each of the specified
1175database types, in the given directory.
c9d2e0a2 1176
c0f61310 1177=cut
1178
6e73ac25 1179sub create_ddl_dir {
e673f011 1180 my $self = shift;
1181
1182 $self->throw_exception("Can't create_ddl_dir without storage") unless $self->storage;
1183 $self->storage->create_ddl_dir($self, @_);
1184}
1185
e63a82f7 1186=head2 ddl_filename
9b83fccd 1187
c9d2e0a2 1188=over 4
1189
99a74c4a 1190=item Arguments: $database-type, $version, $directory, $preversion
c9d2e0a2 1191
fb13a49f 1192=item Return Value: $normalised_filename
829517d4 1193
c9d2e0a2 1194=back
1195
99a74c4a 1196 my $filename = $table->ddl_filename($type, $version, $dir, $preversion)
c9d2e0a2 1197
1198This method is called by C<create_ddl_dir> to compose a file name out of
1199the supplied directory, database type and version number. The default file
1200name format is: C<$dir$schema-$version-$type.sql>.
9b83fccd 1201
c9d2e0a2 1202You may override this method in your schema if you wish to use a different
1203format.
9b83fccd 1204
1acfef8e 1205 WARNING
1206
1207 Prior to DBIx::Class version 0.08100 this method had a different signature:
1208
1209 my $filename = $table->ddl_filename($type, $dir, $version, $preversion)
1210
1211 In recent versions variables $dir and $version were reversed in order to
fd323bf1 1212 bring the signature in line with other Schema/Storage methods. If you
1acfef8e 1213 really need to maintain backward compatibility, you can do the following
1214 in any overriding methods:
1215
1216 ($dir, $version) = ($version, $dir) if ($DBIx::Class::VERSION < 0.08100);
1217
9b83fccd 1218=cut
1219
6e73ac25 1220sub ddl_filename {
99a74c4a 1221 my ($self, $type, $version, $dir, $preversion) = @_;
e673f011 1222
aea59b74 1223 $version = "$preversion-$version" if $preversion;
d4daee7b 1224
aea59b74 1225 my $class = blessed($self) || $self;
1226 $class =~ s/::/-/g;
1227
aff5e9c1 1228 return "$dir/$class-$version-$type.sql";
e673f011 1229}
1230
4146e3da 1231=head2 thaw
1232
fd323bf1 1233Provided as the recommended way of thawing schema objects. You can call
4146e3da 1234C<Storable::thaw> directly if you wish, but the thawed objects will not have a
48580715 1235reference to any schema, so are rather useless.
4146e3da 1236
1237=cut
1238
1239sub thaw {
1240 my ($self, $obj) = @_;
1241 local $DBIx::Class::ResultSourceHandle::thaw_schema = $self;
1242 return Storable::thaw($obj);
1243}
1244
1245=head2 freeze
1246
5529838f 1247This doesn't actually do anything beyond calling L<nfreeze|Storable/SYNOPSIS>,
1248it is just provided here for symmetry.
4146e3da 1249
d2f3e87b 1250=cut
1251
4146e3da 1252sub freeze {
26148d36 1253 return Storable::nfreeze($_[1]);
4146e3da 1254}
1255
1256=head2 dclone
1257
1477a478 1258=over 4
1259
1260=item Arguments: $object
1261
1262=item Return Value: dcloned $object
1263
1264=back
1265
9e9ecfda 1266Recommended way of dcloning L<DBIx::Class::Row> and L<DBIx::Class::ResultSet>
1267objects so their references to the schema object
1268(which itself is B<not> cloned) are properly maintained.
4146e3da 1269
1270=cut
1271
1272sub dclone {
1273 my ($self, $obj) = @_;
1274 local $DBIx::Class::ResultSourceHandle::thaw_schema = $self;
1275 return Storable::dclone($obj);
1276}
1277
93e4d41a 1278=head2 schema_version
1279
829517d4 1280Returns the current schema class' $VERSION in a normalised way.
93e4d41a 1281
1282=cut
1283
1284sub schema_version {
1285 my ($self) = @_;
1286 my $class = ref($self)||$self;
1287
1288 # does -not- use $schema->VERSION
1289 # since that varies in results depending on if version.pm is installed, and if
1290 # so the perl or XS versions. If you want this to change, bug the version.pm
1291 # author to make vpp and vxs behave the same.
1292
1293 my $version;
1294 {
1295 no strict 'refs';
1296 $version = ${"${class}::VERSION"};
1297 }
1298 return $version;
1299}
1300
829517d4 1301
1302=head2 register_class
1303
1304=over 4
1305
fb13a49f 1306=item Arguments: $source_name, $component_class
829517d4 1307
1308=back
1309
fd323bf1 1310This 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 1311
1312You will only need this method if you have your Result classes in
1313files which are not named after the packages (or all in the same
1314file). You may also need it to register classes at runtime.
1315
1316Registers a class which isa DBIx::Class::ResultSourceProxy. Equivalent to
1317calling:
1318
fb13a49f 1319 $schema->register_source($source_name, $component_class->result_source_instance);
829517d4 1320
1321=cut
1322
1323sub register_class {
fb13a49f 1324 my ($self, $source_name, $to_register) = @_;
1325 $self->register_source($source_name => $to_register->result_source_instance);
829517d4 1326}
1327
1328=head2 register_source
1329
1330=over 4
1331
fb13a49f 1332=item Arguments: $source_name, L<$result_source|DBIx::Class::ResultSource>
829517d4 1333
1334=back
1335
1336This method is called by L</register_class>.
1337
1338Registers the L<DBIx::Class::ResultSource> in the schema with the given
fb13a49f 1339source name.
829517d4 1340
1341=cut
1342
dee99c24 1343sub register_source { shift->_register_source(@_) }
829517d4 1344
98cabed3 1345=head2 unregister_source
1346
1347=over 4
1348
fb13a49f 1349=item Arguments: $source_name
98cabed3 1350
1351=back
1352
fb13a49f 1353Removes the L<DBIx::Class::ResultSource> from the schema for the given source name.
98cabed3 1354
1355=cut
1356
dee99c24 1357sub unregister_source { shift->_unregister_source(@_) }
98cabed3 1358
829517d4 1359=head2 register_extra_source
1360
1361=over 4
1362
fb13a49f 1363=item Arguments: $source_name, L<$result_source|DBIx::Class::ResultSource>
829517d4 1364
1365=back
1366
fd323bf1 1367As L</register_source> but should be used if the result class already
829517d4 1368has a source and you want to register an extra one.
1369
1370=cut
1371
dee99c24 1372sub register_extra_source { shift->_register_source(@_, { extra => 1 }) }
829517d4 1373
1374sub _register_source {
fb13a49f 1375 my ($self, $source_name, $source, $params) = @_;
829517d4 1376
fb13a49f 1377 $source = $source->new({ %$source, source_name => $source_name });
dee99c24 1378
2461ae19 1379 $source->schema($self);
6298a324 1380 weaken $source->{schema} if ref($self);
2461ae19 1381
829517d4 1382 my %reg = %{$self->source_registrations};
fb13a49f 1383 $reg{$source_name} = $source;
829517d4 1384 $self->source_registrations(\%reg);
1385
dee99c24 1386 return $source if $params->{extra};
1387
1388 my $rs_class = $source->result_class;
ddcc02d1 1389 if ($rs_class and my $rsrc = dbic_internal_try { $rs_class->result_source_instance } ) {
dee99c24 1390 my %map = %{$self->class_mappings};
1391 if (
1392 exists $map{$rs_class}
1393 and
fb13a49f 1394 $map{$rs_class} ne $source_name
dee99c24 1395 and
1396 $rsrc ne $_[2] # orig_source
1397 ) {
1398 carp
1399 "$rs_class already had a registered source which was replaced by this call. "
1400 . 'Perhaps you wanted register_extra_source(), though it is more likely you did '
1401 . 'something wrong.'
1402 ;
1403 }
1404
fb13a49f 1405 $map{$rs_class} = $source_name;
dee99c24 1406 $self->class_mappings(\%map);
829517d4 1407 }
dee99c24 1408
1409 return $source;
829517d4 1410}
1411
a4367b26 1412my $global_phase_destroy;
1413sub DESTROY {
e1d9e578 1414 ### NO detected_reinvoked_destructor check
3d56e026 1415 ### This code very much relies on being called multuple times
1416
a4367b26 1417 return if $global_phase_destroy ||= in_global_destruction;
66917da3 1418
a4367b26 1419 my $self = shift;
1420 my $srcs = $self->source_registrations;
1421
fb13a49f 1422 for my $source_name (keys %$srcs) {
a4367b26 1423 # find first source that is not about to be GCed (someone other than $self
1424 # holds a reference to it) and reattach to it, weakening our own link
1425 #
1426 # during global destruction (if we have not yet bailed out) this should throw
1427 # which will serve as a signal to not try doing anything else
1428 # however beware - on older perls the exception seems randomly untrappable
1429 # due to some weird race condition during thread joining :(((
dac7972a 1430 if (length ref $srcs->{$source_name} and refcount($srcs->{$source_name}) > 1) {
5c33c8be 1431 local $SIG{__DIE__} if $SIG{__DIE__};
a4367b26 1432 local $@;
1433 eval {
fb13a49f 1434 $srcs->{$source_name}->schema($self);
1435 weaken $srcs->{$source_name};
a4367b26 1436 1;
1437 } or do {
1438 $global_phase_destroy = 1;
1439 };
1440
1441 last;
50261284 1442 }
1443 }
d52fc26d 1444
1445 # Dummy NEXTSTATE ensuring the all temporaries on the stack are garbage
1446 # collected before leaving this scope. Depending on the code above, this
1447 # may very well be just a preventive measure guarding future modifications
1448 undef;
50261284 1449}
1450
829517d4 1451sub _unregister_source {
fb13a49f 1452 my ($self, $source_name) = @_;
fd323bf1 1453 my %reg = %{$self->source_registrations};
829517d4 1454
fb13a49f 1455 my $source = delete $reg{$source_name};
829517d4 1456 $self->source_registrations(\%reg);
1457 if ($source->result_class) {
1458 my %map = %{$self->class_mappings};
1459 delete $map{$source->result_class};
1460 $self->class_mappings(\%map);
1461 }
1462}
1463
1464
1465=head2 compose_connection (DEPRECATED)
1466
1467=over 4
1468
1469=item Arguments: $target_namespace, @db_info
1470
1471=item Return Value: $new_schema
1472
1473=back
1474
1475DEPRECATED. You probably wanted compose_namespace.
1476
1477Actually, you probably just wanted to call connect.
1478
1479=begin hidden
1480
1481(hidden due to deprecation)
1482
1483Calls L<DBIx::Class::Schema/"compose_namespace"> to the target namespace,
1484calls L<DBIx::Class::Schema/connection> with @db_info on the new schema,
1485then injects the L<DBix::Class::ResultSetProxy> component and a
1486resultset_instance classdata entry on all the new classes, in order to support
1487$target_namespaces::$class->search(...) method calls.
1488
1489This is primarily useful when you have a specific need for class method access
1490to a connection. In normal usage it is preferred to call
1491L<DBIx::Class::Schema/connect> and use the resulting schema object to operate
1492on L<DBIx::Class::ResultSet> objects with L<DBIx::Class::Schema/resultset> for
1493more information.
1494
1495=end hidden
1496
1497=cut
1498
e42bbd7f 1499sub compose_connection {
1500 my ($self, $target, @info) = @_;
829517d4 1501
e42bbd7f 1502 carp_once "compose_connection deprecated as of 0.08000"
1503 unless $INC{"DBIx/Class/CDBICompat.pm"};
d4daee7b 1504
ddcc02d1 1505 dbic_internal_try {
63a18cfe 1506 require DBIx::Class::ResultSetProxy;
e42bbd7f 1507 }
1508 catch {
1509 $self->throw_exception
63a18cfe 1510 ("No arguments to load_classes and couldn't load DBIx::Class::ResultSetProxy ($_)")
e42bbd7f 1511 };
d4daee7b 1512
e42bbd7f 1513 if ($self eq $target) {
1514 # Pathological case, largely caused by the docs on early C::M::DBIC::Plain
fb13a49f 1515 foreach my $source_name ($self->sources) {
1516 my $source = $self->source($source_name);
829517d4 1517 my $class = $source->result_class;
63a18cfe 1518 $self->inject_base($class, 'DBIx::Class::ResultSetProxy');
829517d4 1519 $class->mk_classdata(resultset_instance => $source->resultset);
e42bbd7f 1520 $class->mk_classdata(class_resolver => $self);
829517d4 1521 }
e42bbd7f 1522 $self->connection(@info);
1523 return $self;
1524 }
1525
63a18cfe 1526 my $schema = $self->compose_namespace($target, 'DBIx::Class::ResultSetProxy');
8d73fcd4 1527 quote_sub "${target}::schema", '$s', { '$s' => \$schema };
e42bbd7f 1528
1529 $schema->connection(@info);
fb13a49f 1530 foreach my $source_name ($schema->sources) {
1531 my $source = $schema->source($source_name);
e42bbd7f 1532 my $class = $source->result_class;
fb13a49f 1533 #warn "$source_name $class $source ".$source->storage;
e42bbd7f 1534 $class->mk_classdata(result_source_instance => $source);
1535 $class->mk_classdata(resultset_instance => $source->resultset);
1536 $class->mk_classdata(class_resolver => $schema);
1537 }
1538 return $schema;
829517d4 1539}
1540
a2bd3796 1541=head1 FURTHER QUESTIONS?
c2da098a 1542
a2bd3796 1543Check the list of L<additional DBIC resources|DBIx::Class/GETTING HELP/SUPPORT>.
c2da098a 1544
a2bd3796 1545=head1 COPYRIGHT AND LICENSE
c2da098a 1546
a2bd3796 1547This module is free software L<copyright|DBIx::Class/COPYRIGHT AND LICENSE>
1548by the L<DBIx::Class (DBIC) authors|DBIx::Class/AUTHORS>. You can
1549redistribute it and/or modify it under the same terms as the
1550L<DBIx::Class library|DBIx::Class/COPYRIGHT AND LICENSE>.
c2da098a 1551
1552=cut
a2bd3796 1553
15541;