Minor documentation
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / Schema.pm
CommitLineData
a02675cd 1package DBIx::Class::Schema;
2
3use strict;
4use warnings;
aa562407 5
701da8c4 6use Carp::Clan qw/^DBIx::Class/;
a02675cd 7
41a6f8c0 8use base qw/DBIx::Class/;
a02675cd 9
0dc79249 10__PACKAGE__->mk_classdata('class_mappings' => {});
11__PACKAGE__->mk_classdata('source_registrations' => {});
1e10a11d 12__PACKAGE__->mk_classdata('storage_type' => '::DBI');
d7156e50 13__PACKAGE__->mk_classdata('storage');
a02675cd 14
c2da098a 15=head1 NAME
16
17DBIx::Class::Schema - composable schemas
18
19=head1 SYNOPSIS
20
c2da098a 21 package My::Schema;
c2da098a 22 use base qw/DBIx::Class::Schema/;
a3d93194 23
24 # load My::Schema::Foo, My::Schema::Bar, My::Schema::Baz
c2da098a 25 __PACKAGE__->load_classes(qw/Foo Bar Baz/);
26
c2da098a 27 package My::Schema::Foo;
03312470 28 use base qw/DBIx::Class/;
54540863 29 __PACKAGE__->load_components(qw/PK::Auto::Pg Core/); # for example
c2da098a 30 __PACKAGE__->table('foo');
c2da098a 31
5d9076f2 32 # Elsewhere in your code:
a3d93194 33 my $schema1 = My::Schema->connect(
34 $dsn,
35 $user,
36 $password,
37 $attrs
38 );
c2da098a 39
a3d93194 40 my $schema2 = My::Schema->connect( ... );
c2da098a 41
a3d93194 42 # fetch objects using My::Schema::Foo
43 my $resultset = $schema1->resultset('Foo')->search( ... );
44 my @objects = $schema2->resultset('Foo')->search( ... );
c2da098a 45
46=head1 DESCRIPTION
47
a3d93194 48Creates database classes based on a schema. This is the recommended way to
49use L<DBIx::Class> and allows you to use more than one concurrent connection
50with your classes.
429bd4f1 51
03312470 52NB: If you're used to L<Class::DBI> it's worth reading the L</SYNOPSIS>
53carefully as DBIx::Class does things a little differently. Note in
54particular which module inherits off which.
55
c2da098a 56=head1 METHODS
57
0dc79249 58=head2 register_class <moniker> <component_class>
076652e8 59
80c90f5d 60Registers a class which isa ResultSourceProxy; equivalent to calling
66d9ef6b 61
62 $schema->register_source($moniker, $class->result_source_instance);
076652e8 63
c2da098a 64=cut
65
a02675cd 66sub register_class {
0dc79249 67 my ($self, $moniker, $to_register) = @_;
68 $self->register_source($moniker => $to_register->result_source_instance);
74b92d9a 69}
70
0dc79249 71=head2 register_source <moniker> <result source>
076652e8 72
0dc79249 73Registers the result source in the schema with the given moniker
076652e8 74
75=cut
76
0dc79249 77sub register_source {
78 my ($self, $moniker, $source) = @_;
79 my %reg = %{$self->source_registrations};
80 $reg{$moniker} = $source;
81 $self->source_registrations(\%reg);
82 $source->schema($self);
83 if ($source->result_class) {
84 my %map = %{$self->class_mappings};
85 $map{$source->result_class} = $moniker;
86 $self->class_mappings(\%map);
87 }
88}
a02675cd 89
bfb2bd4f 90=head2 class
91
92 my $class = $schema->class('Foo');
93
0dc79249 94Retrieves the result class name for a given result source
bfb2bd4f 95
96=cut
97
98sub class {
0dc79249 99 my ($self, $moniker) = @_;
100 return $self->source($moniker)->result_class;
bfb2bd4f 101}
102
ea20d0fd 103=head2 source
104
105 my $source = $schema->source('Foo');
106
107Returns the result source object for the registered name
108
109=cut
110
111sub source {
0dc79249 112 my ($self, $moniker) = @_;
113 my $sreg = $self->source_registrations;
114 return $sreg->{$moniker} if exists $sreg->{$moniker};
115
116 # if we got here, they probably passed a full class name
117 my $mapped = $self->class_mappings->{$moniker};
701da8c4 118 $self->throw_exception("Can't find source for ${moniker}")
0dc79249 119 unless $mapped && exists $sreg->{$mapped};
120 return $sreg->{$mapped};
ea20d0fd 121}
122
0dc79249 123=head2 sources
124
125 my @source_monikers = $schema->sources;
126
127Returns the source monikers of all source registrations on this schema
128
129=cut
130
131sub sources { return keys %{shift->source_registrations}; }
132
ea20d0fd 133=head2 resultset
134
135 my $rs = $schema->resultset('Foo');
136
0dc79249 137Returns the resultset for the registered moniker
ea20d0fd 138
139=cut
140
141sub resultset {
0dc79249 142 my ($self, $moniker) = @_;
143 return $self->source($moniker)->resultset;
ea20d0fd 144}
145
130c6439 146=head2 load_classes [<classes>, (<class>, <class>), {<namespace> => [<classes>]}]
076652e8 147
429bd4f1 148Uses L<Module::Find> to find all classes under the database class' namespace,
149or uses the classes you select. Then it loads the component (using L<use>),
150and registers them (using B<register_class>);
076652e8 151
5ce32fc1 152It is possible to comment out classes with a leading '#', but note that perl
153will think it's a mistake (trying to use a comment in a qw list) so you'll
154need to add "no warnings 'qw';" before your load_classes call.
155
076652e8 156=cut
157
a02675cd 158sub load_classes {
5ce32fc1 159 my ($class, @params) = @_;
160
161 my %comps_for;
162
163 if (@params) {
164 foreach my $param (@params) {
165 if (ref $param eq 'ARRAY') {
166 # filter out commented entries
167 my @modules = grep { $_ !~ /^#/ } @$param;
168
169 push (@{$comps_for{$class}}, @modules);
170 }
171 elsif (ref $param eq 'HASH') {
172 # more than one namespace possible
173 for my $comp ( keys %$param ) {
174 # filter out commented entries
175 my @modules = grep { $_ !~ /^#/ } @{$param->{$comp}};
176
177 push (@{$comps_for{$comp}}, @modules);
178 }
179 }
180 else {
181 # filter out commented entries
182 push (@{$comps_for{$class}}, $param) if $param !~ /^#/;
183 }
184 }
185 } else {
41a6f8c0 186 eval "require Module::Find;";
701da8c4 187 $class->throw_exception("No arguments to load_classes and couldn't load".
41a6f8c0 188 " Module::Find ($@)") if $@;
5ce32fc1 189 my @comp = map { substr $_, length "${class}::" } Module::Find::findallmod($class);
190 $comps_for{$class} = \@comp;
41a6f8c0 191 }
5ce32fc1 192
193 foreach my $prefix (keys %comps_for) {
194 foreach my $comp (@{$comps_for{$prefix}||[]}) {
195 my $comp_class = "${prefix}::${comp}";
5ce32fc1 196 eval "use $comp_class"; # If it fails, assume the user fixed it
bfb2bd4f 197 if ($@) {
198 die $@ unless $@ =~ /Can't locate/;
199 }
5ce32fc1 200 $class->register_class($comp => $comp_class);
be381829 201 # if $class->can('result_source_instance');
5ce32fc1 202 }
a02675cd 203 }
204}
205
130c6439 206=head2 compose_connection <target> <@db_info>
429bd4f1 207
208This is the most important method in this class. it takes a target namespace,
209as well as dbh connection info, and creates a L<DBIx::Class::DB> class as
210well as subclasses for each of your database classes in this namespace, using
211this connection.
076652e8 212
54540863 213It will also setup a ->class method on the target class, which lets you
8c130052 214resolve database classes based on the schema component name, for example
215
54540863 216 MyApp::DB->class('Foo') # returns MyApp::DB::Foo,
8c130052 217 # which ISA MyApp::Schema::Foo
218
219This is the recommended API for accessing Schema generated classes, and
220using it might give you instant advantages with future versions of DBIC.
221
54540863 222WARNING: Loading components into Schema classes after compose_connection
223may not cause them to be seen by the classes in your target namespace due
224to the dispatch table approach used by Class::C3. If you do this you may find
225you need to call Class::C3->reinitialize() afterwards to get the behaviour
226you expect.
227
076652e8 228=cut
229
a02675cd 230sub compose_connection {
ea20d0fd 231 my ($self, $target, @info) = @_;
80c90f5d 232 my $base = 'DBIx::Class::ResultSetProxy';
8ef144ff 233 eval "require ${base};";
234 $self->throw_exception("No arguments to load_classes and couldn't load".
235 " ${base} ($@)") if $@;
be381829 236
237 if ($self eq $target) {
238 # Pathological case, largely caused by the docs on early C::M::DBIC::Plain
239 foreach my $moniker ($self->sources) {
240 my $source = $self->source($moniker);
241 my $class = $source->result_class;
242 $self->inject_base($class, $base);
243 $class->mk_classdata(resultset_instance => $source->resultset);
244 $class->mk_classdata(class_resolver => $self);
245 }
50041f3c 246 $self->connection(@info);
be381829 247 return $self;
248 }
249
66d9ef6b 250 my $schema = $self->compose_namespace($target, $base);
ecceadff 251 {
252 no strict 'refs';
253 *{"${target}::schema"} = sub { $schema };
254 }
255
66d9ef6b 256 $schema->connection(@info);
0dc79249 257 foreach my $moniker ($schema->sources) {
258 my $source = $schema->source($moniker);
259 my $class = $source->result_class;
260 #warn "$moniker $class $source ".$source->storage;
8c49f629 261 $class->mk_classdata(result_source_instance => $source);
ea20d0fd 262 $class->mk_classdata(resultset_instance => $source->resultset);
66d9ef6b 263 $class->mk_classdata(class_resolver => $schema);
bfb2bd4f 264 }
265 return $schema;
e678398e 266}
267
268sub compose_namespace {
66d9ef6b 269 my ($self, $target, $base) = @_;
270 my %reg = %{ $self->source_registrations };
11b78bd6 271 my %target;
272 my %map;
66d9ef6b 273 my $schema = $self->clone;
274 foreach my $moniker ($schema->sources) {
275 my $source = $schema->source($moniker);
0dc79249 276 my $target_class = "${target}::${moniker}";
66d9ef6b 277 $self->inject_base(
0dc79249 278 $target_class => $source->result_class, ($base ? $base : ())
279 );
66d9ef6b 280 $source->result_class($target_class);
b7951443 281 }
11b78bd6 282 {
283 no strict 'refs';
1edaf6fe 284 foreach my $meth (qw/class source resultset/) {
285 *{"${target}::${meth}"} =
286 sub { shift->schema->$meth(@_) };
287 }
11b78bd6 288 }
bfb2bd4f 289 return $schema;
b7951443 290}
291
130c6439 292=head2 setup_connection_class <$target> <@info>
076652e8 293
429bd4f1 294Sets up a database connection class to inject between the schema
295and the subclasses the schema creates.
296
076652e8 297=cut
298
b7951443 299sub setup_connection_class {
300 my ($class, $target, @info) = @_;
63e9583a 301 $class->inject_base($target => 'DBIx::Class::DB');
302 #$target->load_components('DB');
b7951443 303 $target->connection(@info);
304}
305
66d9ef6b 306=head2 connection(@args)
307
308Instantiates a new Storage object of type storage_type and passes the
19feb86b 309arguments to $storage->connect_info. Sets the connection in-place on
66d9ef6b 310the schema.
311
312=cut
313
314sub connection {
315 my ($self, @info) = @_;
1e10a11d 316 my $storage_class = $self->storage_type;
317 $storage_class = 'DBIx::Class::Storage'.$storage_class
318 if $storage_class =~ m/^::/;
8ef144ff 319 eval "require ${storage_class};";
320 $self->throw_exception("No arguments to load_classes and couldn't load".
321 " ${storage_class} ($@)") if $@;
66d9ef6b 322 my $storage = $storage_class->new;
323 $storage->connect_info(\@info);
324 $self->storage($storage);
325 return $self;
326}
327
328=head2 connect(@info)
329
330Conveneience method, equivalent to $schema->clone->connection(@info)
331
332=cut
333
08b515f1 334sub connect { shift->clone->connection(@_) }
335
336=head2 txn_begin
337
338Begins a transaction (does nothing if AutoCommit is off).
339
340=cut
341
342sub txn_begin { shift->storage->txn_begin }
343
344=head2 txn_commit
345
346Commits the current transaction.
347
348=cut
349
350sub txn_commit { shift->storage->txn_commit }
351
352=head2 txn_rollback
353
354Rolls back the current transaction.
355
356=cut
357
358sub txn_rollback { shift->storage->txn_rollback }
66d9ef6b 359
360=head2 clone
361
362Clones the schema and its associated result_source objects and returns the
363copy.
364
365=cut
366
367sub clone {
368 my ($self) = @_;
369 my $clone = bless({ (ref $self ? %$self : ()) }, ref $self || $self);
370 foreach my $moniker ($self->sources) {
371 my $source = $self->source($moniker);
372 my $new = $source->new($source);
373 $clone->register_source($moniker => $new);
374 }
375 return $clone;
376}
377
5160b401 378=head2 populate($moniker, \@data);
a37a4697 379
380Populates the source registered with the given moniker with the supplied data.
381@data should be a list of listrefs, the first containing column names, the
382second matching values - i.e.
383
384$schema->populate('Foo', [
385 [ qw/foo_id foo_string/ ],
386 [ 1, 'One' ],
387 [ 2, 'Two' ],
388 ...
389]);
390
391=cut
392
393sub populate {
394 my ($self, $name, $data) = @_;
395 my $rs = $self->resultset($name);
396 my @names = @{shift(@$data)};
397 foreach my $item (@$data) {
398 my %create;
399 @create{@names} = @$item;
400 $rs->create(\%create);
401 }
402}
403
5160b401 404=head2 throw_exception
701da8c4 405
406Defaults to using Carp::Clan to report errors from user perspective.
407
408=cut
409
410sub throw_exception {
411 my ($self) = shift;
412 croak @_;
413}
414
a02675cd 4151;
c2da098a 416
c2da098a 417=head1 AUTHORS
418
daec44b8 419Matt S. Trout <mst@shadowcatsystems.co.uk>
c2da098a 420
421=head1 LICENSE
422
423You may distribute this code under the same terms as Perl itself.
424
425=cut
426