Version bumped to 0.03001
[dbsrgits/DBIx-Class-Schema-Loader.git] / lib / DBIx / Class / Schema / Loader / Base.pm
CommitLineData
996be9ee 1package DBIx::Class::Schema::Loader::Base;
2
3use strict;
4use warnings;
5use base qw/Class::Accessor::Fast/;
6use Class::C3;
7use Carp;
8use UNIVERSAL::require;
9use DBIx::Class::Schema::Loader::RelBuilder;
10use Data::Dump qw/ dump /;
11use POSIX qw//;
12require DBIx::Class;
13
14__PACKAGE__->mk_ro_accessors(qw/
15 schema
16 schema_class
17
18 exclude
19 constraint
20 additional_classes
21 additional_base_classes
22 left_base_classes
23 components
24 resultset_components
25 relationships
26 moniker_map
27 inflect_singular
28 inflect_plural
29 debug
30 dump_directory
31
32 legacy_default_inflections
33
34 db_schema
35 _tables
36 classes
37 monikers
38 /);
39
40=head1 NAME
41
42DBIx::Class::Schema::Loader::Base - Base DBIx::Class::Schema::Loader Implementation.
43
44=head1 SYNOPSIS
45
46See L<DBIx::Class::Schema::Loader>
47
48=head1 DESCRIPTION
49
50This is the base class for the storage-specific C<DBIx::Class::Schema::*>
51classes, and implements the common functionality between them.
52
53=head1 CONSTRUCTOR OPTIONS
54
55These constructor options are the base options for
56L<DBIx::Class::Schema::Loader/loader_opts>. Available constructor options are:
57
58=head2 relationships
59
60Try to automatically detect/setup has_a and has_many relationships.
61
62=head2 debug
63
64If set to true, each constructive L<DBIx::Class> statement the loader
65decides to execute will be C<warn>-ed before execution.
66
67=head2 constraint
68
69Only load tables matching regex. Best specified as a qr// regex.
70
71=head2 exclude
72
73Exclude tables matching regex. Best specified as a qr// regex.
74
75=head2 moniker_map
76
77Overrides the default tablename -> moniker translation. Can be either
78a hashref of table => moniker names, or a coderef for a translator
79function taking a single scalar table name argument and returning
80a scalar moniker. If the hash entry does not exist, or the function
81returns a false value, the code falls back to default behavior
82for that table name.
83
84The default behavior is: C<join '', map ucfirst, split /[\W_]+/, lc $table>,
85which is to say: lowercase everything, split up the table name into chunks
86anywhere a non-alpha-numeric character occurs, change the case of first letter
87of each chunk to upper case, and put the chunks back together. Examples:
88
89 Table Name | Moniker Name
90 ---------------------------
91 luser | Luser
92 luser_group | LuserGroup
93 luser-opts | LuserOpts
94
95=head2 inflect_plural
96
97Just like L</moniker_map> above (can be hash/code-ref, falls back to default
98if hash key does not exist or coderef returns false), but acts as a map
99for pluralizing relationship names. The default behavior is to utilize
100L<Lingua::EN::Inflect::Number/to_PL>.
101
102=head2 inflect_singular
103
104As L</inflect_plural> above, but for singularizing relationship names.
105Default behavior is to utilize L<Lingua::EN::Inflect::Number/to_S>.
106
107=head2 additional_base_classes
108
109List of additional base classes all of your table classes will use.
110
111=head2 left_base_classes
112
113List of additional base classes all of your table classes will use
114that need to be leftmost.
115
116=head2 additional_classes
117
118List of additional classes which all of your table classes will use.
119
120=head2 components
121
122List of additional components to be loaded into all of your table
123classes. A good example would be C<ResultSetManager>.
124
125=head2 resultset_components
126
127List of additional resultset components to be loaded into your table
128classes. A good example would be C<AlwaysRS>. Component
129C<ResultSetManager> will be automatically added to the above
130C<components> list if this option is set.
131
132=head2 legacy_default_inflections
133
134Setting this option changes the default fallback for L</inflect_plural> to
135utilize L<Lingua::EN::Inflect/PL>, and L</inflect_singlular> to a no-op.
136Those choices produce substandard results, but might be neccesary to support
137your existing code if you started developing on a version prior to 0.03 and
138don't wish to go around updating all your relationship names to the new
139defaults.
140
141=head2 dump_directory
142
143This option is designed to be a tool to help you transition from this
144loader to a manually-defined schema when you decide it's time to do so.
145
146The value of this option is a perl libdir pathname. Within
147that directory this module will create a baseline manual
148L<DBIx::Class::Schema> module set, based on what it creates at runtime
149in memory.
150
151The created schema class will have the same classname as the one on
152which you are setting this option (and the ResultSource classes will be
153based on this name as well). Therefore it is wise to note that if you
154point the C<dump_directory> option of a schema class at the live libdir
155where that class is currently located, it will overwrite itself with a
156manual version of itself. This might be a really good or bad thing
157depending on your situation and perspective.
158
159Normally you wouldn't hardcode this setting in your schema class, as it
160is meant for one-time manual usage.
161
162See L<DBIx::Class::Schema::Loader/dump_to_dir> for examples of the
163recommended way to access this functionality.
164
165=head1 DEPRECATED CONSTRUCTOR OPTIONS
166
167=head2 inflect_map
168
169Equivalent to L</inflect_plural>.
170
171=head2 inflect
172
173Equivalent to L</inflect_plural>.
174
175=head2 connect_info, dsn, user, password, options
176
177You connect these schemas the same way you would any L<DBIx::Class::Schema>,
178which is by calling either C<connect> or C<connection> on a schema class
179or object. These options are only supported via the deprecated
180C<load_from_connection> interface, which will be removed in the future.
181
182=head1 METHODS
183
184None of these methods are intended for direct invocation by regular
185users of L<DBIx::Class::Schema::Loader>. Anything you can find here
186can also be found via standard L<DBIx::Class::Schema> methods somehow.
187
188=cut
189
190# ensure that a peice of object data is a valid arrayref, creating
191# an empty one or encapsulating whatever's there.
192sub _ensure_arrayref {
193 my $self = shift;
194
195 foreach (@_) {
196 $self->{$_} ||= [];
197 $self->{$_} = [ $self->{$_} ]
198 unless ref $self->{$_} eq 'ARRAY';
199 }
200}
201
202=head2 new
203
204Constructor for L<DBIx::Class::Schema::Loader::Base>, used internally
205by L<DBIx::Class::Schema::Loader>.
206
207=cut
208
209sub new {
210 my ( $class, %args ) = @_;
211
212 my $self = { %args };
213
214 bless $self => $class;
215
216 $self->{db_schema} ||= '';
217 $self->_ensure_arrayref(qw/additional_classes
218 additional_base_classes
219 left_base_classes
220 components
221 resultset_components
222 /);
223
224 push(@{$self->{components}}, 'ResultSetManager')
225 if @{$self->{resultset_components}};
226
227 $self->{monikers} = {};
228 $self->{classes} = {};
229
230 # Support deprecated arguments
231 for(qw/inflect_map inflect/) {
232 warn "Argument $_ is deprecated in favor of 'inflect_plural'"
233 if $self->{$_};
234 }
235 $self->{inflect_plural} ||= $self->{inflect_map} || $self->{inflect};
236
237 $self->{schema_class} ||= ( ref $self->{schema} || $self->{schema} );
238 $self->{schema} ||= $self->{schema_class};
239
240 $self;
241}
242
243sub _load_external {
244 my $self = shift;
245
246 foreach my $table_class (values %{$self->classes}) {
247 $table_class->require;
248 if($@ && $@ !~ /^Can't locate /) {
249 croak "Failed to load external class definition"
250 . " for '$table_class': $@";
251 }
252 next if $@; # "Can't locate" error
253
254 # If we make it to here, we loaded an external definition
255 warn qq/# Loaded external class definition for '$table_class'\n/
256 if $self->debug;
257
258 if($self->dump_directory) {
259 my $class_path = $table_class;
260 $class_path =~ s{::}{/}g;
261 my $filename = $INC{$class_path};
262 croak 'Failed to locate actual external module file for '
263 . "'$table_class'"
264 if !$filename;
265 open(my $fh, '<', $filename)
266 or croak "Failed to open $filename for reading: $!";
267 $self->_raw_stmt($table_class,
268 q|# These lines loaded from user-supplied external file: |
269 );
270 while(<$fh>) {
271 chomp;
272 $self->_raw_stmt($table_class, $_);
273 }
274 $self->_raw_stmt($table_class,
275 q|# End of lines loaded from user-supplied external file |
276 );
277 close($fh)
278 or croak "Failed to close $filename: $!";
279 }
280 }
281}
282
283=head2 load
284
285Does the actual schema-construction work.
286
287=cut
288
289sub load {
290 my $self = shift;
291
292 $self->_load_classes;
293 $self->_load_relationships if $self->relationships;
294 $self->_load_external;
295 $self->_dump_to_dir if $self->dump_directory;
296
5223f24a 297 # Drop temporary cache
298 delete $self->{_cache};
299
996be9ee 300 1;
301}
302
303sub _get_dump_filename {
304 my ($self, $class) = (@_);
305
306 $class =~ s{::}{/}g;
307 return $self->dump_directory . q{/} . $class . q{.pm};
308}
309
310sub _ensure_dump_subdirs {
311 my ($self, $class) = (@_);
312
313 my @name_parts = split(/::/, $class);
314 pop @name_parts;
315 my $dir = $self->dump_directory;
316 foreach (@name_parts) {
317 $dir .= q{/} . $_;
318 if(! -d $dir) {
319 mkdir($dir) or die "mkdir('$dir') failed: $!";
320 }
321 }
322}
323
324sub _dump_to_dir {
325 my ($self) = @_;
326
327 my $target_dir = $self->dump_directory;
328
329 die "Must specify target directory for dumping!" if ! $target_dir;
330
331 warn "Dumping manual schema to $target_dir ...\n";
332
333 if(! -d $target_dir) {
334 mkdir($target_dir) or die "mkdir('$target_dir') failed: $!";
335 }
336
337 my $verstr = $DBIx::Class::Schema::Loader::VERSION;
338 my $datestr = POSIX::strftime('%Y-%m-%d %H:%M:%S', localtime);
339 my $tagline = qq|# Created by DBIx::Class::Schema::Loader v$verstr @ $datestr|;
340
341 my $schema_class = $self->schema_class;
342 $self->_ensure_dump_subdirs($schema_class);
343
344 my $schema_fn = $self->_get_dump_filename($schema_class);
345 open(my $schema_fh, '>', $schema_fn)
346 or die "Cannot open $schema_fn for writing: $!";
347 print $schema_fh qq|package $schema_class;\n\n$tagline\n\n|;
348 print $schema_fh qq|use strict;\nuse warnings;\n\n|;
349 print $schema_fh qq|use base 'DBIx::Class::Schema';\n\n|;
350 print $schema_fh qq|__PACKAGE__->load_classes;\n|;
351 print $schema_fh qq|\n1;\n\n|;
352 close($schema_fh)
353 or die "Cannot close $schema_fn: $!";
354
355 foreach my $src_class (sort keys %{$self->{_dump_storage}}) {
356 $self->_ensure_dump_subdirs($src_class);
357 my $src_fn = $self->_get_dump_filename($src_class);
358 open(my $src_fh, '>', $src_fn)
359 or die "Cannot open $src_fn for writing: $!";
360 print $src_fh qq|package $src_class;\n\n$tagline\n\n|;
361 print $src_fh qq|use strict;\nuse warnings;\n\n|;
362 print $src_fh qq|use base 'DBIx::Class';\n\n|;
363 print $src_fh qq|$_\n|
364 for @{$self->{_dump_storage}->{$src_class}};
365 print $src_fh qq|\n1;\n\n|;
366 close($src_fh)
367 or die "Cannot close $src_fn: $!";
368 }
369
370 warn "Schema dump completed.\n";
371}
372
373sub _use {
374 my $self = shift;
375 my $target = shift;
376
377 foreach (@_) {
378 $_->require or croak ($_ . "->require: $@");
379 $self->_raw_stmt($target, "use $_;");
380 warn "$target: use $_" if $self->debug;
381 eval "package $target; use $_;";
382 croak "use $_: $@" if $@;
383 }
384}
385
386sub _inject {
387 my $self = shift;
388 my $target = shift;
389 my $schema_class = $self->schema_class;
390
391 my $blist = join(q{ }, @_);
392 $self->_raw_stmt($target, "use base qw/ $blist /;") if @_;
393 warn "$target: use base qw/ $blist /" if $self->debug;
394 foreach (@_) {
395 $_->require or croak ($_ . "->require: $@");
396 $schema_class->inject_base($target, $_);
397 }
398}
399
400# Load and setup classes
401sub _load_classes {
402 my $self = shift;
403
404 my $schema = $self->schema;
405 my $schema_class = $self->schema_class;
406
407 my $constraint = $self->constraint;
408 my $exclude = $self->exclude;
409 my @tables = sort $self->_tables_list;
410
411 warn "No tables found in database, nothing to load" if !@tables;
412
413 if(@tables) {
414 @tables = grep { /$constraint/ } @tables if $constraint;
415 @tables = grep { ! /$exclude/ } @tables if $exclude;
416
417 warn "All tables excluded by constraint/exclude, nothing to load"
418 if !@tables;
419 }
420
421 $self->{_tables} = \@tables;
422
423 foreach my $table (@tables) {
424 my $table_moniker = $self->_table2moniker($table);
425 my $table_class = $schema_class . q{::} . $table_moniker;
426
427 my $table_normalized = lc $table;
428 $self->classes->{$table} = $table_class;
429 $self->classes->{$table_normalized} = $table_class;
430 $self->monikers->{$table} = $table_moniker;
431 $self->monikers->{$table_normalized} = $table_moniker;
432
433 no warnings 'redefine';
434 local *Class::C3::reinitialize = sub { };
435 use warnings;
436
437 { no strict 'refs';
438 @{"${table_class}::ISA"} = qw/DBIx::Class/;
439 }
440 $self->_use ($table_class, @{$self->additional_classes});
441 $self->_inject($table_class, @{$self->additional_base_classes});
442
443 $self->_dbic_stmt($table_class, 'load_components', @{$self->components}, qw/PK::Auto Core/);
444
445 $self->_dbic_stmt($table_class, 'load_resultset_components', @{$self->resultset_components})
446 if @{$self->resultset_components};
447 $self->_inject($table_class, @{$self->left_base_classes});
448 }
449
450 Class::C3::reinitialize;
451
452 foreach my $table (@tables) {
453 my $table_class = $self->classes->{$table};
454 my $table_moniker = $self->monikers->{$table};
455
456 $self->_dbic_stmt($table_class,'table',$table);
457
458 my $cols = $self->_table_columns($table);
459 $self->_dbic_stmt($table_class,'add_columns',@$cols);
460
461 my $pks = $self->_table_pk_info($table) || [];
462 @$pks ? $self->_dbic_stmt($table_class,'set_primary_key',@$pks)
463 : carp("$table has no primary key");
464
465 my $uniqs = $self->_table_uniq_info($table) || [];
466 $self->_dbic_stmt($table_class,'add_unique_constraint',@$_) for (@$uniqs);
467
468 $schema_class->register_class($table_moniker, $table_class);
469 $schema->register_class($table_moniker, $table_class) if $schema ne $schema_class;
470 }
471}
472
473=head2 tables
474
475Returns a sorted list of loaded tables, using the original database table
476names.
477
478=cut
479
480sub tables {
481 my $self = shift;
482
483 return @{$self->_tables};
484}
485
486# Make a moniker from a table
487sub _table2moniker {
488 my ( $self, $table ) = @_;
489
490 my $moniker;
491
492 if( ref $self->moniker_map eq 'HASH' ) {
493 $moniker = $self->moniker_map->{$table};
494 }
495 elsif( ref $self->moniker_map eq 'CODE' ) {
496 $moniker = $self->moniker_map->($table);
497 }
498
499 $moniker ||= join '', map ucfirst, split /[\W_]+/, lc $table;
500
501 return $moniker;
502}
503
504sub _load_relationships {
505 my $self = shift;
506
507 # Construct the fk_info RelBuilder wants to see, by
508 # translating table names to monikers in the _fk_info output
509 my %fk_info;
510 foreach my $table ($self->tables) {
511 my $tbl_fk_info = $self->_table_fk_info($table);
512 foreach my $fkdef (@$tbl_fk_info) {
513 $fkdef->{remote_source} =
514 $self->monikers->{delete $fkdef->{remote_table}};
515 }
516 my $moniker = $self->monikers->{$table};
517 $fk_info{$moniker} = $tbl_fk_info;
518 }
519
520 my $relbuilder = DBIx::Class::Schema::Loader::RelBuilder->new(
521 $self->schema_class, \%fk_info, $self->inflect_plural,
522 $self->inflect_singular
523 );
524
525 my $rel_stmts = $relbuilder->generate_code;
526 foreach my $src_class (sort keys %$rel_stmts) {
527 my $src_stmts = $rel_stmts->{$src_class};
528 foreach my $stmt (@$src_stmts) {
529 $self->_dbic_stmt($src_class,$stmt->{method},@{$stmt->{args}});
530 }
531 }
532}
533
534# Overload these in driver class:
535
536# Returns an arrayref of column names
537sub _table_columns { croak "ABSTRACT METHOD" }
538
539# Returns arrayref of pk col names
540sub _table_pk_info { croak "ABSTRACT METHOD" }
541
542# Returns an arrayref of uniqs [ [ foo => [ col1, col2 ] ], [ bar => [ ... ] ] ]
543sub _table_uniq_info { croak "ABSTRACT METHOD" }
544
545# Returns an arrayref of foreign key constraints, each
546# being a hashref with 3 keys:
547# local_columns (arrayref), remote_columns (arrayref), remote_table
548sub _table_fk_info { croak "ABSTRACT METHOD" }
549
550# Returns an array of lower case table names
551sub _tables_list { croak "ABSTRACT METHOD" }
552
553# Execute a constructive DBIC class method, with debug/dump_to_dir hooks.
554sub _dbic_stmt {
555 my $self = shift;
556 my $class = shift;
557 my $method = shift;
558
559 if(!$self->debug && !$self->dump_directory) {
560 $class->$method(@_);
561 return;
562 }
563
564 my $args = dump(@_);
565 $args = '(' . $args . ')' if @_ < 2;
566 my $stmt = $method . $args . q{;};
567
568 warn qq|$class\->$stmt\n| if $self->debug;
569 $class->$method(@_);
570 $self->_raw_stmt($class, '__PACKAGE__->' . $stmt);
571}
572
573# Store a raw source line for a class (for dumping purposes)
574sub _raw_stmt {
575 my ($self, $class, $stmt) = @_;
576 push(@{$self->{_dump_storage}->{$class}}, $stmt) if $self->dump_directory;
577}
578
579=head2 monikers
580
581Returns a hashref of loaded table-to-moniker mappings. There will
582be two entries for each table, the original name and the "normalized"
583name, in the case that the two are different (such as databases
584that like uppercase table names, or preserve your original mixed-case
585definitions, or what-have-you).
586
587=head2 classes
588
589Returns a hashref of table-to-classname mappings. In some cases it will
590contain multiple entries per table for the original and normalized table
591names, as above in L</monikers>.
592
593=head1 SEE ALSO
594
595L<DBIx::Class::Schema::Loader>
596
597=cut
598
5991;