removed configure_sqlt method
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / Schema.pm
CommitLineData
a02675cd 1package DBIx::Class::Schema;
2
3use strict;
4use warnings;
aa562407 5
4981dc70 6use DBIx::Class::Exception;
701da8c4 7use Carp::Clan qw/^DBIx::Class/;
a917fb06 8use Scalar::Util qw/weaken/;
c9d2e0a2 9use File::Spec;
ddc0a6c8 10use Sub::Name ();
7cb86b38 11require Module::Find;
a02675cd 12
41a6f8c0 13use base qw/DBIx::Class/;
a02675cd 14
0dc79249 15__PACKAGE__->mk_classdata('class_mappings' => {});
16__PACKAGE__->mk_classdata('source_registrations' => {});
1e10a11d 17__PACKAGE__->mk_classdata('storage_type' => '::DBI');
d7156e50 18__PACKAGE__->mk_classdata('storage');
82cc0386 19__PACKAGE__->mk_classdata('exception_action');
4b946902 20__PACKAGE__->mk_classdata('stacktrace' => $ENV{DBIC_TRACE} || 0);
e6c747fd 21__PACKAGE__->mk_classdata('default_resultset_attributes' => {});
a02675cd 22
c2da098a 23=head1 NAME
24
25DBIx::Class::Schema - composable schemas
26
27=head1 SYNOPSIS
28
24d67825 29 package Library::Schema;
c2da098a 30 use base qw/DBIx::Class::Schema/;
bab77431 31
829517d4 32 # load all Result classes in Library/Schema/Result/
33 __PACKAGE__->load_namespaces();
c2da098a 34
829517d4 35 package Library::Schema::Result::CD;
03312470 36 use base qw/DBIx::Class/;
829517d4 37 __PACKAGE__->load_components(qw/Core/); # for example
24d67825 38 __PACKAGE__->table('cd');
c2da098a 39
5d9076f2 40 # Elsewhere in your code:
24d67825 41 my $schema1 = Library::Schema->connect(
a3d93194 42 $dsn,
43 $user,
44 $password,
24d67825 45 { AutoCommit => 0 },
a3d93194 46 );
bab77431 47
24d67825 48 my $schema2 = Library::Schema->connect($coderef_returning_dbh);
c2da098a 49
829517d4 50 # fetch objects using Library::Schema::Result::DVD
24d67825 51 my $resultset = $schema1->resultset('DVD')->search( ... );
52 my @dvd_objects = $schema2->resultset('DVD')->search( ... );
c2da098a 53
54=head1 DESCRIPTION
55
a3d93194 56Creates database classes based on a schema. This is the recommended way to
57use L<DBIx::Class> and allows you to use more than one concurrent connection
58with your classes.
429bd4f1 59
03312470 60NB: If you're used to L<Class::DBI> it's worth reading the L</SYNOPSIS>
2053ab2a 61carefully, as DBIx::Class does things a little differently. Note in
03312470 62particular which module inherits off which.
63
829517d4 64=head1 SETUP METHODS
c2da098a 65
829517d4 66=head2 load_namespaces
87c4e602 67
27f01d1f 68=over 4
69
829517d4 70=item Arguments: %options?
27f01d1f 71
72=back
076652e8 73
829517d4 74 __PACKAGE__->load_namespaces();
66d9ef6b 75
829517d4 76 __PACKAGE__->load_namespaces(
77 result_namespace => 'Res',
78 resultset_namespace => 'RSet',
79 default_resultset_class => '+MyDB::Othernamespace::RSet',
80 );
076652e8 81
829517d4 82With no arguments, this method uses L<Module::Find> to load all your
83Result classes from a sub-namespace F<Result> under your Schema class'
84namespace. Eg. With a Schema of I<MyDB::Schema> all files in
85I<MyDB::Schema::Result> are assumed to be Result classes.
c2da098a 86
829517d4 87It also finds all ResultSet classes in the namespace F<ResultSet> and
88loads them into the appropriate Result classes using for you. The
89matching is done by assuming the package name of the ResultSet class
90is the same as that of the Result class.
74b92d9a 91
672687db 92You will be warned if ResultSet classes are discovered for which there
829517d4 93are no matching Result classes like this:
87c4e602 94
829517d4 95 load_namespaces found ResultSet class $classname with no corresponding Result class
27f01d1f 96
829517d4 97If a Result class is found to already have a ResultSet class set using
98L</resultset_class> to some other class, you will be warned like this:
27f01d1f 99
829517d4 100 We found ResultSet class '$rs_class' for '$result', but it seems
101 that you had already set '$result' to use '$rs_set' instead
076652e8 102
829517d4 103Both of the sub-namespaces are configurable if you don't like the defaults,
104via the options C<result_namespace> and C<resultset_namespace>.
076652e8 105
829517d4 106If (and only if) you specify the option C<default_resultset_class>, any found
107Result classes for which we do not find a corresponding
108ResultSet class will have their C<resultset_class> set to
109C<default_resultset_class>.
076652e8 110
829517d4 111All of the namespace and classname options to this method are relative to
112the schema classname by default. To specify a fully-qualified name, prefix
113it with a literal C<+>.
2a4d9487 114
829517d4 115Examples:
2a4d9487 116
829517d4 117 # load My::Schema::Result::CD, My::Schema::Result::Artist,
118 # My::Schema::ResultSet::CD, etc...
119 My::Schema->load_namespaces;
2a4d9487 120
829517d4 121 # Override everything to use ugly names.
122 # In this example, if there is a My::Schema::Res::Foo, but no matching
123 # My::Schema::RSets::Foo, then Foo will have its
124 # resultset_class set to My::Schema::RSetBase
125 My::Schema->load_namespaces(
126 result_namespace => 'Res',
127 resultset_namespace => 'RSets',
128 default_resultset_class => 'RSetBase',
129 );
2a4d9487 130
829517d4 131 # Put things in other namespaces
132 My::Schema->load_namespaces(
133 result_namespace => '+Some::Place::Results',
134 resultset_namespace => '+Another::Place::RSets',
135 );
2a4d9487 136
829517d4 137If you'd like to use multiple namespaces of each type, simply use an arrayref
138of namespaces for that option. In the case that the same result
139(or resultset) class exists in multiple namespaces, the latter entries in
140your list of namespaces will override earlier ones.
2a4d9487 141
829517d4 142 My::Schema->load_namespaces(
143 # My::Schema::Results_C::Foo takes precedence over My::Schema::Results_B::Foo :
144 result_namespace => [ 'Results_A', 'Results_B', 'Results_C' ],
145 resultset_namespace => [ '+Some::Place::RSets', 'RSets' ],
146 );
2a4d9487 147
148=cut
149
829517d4 150# Pre-pends our classname to the given relative classname or
151# class namespace, unless there is a '+' prefix, which will
152# be stripped.
153sub _expand_relative_name {
154 my ($class, $name) = @_;
155 return if !$name;
156 $name = $class . '::' . $name if ! ($name =~ s/^\+//);
157 return $name;
2a4d9487 158}
159
f3405058 160# Finds all modules in the supplied namespace, or if omitted in the
161# namespace of $class. Untaints all findings as they can be assumed
162# to be safe
163sub _findallmod {
164 my $proto = shift;
165 my $ns = shift || ref $proto || $proto;
166
167 my @mods = Module::Find::findallmod($ns);
168
169 # try to untaint module names. mods where this fails
170 # are left alone so we don't have to change the old behavior
171 no locale; # localized \w doesn't untaint expression
172 return map { $_ =~ m/^( (?:\w+::)* \w+ )$/x ? $1 : $_ } @mods;
173}
174
829517d4 175# returns a hash of $shortname => $fullname for every package
176# found in the given namespaces ($shortname is with the $fullname's
177# namespace stripped off)
178sub _map_namespaces {
179 my ($class, @namespaces) = @_;
6eec9003 180
829517d4 181 my @results_hash;
182 foreach my $namespace (@namespaces) {
183 push(
184 @results_hash,
185 map { (substr($_, length "${namespace}::"), $_) }
f3405058 186 $class->_findallmod($namespace)
829517d4 187 );
0dc79249 188 }
27f01d1f 189
829517d4 190 @results_hash;
ea20d0fd 191}
192
829517d4 193sub load_namespaces {
194 my ($class, %args) = @_;
0dc79249 195
829517d4 196 my $result_namespace = delete $args{result_namespace} || 'Result';
197 my $resultset_namespace = delete $args{resultset_namespace} || 'ResultSet';
198 my $default_resultset_class = delete $args{default_resultset_class};
0dc79249 199
829517d4 200 $class->throw_exception('load_namespaces: unknown option(s): '
201 . join(q{,}, map { qq{'$_'} } keys %args))
202 if scalar keys %args;
0dc79249 203
829517d4 204 $default_resultset_class
205 = $class->_expand_relative_name($default_resultset_class);
9b1ba0f2 206
829517d4 207 for my $arg ($result_namespace, $resultset_namespace) {
208 $arg = [ $arg ] if !ref($arg) && $arg;
9b1ba0f2 209
829517d4 210 $class->throw_exception('load_namespaces: namespace arguments must be '
211 . 'a simple string or an arrayref')
212 if ref($arg) ne 'ARRAY';
9b1ba0f2 213
829517d4 214 $_ = $class->_expand_relative_name($_) for (@$arg);
215 }
ea20d0fd 216
829517d4 217 my %results = $class->_map_namespaces(@$result_namespace);
218 my %resultsets = $class->_map_namespaces(@$resultset_namespace);
27f01d1f 219
829517d4 220 my @to_register;
221 {
222 no warnings 'redefine';
223 local *Class::C3::reinitialize = sub { };
224 use warnings 'redefine';
27f01d1f 225
3d27f771 226 # ensure classes are loaded and fetch properly sorted classes
227 $class->ensure_class_loaded($_) foreach(values %results);
228 my @subclass_last = sort { $results{$a}->isa($results{$b}) } keys(%results);
229
230 foreach my $result (@subclass_last) {
829517d4 231 my $result_class = $results{$result};
82b01c38 232
829517d4 233 my $rs_class = delete $resultsets{$result};
234 my $rs_set = $result_class->resultset_class;
3d27f771 235
829517d4 236 if($rs_set && $rs_set ne 'DBIx::Class::ResultSet') {
3d27f771 237 if($rs_class && $rs_class ne $rs_set) {
829517d4 238 warn "We found ResultSet class '$rs_class' for '$result', but it seems "
239 . "that you had already set '$result' to use '$rs_set' instead";
240 }
241 }
242 elsif($rs_class ||= $default_resultset_class) {
243 $class->ensure_class_loaded($rs_class);
244 $result_class->resultset_class($rs_class);
245 }
82b01c38 246
0e6c5d58 247 my $source_name = $result_class->source_name || $result;
248
249 push(@to_register, [ $source_name, $result_class ]);
829517d4 250 }
251 }
ea20d0fd 252
829517d4 253 foreach (sort keys %resultsets) {
254 warn "load_namespaces found ResultSet class $_ with no "
255 . 'corresponding Result class';
256 }
ea20d0fd 257
829517d4 258 Class::C3->reinitialize;
259 $class->register_class(@$_) for (@to_register);
ea20d0fd 260
829517d4 261 return;
ea20d0fd 262}
263
87c4e602 264=head2 load_classes
265
27f01d1f 266=over 4
267
268=item Arguments: @classes?, { $namespace => [ @classes ] }+
269
270=back
076652e8 271
829517d4 272Alternative method to L</load_namespaces> which you should look at
273using if you can.
274
82b01c38 275With no arguments, this method uses L<Module::Find> to find all classes under
276the schema's namespace. Otherwise, this method loads the classes you specify
277(using L<use>), and registers them (using L</"register_class">).
076652e8 278
2053ab2a 279It is possible to comment out classes with a leading C<#>, but note that perl
280will think it's a mistake (trying to use a comment in a qw list), so you'll
281need to add C<no warnings 'qw';> before your load_classes call.
5ce32fc1 282
829517d4 283If any classes found do not appear to be Result class files, you will
284get the following warning:
285
286 Failed to load $comp_class. Can't find source_name method. Is
287 $comp_class really a full DBIC result class? Fix it, move it elsewhere,
288 or make your load_classes call more specific.
289
2053ab2a 290Example:
82b01c38 291
292 My::Schema->load_classes(); # loads My::Schema::CD, My::Schema::Artist,
75d07914 293 # etc. (anything under the My::Schema namespace)
82b01c38 294
295 # loads My::Schema::CD, My::Schema::Artist, Other::Namespace::Producer but
296 # not Other::Namespace::LinerNotes nor My::Schema::Track
297 My::Schema->load_classes(qw/ CD Artist #Track /, {
298 Other::Namespace => [qw/ Producer #LinerNotes /],
299 });
300
076652e8 301=cut
302
a02675cd 303sub load_classes {
5ce32fc1 304 my ($class, @params) = @_;
bab77431 305
5ce32fc1 306 my %comps_for;
bab77431 307
5ce32fc1 308 if (@params) {
309 foreach my $param (@params) {
310 if (ref $param eq 'ARRAY') {
311 # filter out commented entries
312 my @modules = grep { $_ !~ /^#/ } @$param;
bab77431 313
5ce32fc1 314 push (@{$comps_for{$class}}, @modules);
315 }
316 elsif (ref $param eq 'HASH') {
317 # more than one namespace possible
318 for my $comp ( keys %$param ) {
319 # filter out commented entries
320 my @modules = grep { $_ !~ /^#/ } @{$param->{$comp}};
321
322 push (@{$comps_for{$comp}}, @modules);
323 }
324 }
325 else {
326 # filter out commented entries
327 push (@{$comps_for{$class}}, $param) if $param !~ /^#/;
328 }
329 }
330 } else {
bc0c9800 331 my @comp = map { substr $_, length "${class}::" }
f3405058 332 $class->_findallmod;
5ce32fc1 333 $comps_for{$class} = \@comp;
41a6f8c0 334 }
5ce32fc1 335
e6efde04 336 my @to_register;
337 {
338 no warnings qw/redefine/;
339 local *Class::C3::reinitialize = sub { };
340 foreach my $prefix (keys %comps_for) {
341 foreach my $comp (@{$comps_for{$prefix}||[]}) {
342 my $comp_class = "${prefix}::${comp}";
c037c03a 343 $class->ensure_class_loaded($comp_class);
bab77431 344
89271e56 345 my $snsub = $comp_class->can('source_name');
346 if(! $snsub ) {
347 warn "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.";
348 next;
349 }
350 $comp = $snsub->($comp_class) || $comp;
351
93405cf0 352 push(@to_register, [ $comp, $comp_class ]);
bfb2bd4f 353 }
5ce32fc1 354 }
a02675cd 355 }
e6efde04 356 Class::C3->reinitialize;
357
358 foreach my $to (@to_register) {
359 $class->register_class(@$to);
360 # if $class->can('result_source_instance');
361 }
a02675cd 362}
363
829517d4 364=head2 storage_type
2374c5ff 365
366=over 4
367
829517d4 368=item Arguments: $storage_type|{$storage_type, \%args}
369
370=item Return value: $storage_type|{$storage_type, \%args}
371
372=item Default value: DBIx::Class::Storage::DBI
2374c5ff 373
374=back
375
829517d4 376Set the storage class that will be instantiated when L</connect> is called.
377If the classname starts with C<::>, the prefix C<DBIx::Class::Storage> is
378assumed by L</connect>.
2374c5ff 379
829517d4 380You want to use this to set subclasses of L<DBIx::Class::Storage::DBI>
381in cases where the appropriate subclass is not autodetected, such as
382when dealing with MSSQL via L<DBD::Sybase>, in which case you'd set it
383to C<::DBI::Sybase::MSSQL>.
85bd0538 384
829517d4 385If your storage type requires instantiation arguments, those are
386defined as a second argument in the form of a hashref and the entire
387value needs to be wrapped into an arrayref or a hashref. We support
388both types of refs here in order to play nice with your
389Config::[class] or your choice. See
390L<DBIx::Class::Storage::DBI::Replicated> for an example of this.
0f4ec1d2 391
829517d4 392=head2 exception_action
f017c022 393
829517d4 394=over 4
0f4ec1d2 395
829517d4 396=item Arguments: $code_reference
f017c022 397
829517d4 398=item Return value: $code_reference
85bd0538 399
829517d4 400=item Default value: None
2374c5ff 401
829517d4 402=back
f017c022 403
829517d4 404If C<exception_action> is set for this class/object, L</throw_exception>
405will prefer to call this code reference with the exception as an argument,
406rather than L<DBIx::Class::Exception/throw>.
f017c022 407
829517d4 408Your subroutine should probably just wrap the error in the exception
409object/class of your choosing and rethrow. If, against all sage advice,
410you'd like your C<exception_action> to suppress a particular exception
411completely, simply have it return true.
f017c022 412
829517d4 413Example:
f017c022 414
829517d4 415 package My::Schema;
416 use base qw/DBIx::Class::Schema/;
417 use My::ExceptionClass;
418 __PACKAGE__->exception_action(sub { My::ExceptionClass->throw(@_) });
419 __PACKAGE__->load_classes;
2374c5ff 420
829517d4 421 # or:
422 my $schema_obj = My::Schema->connect( .... );
423 $schema_obj->exception_action(sub { My::ExceptionClass->throw(@_) });
0f4ec1d2 424
829517d4 425 # suppress all exceptions, like a moron:
426 $schema_obj->exception_action(sub { 1 });
25fb14bd 427
829517d4 428=head2 stacktrace
f017c022 429
829517d4 430=over 4
2374c5ff 431
829517d4 432=item Arguments: boolean
2374c5ff 433
829517d4 434=back
2374c5ff 435
829517d4 436Whether L</throw_exception> should include stack trace information.
437Defaults to false normally, but defaults to true if C<$ENV{DBIC_TRACE}>
438is true.
0f4ec1d2 439
829517d4 440=head2 sqlt_deploy_hook
0f4ec1d2 441
829517d4 442=over
0f4ec1d2 443
829517d4 444=item Arguments: $sqlt_schema
2374c5ff 445
829517d4 446=back
2374c5ff 447
829517d4 448An optional sub which you can declare in your own Schema class that will get
449passed the L<SQL::Translator::Schema> object when you deploy the schema via
450L</create_ddl_dir> or L</deploy>.
0f4ec1d2 451
829517d4 452For an example of what you can do with this, see
453L<DBIx::Class::Manual::Cookbook/Adding Indexes And Functions To Your SQL>.
fdcd8145 454
2d7d8459 455Note that sqlt_deploy_hook is called by L</deployment_statements>, which in turn
456is called before L</deploy>. Therefore the hook can be used only to manipulate
457the L<SQL::Translator::Schema> object before it is turned into SQL fed to the
458database. If you want to execute post-deploy statements which can not be generated
459by L<SQL::Translator>, the currently suggested method is to overload L</deploy>
460and use L<dbh_do|DBIx::Class::Storage::DBI/dbh_do>.
461
829517d4 462=head1 METHODS
2374c5ff 463
829517d4 464=head2 connect
87c4e602 465
27f01d1f 466=over 4
467
829517d4 468=item Arguments: @connectinfo
429bd4f1 469
d601dc88 470=item Return Value: $new_schema
27f01d1f 471
472=back
076652e8 473
829517d4 474Creates and returns a new Schema object. The connection info set on it
475is used to create a new instance of the storage backend and set it on
476the Schema object.
1c133e22 477
829517d4 478See L<DBIx::Class::Storage::DBI/"connect_info"> for DBI-specific
5d52945a 479syntax on the C<@connectinfo> argument, or L<DBIx::Class::Storage> in
829517d4 480general.
1c133e22 481
5d52945a 482Note that C<connect_info> expects an arrayref of arguments, but
483C<connect> does not. C<connect> wraps it's arguments in an arrayref
484before passing them to C<connect_info>.
485
076652e8 486=cut
487
829517d4 488sub connect { shift->clone->connection(@_) }
e678398e 489
829517d4 490=head2 resultset
77254782 491
27f01d1f 492=over 4
493
829517d4 494=item Arguments: $source_name
82b01c38 495
829517d4 496=item Return Value: $resultset
27f01d1f 497
498=back
13765dad 499
829517d4 500 my $rs = $schema->resultset('DVD');
82b01c38 501
829517d4 502Returns the L<DBIx::Class::ResultSet> object for the registered source
503name.
77254782 504
505=cut
506
829517d4 507sub resultset {
508 my ($self, $moniker) = @_;
509 return $self->source($moniker)->resultset;
b7951443 510}
511
829517d4 512=head2 sources
6b43ba5f 513
514=over 4
515
829517d4 516=item Return Value: @source_names
6b43ba5f 517
518=back
519
829517d4 520 my @source_names = $schema->sources;
6b43ba5f 521
829517d4 522Lists names of all the sources registered on this Schema object.
6b43ba5f 523
829517d4 524=cut
161fb223 525
829517d4 526sub sources { return keys %{shift->source_registrations}; }
106d5f3b 527
829517d4 528=head2 source
87c4e602 529
27f01d1f 530=over 4
531
829517d4 532=item Arguments: $source_name
66d9ef6b 533
829517d4 534=item Return Value: $result_source
27f01d1f 535
536=back
82b01c38 537
829517d4 538 my $source = $schema->source('Book');
85f78622 539
829517d4 540Returns the L<DBIx::Class::ResultSource> object for the registered
541source name.
66d9ef6b 542
543=cut
544
829517d4 545sub source {
546 my ($self, $moniker) = @_;
547 my $sreg = $self->source_registrations;
548 return $sreg->{$moniker} if exists $sreg->{$moniker};
549
550 # if we got here, they probably passed a full class name
551 my $mapped = $self->class_mappings->{$moniker};
552 $self->throw_exception("Can't find source for ${moniker}")
553 unless $mapped && exists $sreg->{$mapped};
554 return $sreg->{$mapped};
161fb223 555}
556
829517d4 557=head2 class
87c4e602 558
27f01d1f 559=over 4
560
829517d4 561=item Arguments: $source_name
66d9ef6b 562
829517d4 563=item Return Value: $classname
27f01d1f 564
565=back
82b01c38 566
829517d4 567 my $class = $schema->class('CD');
568
569Retrieves the Result class name for the given source name.
66d9ef6b 570
571=cut
572
829517d4 573sub class {
574 my ($self, $moniker) = @_;
575 return $self->source($moniker)->result_class;
576}
08b515f1 577
4012acd8 578=head2 txn_do
08b515f1 579
4012acd8 580=over 4
08b515f1 581
4012acd8 582=item Arguments: C<$coderef>, @coderef_args?
08b515f1 583
4012acd8 584=item Return Value: The return value of $coderef
08b515f1 585
4012acd8 586=back
08b515f1 587
4012acd8 588Executes C<$coderef> with (optional) arguments C<@coderef_args> atomically,
589returning its result (if any). Equivalent to calling $schema->storage->txn_do.
590See L<DBIx::Class::Storage/"txn_do"> for more information.
08b515f1 591
4012acd8 592This interface is preferred over using the individual methods L</txn_begin>,
593L</txn_commit>, and L</txn_rollback> below.
08b515f1 594
281719d2 595WARNING: If you are connected with C<AutoCommit => 0> the transaction is
596considered nested, and you will still need to call L</txn_commit> to write your
597changes when appropriate. You will also want to connect with C<auto_savepoint =>
5981> to get partial rollback to work, if the storage driver for your database
599supports it.
600
601Connecting with C<AutoCommit => 1> is recommended.
602
4012acd8 603=cut
08b515f1 604
4012acd8 605sub txn_do {
606 my $self = shift;
08b515f1 607
4012acd8 608 $self->storage or $self->throw_exception
609 ('txn_do called on $schema without storage');
08b515f1 610
4012acd8 611 $self->storage->txn_do(@_);
612}
66d9ef6b 613
89028f42 614=head2 txn_scope_guard (EXPERIMENTAL)
75c8a7ab 615
89028f42 616Runs C<txn_scope_guard> on the schema's storage. See
617L<DBIx::Class::Storage/txn_scope_guard>.
75c8a7ab 618
b85be4c1 619=cut
620
1bc193ac 621sub txn_scope_guard {
622 my $self = shift;
623
624 $self->storage or $self->throw_exception
625 ('txn_scope_guard called on $schema without storage');
626
627 $self->storage->txn_scope_guard(@_);
628}
629
4012acd8 630=head2 txn_begin
a62cf8d4 631
4012acd8 632Begins a transaction (does nothing if AutoCommit is off). Equivalent to
633calling $schema->storage->txn_begin. See
634L<DBIx::Class::Storage::DBI/"txn_begin"> for more information.
27f01d1f 635
4012acd8 636=cut
82b01c38 637
4012acd8 638sub txn_begin {
639 my $self = shift;
27f01d1f 640
4012acd8 641 $self->storage or $self->throw_exception
642 ('txn_begin called on $schema without storage');
a62cf8d4 643
4012acd8 644 $self->storage->txn_begin;
645}
a62cf8d4 646
4012acd8 647=head2 txn_commit
a62cf8d4 648
4012acd8 649Commits the current transaction. Equivalent to calling
650$schema->storage->txn_commit. See L<DBIx::Class::Storage::DBI/"txn_commit">
651for more information.
a62cf8d4 652
4012acd8 653=cut
a62cf8d4 654
4012acd8 655sub txn_commit {
656 my $self = shift;
a62cf8d4 657
4012acd8 658 $self->storage or $self->throw_exception
659 ('txn_commit called on $schema without storage');
a62cf8d4 660
4012acd8 661 $self->storage->txn_commit;
662}
70634260 663
4012acd8 664=head2 txn_rollback
a62cf8d4 665
4012acd8 666Rolls back the current transaction. Equivalent to calling
667$schema->storage->txn_rollback. See
668L<DBIx::Class::Storage::DBI/"txn_rollback"> for more information.
a62cf8d4 669
670=cut
671
4012acd8 672sub txn_rollback {
673 my $self = shift;
a62cf8d4 674
19630353 675 $self->storage or $self->throw_exception
4012acd8 676 ('txn_rollback called on $schema without storage');
a62cf8d4 677
4012acd8 678 $self->storage->txn_rollback;
a62cf8d4 679}
680
829517d4 681=head2 storage
66d9ef6b 682
829517d4 683 my $storage = $schema->storage;
04786a4c 684
829517d4 685Returns the L<DBIx::Class::Storage> object for this Schema. Grab this
686if you want to turn on SQL statement debugging at runtime, or set the
687quote character. For the default storage, the documentation can be
688found in L<DBIx::Class::Storage::DBI>.
66d9ef6b 689
87c4e602 690=head2 populate
691
27f01d1f 692=over 4
693
16c5f7d3 694=item Arguments: $source_name, \@data;
27f01d1f 695
829517d4 696=item Return value: \@$objects | nothing
697
27f01d1f 698=back
a37a4697 699
16c5f7d3 700Pass this method a resultsource name, and an arrayref of
701arrayrefs. The arrayrefs should contain a list of column names,
702followed by one or many sets of matching data for the given columns.
703
744076d8 704In void context, C<insert_bulk> in L<DBIx::Class::Storage::DBI> is used
705to insert the data, as this is a fast method. However, insert_bulk currently
706assumes that your datasets all contain the same type of values, using scalar
707references in a column in one row, and not in another will probably not work.
708
709Otherwise, each set of data is inserted into the database using
16c5f7d3 710L<DBIx::Class::ResultSet/create>, and a arrayref of the resulting row
711objects is returned.
82b01c38 712
713i.e.,
a37a4697 714
24d67825 715 $schema->populate('Artist', [
716 [ qw/artistid name/ ],
717 [ 1, 'Popular Band' ],
718 [ 2, 'Indie Band' ],
a62cf8d4 719 ...
720 ]);
5a93e138 721
722Since wantarray context is basically the same as looping over $rs->create(...)
723you won't see any performance benefits and in this case the method is more for
724convenience. Void context sends the column information directly to storage
725using <DBI>s bulk insert method. So the performance will be much better for
726storages that support this method.
727
728Because of this difference in the way void context inserts rows into your
729database you need to note how this will effect any loaded components that
730override or augment insert. For example if you are using a component such
731as L<DBIx::Class::UUIDColumns> to populate your primary keys you MUST use
732wantarray context if you want the PKs automatically created.
a37a4697 733
734=cut
735
736sub populate {
737 my ($self, $name, $data) = @_;
c4e67d31 738 if(my $rs = $self->resultset($name)) {
739 if(defined wantarray) {
740 return $rs->populate($data);
741 } else {
742 $rs->populate($data);
54e0bd06 743 }
c4e67d31 744 } else {
745 $self->throw_exception("$name is not a resultset");
8b93a938 746 }
a37a4697 747}
748
829517d4 749=head2 connection
750
751=over 4
752
753=item Arguments: @args
754
755=item Return Value: $new_schema
756
757=back
758
759Similar to L</connect> except sets the storage object and connection
760data in-place on the Schema class. You should probably be calling
761L</connect> to get a proper Schema object instead.
762
763
764=cut
765
766sub connection {
767 my ($self, @info) = @_;
768 return $self if !@info && $self->storage;
769
770 my ($storage_class, $args) = ref $self->storage_type ?
771 ($self->_normalize_storage_type($self->storage_type),{}) : ($self->storage_type, {});
772
773 $storage_class = 'DBIx::Class::Storage'.$storage_class
774 if $storage_class =~ m/^::/;
775 eval "require ${storage_class};";
776 $self->throw_exception(
777 "No arguments to load_classes and couldn't load ${storage_class} ($@)"
778 ) if $@;
779 my $storage = $storage_class->new($self=>$args);
780 $storage->connect_info(\@info);
781 $self->storage($storage);
782 return $self;
783}
784
785sub _normalize_storage_type {
786 my ($self, $storage_type) = @_;
787 if(ref $storage_type eq 'ARRAY') {
788 return @$storage_type;
789 } elsif(ref $storage_type eq 'HASH') {
790 return %$storage_type;
791 } else {
792 $self->throw_exception('Unsupported REFTYPE given: '. ref $storage_type);
793 }
794}
795
796=head2 compose_namespace
82cc0386 797
798=over 4
799
829517d4 800=item Arguments: $target_namespace, $additional_base_class?
801
802=item Retur Value: $new_schema
803
804=back
805
806For each L<DBIx::Class::ResultSource> in the schema, this method creates a
807class in the target namespace (e.g. $target_namespace::CD,
808$target_namespace::Artist) that inherits from the corresponding classes
809attached to the current schema.
810
811It also attaches a corresponding L<DBIx::Class::ResultSource> object to the
812new $schema object. If C<$additional_base_class> is given, the new composed
813classes will inherit from first the corresponding classe from the current
814schema then the base class.
815
816For example, for a schema with My::Schema::CD and My::Schema::Artist classes,
817
818 $schema->compose_namespace('My::DB', 'Base::Class');
819 print join (', ', @My::DB::CD::ISA) . "\n";
820 print join (', ', @My::DB::Artist::ISA) ."\n";
821
822will produce the output
823
824 My::Schema::CD, Base::Class
825 My::Schema::Artist, Base::Class
826
827=cut
828
829# this might be oversimplified
830# sub compose_namespace {
831# my ($self, $target, $base) = @_;
832
833# my $schema = $self->clone;
834# foreach my $moniker ($schema->sources) {
835# my $source = $schema->source($moniker);
836# my $target_class = "${target}::${moniker}";
837# $self->inject_base(
838# $target_class => $source->result_class, ($base ? $base : ())
839# );
840# $source->result_class($target_class);
841# $target_class->result_source_instance($source)
842# if $target_class->can('result_source_instance');
843# $schema->register_source($moniker, $source);
844# }
845# return $schema;
846# }
847
848sub compose_namespace {
849 my ($self, $target, $base) = @_;
850 my $schema = $self->clone;
851 {
852 no warnings qw/redefine/;
853# local *Class::C3::reinitialize = sub { };
854 foreach my $moniker ($schema->sources) {
855 my $source = $schema->source($moniker);
856 my $target_class = "${target}::${moniker}";
857 $self->inject_base(
858 $target_class => $source->result_class, ($base ? $base : ())
859 );
860 $source->result_class($target_class);
861 $target_class->result_source_instance($source)
862 if $target_class->can('result_source_instance');
863 $schema->register_source($moniker, $source);
864 }
865 }
866# Class::C3->reinitialize();
867 {
868 no strict 'refs';
869 no warnings 'redefine';
870 foreach my $meth (qw/class source resultset/) {
871 *{"${target}::${meth}"} =
872 sub { shift->schema->$meth(@_) };
873 }
874 }
875 return $schema;
876}
877
878sub setup_connection_class {
879 my ($class, $target, @info) = @_;
880 $class->inject_base($target => 'DBIx::Class::DB');
881 #$target->load_components('DB');
882 $target->connection(@info);
883}
884
885=head2 svp_begin
886
887Creates a new savepoint (does nothing outside a transaction).
888Equivalent to calling $schema->storage->svp_begin. See
889L<DBIx::Class::Storage::DBI/"svp_begin"> for more information.
890
891=cut
892
893sub svp_begin {
894 my ($self, $name) = @_;
895
896 $self->storage or $self->throw_exception
897 ('svp_begin called on $schema without storage');
898
899 $self->storage->svp_begin($name);
900}
901
902=head2 svp_release
903
904Releases a savepoint (does nothing outside a transaction).
905Equivalent to calling $schema->storage->svp_release. See
906L<DBIx::Class::Storage::DBI/"svp_release"> for more information.
907
908=cut
909
910sub svp_release {
911 my ($self, $name) = @_;
912
913 $self->storage or $self->throw_exception
914 ('svp_release called on $schema without storage');
82cc0386 915
829517d4 916 $self->storage->svp_release($name);
917}
82cc0386 918
829517d4 919=head2 svp_rollback
db5dc233 920
829517d4 921Rollback to a savepoint (does nothing outside a transaction).
922Equivalent to calling $schema->storage->svp_rollback. See
923L<DBIx::Class::Storage::DBI/"svp_rollback"> for more information.
82cc0386 924
829517d4 925=cut
82cc0386 926
829517d4 927sub svp_rollback {
928 my ($self, $name) = @_;
82cc0386 929
829517d4 930 $self->storage or $self->throw_exception
931 ('svp_rollback called on $schema without storage');
82cc0386 932
829517d4 933 $self->storage->svp_rollback($name);
934}
db5dc233 935
829517d4 936=head2 clone
613397e7 937
84c5863b 938=over 4
613397e7 939
829517d4 940=item Return Value: $new_schema
613397e7 941
942=back
943
829517d4 944Clones the schema and its associated result_source objects and returns the
945copy.
946
947=cut
948
949sub clone {
950 my ($self) = @_;
951 my $clone = { (ref $self ? %$self : ()) };
952 bless $clone, (ref $self || $self);
953
954 $clone->class_mappings({ %{$clone->class_mappings} });
955 $clone->source_registrations({ %{$clone->source_registrations} });
956 foreach my $moniker ($self->sources) {
957 my $source = $self->source($moniker);
958 my $new = $source->new($source);
959 # we use extra here as we want to leave the class_mappings as they are
960 # but overwrite the source_registrations entry with the new source
961 $clone->register_extra_source($moniker => $new);
962 }
963 $clone->storage->set_schema($clone) if $clone->storage;
964 return $clone;
965}
613397e7 966
5160b401 967=head2 throw_exception
701da8c4 968
75d07914 969=over 4
82b01c38 970
ebc77b53 971=item Arguments: $message
82b01c38 972
973=back
974
975Throws an exception. Defaults to using L<Carp::Clan> to report errors from
db5dc233 976user's perspective. See L</exception_action> for details on overriding
4b946902 977this method's behavior. If L</stacktrace> is turned on, C<throw_exception>'s
978default behavior will provide a detailed stack trace.
701da8c4 979
980=cut
981
982sub throw_exception {
82cc0386 983 my $self = shift;
4981dc70 984
985 DBIx::Class::Exception->throw($_[0], $self->stacktrace)
986 if !$self->exception_action || !$self->exception_action->(@_);
701da8c4 987}
988
dfccde48 989=head2 deploy
1c339d71 990
82b01c38 991=over 4
992
6e73ac25 993=item Arguments: $sqlt_args, $dir
82b01c38 994
995=back
996
997Attempts to deploy the schema to the current storage using L<SQL::Translator>.
ec6704d4 998
51bace1c 999See L<SQL::Translator/METHODS> for a list of values for C<$sqlt_args>. The most
1000common value for this would be C<< { add_drop_table => 1, } >> to have the SQL
3e82fc27 1001produced include a DROP TABLE statement for each table created. For quoting
1002purposes use C<producer_options> value with C<quote_table_names> and
1003C<quote_field_names>.
51bace1c 1004
499adf63 1005Additionally, the DBIx::Class parser accepts a C<sources> parameter as a hash
1006ref or an array ref, containing a list of source to deploy. If present, then
0e2c6809 1007only the sources listed will get deployed. Furthermore, you can use the
1008C<add_fk_index> parser parameter to prevent the parser from creating an index for each
1009FK.
499adf63 1010
1c339d71 1011=cut
1012
1013sub deploy {
6e73ac25 1014 my ($self, $sqltargs, $dir) = @_;
1c339d71 1015 $self->throw_exception("Can't deploy without storage") unless $self->storage;
6e73ac25 1016 $self->storage->deploy($self, undef, $sqltargs, $dir);
1c339d71 1017}
1018
0e0ce6c1 1019=head2 deployment_statements
1020
1021=over 4
1022
7ad93f5a 1023=item Arguments: $rdbms_type, $sqlt_args, $dir
0e0ce6c1 1024
829517d4 1025=item Return value: $listofstatements
1026
0e0ce6c1 1027=back
1028
829517d4 1029A convenient shortcut to storage->deployment_statements(). Returns the
1030SQL statements used by L</deploy> and
1031L<DBIx::Class::Schema::Storage/deploy>. C<$rdbms_type> provides the
1032(optional) SQLT (not DBI) database driver name for which the SQL
1033statements are produced. If not supplied, the type is determined by
1034interrogating the current connection. The other two arguments are
1035identical to those of L</deploy>.
0e0ce6c1 1036
1037=cut
1038
1039sub deployment_statements {
7ad93f5a 1040 my $self = shift;
0e0ce6c1 1041
1042 $self->throw_exception("Can't generate deployment statements without a storage")
1043 if not $self->storage;
1044
7ad93f5a 1045 $self->storage->deployment_statements($self, @_);
0e0ce6c1 1046}
1047
c0f61310 1048=head2 create_ddl_dir (EXPERIMENTAL)
1049
1050=over 4
1051
c9d2e0a2 1052=item Arguments: \@databases, $version, $directory, $preversion, $sqlt_args
c0f61310 1053
1054=back
1055
1056Creates an SQL file based on the Schema, for each of the specified
c9d2e0a2 1057database types, in the given directory. Given a previous version number,
1058this will also create a file containing the ALTER TABLE statements to
1059transform the previous schema into the current one. Note that these
1060statements may contain DROP TABLE or DROP COLUMN statements that can
1061potentially destroy data.
1062
1063The file names are created using the C<ddl_filename> method below, please
1064override this method in your schema if you would like a different file
1065name format. For the ALTER file, the same format is used, replacing
1066$version in the name with "$preversion-$version".
1067
0e2c6809 1068See L<DBIx::Class::Schema/deploy> for details of $sqlt_args.
1069
c9d2e0a2 1070If no arguments are passed, then the following default values are used:
1071
1072=over 4
1073
1074=item databases - ['MySQL', 'SQLite', 'PostgreSQL']
1075
b1f9d92e 1076=item version - $schema->schema_version
c9d2e0a2 1077
1078=item directory - './'
1079
1080=item preversion - <none>
1081
1082=back
c0f61310 1083
1084Note that this feature is currently EXPERIMENTAL and may not work correctly
1085across all databases, or fully handle complex relationships.
1086
c9d2e0a2 1087WARNING: Please check all SQL files created, before applying them.
1088
c0f61310 1089=cut
1090
6e73ac25 1091sub create_ddl_dir {
e673f011 1092 my $self = shift;
1093
1094 $self->throw_exception("Can't create_ddl_dir without storage") unless $self->storage;
1095 $self->storage->create_ddl_dir($self, @_);
1096}
1097
e63a82f7 1098=head2 ddl_filename
9b83fccd 1099
c9d2e0a2 1100=over 4
1101
99a74c4a 1102=item Arguments: $database-type, $version, $directory, $preversion
c9d2e0a2 1103
829517d4 1104=item Return value: $normalised_filename
1105
c9d2e0a2 1106=back
1107
99a74c4a 1108 my $filename = $table->ddl_filename($type, $version, $dir, $preversion)
c9d2e0a2 1109
1110This method is called by C<create_ddl_dir> to compose a file name out of
1111the supplied directory, database type and version number. The default file
1112name format is: C<$dir$schema-$version-$type.sql>.
9b83fccd 1113
c9d2e0a2 1114You may override this method in your schema if you wish to use a different
1115format.
9b83fccd 1116
1117=cut
1118
6e73ac25 1119sub ddl_filename {
99a74c4a 1120 my ($self, $type, $version, $dir, $preversion) = @_;
e673f011 1121
99a74c4a 1122 my $filename = ref($self);
1123 $filename =~ s/::/-/g;
1124 $filename = File::Spec->catfile($dir, "$filename-$version-$type.sql");
1125 $filename =~ s/$version/$preversion-$version/ if($preversion);
1126
1127 return $filename;
e673f011 1128}
1129
4146e3da 1130=head2 thaw
1131
829517d4 1132Provided as the recommended way of thawing schema objects. You can call
4146e3da 1133C<Storable::thaw> directly if you wish, but the thawed objects will not have a
1134reference to any schema, so are rather useless
1135
1136=cut
1137
1138sub thaw {
1139 my ($self, $obj) = @_;
1140 local $DBIx::Class::ResultSourceHandle::thaw_schema = $self;
1141 return Storable::thaw($obj);
1142}
1143
1144=head2 freeze
1145
1146This doesn't actualy do anything more than call L<Storable/freeze>, it is just
1147provided here for symetry.
1148
d2f3e87b 1149=cut
1150
4146e3da 1151sub freeze {
1152 return Storable::freeze($_[1]);
1153}
1154
1155=head2 dclone
1156
1157Recommeneded way of dcloning objects. This is needed to properly maintain
1158references to the schema object (which itself is B<not> cloned.)
1159
1160=cut
1161
1162sub dclone {
1163 my ($self, $obj) = @_;
1164 local $DBIx::Class::ResultSourceHandle::thaw_schema = $self;
1165 return Storable::dclone($obj);
1166}
1167
93e4d41a 1168=head2 schema_version
1169
829517d4 1170Returns the current schema class' $VERSION in a normalised way.
93e4d41a 1171
1172=cut
1173
1174sub schema_version {
1175 my ($self) = @_;
1176 my $class = ref($self)||$self;
1177
1178 # does -not- use $schema->VERSION
1179 # since that varies in results depending on if version.pm is installed, and if
1180 # so the perl or XS versions. If you want this to change, bug the version.pm
1181 # author to make vpp and vxs behave the same.
1182
1183 my $version;
1184 {
1185 no strict 'refs';
1186 $version = ${"${class}::VERSION"};
1187 }
1188 return $version;
1189}
1190
829517d4 1191
1192=head2 register_class
1193
1194=over 4
1195
1196=item Arguments: $moniker, $component_class
1197
1198=back
1199
1200This 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.
1201
1202You will only need this method if you have your Result classes in
1203files which are not named after the packages (or all in the same
1204file). You may also need it to register classes at runtime.
1205
1206Registers a class which isa DBIx::Class::ResultSourceProxy. Equivalent to
1207calling:
1208
1209 $schema->register_source($moniker, $component_class->result_source_instance);
1210
1211=cut
1212
1213sub register_class {
1214 my ($self, $moniker, $to_register) = @_;
1215 $self->register_source($moniker => $to_register->result_source_instance);
1216}
1217
1218=head2 register_source
1219
1220=over 4
1221
1222=item Arguments: $moniker, $result_source
1223
1224=back
1225
1226This method is called by L</register_class>.
1227
1228Registers the L<DBIx::Class::ResultSource> in the schema with the given
1229moniker.
1230
1231=cut
1232
1233sub register_source {
1234 my $self = shift;
1235
1236 $self->_register_source(@_);
1237}
1238
1239=head2 register_extra_source
1240
1241=over 4
1242
1243=item Arguments: $moniker, $result_source
1244
1245=back
1246
1247As L</register_source> but should be used if the result class already
1248has a source and you want to register an extra one.
1249
1250=cut
1251
1252sub register_extra_source {
1253 my $self = shift;
1254
1255 $self->_register_source(@_, { extra => 1 });
1256}
1257
1258sub _register_source {
1259 my ($self, $moniker, $source, $params) = @_;
1260
0e6c5d58 1261 $source = $source->new({ %$source, source_name => $moniker });
829517d4 1262
1263 my %reg = %{$self->source_registrations};
1264 $reg{$moniker} = $source;
1265 $self->source_registrations(\%reg);
1266
1267 $source->schema($self);
1268 weaken($source->{schema}) if ref($self);
1269 return if ($params->{extra});
1270
1271 if ($source->result_class) {
1272 my %map = %{$self->class_mappings};
1273 if (exists $map{$source->result_class}) {
1274 warn $source->result_class . ' already has a source, use register_extra_source for additional sources';
1275 }
1276 $map{$source->result_class} = $moniker;
1277 $self->class_mappings(\%map);
1278 }
1279}
1280
1281sub _unregister_source {
1282 my ($self, $moniker) = @_;
1283 my %reg = %{$self->source_registrations};
1284
1285 my $source = delete $reg{$moniker};
1286 $self->source_registrations(\%reg);
1287 if ($source->result_class) {
1288 my %map = %{$self->class_mappings};
1289 delete $map{$source->result_class};
1290 $self->class_mappings(\%map);
1291 }
1292}
1293
1294
1295=head2 compose_connection (DEPRECATED)
1296
1297=over 4
1298
1299=item Arguments: $target_namespace, @db_info
1300
1301=item Return Value: $new_schema
1302
1303=back
1304
1305DEPRECATED. You probably wanted compose_namespace.
1306
1307Actually, you probably just wanted to call connect.
1308
1309=begin hidden
1310
1311(hidden due to deprecation)
1312
1313Calls L<DBIx::Class::Schema/"compose_namespace"> to the target namespace,
1314calls L<DBIx::Class::Schema/connection> with @db_info on the new schema,
1315then injects the L<DBix::Class::ResultSetProxy> component and a
1316resultset_instance classdata entry on all the new classes, in order to support
1317$target_namespaces::$class->search(...) method calls.
1318
1319This is primarily useful when you have a specific need for class method access
1320to a connection. In normal usage it is preferred to call
1321L<DBIx::Class::Schema/connect> and use the resulting schema object to operate
1322on L<DBIx::Class::ResultSet> objects with L<DBIx::Class::Schema/resultset> for
1323more information.
1324
1325=end hidden
1326
1327=cut
1328
1329{
1330 my $warn;
1331
1332 sub compose_connection {
1333 my ($self, $target, @info) = @_;
1334
1335 warn "compose_connection deprecated as of 0.08000"
1336 unless ($INC{"DBIx/Class/CDBICompat.pm"} || $warn++);
1337
1338 my $base = 'DBIx::Class::ResultSetProxy';
1339 eval "require ${base};";
1340 $self->throw_exception
1341 ("No arguments to load_classes and couldn't load ${base} ($@)")
1342 if $@;
1343
1344 if ($self eq $target) {
1345 # Pathological case, largely caused by the docs on early C::M::DBIC::Plain
1346 foreach my $moniker ($self->sources) {
1347 my $source = $self->source($moniker);
1348 my $class = $source->result_class;
1349 $self->inject_base($class, $base);
1350 $class->mk_classdata(resultset_instance => $source->resultset);
1351 $class->mk_classdata(class_resolver => $self);
1352 }
1353 $self->connection(@info);
1354 return $self;
1355 }
1356
1357 my $schema = $self->compose_namespace($target, $base);
1358 {
1359 no strict 'refs';
1360 my $name = join '::', $target, 'schema';
1361 *$name = Sub::Name::subname $name, sub { $schema };
1362 }
1363
1364 $schema->connection(@info);
1365 foreach my $moniker ($schema->sources) {
1366 my $source = $schema->source($moniker);
1367 my $class = $source->result_class;
1368 #warn "$moniker $class $source ".$source->storage;
1369 $class->mk_classdata(result_source_instance => $source);
1370 $class->mk_classdata(resultset_instance => $source->resultset);
1371 $class->mk_classdata(class_resolver => $schema);
1372 }
1373 return $schema;
1374 }
1375}
1376
a02675cd 13771;
c2da098a 1378
c2da098a 1379=head1 AUTHORS
1380
daec44b8 1381Matt S. Trout <mst@shadowcatsystems.co.uk>
c2da098a 1382
1383=head1 LICENSE
1384
1385You may distribute this code under the same terms as Perl itself.
1386
1387=cut