b01f439a0ddceec8fc59196454ed35d692a514f7
[dbsrgits/DBIx-Class-Schema-Loader.git] / lib / DBIx / Class / Schema / Loader.pm
1 package DBIx::Class::Schema::Loader;
2
3 use strict;
4 use warnings;
5 use base qw/DBIx::Class::Schema Class::Accessor::Grouped/;
6 use Carp::Clan qw/^DBIx::Class/;
7 use Class::C3;
8 use Scalar::Util qw/ weaken /;
9
10 # Always remember to do all digits for the version even if they're 0
11 # i.e. first release of 0.XX *must* be 0.XX000. This avoids fBSD ports
12 # brain damage and presumably various other packaging systems too
13 our $VERSION = '0.05002';
14
15 __PACKAGE__->mk_group_accessors('inherited', qw/
16                                 _loader_args
17                                 dump_to_dir
18                                 _loader_invoked
19                                 _loader
20                                 loader_class
21                                 naming
22                                 use_namespaces
23 /);
24 __PACKAGE__->_loader_args({});
25
26 =head1 NAME
27
28 DBIx::Class::Schema::Loader - Dynamic definition of a DBIx::Class::Schema
29
30 =head1 SYNOPSIS
31
32   ### use this module to generate a set of class files
33
34   # in a script
35   use DBIx::Class::Schema::Loader qw/ make_schema_at /;
36   make_schema_at(
37       'My::Schema',
38       { debug => 1,
39         dump_directory => './lib',
40       },
41       [ 'dbi:Pg:dbname="foo"', 'myuser', 'mypassword' ],
42   );
43
44   # from the command line or a shell script with dbicdump (distributed
45   # with this module).  Do `perldoc dbicdump` for usage.
46   dbicdump -o dump_directory=./lib \
47            -o debug=1 \
48            My::Schema \
49            'dbi:Pg:dbname=foo' \
50            myuser \
51            mypassword
52
53   ### or generate and load classes at runtime
54   # note: this technique is not recommended
55   # for use in production code
56
57   package My::Schema;
58   use base qw/DBIx::Class::Schema::Loader/;
59
60   __PACKAGE__->loader_options(
61       constraint              => '^foo.*',
62       # debug                 => 1,
63   );
64
65   #### in application code elsewhere:
66
67   use My::Schema;
68
69   my $schema1 = My::Schema->connect( $dsn, $user, $password, $attrs);
70   # -or-
71   my $schema1 = "My::Schema"; $schema1->connection(as above);
72
73 =head1 DESCRIPTION 
74
75 DBIx::Class::Schema::Loader automates the definition of a
76 L<DBIx::Class::Schema> by scanning database table definitions and
77 setting up the columns, primary keys, and relationships.
78
79 DBIx::Class::Schema::Loader currently supports only the DBI storage type.  It
80 has explicit support for L<DBD::Pg>, L<DBD::mysql>, L<DBD::DB2>,
81 L<DBD::SQLite>, L<DBD::Sybase> (for Sybase ASE and MSSSQL), L<DBD::ODBC> (for
82 MSSQL) and L<DBD::Oracle>.  Other DBI drivers may function to a greater or
83 lesser degree with this loader, depending on how much of the DBI spec they
84 implement, and how standard their implementation is.
85
86 Patches to make other DBDs work correctly welcome.
87
88 See L<DBIx::Class::Schema::Loader::DBI::Writing> for notes on writing
89 your own vendor-specific subclass for an unsupported DBD driver.
90
91 This module requires L<DBIx::Class> 0.07006 or later, and obsoletes
92 the older L<DBIx::Class::Loader>.
93
94 This module is designed more to get you up and running quickly against
95 an existing database, or to be effective for simple situations, rather
96 than to be what you use in the long term for a complex database/project.
97
98 That being said, transitioning your code from a Schema generated by this
99 module to one that doesn't use this module should be straightforward and
100 painless, so don't shy away from it just for fears of the transition down
101 the road.
102
103 =head1 METHODS
104
105 =head2 loader_class
106
107 =over 4
108
109 =item Argument: $loader_class
110
111 =back
112
113 Set the loader class to be instantiated when L</connection> is called.
114 If the classname starts with "::", "DBIx::Class::Schema::Loader" is
115 prepended. Defaults to L<DBIx::Class::Schema/storage_type> (which must
116 start with "::" when using L<DBIx::Class::Schema::Loader>).
117
118 This is mostly useful for subclassing existing loaders or in conjunction
119 with L</dump_to_dir>.
120
121 =head2 loader_options
122
123 =over 4
124
125 =item Argument: \%loader_options
126
127 =back
128
129 Example in Synopsis above demonstrates a few common arguments.  For
130 detailed information on all of the arguments, most of which are
131 only useful in fairly complex scenarios, see the
132 L<DBIx::Class::Schema::Loader::Base> documentation.
133
134 If you intend to use C<loader_options>, you must call
135 C<loader_options> before any connection is made, or embed the
136 C<loader_options> in the connection information itself as shown
137 below.  Setting C<loader_options> after the connection has
138 already been made is useless.
139
140 =cut
141
142 sub loader_options {
143     my $self = shift;
144
145     my %args = (ref $_[0] eq 'HASH') ? %{$_[0]} : @_;
146     $self->_loader_args(\%args);
147
148     $self;
149 }
150
151 sub _invoke_loader {
152     my $self = shift;
153     my $class = ref $self || $self;
154
155     my $args = $self->_loader_args;
156
157     # set up the schema/schema_class arguments
158     $args->{schema} = $self;
159     $args->{schema_class} = $class;
160     weaken($args->{schema}) if ref $self;
161     $args->{dump_directory} ||= $self->dump_to_dir;
162     $args->{naming} = $self->naming if $self->naming;
163     $args->{use_namespaces} = $self->use_namespaces if $self->use_namespaces;
164
165     # XXX this only works for relative storage_type, like ::DBI ...
166     my $impl = $self->loader_class
167       || "DBIx::Class::Schema::Loader" . $self->storage_type;
168     $impl = "DBIx::Class::Schema::Loader${impl}" if $impl =~ /^::/;
169     eval { $self->ensure_class_loaded($impl) };
170     croak qq/Could not load storage_type loader "$impl": "$@"/ if $@;
171
172     $self->_loader($impl->new(%$args));
173     $self->_loader->load;
174     $self->_loader_invoked(1);
175
176     $self;
177 }
178
179 =head2 connection
180
181 =over 4
182
183 =item Arguments: @args
184
185 =item Return Value: $new_schema
186
187 =back
188
189 See L<DBIx::Class::Schema/connection> for basic usage.
190
191 If the final argument is a hashref, and it contains the keys C<loader_options>
192 or C<loader_class>, those keys will be deleted, and their values value will be
193 used for the loader options or class, respectively, just as if set via the
194 L</loader_options> or L</loader_class> methods above.
195
196 The actual auto-loading operation (the heart of this module) will be invoked
197 as soon as the connection information is defined.
198
199 =cut
200
201 sub connection {
202     my $self = shift;
203
204     if($_[-1] && ref $_[-1] eq 'HASH') {
205         for my $option (qw/ loader_class loader_options result_base_class schema_base_class/) {
206             if(my $value = delete $_[-1]->{$option}) {
207                 $self->$option($value);
208             }
209         }
210         pop @_ if !keys %{$_[-1]};
211     }
212
213     $self = $self->next::method(@_);
214
215     my $class = ref $self || $self;
216     if(!$class->_loader_invoked) {
217         $self->_invoke_loader
218     }
219
220     return $self;
221 }
222
223 =head2 clone
224
225 See L<DBIx::Class::Schema/clone>.
226
227 =cut
228
229 sub clone {
230     my $self = shift;
231
232     my $clone = $self->next::method(@_);
233
234     if($clone->_loader_args) {
235         $clone->_loader_args->{schema} = $clone;
236         weaken($clone->_loader_args->{schema});
237     }
238
239     $clone;
240 }
241
242 =head2 dump_to_dir
243
244 =over 4
245
246 =item Argument: $directory
247
248 =back
249
250 Calling this as a class method on either L<DBIx::Class::Schema::Loader>
251 or any derived schema class will cause all schemas to dump
252 manual versions of themselves to the named directory when they are
253 loaded.  In order to be effective, this must be set before defining a
254 connection on this schema class or any derived object (as the loading
255 happens as soon as both a connection and loader_options are set, and
256 only once per class).
257
258 See L<DBIx::Class::Schema::Loader::Base/dump_directory> for more
259 details on the dumping mechanism.
260
261 This can also be set at module import time via the import option
262 C<dump_to_dir:/foo/bar> to L<DBIx::Class::Schema::Loader>, where
263 C</foo/bar> is the target directory.
264
265 Examples:
266
267     # My::Schema isa DBIx::Class::Schema::Loader, and has connection info
268     #   hardcoded in the class itself:
269     perl -MDBIx::Class::Schema::Loader=dump_to_dir:/foo/bar -MMy::Schema -e1
270
271     # Same, but no hard-coded connection, so we must provide one:
272     perl -MDBIx::Class::Schema::Loader=dump_to_dir:/foo/bar -MMy::Schema -e 'My::Schema->connection("dbi:Pg:dbname=foo", ...)'
273
274     # Or as a class method, as long as you get it done *before* defining a
275     #  connection on this schema class or any derived object:
276     use My::Schema;
277     My::Schema->dump_to_dir('/foo/bar');
278     My::Schema->connection(........);
279
280     # Or as a class method on the DBIx::Class::Schema::Loader itself, which affects all
281     #   derived schemas
282     use My::Schema;
283     use My::OtherSchema;
284     DBIx::Class::Schema::Loader->dump_to_dir('/foo/bar');
285     My::Schema->connection(.......);
286     My::OtherSchema->connection(.......);
287
288     # Another alternative to the above:
289     use DBIx::Class::Schema::Loader qw| dump_to_dir:/foo/bar |;
290     use My::Schema;
291     use My::OtherSchema;
292     My::Schema->connection(.......);
293     My::OtherSchema->connection(.......);
294
295 =cut
296
297 sub import {
298     my $self = shift;
299
300     return if !@_;
301
302     my $cpkg = (caller)[0];
303
304     foreach my $opt (@_) {
305         if($opt =~ m{^dump_to_dir:(.*)$}) {
306             $self->dump_to_dir($1)
307         }
308         elsif($opt eq 'make_schema_at') {
309             no strict 'refs';
310             *{"${cpkg}::make_schema_at"} = \&make_schema_at;
311         }
312         elsif($opt eq 'naming') {
313             no strict 'refs';
314             *{"${cpkg}::naming"} = sub { $self->naming(@_) };
315         }
316         elsif($opt eq 'use_namespaces') {
317             no strict 'refs';
318             *{"${cpkg}::use_namespaces"} = sub { $self->use_namespaces(@_) };
319         }
320     }
321 }
322
323 =head2 make_schema_at
324
325 =over 4
326
327 =item Arguments: $schema_class_name, \%loader_options, \@connect_info
328
329 =item Return Value: $schema_class_name
330
331 =back
332
333 This function creates a DBIx::Class schema from an existing RDBMS
334 schema.  With the C<dump_directory> option, generates a set of
335 DBIx::Class classes from an existing database schema read from the
336 given dsn.  Without a C<dump_directory>, creates schema classes in
337 memory at runtime without generating on-disk class files.
338
339 For a complete list of supported loader_options, see
340 L<DBIx::Class::Schema::Loader::Base>
341
342 This function can be imported in the usual way, as illustrated in
343 these Examples:
344
345     # Simple example, creates as a new class 'New::Schema::Name' in
346     #  memory in the running perl interpreter.
347     use DBIx::Class::Schema::Loader qw/ make_schema_at /;
348     make_schema_at(
349         'New::Schema::Name',
350         { debug => 1 },
351         [ 'dbi:Pg:dbname="foo"','postgres' ],
352     );
353
354     # Inside a script, specifying a dump directory in which to write
355     # class files
356     use DBIx::Class::Schema::Loader qw/ make_schema_at /;
357     make_schema_at(
358         'New::Schema::Name',
359         { debug => 1, dump_directory => './lib' },
360         [ 'dbi:Pg:dbname="foo"','postgres' ],
361     );
362
363 =cut
364
365 sub make_schema_at {
366     my ($target, $opts, $connect_info) = @_;
367
368     {
369         no strict 'refs';
370         @{$target . '::ISA'} = qw/DBIx::Class::Schema::Loader/;
371     }
372
373     $target->loader_options($opts);
374     $target->connection(@$connect_info);
375 }
376
377 =head2 rescan
378
379 =over 4
380
381 =item Return Value: @new_monikers
382
383 =back
384
385 Re-scans the database for newly added tables since the initial
386 load, and adds them to the schema at runtime, including relationships,
387 etc.  Does not process drops or changes.
388
389 Returns a list of the new monikers added.
390
391 =cut
392
393 sub rescan { my $self = shift; $self->_loader->rescan($self) }
394
395 =head2 naming
396
397 =over 4
398
399 =item Arguments: \%opts | $ver
400
401 =back
402
403 Controls the naming options for backward compatibility, see
404 L<DBIx::Class::Schema::Loader::Base/naming> for details.
405
406 To upgrade a dynamic schema, use:
407
408     __PACKAGE__->naming('current');
409
410 Can be imported into your dump script and called as a function as well:
411
412     naming('v4');
413
414 =head2 use_namespaces
415
416 =over 4
417
418 =item Arguments: 1|0
419
420 =back
421
422 Controls the use_namespaces options for backward compatibility, see
423 L<DBIx::Class::Schema::Loader::Base/use_namespaces> for details.
424
425 To upgrade a dynamic schema, use:
426
427     __PACKAGE__->use_namespaces(1);
428
429 Can be imported into your dump script and called as a function as well:
430
431     use_namespaces(1);
432
433 =head1 KNOWN ISSUES
434
435 =head2 Multiple Database Schemas
436
437 Currently the loader is limited to working within a single schema
438 (using the underlying RDBMS's definition of "schema").  If you have a
439 multi-schema database with inter-schema relationships (which is easy
440 to do in PostgreSQL or DB2 for instance), you currently can only
441 automatically load the tables of one schema, and relationships to
442 tables in other schemas will be silently ignored.
443
444 At some point in the future, an intelligent way around this might be
445 devised, probably by allowing the C<db_schema> option to be an
446 arrayref of schemas to load.
447
448 In "normal" L<DBIx::Class::Schema> usage, manually-defined
449 source classes and relationships have no problems crossing vendor schemas.
450
451 =head1 ACKNOWLEDGEMENTS
452
453 Matt S Trout, all of the #dbix-class folks, and everyone who's ever sent
454 in a bug report or suggestion.
455
456 Based on L<DBIx::Class::Loader> by Sebastian Riedel
457
458 Based upon the work of IKEBE Tomohiro
459
460 =head1 AUTHOR
461
462 blblack: Brandon Black <blblack@gmail.com>
463
464 =head1 CONTRIBUTORS
465
466 ilmari: Dagfinn Ilmari MannsE<aring>ker <ilmari@ilmari.org>
467
468 arcanez: Justin Hunter <justin.d.hunter@gmail.com>
469
470 ash: Ash Berlin <ash@cpan.org>
471
472 Caelum: Rafael Kitover <rkitover@cpan.org>
473
474 TSUNODA Kazuya <drk@drk7.jp>
475
476 rbo: Robert Bohne <rbo@cpan.org>
477
478 ribasushi: Peter Rabbitson <ribasushi@cpan.org>
479
480 gugu: Andrey Kostenko <a.kostenko@rambler-co.ru>
481
482 jhannah: Jay Hannah <jay@jays.net>
483
484 rbuels: Robert Buels <rmb32@cornell.edu>
485
486 timbunce: Tim Bunce <timb@cpan.org>
487
488 mst: Matt S. Trout <mst@shadowcatsystems.co.uk>
489
490 kane: Jos Boumans <kane@cpan.org>
491
492 waawaamilk: Nigel McNie <nigel@mcnie.name>
493
494 acmoore: Andrew Moore <amoore@cpan.org>
495
496 bphillips: Brian Phillips <bphillips@cpan.org>
497
498 schwern: Michael G. Schwern <mschwern@cpan.org>
499
500 hobbs: Andrew Rodland <arodland@cpan.org>
501
502 ... and lots of other folks. If we forgot you, please write the current
503 maintainer or RT.
504
505 =head1 COPYRIGHT & LICENSE
506
507 Copyright (c) 2006 - 2009 by the aforementioned
508 L<DBIx::Class::Schema::Loader/AUTHOR> and
509 L<DBIx::Class::Schema::Loader/CONTRIBUTORS>.
510
511 This library is free software; you can redistribute it and/or modify it under
512 the same terms as Perl itself.
513
514 =head1 SEE ALSO
515
516 L<DBIx::Class>, L<DBIx::Class::Manual::ExampleSchema>
517
518 =cut
519
520 1;