1 package DBIx::Class::Schema;
6 use Carp::Clan qw/^DBIx::Class/;
8 use base qw/DBIx::Class/;
10 __PACKAGE__->mk_classdata('class_mappings' => {});
11 __PACKAGE__->mk_classdata('source_registrations' => {});
12 __PACKAGE__->mk_classdata('storage_type' => '::DBI');
13 __PACKAGE__->mk_classdata('storage');
17 DBIx::Class::Schema - composable schemas
22 use base qw/DBIx::Class::Schema/;
24 # load My::Schema::Foo, My::Schema::Bar, My::Schema::Baz
25 __PACKAGE__->load_classes(qw/Foo Bar Baz/);
27 package My::Schema::Foo;
28 use base qw/DBIx::Class/;
29 __PACKAGE__->load_components(qw/PK::Auto::Pg Core/); # for example
30 __PACKAGE__->table('foo');
32 # Elsewhere in your code:
33 my $schema1 = My::Schema->connect(
40 my $schema2 = My::Schema->connect($coderef_returning_dbh);
42 # fetch objects using My::Schema::Foo
43 my $resultset = $schema1->resultset('Foo')->search( ... );
44 my @objects = $schema2->resultset('Foo')->search( ... );
48 Creates database classes based on a schema. This is the recommended way to
49 use L<DBIx::Class> and allows you to use more than one concurrent connection
52 NB: If you're used to L<Class::DBI> it's worth reading the L</SYNOPSIS>
53 carefully as DBIx::Class does things a little differently. Note in
54 particular which module inherits off which.
60 =head3 Arguments: <moniker> <component_class>
62 Registers a class which isa ResultSourceProxy; equivalent to calling
64 $schema->register_source($moniker, $component_class->result_source_instance);
69 my ($self, $moniker, $to_register) = @_;
70 $self->register_source($moniker => $to_register->result_source_instance);
73 =head2 register_source
75 =head3 Arguments: <moniker> <result source>
77 Registers the result source in the schema with the given moniker
82 my ($self, $moniker, $source) = @_;
83 my %reg = %{$self->source_registrations};
84 $reg{$moniker} = $source;
85 $self->source_registrations(\%reg);
86 $source->schema($self);
87 if ($source->result_class) {
88 my %map = %{$self->class_mappings};
89 $map{$source->result_class} = $moniker;
90 $self->class_mappings(\%map);
96 my $class = $schema->class('Foo');
98 Retrieves the result class name for a given result source
103 my ($self, $moniker) = @_;
104 return $self->source($moniker)->result_class;
109 my $source = $schema->source('Foo');
111 Returns the result source object for the registered name
116 my ($self, $moniker) = @_;
117 my $sreg = $self->source_registrations;
118 return $sreg->{$moniker} if exists $sreg->{$moniker};
120 # if we got here, they probably passed a full class name
121 my $mapped = $self->class_mappings->{$moniker};
122 $self->throw_exception("Can't find source for ${moniker}")
123 unless $mapped && exists $sreg->{$mapped};
124 return $sreg->{$mapped};
129 my @source_monikers = $schema->sources;
131 Returns the source monikers of all source registrations on this schema
135 sub sources { return keys %{shift->source_registrations}; }
139 my $rs = $schema->resultset('Foo');
141 Returns the resultset for the registered moniker
146 my ($self, $moniker) = @_;
147 return $self->source($moniker)->resultset;
152 =head3 Arguments: [<classes>, (<class>, <class>), {<namespace> => [<classes>]}]
154 Uses L<Module::Find> to find all classes under the database class' namespace,
155 or uses the classes you select. Then it loads the component (using L<use>),
156 and registers them (using B<register_class>);
158 It is possible to comment out classes with a leading '#', but note that perl
159 will think it's a mistake (trying to use a comment in a qw list) so you'll
160 need to add "no warnings 'qw';" before your load_classes call.
165 my ($class, @params) = @_;
170 foreach my $param (@params) {
171 if (ref $param eq 'ARRAY') {
172 # filter out commented entries
173 my @modules = grep { $_ !~ /^#/ } @$param;
175 push (@{$comps_for{$class}}, @modules);
177 elsif (ref $param eq 'HASH') {
178 # more than one namespace possible
179 for my $comp ( keys %$param ) {
180 # filter out commented entries
181 my @modules = grep { $_ !~ /^#/ } @{$param->{$comp}};
183 push (@{$comps_for{$comp}}, @modules);
187 # filter out commented entries
188 push (@{$comps_for{$class}}, $param) if $param !~ /^#/;
192 eval "require Module::Find;";
193 $class->throw_exception("No arguments to load_classes and couldn't load".
194 " Module::Find ($@)") if $@;
195 my @comp = map { substr $_, length "${class}::" } Module::Find::findallmod($class);
196 $comps_for{$class} = \@comp;
201 no warnings qw/redefine/;
202 local *Class::C3::reinitialize = sub { };
203 foreach my $prefix (keys %comps_for) {
204 foreach my $comp (@{$comps_for{$prefix}||[]}) {
205 my $comp_class = "${prefix}::${comp}";
206 eval "use $comp_class"; # If it fails, assume the user fixed it
208 die $@ unless $@ =~ /Can't locate/;
210 push(@to_register, [ $comp, $comp_class ]);
214 Class::C3->reinitialize;
216 foreach my $to (@to_register) {
217 $class->register_class(@$to);
218 # if $class->can('result_source_instance');
222 =head2 compose_connection
224 =head3 Arguments: <target> <@db_info>
226 This is the most important method in this class. it takes a target namespace,
227 as well as dbh connection info, and creates a L<DBIx::Class::DB> class as
228 well as subclasses for each of your database classes in this namespace, using
231 It will also setup a ->class method on the target class, which lets you
232 resolve database classes based on the schema component name, for example
234 MyApp::DB->class('Foo') # returns MyApp::DB::Foo,
235 # which ISA MyApp::Schema::Foo
237 This is the recommended API for accessing Schema generated classes, and
238 using it might give you instant advantages with future versions of DBIC.
240 WARNING: Loading components into Schema classes after compose_connection
241 may not cause them to be seen by the classes in your target namespace due
242 to the dispatch table approach used by Class::C3. If you do this you may find
243 you need to call Class::C3->reinitialize() afterwards to get the behaviour
248 sub compose_connection {
249 my ($self, $target, @info) = @_;
250 my $base = 'DBIx::Class::ResultSetProxy';
251 eval "require ${base};";
252 $self->throw_exception("No arguments to load_classes and couldn't load".
253 " ${base} ($@)") if $@;
255 if ($self eq $target) {
256 # Pathological case, largely caused by the docs on early C::M::DBIC::Plain
257 foreach my $moniker ($self->sources) {
258 my $source = $self->source($moniker);
259 my $class = $source->result_class;
260 $self->inject_base($class, $base);
261 $class->mk_classdata(resultset_instance => $source->resultset);
262 $class->mk_classdata(class_resolver => $self);
264 $self->connection(@info);
268 my $schema = $self->compose_namespace($target, $base);
271 *{"${target}::schema"} = sub { $schema };
274 $schema->connection(@info);
275 foreach my $moniker ($schema->sources) {
276 my $source = $schema->source($moniker);
277 my $class = $source->result_class;
278 #warn "$moniker $class $source ".$source->storage;
279 $class->mk_classdata(result_source_instance => $source);
280 $class->mk_classdata(resultset_instance => $source->resultset);
281 $class->mk_classdata(class_resolver => $schema);
286 sub compose_namespace {
287 my ($self, $target, $base) = @_;
288 my %reg = %{ $self->source_registrations };
291 my $schema = $self->clone;
293 no warnings qw/redefine/;
294 local *Class::C3::reinitialize = sub { };
295 foreach my $moniker ($schema->sources) {
296 my $source = $schema->source($moniker);
297 my $target_class = "${target}::${moniker}";
299 $target_class => $source->result_class, ($base ? $base : ())
301 $source->result_class($target_class);
304 Class::C3->reinitialize();
307 foreach my $meth (qw/class source resultset/) {
308 *{"${target}::${meth}"} =
309 sub { shift->schema->$meth(@_) };
315 =head2 setup_connection_class
317 =head3 Arguments: <$target> <@info>
319 Sets up a database connection class to inject between the schema
320 and the subclasses the schema creates.
324 sub setup_connection_class {
325 my ($class, $target, @info) = @_;
326 $class->inject_base($target => 'DBIx::Class::DB');
327 #$target->load_components('DB');
328 $target->connection(@info);
333 =head3 Arguments: (@args)
335 Instantiates a new Storage object of type storage_type and passes the
336 arguments to $storage->connect_info. Sets the connection in-place on
342 my ($self, @info) = @_;
343 my $storage_class = $self->storage_type;
344 $storage_class = 'DBIx::Class::Storage'.$storage_class
345 if $storage_class =~ m/^::/;
346 eval "require ${storage_class};";
347 $self->throw_exception("No arguments to load_classes and couldn't load".
348 " ${storage_class} ($@)") if $@;
349 my $storage = $storage_class->new;
350 $storage->connect_info(\@info);
351 $self->storage($storage);
357 =head3 Arguments: (@info)
359 Conveneience method, equivalent to $schema->clone->connection(@info)
363 sub connect { shift->clone->connection(@_) }
367 Begins a transaction (does nothing if AutoCommit is off).
371 sub txn_begin { shift->storage->txn_begin }
375 Commits the current transaction.
379 sub txn_commit { shift->storage->txn_commit }
383 Rolls back the current transaction.
387 sub txn_rollback { shift->storage->txn_rollback }
391 =head3 Arguments: <$coderef>, [@coderef_args]
393 Executes C<$coderef> with (optional) arguments C<@coderef_args>
394 transactionally, returning its result (if any). If an exception is
395 caught, a rollback is issued and the exception is rethrown. If the
396 rollback fails, (i.e. throws an exception) an exception is thrown that
397 includes a "Rollback failed" message.
401 my $foo = $schema->resultset('foo')->find(1);
404 my ($foo, @bars) = @_;
406 # If any one of these fails, the entire transaction fails
407 $foo->create_related('bars', {
416 $rs = $schema->txn_do($coderef, $foo, qw/foo bar baz/);
421 if ($error =~ /Rollback failed/) {
422 die "something terrible has happened!";
424 deal_with_failed_transaction();
429 Nested transactions work as expected (i.e. only the outermost
430 transaction will issue a txn_commit on the Schema's storage)
435 my ($self, $coderef, @args) = @_;
437 ref $self or $self->throw_exception
438 ('Cannot execute txn_do as a class method');
439 ref $coderef eq 'CODE' or $self->throw_exception
440 ('$coderef must be a CODE reference');
442 my (@return_values, $return_value);
444 $self->txn_begin; # If this throws an exception, no rollback is needed
446 my $wantarray = wantarray; # Need to save this since it's reset in eval{}
449 # Need to differentiate between scalar/list context to allow for returning
450 # a list in scalar context to get the size of the list
452 @return_values = $coderef->(@args);
454 $return_value = $coderef->(@args);
467 my $rollback_error = $@;
468 my $exception_class = "DBIx::Class::Storage::NESTED_ROLLBACK_EXCEPTION";
469 $self->throw_exception($error) # propagate nested rollback
470 if $rollback_error =~ /$exception_class/;
472 $self->throw_exception("Transaction aborted: $error. Rollback failed: ".
475 $self->throw_exception($error); # txn failed but rollback succeeded
479 return $wantarray ? @return_values : $return_value;
484 Clones the schema and its associated result_source objects and returns the
491 my $clone = bless({ (ref $self ? %$self : ()) }, ref $self || $self);
492 foreach my $moniker ($self->sources) {
493 my $source = $self->source($moniker);
494 my $new = $source->new($source);
495 $clone->register_source($moniker => $new);
502 =head3 Arguments: ($moniker, \@data);
504 Populates the source registered with the given moniker with the supplied data.
505 @data should be a list of listrefs, the first containing column names, the
506 second matching values - i.e.
508 $schema->populate('Foo', [
509 [ qw/foo_id foo_string/ ],
518 my ($self, $name, $data) = @_;
519 my $rs = $self->resultset($name);
520 my @names = @{shift(@$data)};
521 foreach my $item (@$data) {
523 @create{@names} = @$item;
524 $rs->create(\%create);
528 =head2 throw_exception
530 Defaults to using Carp::Clan to report errors from user perspective.
534 sub throw_exception {
541 Attempts to deploy the schema to the current storage
546 my ($self, $sqltargs) = @_;
547 $self->throw_exception("Can't deploy without storage") unless $self->storage;
548 $self->storage->deploy($self, undef, $sqltargs);
555 Matt S. Trout <mst@shadowcatsystems.co.uk>
559 You may distribute this code under the same terms as Perl itself.