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