docs updates, no longer overwrite dumped schema files by default
[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/;
6 use base qw/Class::Data::Accessor/;
7 use Carp::Clan qw/^DBIx::Class::Schema::Loader/;
8 use UNIVERSAL::require;
9 use Class::C3;
10 use Scalar::Util qw/ weaken /;
11
12 # Always remember to do all digits for the version even if they're 0
13 # i.e. first release of 0.XX *must* be 0.XX000. This avoids fBSD ports
14 # brain damage and presumably various other packaging systems too
15 our $VERSION = '0.03004';
16
17 __PACKAGE__->mk_classaccessor('dump_to_dir');
18 __PACKAGE__->mk_classaccessor('loader');
19 __PACKAGE__->mk_classaccessor('_loader_args');
20
21 =head1 NAME
22
23 DBIx::Class::Schema::Loader - Dynamic definition of a DBIx::Class::Schema
24
25 =head1 SYNOPSIS
26
27   package My::Schema;
28   use base qw/DBIx::Class::Schema::Loader/;
29
30   __PACKAGE__->loader_options(
31       relationships           => 1,
32       constraint              => '^foo.*',
33       # debug                 => 1,
34   );
35
36   # in seperate application code ...
37
38   use My::Schema;
39
40   my $schema1 = My::Schema->connect( $dsn, $user, $password, $attrs);
41   # -or-
42   my $schema1 = "My::Schema"; $schema1->connection(as above);
43
44 =head1 DESCRIPTION 
45
46 DBIx::Class::Schema::Loader automates the definition of a
47 L<DBIx::Class::Schema> by scanning database table definitions and
48 setting up the columns, primary keys, and relationships.
49
50 DBIx::Class::Schema::Loader currently supports only the DBI storage type.
51 It has explicit support for L<DBD::Pg>, L<DBD::mysql>, L<DBD::DB2>, and
52 L<DBD::SQLite>.  Other DBI drivers may function to a greater or lesser
53 degree with this loader, depending on how much of the DBI spec they
54 implement, and how standard their implementation is.  Patches to make
55 other DBDs work correctly welcome.
56
57 See L<DBIx::Class::Schema::Loader::DBI::Writing> for notes on writing
58 your own vendor-specific subclass for an unsupported DBD driver.
59
60 This module requires L<DBIx::Class> 0.06 or later, and obsoletes
61 the older L<DBIx::Class::Loader>.
62
63 This module is designed more to get you up and running quickly against
64 an existing database, or to be effective for simple situations, rather
65 than to be what you use in the long term for a complex database/project.
66
67 That being said, transitioning your code from a Schema generated by this
68 module to one that doesn't use this module should be straightforward and
69 painless (as long as you're not using any methods that are now deprecated
70 in this document), so don't shy away from it just for fears of the
71 transition down the road.
72
73 =head1 METHODS
74
75 =head2 loader_options
76
77 Example in Synopsis above demonstrates a few common arguments.  For
78 detailed information on all of the arguments, most of which are
79 only useful in fairly complex scenarios, see the
80 L<DBIx::Class::Schema::Loader::Base> documentation.
81
82 This method is *required* at this time, for backwards compatibility
83 reasons.  If you do not wish to change any options, just call it
84 with an empty argument list during schema class initialization.
85
86 You should either specify this method before setting the connection
87 information for your schema, or specify these options as a part of
88 your connection information (see below).  For now it will merely
89 warn if the ordering is wrong, but in the future this will cause problems.
90
91 =cut
92
93 sub loader_options {
94     my $self = shift;
95     
96     my %args = (ref $_[0] eq 'HASH') ? %{$_[0]} : @_;
97
98     my $class = ref $self || $self;
99     $args{schema} = $self;
100     $args{schema_class} = $class;
101     weaken($args{schema}) if ref $self;
102
103     $self->_loader_args(\%args);
104     if($self->storage && !$class->loader) {
105         warn "Do not set loader_options after specifying the connection info";
106         $self->_invoke_loader;
107     }
108
109     $self;
110 }
111
112 sub _invoke_loader {
113     my $self = shift;
114     my $class = ref $self || $self;
115
116     $self->_loader_args->{dump_directory} ||= $self->dump_to_dir;
117
118     # XXX this only works for relative storage_type, like ::DBI ...
119     my $impl = "DBIx::Class::Schema::Loader" . $self->storage_type;
120     $impl->require or
121       croak qq/Could not load storage_type loader "$impl": / .
122             qq/"$UNIVERSAL::require::ERROR"/;
123
124     # XXX in the future when we get rid of ->loader, the next two
125     # lines can be replaced by "$impl->new(%{$self->_loader_args})->load;"
126     $class->loader($impl->new(%{$self->_loader_args}));
127     $class->loader->load;
128
129     $self;
130 }
131
132 =head2 connection
133
134 See L<DBIx::Class::Schema> for basic usage.
135
136 If the final argument is a hashref, and it contains a key C<loader_options>,
137 that key will be deleted, and its value will be used for the loader options,
138 just as if set via the L</loader_options> method above.
139
140 The actual auto-loading operation (the heart of this module) will be invoked
141 as soon as the connection information is defined.
142
143 =cut
144
145 sub connection {
146     my $self = shift;
147
148     if($_[-1] && ref $_[-1] eq 'HASH') {
149         if(my $loader_opts = delete $_[-1]->{loader_options}) {
150             $self->loader_options($loader_opts);
151         }
152     }
153
154     $self = $self->next::method(@_);
155
156     my $class = ref $self || $self;
157     $self->_invoke_loader if $self->_loader_args && !$class->loader;
158
159     return $self;
160 }
161
162 =head2 clone
163
164 See L<DBIx::Class::Schema>.
165
166 =cut
167
168 sub clone {
169     my $self = shift;
170
171     croak "You failed to specify the required loader_options"
172         if !$self->_loader_args;
173
174     my $clone = $self->next::method(@_);
175
176     $clone->_loader_args($self->_loader_args);
177     $clone->_loader_args->{schema} = $clone;
178     weaken($clone->_loader_args->{schema});
179
180     $clone;
181 }
182
183 =head2 dump_to_dir
184
185 Argument: directory name.
186
187 Calling this as a class method on either L<DBIx::Class::Schema::Loader>
188 or any derived schema class will cause all affected schemas to dump
189 manual versions of themselves to the named directory when they are
190 loaded.  In order to be effective, this must be set before defining a
191 connection on this schema class or any derived object (as the loading
192 happens as soon as both a connection and loader_options are set, and
193 only once per class).
194
195 See L<DBIx::Class::Schema::Loader::Base/dump_directory> for more
196 details on the dumping mechanism.
197
198 This can also be set at module import time via the import option
199 C<dump_to_dir:/foo/bar> to L<DBIx::Class::Schema::Loader>, where
200 C</foo/bar> is the target directory.
201
202 Examples:
203
204     # My::Schema isa DBIx::Class::Schema::Loader, and has connection info
205     #   hardcoded in the class itself:
206     perl -MDBIx::Class::Schema::Loader=dump_to_dir:/foo/bar -MMy::Schema -e1
207
208     # Same, but no hard-coded connection, so we must provide one:
209     perl -MDBIx::Class::Schema::Loader=dump_to_dir:/foo/bar -MMy::Schema -e 'My::Schema->connection("dbi:Pg:dbname=foo", ...)'
210
211     # Or as a class method, as long as you get it done *before* defining a
212     #  connection on this schema class or any derived object:
213     use My::Schema;
214     My::Schema->dump_to_dir('/foo/bar');
215     My::Schema->connection(........);
216
217     # Or as a class method on the DBIx::Class::Schema::Loader itself, which affects all
218     #   derived schemas
219     use My::Schema;
220     use My::OtherSchema;
221     DBIx::Class::Schema::Loader->dump_to_dir('/foo/bar');
222     My::Schema->connection(.......);
223     My::OtherSchema->connection(.......);
224
225     # Another alternative to the above:
226     use DBIx::Class::Schema::Loader qw| dump_to_dir:/foo/bar |;
227     use My::Schema;
228     use My::OtherSchema;
229     My::Schema->connection(.......);
230     My::OtherSchema->connection(.......);
231
232 =cut
233
234 sub import {
235     my $self = shift;
236     return if !@_;
237     foreach my $opt (@_) {
238         if($opt =~ m{^dump_to_dir:(.*)$}) {
239             $self->dump_to_dir($1)
240         }
241         elsif($opt eq 'make_schema_at') {
242             no strict 'refs';
243             my $cpkg = (caller)[0];
244             *{"${cpkg}::make_schema_at"} = \&make_schema_at;
245         }
246     }
247 }
248
249 =head2 make_schema_at
250
251 This simple function allows one to create a Loader-based schema
252 in-memory on the fly without any on-disk class files of any
253 kind.  When used with the C<dump_directory> option, you can
254 use this to generate a rough draft manual schema from a dsn
255 without the intermediate step of creating a physical Loader-based
256 schema class.
257
258 The return value is the input class name.
259
260 This function can be exported/imported by the normal means, as
261 illustrated in these Examples:
262
263     # Simple example, creates as a new class 'New::Schema::Name' in
264     #  memory in the running perl interpreter.
265     use DBIx::Class::Schema::Loader qw/ make_schema_at /;
266     make_schema_at(
267         'New::Schema::Name',
268         { relationships => 1, debug => 1 },
269         [ 'dbi:Pg:dbname="foo"','postgres' ],
270     );
271
272     # Complex: dump loaded schema to disk, all from the commandline:
273     perl -MDBIx::Class::Schema::Loader=make_schema_at,dump_to_dir:./lib -e 'make_schema_at("New::Schema::Name", { relationships => 1 }, [ "dbi:Pg:dbname=foo","postgres" ])'
274
275     # Same, but inside a script, and using a different way to specify the
276     # dump directory:
277     use DBIx::Class::Schema::Loader qw/ make_schema_at /;
278     make_schema_at(
279         'New::Schema::Name',
280         { relationships => 1, debug => 1, dump_directory => './lib' },
281         [ 'dbi:Pg:dbname="foo"','postgres' ],
282     );
283
284 =cut
285
286 sub make_schema_at {
287     my ($target, $opts, $connect_info) = @_;
288
289     {
290         no strict 'refs';
291         @{$target . '::ISA'} = qw/DBIx::Class::Schema::Loader/;
292     }
293
294     $target->loader_options($opts);
295     $target->connection(@$connect_info);
296 }
297
298 =head1 EXAMPLE
299
300 Using the example in L<DBIx::Class::Manual::ExampleSchema> as a basis
301 replace the DB::Main with the following code:
302
303   package DB::Main;
304
305   use base qw/DBIx::Class::Schema::Loader/;
306
307   __PACKAGE__->loader_options(
308       relationships => 1,
309       debug         => 1,
310   );
311   __PACKAGE__->connection('dbi:SQLite:example.db');
312
313   1;
314
315 and remove the Main directory tree (optional).  Every thing else
316 should work the same
317
318 =head1 DEPRECATED METHODS
319
320 You don't need to read anything in this section unless you're upgrading
321 code that was written against pre-0.03 versions of this module.  This
322 version is intended to be backwards-compatible with pre-0.03 code, but
323 will issue warnings about your usage of deprecated features/methods.
324
325 B<All of these deprecated methods will dissappear in version 0.04000>,
326 and converting code that uses these methods should be trivial.
327
328 =head2 load_from_connection
329
330 This deprecated method is now roughly an alias for L</loader_options>.
331
332 For now, using this method will invoke the legacy behavior for
333 backwards compatibility, and merely emit a warning about upgrading
334 your code.
335
336 It also reverts the default inflection scheme to
337 use L<Lingua::EN::Inflect> just like pre-0.03 versions of this
338 module did.
339
340 You can force these legacy inflections with the
341 option L<DBIx::Class::Schema::Loader::Base/legacy_default_inflections>,
342 even after switch over to the preferred L</loader_options> way of doing
343 things.  That option will not go away until at least 0.05.
344
345 See the source of this method for more details.
346
347 =cut
348
349 sub load_from_connection {
350     my ($self, %args) = @_;
351
352     my $cmds_ver = $Catalyst::Model::DBIC::Schema::VERSION;
353     if($cmds_ver) {
354         if($cmds_ver < 0.14) {
355             warn 'You should upgrade your installation of'
356                . ' Catalyst::Model::DBIC::Schema to 0.14 or higher, then:';
357         }
358         warn 'You should regenerate your Model files, which may eliminate'
359            . ' the following deprecation warning:';
360     }
361     warn 'load_from_connection deprecated, and will dissappear in 0.04000, '
362        . 'please [re-]read the [new] DBIx::Class::Schema::Loader '
363        . 'documentation';
364
365     # Support the old connect_info / dsn / etc args...
366     $args{connect_info} = [
367         delete $args{dsn},
368         delete $args{user},
369         delete $args{password},
370         delete $args{options},
371     ] if $args{dsn};
372
373     $self->connection(@{delete $args{connect_info}})
374         if $args{connect_info};
375
376     $self->loader_options('legacy_default_inflections' => 1, %args);
377 }
378
379 =head2 loader
380
381 This is an accessor in the generated Schema class for accessing
382 the L<DBIx::Class::Schema::Loader::Base> -based loader object
383 that was used during construction.  See the
384 L<DBIx::Class::Schema::Loader::Base> docs for more information
385 on the available loader methods there.
386
387 This accessor is deprecated.  Do not use it.  Anything you can
388 get from C<loader>, you can get via the normal L<DBIx::Class::Schema>
389 methods, and your code will be more robust and forward-thinking
390 for doing so.
391
392 If you're already using C<loader> in your code, make an effort
393 to get rid of it.  If you think you've found a situation where it
394 is necessary, let me know and we'll see what we can do to remedy
395 that situation.
396
397 In some future version, this accessor *will* disappear.  It was
398 apparently quite a design/API mistake to ever have exposed it to
399 user-land in the first place, all things considered.
400
401 =head1 KNOWN ISSUES
402
403 =head2 Multiple Database Schemas
404
405 Currently the loader is limited to working within a single schema
406 (using the database vendors' definition of "schema").  If you
407 have a multi-schema database with inter-schema relationships (which
408 is easy to do in PostgreSQL or DB2 for instance), you only get to
409 automatically load the tables of one schema, and any relationships
410 to tables in other schemas will be silently ignored.
411
412 At some point in the future, an intelligent way around this might be
413 devised, probably by allowing the C<db_schema> option to be an
414 arrayref of schemas to load.
415
416 In "normal" L<DBIx::Class::Schema> usage, manually-defined
417 source classes and relationships have no problems crossing vendor schemas.
418
419 =head1 AUTHOR
420
421 Brandon Black, C<blblack@gmail.com>
422
423 Based on L<DBIx::Class::Loader> by Sebastian Riedel
424
425 Based upon the work of IKEBE Tomohiro
426
427 =head1 THANK YOU
428
429 Matt S Trout, all of the #dbix-class folks, and everyone who's ever sent
430 in a bug report or suggestion.
431
432 =head1 LICENSE
433
434 This library is free software; you can redistribute it and/or modify it under
435 the same terms as Perl itself.
436
437 =head1 SEE ALSO
438
439 L<DBIx::Class>, L<DBIx::Class::Manual::ExampleSchema>
440
441 =cut
442
443 1;