Prevent Schema::Loader from overwriting unchanged schema files
[dbsrgits/DBIx-Class-Schema-Loader.git] / lib / DBIx / Class / Schema / Loader / Base.pm
1 package DBIx::Class::Schema::Loader::Base;
2
3 use strict;
4 use warnings;
5 use base qw/Class::Accessor::Fast/;
6 use Class::C3;
7 use Carp::Clan qw/^DBIx::Class/;
8 use UNIVERSAL::require;
9 use DBIx::Class::Schema::Loader::RelBuilder;
10 use Data::Dump qw/ dump /;
11 use POSIX qw//;
12 use File::Spec qw//;
13 use Cwd qw//;
14 use Digest::MD5 qw//;
15 require DBIx::Class;
16
17 our $VERSION = '0.04005';
18
19 __PACKAGE__->mk_ro_accessors(qw/
20                                 schema
21                                 schema_class
22
23                                 exclude
24                                 constraint
25                                 additional_classes
26                                 additional_base_classes
27                                 left_base_classes
28                                 components
29                                 resultset_components
30                                 skip_relationships
31                                 moniker_map
32                                 inflect_singular
33                                 inflect_plural
34                                 debug
35                                 dump_directory
36                                 dump_overwrite
37                                 really_erase_my_files
38                                 use_namespaces
39                                 result_namespace
40                                 resultset_namespace
41                                 default_resultset_class
42
43                                 db_schema
44                                 _tables
45                                 classes
46                                 monikers
47                              /);
48
49 =head1 NAME
50
51 DBIx::Class::Schema::Loader::Base - Base DBIx::Class::Schema::Loader Implementation.
52
53 =head1 SYNOPSIS
54
55 See L<DBIx::Class::Schema::Loader>
56
57 =head1 DESCRIPTION
58
59 This is the base class for the storage-specific C<DBIx::Class::Schema::*>
60 classes, and implements the common functionality between them.
61
62 =head1 CONSTRUCTOR OPTIONS
63
64 These constructor options are the base options for
65 L<DBIx::Class::Schema::Loader/loader_opts>.  Available constructor options are:
66
67 =head2 skip_relationships
68
69 Skip setting up relationships.  The default is to attempt the loading
70 of relationships.
71
72 =head2 debug
73
74 If set to true, each constructive L<DBIx::Class> statement the loader
75 decides to execute will be C<warn>-ed before execution.
76
77 =head2 db_schema
78
79 Set the name of the schema to load (schema in the sense that your database
80 vendor means it).  Does not currently support loading more than one schema
81 name.
82
83 =head2 constraint
84
85 Only load tables matching regex.  Best specified as a qr// regex.
86
87 =head2 exclude
88
89 Exclude tables matching regex.  Best specified as a qr// regex.
90
91 =head2 moniker_map
92
93 Overrides the default table name to moniker translation.  Can be either
94 a hashref of table keys and moniker values, or a coderef for a translator
95 function taking a single scalar table name argument and returning
96 a scalar moniker.  If the hash entry does not exist, or the function
97 returns a false value, the code falls back to default behavior
98 for that table name.
99
100 The default behavior is: C<join '', map ucfirst, split /[\W_]+/, lc $table>,
101 which is to say: lowercase everything, split up the table name into chunks
102 anywhere a non-alpha-numeric character occurs, change the case of first letter
103 of each chunk to upper case, and put the chunks back together.  Examples:
104
105     Table Name  | Moniker Name
106     ---------------------------
107     luser       | Luser
108     luser_group | LuserGroup
109     luser-opts  | LuserOpts
110
111 =head2 inflect_plural
112
113 Just like L</moniker_map> above (can be hash/code-ref, falls back to default
114 if hash key does not exist or coderef returns false), but acts as a map
115 for pluralizing relationship names.  The default behavior is to utilize
116 L<Lingua::EN::Inflect::Number/to_PL>.
117
118 =head2 inflect_singular
119
120 As L</inflect_plural> above, but for singularizing relationship names.
121 Default behavior is to utilize L<Lingua::EN::Inflect::Number/to_S>.
122
123 =head2 additional_base_classes
124
125 List of additional base classes all of your table classes will use.
126
127 =head2 left_base_classes
128
129 List of additional base classes all of your table classes will use
130 that need to be leftmost.
131
132 =head2 additional_classes
133
134 List of additional classes which all of your table classes will use.
135
136 =head2 components
137
138 List of additional components to be loaded into all of your table
139 classes.  A good example would be C<ResultSetManager>.
140
141 =head2 resultset_components
142
143 List of additional ResultSet components to be loaded into your table
144 classes.  A good example would be C<AlwaysRS>.  Component
145 C<ResultSetManager> will be automatically added to the above
146 C<components> list if this option is set.
147
148 =head2 use_namespaces
149
150 Generate result class names suitable for
151 L<DBIx::Class::Schema/load_namespaces> and call that instead of
152 L<DBIx::Class::Schema/load_classes>. When using this option you can also
153 specify any of the options for C<load_namespaces> (i.e. C<result_namespace>,
154 C<resultset_namespace>, C<default_resultset_class>), and they will be added
155 to the call (and the generated result class names adjusted appropriately).
156
157 =head2 dump_directory
158
159 This option is designed to be a tool to help you transition from this
160 loader to a manually-defined schema when you decide it's time to do so.
161
162 The value of this option is a perl libdir pathname.  Within
163 that directory this module will create a baseline manual
164 L<DBIx::Class::Schema> module set, based on what it creates at runtime
165 in memory.
166
167 The created schema class will have the same classname as the one on
168 which you are setting this option (and the ResultSource classes will be
169 based on this name as well).
170
171 Normally you wouldn't hard-code this setting in your schema class, as it
172 is meant for one-time manual usage.
173
174 See L<DBIx::Class::Schema::Loader/dump_to_dir> for examples of the
175 recommended way to access this functionality.
176
177 =head2 dump_overwrite
178
179 Deprecated.  See L</really_erase_my_files> below, which does *not* mean
180 the same thing as the old C<dump_overwrite> setting from previous releases.
181
182 =head2 really_erase_my_files
183
184 Default false.  If true, Loader will unconditionally delete any existing
185 files before creating the new ones from scratch when dumping a schema to disk.
186
187 The default behavior is instead to only replace the top portion of the
188 file, up to and including the final stanza which contains
189 C<# DO NOT MODIFY THIS OR ANYTHING ABOVE!>
190 leaving any customizations you placed after that as they were.
191
192 When C<really_erase_my_files> is not set, if the output file already exists,
193 but the aforementioned final stanza is not found, or the checksum
194 contained there does not match the generated contents, Loader will
195 croak and not touch the file.
196
197 You should really be using version control on your schema classes (and all
198 of the rest of your code for that matter).  Don't blame me if a bug in this
199 code wipes something out when it shouldn't have, you've been warned.
200
201 =head1 METHODS
202
203 None of these methods are intended for direct invocation by regular
204 users of L<DBIx::Class::Schema::Loader>.  Anything you can find here
205 can 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.
211 sub _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
223 Constructor for L<DBIx::Class::Schema::Loader::Base>, used internally
224 by L<DBIx::Class::Schema::Loader>.
225
226 =cut
227
228 sub new {
229     my ( $class, %args ) = @_;
230
231     my $self = { %args };
232
233     bless $self => $class;
234
235     $self->_ensure_arrayref(qw/additional_classes
236                                additional_base_classes
237                                left_base_classes
238                                components
239                                resultset_components
240                               /);
241
242     push(@{$self->{components}}, 'ResultSetManager')
243         if @{$self->{resultset_components}};
244
245     $self->{monikers} = {};
246     $self->{classes} = {};
247
248     $self->{schema_class} ||= ( ref $self->{schema} || $self->{schema} );
249     $self->{schema} ||= $self->{schema_class};
250
251     croak "dump_overwrite is deprecated.  Please read the"
252         . " DBIx::Class::Schema::Loader::Base documentation"
253             if $self->{dump_overwrite};
254
255     $self->{relbuilder} = DBIx::Class::Schema::Loader::RelBuilder->new(
256         $self->schema_class, $self->inflect_plural, $self->inflect_singular
257     ) if !$self->{skip_relationships};
258
259     $self;
260 }
261
262 sub _find_file_in_inc {
263     my ($self, $file) = @_;
264
265     foreach my $prefix (@INC) {
266         my $fullpath = $prefix . '/' . $file;
267         return $fullpath if -f $fullpath;
268     }
269
270     return;
271 }
272
273 sub _load_external {
274     my ($self, $class) = @_;
275
276     my $class_path = $class;
277     $class_path =~ s{::}{/}g;
278     $class_path .= '.pm';
279
280     my $inc_path = $self->_find_file_in_inc($class_path);
281
282     return if !$inc_path;
283
284     my $real_dump_path = $self->dump_directory
285         ? Cwd::abs_path(
286               File::Spec->catfile($self->dump_directory, $class_path)
287           )
288         : '';
289     my $real_inc_path = Cwd::abs_path($inc_path);
290     return if $real_inc_path eq $real_dump_path;
291
292     $class->require;
293     croak "Failed to load external class definition"
294         . " for '$class': $@"
295             if $@;
296
297     # If we make it to here, we loaded an external definition
298     warn qq/# Loaded external class definition for '$class'\n/
299         if $self->debug;
300
301     # The rest is only relevant when dumping
302     return if !$self->dump_directory;
303
304     croak 'Failed to locate actual external module file for '
305           . "'$class'"
306               if !$real_inc_path;
307     open(my $fh, '<', $real_inc_path)
308         or croak "Failed to open '$real_inc_path' for reading: $!";
309     $self->_ext_stmt($class,
310         qq|# These lines were loaded from '$real_inc_path' found in \@INC.|
311         .q|# They are now part of the custom portion of this file|
312         .q|# for you to hand-edit.  If you do not either delete|
313         .q|# this section or remove that file from @INC, this section|
314         .q|# will be repeated redundantly when you re-create this|
315         .q|# file again via Loader!|
316     );
317     while(<$fh>) {
318         chomp;
319         $self->_ext_stmt($class, $_);
320     }
321     $self->_ext_stmt($class,
322         qq|# End of lines loaded from '$real_inc_path' |
323     );
324     close($fh)
325         or croak "Failed to close $real_inc_path: $!";
326 }
327
328 =head2 load
329
330 Does the actual schema-construction work.
331
332 =cut
333
334 sub load {
335     my $self = shift;
336
337     $self->_load_tables($self->_tables_list);
338 }
339
340 =head2 rescan
341
342 Arguments: schema
343
344 Rescan the database for newly added tables.  Does
345 not process drops or changes.  Returns a list of
346 the newly added table monikers.
347
348 The schema argument should be the schema class
349 or object to be affected.  It should probably
350 be derived from the original schema_class used
351 during L</load>.
352
353 =cut
354
355 sub rescan {
356     my ($self, $schema) = @_;
357
358     $self->{schema} = $schema;
359
360     my @created;
361     my @current = $self->_tables_list;
362     foreach my $table ($self->_tables_list) {
363         if(!exists $self->{_tables}->{$table}) {
364             push(@created, $table);
365         }
366     }
367
368     my $loaded = $self->_load_tables(@created);
369
370     return map { $self->monikers->{$_} } @$loaded;
371 }
372
373 sub _load_tables {
374     my ($self, @tables) = @_;
375
376     # First, use _tables_list with constraint and exclude
377     #  to get a list of tables to operate on
378
379     my $constraint   = $self->constraint;
380     my $exclude      = $self->exclude;
381
382     @tables = grep { /$constraint/ } @tables if $constraint;
383     @tables = grep { ! /$exclude/ } @tables if $exclude;
384
385     # Save the new tables to the tables list
386     foreach (@tables) {
387         $self->{_tables}->{$_} = 1;
388     }
389
390     # Set up classes/monikers
391     {
392         no warnings 'redefine';
393         local *Class::C3::reinitialize = sub { };
394         use warnings;
395
396         $self->_make_src_class($_) for @tables;
397     }
398
399     Class::C3::reinitialize;
400
401     $self->_setup_src_meta($_) for @tables;
402
403     if(!$self->skip_relationships) {
404         $self->_load_relationships($_) for @tables;
405     }
406
407     $self->_load_external($_)
408         for map { $self->classes->{$_} } @tables;
409
410     $self->_dump_to_dir if $self->dump_directory;
411
412     # Drop temporary cache
413     delete $self->{_cache};
414
415     return \@tables;
416 }
417
418 sub _get_dump_filename {
419     my ($self, $class) = (@_);
420
421     $class =~ s{::}{/}g;
422     return $self->dump_directory . q{/} . $class . q{.pm};
423 }
424
425 sub _ensure_dump_subdirs {
426     my ($self, $class) = (@_);
427
428     my @name_parts = split(/::/, $class);
429     pop @name_parts; # we don't care about the very last element,
430                      # which is a filename
431
432     my $dir = $self->dump_directory;
433     while (1) {
434         if(!-d $dir) {
435             mkdir($dir) or croak "mkdir('$dir') failed: $!";
436         }
437         last if !@name_parts;
438         $dir = File::Spec->catdir($dir, shift @name_parts);
439     }
440 }
441
442 sub _dump_to_dir {
443     my ($self) = @_;
444
445     my $target_dir = $self->dump_directory;
446
447     my $schema_class = $self->schema_class;
448
449     croak "Must specify target directory for dumping!" if ! $target_dir;
450
451     warn "Dumping manual schema for $schema_class to directory $target_dir ...\n";
452
453     my $schema_text =
454           qq|package $schema_class;\n\n|
455         . qq|use strict;\nuse warnings;\n\n|
456         . qq|use base 'DBIx::Class::Schema';\n\n|;
457
458     
459     if ($self->use_namespaces) {
460         $schema_text .= qq|__PACKAGE__->load_namespaces|;
461         my $namespace_options;
462         for my $attr (qw(result_namespace
463                          resultset_namespace
464                          default_resultset_class)) {
465             if ($self->$attr) {
466                 $namespace_options .= qq|    $attr => '| . $self->$attr . qq|',\n|
467             }
468         }
469         $schema_text .= qq|(\n$namespace_options)| if $namespace_options;
470         $schema_text .= qq|;\n|;
471     }
472     else {
473         $schema_text .= qq|__PACKAGE__->load_classes;\n|;
474
475     }
476
477     $self->_write_classfile($schema_class, $schema_text);
478
479     foreach my $src_class (sort keys %{$self->{_dump_storage}}) {
480         my $src_text = 
481               qq|package $src_class;\n\n|
482             . qq|use strict;\nuse warnings;\n\n|
483             . qq|use base 'DBIx::Class';\n\n|;
484
485         $self->_write_classfile($src_class, $src_text);
486     }
487
488     warn "Schema dump completed.\n";
489 }
490
491 sub _write_classfile {
492     my ($self, $class, $text) = @_;
493
494     my $filename = $self->_get_dump_filename($class);
495     $self->_ensure_dump_subdirs($class);
496
497     if (-f $filename && $self->really_erase_my_files) {
498         warn "Deleting existing file '$filename' due to "
499             . "'really_erase_my_files' setting\n";
500         unlink($filename);
501     }    
502
503     my $custom_content = $self->_get_custom_content($class, $filename);
504
505     # only re-write the file if new content ($text) is different from old ($custom_content)
506     if ( $custom_content ) {
507         my $no_timestamp = $custom_content;
508         $no_timestamp =~ s/^# Created by DBIx::Class::Schema::Loader.*//;
509         return if ($no_timestamp eq $text);
510     }
511
512     $custom_content ||= qq|\n\n# You can replace this text with custom|
513         . qq| content, and it will be preserved on regeneration|
514         . qq|\n1;\n|;
515
516     $text .= qq|$_\n|
517         for @{$self->{_dump_storage}->{$class} || []};
518
519     $text .= qq|\n\n# Created by DBIx::Class::Schema::Loader|
520         . qq| v| . $DBIx::Class::Schema::Loader::VERSION
521         . q| @ | . POSIX::strftime('%Y-%m-%d %H:%M:%S', localtime)
522         . qq|\n# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:|;
523
524     open(my $fh, '>', $filename)
525         or croak "Cannot open '$filename' for writing: $!";
526
527     # Write the top half and its MD5 sum
528     print $fh $text . Digest::MD5::md5_base64($text) . "\n";
529
530     # Write out anything loaded via external partial class file in @INC
531     print $fh qq|$_\n|
532         for @{$self->{_ext_storage}->{$class} || []};
533
534     print $fh $custom_content;
535
536     close($fh)
537         or croak "Cannot close '$filename': $!";
538 }
539
540 sub _get_custom_content {
541     my ($self, $class, $filename) = @_;
542
543     return if ! -f $filename;
544     open(my $fh, '<', $filename)
545         or croak "Cannot open '$filename' for reading: $!";
546
547     my $mark_re = 
548         qr{^(# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:)([A-Za-z0-9/+]{22})\n};
549
550     my $found = 0;
551     my $buffer = '';
552     while(<$fh>) {
553         if(!$found && /$mark_re/) {
554             $found = 1;
555             $buffer .= $1;
556             croak "Checksum mismatch in '$filename'"
557                 if Digest::MD5::md5_base64($buffer) ne $2;
558
559             $buffer = '';
560         }
561         else {
562             $buffer .= $_;
563         }
564     }
565
566     croak "Cannot not overwrite '$filename' without 'really_erase_my_files',"
567         . " it does not appear to have been generated by Loader"
568             if !$found;
569
570     return $buffer;
571 }
572
573 sub _use {
574     my $self = shift;
575     my $target = shift;
576     my $evalstr;
577
578     foreach (@_) {
579         warn "$target: use $_;" if $self->debug;
580         $self->_raw_stmt($target, "use $_;");
581         $_->require or croak ($_ . "->require: $@");
582         $evalstr .= "package $target; use $_;";
583     }
584     eval $evalstr if $evalstr;
585     croak $@ if $@;
586 }
587
588 sub _inject {
589     my $self = shift;
590     my $target = shift;
591     my $schema_class = $self->schema_class;
592
593     my $blist = join(q{ }, @_);
594     warn "$target: use base qw/ $blist /;" if $self->debug && @_;
595     $self->_raw_stmt($target, "use base qw/ $blist /;") if @_;
596     foreach (@_) {
597         $_->require or croak ($_ . "->require: $@");
598         $schema_class->inject_base($target, $_);
599     }
600 }
601
602 # Create class with applicable bases, setup monikers, etc
603 sub _make_src_class {
604     my ($self, $table) = @_;
605
606     my $schema       = $self->schema;
607     my $schema_class = $self->schema_class;
608
609     my $table_moniker = $self->_table2moniker($table);
610     my @result_namespace = ($schema_class);
611     if ($self->use_namespaces) {
612         my $result_namespace = $self->result_namespace || 'Result';
613         if ($result_namespace =~ /^\+(.*)/) {
614             # Fully qualified namespace
615             @result_namespace =  ($1)
616         }
617         else {
618             # Relative namespace
619             push @result_namespace, $result_namespace;
620         }
621     }
622     my $table_class = join(q{::}, @result_namespace, $table_moniker);
623
624     my $table_normalized = lc $table;
625     $self->classes->{$table} = $table_class;
626     $self->classes->{$table_normalized} = $table_class;
627     $self->monikers->{$table} = $table_moniker;
628     $self->monikers->{$table_normalized} = $table_moniker;
629
630     { no strict 'refs'; @{"${table_class}::ISA"} = qw/DBIx::Class/ }
631
632     $self->_use   ($table_class, @{$self->additional_classes});
633     $self->_inject($table_class, @{$self->additional_base_classes});
634
635     $self->_dbic_stmt($table_class, 'load_components', @{$self->components}, 'Core');
636
637     $self->_dbic_stmt($table_class, 'load_resultset_components', @{$self->resultset_components})
638         if @{$self->resultset_components};
639     $self->_inject($table_class, @{$self->left_base_classes});
640 }
641
642 # Set up metadata (cols, pks, etc) and register the class with the schema
643 sub _setup_src_meta {
644     my ($self, $table) = @_;
645
646     my $schema       = $self->schema;
647     my $schema_class = $self->schema_class;
648
649     my $table_class = $self->classes->{$table};
650     my $table_moniker = $self->monikers->{$table};
651
652     $self->_dbic_stmt($table_class,'table',$table);
653
654     my $cols = $self->_table_columns($table);
655     my $col_info;
656     eval { $col_info = $self->_columns_info_for($table) };
657     if($@) {
658         $self->_dbic_stmt($table_class,'add_columns',@$cols);
659     }
660     else {
661         my %col_info_lc = map { lc($_), $col_info->{$_} } keys %$col_info;
662         $self->_dbic_stmt(
663             $table_class,
664             'add_columns',
665             map { $_, ($col_info_lc{$_}||{}) } @$cols
666         );
667     }
668
669     my $pks = $self->_table_pk_info($table) || [];
670     @$pks ? $self->_dbic_stmt($table_class,'set_primary_key',@$pks)
671           : carp("$table has no primary key");
672
673     my $uniqs = $self->_table_uniq_info($table) || [];
674     $self->_dbic_stmt($table_class,'add_unique_constraint',@$_) for (@$uniqs);
675
676     $schema_class->register_class($table_moniker, $table_class);
677     $schema->register_class($table_moniker, $table_class) if $schema ne $schema_class;
678 }
679
680 =head2 tables
681
682 Returns a sorted list of loaded tables, using the original database table
683 names.
684
685 =cut
686
687 sub tables {
688     my $self = shift;
689
690     return keys %{$self->_tables};
691 }
692
693 # Make a moniker from a table
694 sub _table2moniker {
695     my ( $self, $table ) = @_;
696
697     my $moniker;
698
699     if( ref $self->moniker_map eq 'HASH' ) {
700         $moniker = $self->moniker_map->{$table};
701     }
702     elsif( ref $self->moniker_map eq 'CODE' ) {
703         $moniker = $self->moniker_map->($table);
704     }
705
706     $moniker ||= join '', map ucfirst, split /[\W_]+/, lc $table;
707
708     return $moniker;
709 }
710
711 sub _load_relationships {
712     my ($self, $table) = @_;
713
714     my $tbl_fk_info = $self->_table_fk_info($table);
715     foreach my $fkdef (@$tbl_fk_info) {
716         $fkdef->{remote_source} =
717             $self->monikers->{delete $fkdef->{remote_table}};
718     }
719
720     my $local_moniker = $self->monikers->{$table};
721     my $rel_stmts = $self->{relbuilder}->generate_code($local_moniker, $tbl_fk_info);
722
723     foreach my $src_class (sort keys %$rel_stmts) {
724         my $src_stmts = $rel_stmts->{$src_class};
725         foreach my $stmt (@$src_stmts) {
726             $self->_dbic_stmt($src_class,$stmt->{method},@{$stmt->{args}});
727         }
728     }
729 }
730
731 # Overload these in driver class:
732
733 # Returns an arrayref of column names
734 sub _table_columns { croak "ABSTRACT METHOD" }
735
736 # Returns arrayref of pk col names
737 sub _table_pk_info { croak "ABSTRACT METHOD" }
738
739 # Returns an arrayref of uniqs [ [ foo => [ col1, col2 ] ], [ bar => [ ... ] ] ]
740 sub _table_uniq_info { croak "ABSTRACT METHOD" }
741
742 # Returns an arrayref of foreign key constraints, each
743 #   being a hashref with 3 keys:
744 #   local_columns (arrayref), remote_columns (arrayref), remote_table
745 sub _table_fk_info { croak "ABSTRACT METHOD" }
746
747 # Returns an array of lower case table names
748 sub _tables_list { croak "ABSTRACT METHOD" }
749
750 # Execute a constructive DBIC class method, with debug/dump_to_dir hooks.
751 sub _dbic_stmt {
752     my $self = shift;
753     my $class = shift;
754     my $method = shift;
755
756     if(!$self->debug && !$self->dump_directory) {
757         $class->$method(@_);
758         return;
759     }
760
761     my $args = dump(@_);
762     $args = '(' . $args . ')' if @_ < 2;
763     my $stmt = $method . $args . q{;};
764
765     warn qq|$class\->$stmt\n| if $self->debug;
766     $class->$method(@_);
767     $self->_raw_stmt($class, '__PACKAGE__->' . $stmt);
768 }
769
770 # Store a raw source line for a class (for dumping purposes)
771 sub _raw_stmt {
772     my ($self, $class, $stmt) = @_;
773     push(@{$self->{_dump_storage}->{$class}}, $stmt) if $self->dump_directory;
774 }
775
776 # Like above, but separately for the externally loaded stuff
777 sub _ext_stmt {
778     my ($self, $class, $stmt) = @_;
779     push(@{$self->{_ext_storage}->{$class}}, $stmt) if $self->dump_directory;
780 }
781
782 =head2 monikers
783
784 Returns a hashref of loaded table to moniker mappings.  There will
785 be two entries for each table, the original name and the "normalized"
786 name, in the case that the two are different (such as databases
787 that like uppercase table names, or preserve your original mixed-case
788 definitions, or what-have-you).
789
790 =head2 classes
791
792 Returns a hashref of table to class mappings.  In some cases it will
793 contain multiple entries per table for the original and normalized table
794 names, as above in L</monikers>.
795
796 =head1 SEE ALSO
797
798 L<DBIx::Class::Schema::Loader>
799
800 =cut
801
802 1;