Merging branches/DBIx-Class-Schema-Loader-refactor back into trunk:
[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
297 1;
298}
299
300sub _get_dump_filename {
301 my ($self, $class) = (@_);
302
303 $class =~ s{::}{/}g;
304 return $self->dump_directory . q{/} . $class . q{.pm};
305}
306
307sub _ensure_dump_subdirs {
308 my ($self, $class) = (@_);
309
310 my @name_parts = split(/::/, $class);
311 pop @name_parts;
312 my $dir = $self->dump_directory;
313 foreach (@name_parts) {
314 $dir .= q{/} . $_;
315 if(! -d $dir) {
316 mkdir($dir) or die "mkdir('$dir') failed: $!";
317 }
318 }
319}
320
321sub _dump_to_dir {
322 my ($self) = @_;
323
324 my $target_dir = $self->dump_directory;
325
326 die "Must specify target directory for dumping!" if ! $target_dir;
327
328 warn "Dumping manual schema to $target_dir ...\n";
329
330 if(! -d $target_dir) {
331 mkdir($target_dir) or die "mkdir('$target_dir') failed: $!";
332 }
333
334 my $verstr = $DBIx::Class::Schema::Loader::VERSION;
335 my $datestr = POSIX::strftime('%Y-%m-%d %H:%M:%S', localtime);
336 my $tagline = qq|# Created by DBIx::Class::Schema::Loader v$verstr @ $datestr|;
337
338 my $schema_class = $self->schema_class;
339 $self->_ensure_dump_subdirs($schema_class);
340
341 my $schema_fn = $self->_get_dump_filename($schema_class);
342 open(my $schema_fh, '>', $schema_fn)
343 or die "Cannot open $schema_fn for writing: $!";
344 print $schema_fh qq|package $schema_class;\n\n$tagline\n\n|;
345 print $schema_fh qq|use strict;\nuse warnings;\n\n|;
346 print $schema_fh qq|use base 'DBIx::Class::Schema';\n\n|;
347 print $schema_fh qq|__PACKAGE__->load_classes;\n|;
348 print $schema_fh qq|\n1;\n\n|;
349 close($schema_fh)
350 or die "Cannot close $schema_fn: $!";
351
352 foreach my $src_class (sort keys %{$self->{_dump_storage}}) {
353 $self->_ensure_dump_subdirs($src_class);
354 my $src_fn = $self->_get_dump_filename($src_class);
355 open(my $src_fh, '>', $src_fn)
356 or die "Cannot open $src_fn for writing: $!";
357 print $src_fh qq|package $src_class;\n\n$tagline\n\n|;
358 print $src_fh qq|use strict;\nuse warnings;\n\n|;
359 print $src_fh qq|use base 'DBIx::Class';\n\n|;
360 print $src_fh qq|$_\n|
361 for @{$self->{_dump_storage}->{$src_class}};
362 print $src_fh qq|\n1;\n\n|;
363 close($src_fh)
364 or die "Cannot close $src_fn: $!";
365 }
366
367 warn "Schema dump completed.\n";
368}
369
370sub _use {
371 my $self = shift;
372 my $target = shift;
373
374 foreach (@_) {
375 $_->require or croak ($_ . "->require: $@");
376 $self->_raw_stmt($target, "use $_;");
377 warn "$target: use $_" if $self->debug;
378 eval "package $target; use $_;";
379 croak "use $_: $@" if $@;
380 }
381}
382
383sub _inject {
384 my $self = shift;
385 my $target = shift;
386 my $schema_class = $self->schema_class;
387
388 my $blist = join(q{ }, @_);
389 $self->_raw_stmt($target, "use base qw/ $blist /;") if @_;
390 warn "$target: use base qw/ $blist /" if $self->debug;
391 foreach (@_) {
392 $_->require or croak ($_ . "->require: $@");
393 $schema_class->inject_base($target, $_);
394 }
395}
396
397# Load and setup classes
398sub _load_classes {
399 my $self = shift;
400
401 my $schema = $self->schema;
402 my $schema_class = $self->schema_class;
403
404 my $constraint = $self->constraint;
405 my $exclude = $self->exclude;
406 my @tables = sort $self->_tables_list;
407
408 warn "No tables found in database, nothing to load" if !@tables;
409
410 if(@tables) {
411 @tables = grep { /$constraint/ } @tables if $constraint;
412 @tables = grep { ! /$exclude/ } @tables if $exclude;
413
414 warn "All tables excluded by constraint/exclude, nothing to load"
415 if !@tables;
416 }
417
418 $self->{_tables} = \@tables;
419
420 foreach my $table (@tables) {
421 my $table_moniker = $self->_table2moniker($table);
422 my $table_class = $schema_class . q{::} . $table_moniker;
423
424 my $table_normalized = lc $table;
425 $self->classes->{$table} = $table_class;
426 $self->classes->{$table_normalized} = $table_class;
427 $self->monikers->{$table} = $table_moniker;
428 $self->monikers->{$table_normalized} = $table_moniker;
429
430 no warnings 'redefine';
431 local *Class::C3::reinitialize = sub { };
432 use warnings;
433
434 { no strict 'refs';
435 @{"${table_class}::ISA"} = qw/DBIx::Class/;
436 }
437 $self->_use ($table_class, @{$self->additional_classes});
438 $self->_inject($table_class, @{$self->additional_base_classes});
439
440 $self->_dbic_stmt($table_class, 'load_components', @{$self->components}, qw/PK::Auto Core/);
441
442 $self->_dbic_stmt($table_class, 'load_resultset_components', @{$self->resultset_components})
443 if @{$self->resultset_components};
444 $self->_inject($table_class, @{$self->left_base_classes});
445 }
446
447 Class::C3::reinitialize;
448
449 foreach my $table (@tables) {
450 my $table_class = $self->classes->{$table};
451 my $table_moniker = $self->monikers->{$table};
452
453 $self->_dbic_stmt($table_class,'table',$table);
454
455 my $cols = $self->_table_columns($table);
456 $self->_dbic_stmt($table_class,'add_columns',@$cols);
457
458 my $pks = $self->_table_pk_info($table) || [];
459 @$pks ? $self->_dbic_stmt($table_class,'set_primary_key',@$pks)
460 : carp("$table has no primary key");
461
462 my $uniqs = $self->_table_uniq_info($table) || [];
463 $self->_dbic_stmt($table_class,'add_unique_constraint',@$_) for (@$uniqs);
464
465 $schema_class->register_class($table_moniker, $table_class);
466 $schema->register_class($table_moniker, $table_class) if $schema ne $schema_class;
467 }
468}
469
470=head2 tables
471
472Returns a sorted list of loaded tables, using the original database table
473names.
474
475=cut
476
477sub tables {
478 my $self = shift;
479
480 return @{$self->_tables};
481}
482
483# Make a moniker from a table
484sub _table2moniker {
485 my ( $self, $table ) = @_;
486
487 my $moniker;
488
489 if( ref $self->moniker_map eq 'HASH' ) {
490 $moniker = $self->moniker_map->{$table};
491 }
492 elsif( ref $self->moniker_map eq 'CODE' ) {
493 $moniker = $self->moniker_map->($table);
494 }
495
496 $moniker ||= join '', map ucfirst, split /[\W_]+/, lc $table;
497
498 return $moniker;
499}
500
501sub _load_relationships {
502 my $self = shift;
503
504 # Construct the fk_info RelBuilder wants to see, by
505 # translating table names to monikers in the _fk_info output
506 my %fk_info;
507 foreach my $table ($self->tables) {
508 my $tbl_fk_info = $self->_table_fk_info($table);
509 foreach my $fkdef (@$tbl_fk_info) {
510 $fkdef->{remote_source} =
511 $self->monikers->{delete $fkdef->{remote_table}};
512 }
513 my $moniker = $self->monikers->{$table};
514 $fk_info{$moniker} = $tbl_fk_info;
515 }
516
517 my $relbuilder = DBIx::Class::Schema::Loader::RelBuilder->new(
518 $self->schema_class, \%fk_info, $self->inflect_plural,
519 $self->inflect_singular
520 );
521
522 my $rel_stmts = $relbuilder->generate_code;
523 foreach my $src_class (sort keys %$rel_stmts) {
524 my $src_stmts = $rel_stmts->{$src_class};
525 foreach my $stmt (@$src_stmts) {
526 $self->_dbic_stmt($src_class,$stmt->{method},@{$stmt->{args}});
527 }
528 }
529}
530
531# Overload these in driver class:
532
533# Returns an arrayref of column names
534sub _table_columns { croak "ABSTRACT METHOD" }
535
536# Returns arrayref of pk col names
537sub _table_pk_info { croak "ABSTRACT METHOD" }
538
539# Returns an arrayref of uniqs [ [ foo => [ col1, col2 ] ], [ bar => [ ... ] ] ]
540sub _table_uniq_info { croak "ABSTRACT METHOD" }
541
542# Returns an arrayref of foreign key constraints, each
543# being a hashref with 3 keys:
544# local_columns (arrayref), remote_columns (arrayref), remote_table
545sub _table_fk_info { croak "ABSTRACT METHOD" }
546
547# Returns an array of lower case table names
548sub _tables_list { croak "ABSTRACT METHOD" }
549
550# Execute a constructive DBIC class method, with debug/dump_to_dir hooks.
551sub _dbic_stmt {
552 my $self = shift;
553 my $class = shift;
554 my $method = shift;
555
556 if(!$self->debug && !$self->dump_directory) {
557 $class->$method(@_);
558 return;
559 }
560
561 my $args = dump(@_);
562 $args = '(' . $args . ')' if @_ < 2;
563 my $stmt = $method . $args . q{;};
564
565 warn qq|$class\->$stmt\n| if $self->debug;
566 $class->$method(@_);
567 $self->_raw_stmt($class, '__PACKAGE__->' . $stmt);
568}
569
570# Store a raw source line for a class (for dumping purposes)
571sub _raw_stmt {
572 my ($self, $class, $stmt) = @_;
573 push(@{$self->{_dump_storage}->{$class}}, $stmt) if $self->dump_directory;
574}
575
576=head2 monikers
577
578Returns a hashref of loaded table-to-moniker mappings. There will
579be two entries for each table, the original name and the "normalized"
580name, in the case that the two are different (such as databases
581that like uppercase table names, or preserve your original mixed-case
582definitions, or what-have-you).
583
584=head2 classes
585
586Returns a hashref of table-to-classname mappings. In some cases it will
587contain multiple entries per table for the original and normalized table
588names, as above in L</monikers>.
589
590=head1 SEE ALSO
591
592L<DBIx::Class::Schema::Loader>
593
594=cut
595
5961;