3dc9d9be94cece03e4c067177e2661978750335c
[dbsrgits/DBIx-Class-DeploymentHandler.git] / lib / DBIx / Class / DeploymentHandler / DeployMethod / SQL / Translator.pm
1 package DBIx::Class::DeploymentHandler::DeployMethod::SQL::Translator;
2 use Moose;
3
4 # ABSTRACT: Manage your SQL and Perl migrations in nicely laid out directories
5
6 use autodie;
7 use Carp qw( carp croak );
8 use DBIx::Class::DeploymentHandler::Logger;
9 use Log::Contextual qw(:log :dlog), -default_logger =>
10   DBIx::Class::DeploymentHandler::Logger->new({
11     env_prefix => 'DBICDH'
12   });
13
14 use Method::Signatures::Simple;
15 use Try::Tiny;
16
17 use SQL::Translator;
18 require SQL::Translator::Diff;
19
20 require DBIx::Class::Storage;   # loaded for type constraint
21 use DBIx::Class::DeploymentHandler::Types;
22
23 use File::Path 'mkpath';
24 use File::Spec::Functions;
25
26 with 'DBIx::Class::DeploymentHandler::HandlesDeploy';
27
28 has ignore_ddl => (
29   isa      => 'Bool',
30   is       => 'ro',
31   default  => undef,
32 );
33
34 has schema => (
35   isa      => 'DBIx::Class::Schema',
36   is       => 'ro',
37   required => 1,
38 );
39
40 has storage => (
41   isa        => 'DBIx::Class::Storage',
42   is         => 'ro',
43   lazy_build => 1,
44 );
45
46 method _build_storage {
47   my $s = $self->schema->storage;
48   $s->_determine_driver;
49   $s
50 }
51
52 has sql_translator_args => (
53   isa => 'HashRef',
54   is  => 'ro',
55   default => sub { {} },
56 );
57 has script_directory => (
58   isa      => 'Str',
59   is       => 'ro',
60   required => 1,
61   default  => 'sql',
62 );
63
64 has databases => (
65   coerce  => 1,
66   isa     => 'DBIx::Class::DeploymentHandler::Databases',
67   is      => 'ro',
68   default => sub { [qw( MySQL SQLite PostgreSQL )] },
69 );
70
71 has txn_wrap => (
72   is => 'ro',
73   isa => 'Bool',
74   default => 1,
75 );
76
77 has schema_version => (
78   is => 'ro',
79   isa => 'Str',
80   lazy_build => 1,
81 );
82
83 # this will probably never get called as the DBICDH
84 # will be passing down a schema_version normally, which
85 # is built the same way, but we leave this in place
86 method _build_schema_version { $self->schema->schema_version }
87
88 method __ddl_consume_with_prefix($type, $versions, $prefix) {
89   my $base_dir = $self->script_directory;
90
91   my $main    = catfile( $base_dir, $type      );
92   my $generic = catfile( $base_dir, '_generic' );
93   my $common  =
94     catfile( $base_dir, '_common', $prefix, join q(-), @{$versions} );
95
96   my $dir;
97   if (-d $main) {
98     $dir = catfile($main, $prefix, join q(-), @{$versions})
99   } elsif (-d $generic) {
100     $dir = catfile($generic, $prefix, join q(-), @{$versions});
101   } else {
102     croak "neither $main or $generic exist; please write/generate some SQL";
103   }
104
105   my %files;
106   try {
107      opendir my($dh), $dir;
108      %files =
109        map { $_ => "$dir/$_" }
110        grep { /\.(?:sql|pl|sql-\w+)$/ && -f "$dir/$_" }
111        readdir $dh;
112      closedir $dh;
113   } catch {
114     die $_ unless $self->ignore_ddl;
115   };
116   if (-d $common) {
117     opendir my($dh), $common;
118     for my $filename (grep { /\.(?:sql|pl)$/ && -f catfile($common,$_) } readdir $dh) {
119       unless ($files{$filename}) {
120         $files{$filename} = catfile($common,$filename);
121       }
122     }
123     closedir $dh;
124   }
125
126   return [@files{sort keys %files}]
127 }
128
129 method _ddl_preinstall_consume_filenames($type, $version) {
130   $self->__ddl_consume_with_prefix($type, [ $version ], 'preinstall')
131 }
132
133 method _ddl_schema_consume_filenames($type, $version) {
134   $self->__ddl_consume_with_prefix($type, [ $version ], 'schema')
135 }
136
137 method _ddl_protoschema_up_consume_filenames($versions) {
138   my $base_dir = $self->script_directory;
139
140   my $dir = catfile( $base_dir, '_protoschema', 'up', join q(-), @{$versions});
141
142   return [] unless -d $dir;
143
144   opendir my($dh), $dir;
145   my %files = map { $_ => "$dir/$_" } grep { /\.pl$/ && -f "$dir/$_" } readdir $dh;
146   closedir $dh;
147
148   return [@files{sort keys %files}]
149 }
150
151 method _ddl_protoschema_down_consume_filenames($versions) {
152   my $base_dir = $self->script_directory;
153
154   my $dir = catfile( $base_dir, '_protoschema', 'down', join q(-), @{$versions});
155
156   return [] unless -d $dir;
157
158   opendir my($dh), $dir;
159   my %files = map { $_ => "$dir/$_" } grep { /\.pl$/ && -f "$dir/$_" } readdir $dh;
160   closedir $dh;
161
162   return [@files{sort keys %files}]
163 }
164
165 method _ddl_protoschema_produce_filename($version) {
166   my $dirname = catfile( $self->script_directory, '_protoschema', 'schema',  $version );
167   mkpath($dirname) unless -d $dirname;
168
169   return catfile( $dirname, '001-auto.yml' );
170 }
171
172 method _ddl_schema_produce_filename($type, $version) {
173   my $dirname = catfile( $self->script_directory, $type, 'schema', $version );
174   mkpath($dirname) unless -d $dirname;
175
176   return catfile( $dirname, '001-auto.sql' );
177 }
178
179 method _ddl_schema_up_consume_filenames($type, $versions) {
180   $self->__ddl_consume_with_prefix($type, $versions, 'up')
181 }
182
183 method _ddl_schema_down_consume_filenames($type, $versions) {
184   $self->__ddl_consume_with_prefix($type, $versions, 'down')
185 }
186
187 method _ddl_schema_up_produce_filename($type, $versions) {
188   my $dir = $self->script_directory;
189
190   my $dirname = catfile( $dir, $type, 'up', join q(-), @{$versions});
191   mkpath($dirname) unless -d $dirname;
192
193   return catfile( $dirname, '001-auto.sql' );
194 }
195
196 method _ddl_schema_down_produce_filename($type, $versions, $dir) {
197   my $dirname = catfile( $dir, $type, 'down', join q(-), @{$versions} );
198   mkpath($dirname) unless -d $dirname;
199
200   return catfile( $dirname, '001-auto.sql');
201 }
202
203 method _run_sql_array($sql) {
204   my $storage = $self->storage;
205
206   $sql = [grep {
207     $_ && # remove blank lines
208     !/^(BEGIN|BEGIN TRANSACTION|COMMIT)/ # strip txn's
209   } map {
210     s/^\s+//; s/\s+$//; # trim whitespace
211     join '', grep { !/^--/ } split /\n/ # remove comments
212   } @$sql];
213
214   Dlog_trace { "Running SQL $_" } $sql;
215   foreach my $line (@{$sql}) {
216     $storage->_query_start($line);
217     # the whole reason we do this is so that we can see the line that was run
218     try {
219       $storage->dbh_do (sub { $_[1]->do($line) });
220     }
221     catch {
222       die "$_ (running line '$line')"
223     }
224     $storage->_query_end($line);
225   }
226   return join "\n", @$sql
227 }
228
229 method _run_sql($filename) {
230   log_debug { "Running SQL from $filename" };
231   return $self->_run_sql_array($self->_read_sql_file($filename));
232 }
233
234 method _run_perl($filename) {
235   log_debug { "Running Perl from $filename" };
236   my $filedata = do { local( @ARGV, $/ ) = $filename; <> };
237
238   no warnings 'redefine';
239   my $fn = eval "$filedata";
240   use warnings;
241   Dlog_trace { "Running Perl $_" } $fn;
242
243   if ($@) {
244     carp "$filename failed to compile: $@";
245   } elsif (ref $fn eq 'CODE') {
246     $fn->($self->schema)
247   } else {
248     carp "$filename should define an anonymouse sub that takes a schema but it didn't!";
249   }
250 }
251
252 method _run_sql_and_perl($filenames, $sql_to_run) {
253   my @files   = @{$filenames};
254   my $guard   = $self->schema->txn_scope_guard if $self->txn_wrap;
255
256   $self->_run_sql_array($sql_to_run) if $self->ignore_ddl;
257
258   my $sql = ($sql_to_run)?join ";\n", @$sql_to_run:'';
259   FILENAME:
260   for my $filename (@files) {
261     if ($self->ignore_ddl && $filename =~ /^[^_]*-auto.*\.sql$/) {
262       next FILENAME
263     } elsif ($filename =~ /\.sql$/) {
264        $sql .= $self->_run_sql($filename)
265     } elsif ( $filename =~ /\.pl$/ ) {
266        $self->_run_perl($filename)
267     } else {
268       croak "A file ($filename) got to deploy that wasn't sql or perl!";
269     }
270   }
271
272   $guard->commit if $self->txn_wrap;
273
274   return $sql;
275 }
276
277 sub deploy {
278   my $self = shift;
279   my $version = (shift @_ || {})->{version} || $self->schema_version;
280   log_info { "deploying version $version" };
281   my $sqlt_type = $self->storage->sqlt_type;
282   my $sql;
283   if ($self->ignore_ddl) {
284      $sql = $self->_sql_from_yaml({},
285        '_ddl_protoschema_produce_filename', $sqlt_type
286      );
287   }
288   return $self->_run_sql_and_perl($self->_ddl_schema_consume_filenames(
289     $sqlt_type,
290     $version,
291   ), $sql);
292 }
293
294 sub preinstall {
295   my $self         = shift;
296   my $args         = shift;
297   my $version      = $args->{version}      || $self->schema_version;
298   log_info { "preinstalling version $version" };
299   my $storage_type = $args->{storage_type} || $self->storage->sqlt_type;
300
301   my @files = @{$self->_ddl_preinstall_consume_filenames(
302     $storage_type,
303     $version,
304   )};
305
306   for my $filename (@files) {
307     # We ignore sql for now (till I figure out what to do with it)
308     if ( $filename =~ /^(.+)\.pl$/ ) {
309       my $filedata = do { local( @ARGV, $/ ) = $filename; <> };
310
311       no warnings 'redefine';
312       my $fn = eval "$filedata";
313       use warnings;
314
315       if ($@) {
316         carp "$filename failed to compile: $@";
317       } elsif (ref $fn eq 'CODE') {
318         $fn->()
319       } else {
320         carp "$filename should define an anonymous sub but it didn't!";
321       }
322     } else {
323       croak "A file ($filename) got to preinstall_scripts that wasn't sql or perl!";
324     }
325   }
326 }
327
328 method _sqldiff_from_yaml($from_version, $to_version, $db, $direction) {
329   my $dir       = $self->script_directory;
330   my $sqltargs = {
331     add_drop_table => 1,
332     ignore_constraint_names => 1,
333     ignore_index_names => 1,
334     %{$self->sql_translator_args}
335   };
336
337   my $source_schema;
338   {
339     my $prefilename = $self->_ddl_protoschema_produce_filename($from_version, $dir);
340
341     # should probably be a croak
342     carp("No previous schema file found ($prefilename)")
343        unless -e $prefilename;
344
345     my $t = SQL::Translator->new({
346        %{$sqltargs},
347        debug => 0,
348        trace => 0,
349        parser => 'SQL::Translator::Parser::YAML',
350     });
351
352     my $out = $t->translate( $prefilename )
353       or croak($t->error);
354
355     $source_schema = $t->schema;
356
357     $source_schema->name( $prefilename )
358       unless  $source_schema->name;
359   }
360
361   my $dest_schema;
362   {
363     my $filename = $self->_ddl_protoschema_produce_filename($to_version, $dir);
364
365     # should probably be a croak
366     carp("No next schema file found ($filename)")
367        unless -e $filename;
368
369     my $t = SQL::Translator->new({
370        %{$sqltargs},
371        debug => 0,
372        trace => 0,
373        parser => 'SQL::Translator::Parser::YAML',
374     });
375
376     my $out = $t->translate( $filename )
377       or croak($t->error);
378
379     $dest_schema = $t->schema;
380
381     $dest_schema->name( $filename )
382       unless $dest_schema->name;
383   }
384
385   my $transform_files_method =  "_ddl_protoschema_${direction}_consume_filenames";
386   my $transforms = $self->_coderefs_per_files(
387     $self->$transform_files_method([$from_version, $to_version])
388   );
389   $_->($source_schema, $dest_schema) for @$transforms;
390
391   return [SQL::Translator::Diff::schema_diff(
392      $source_schema, $db,
393      $dest_schema,   $db,
394      $sqltargs
395   )];
396 }
397
398 method _sql_from_yaml($sqltargs, $from_file, $db) {
399   my $schema    = $self->schema;
400   my $version   = $self->schema_version;
401
402   my $sqlt = SQL::Translator->new({
403     add_drop_table          => 0,
404     parser                  => 'SQL::Translator::Parser::YAML',
405     %{$sqltargs},
406     producer => $db,
407   });
408
409   my $yaml_filename = $self->$from_file($version);
410
411   my @sql = $sqlt->translate($yaml_filename);
412   if(!@sql) {
413     carp("Failed to translate to $db, skipping. (" . $sqlt->error . ")");
414     return undef;
415   }
416   return \@sql;
417 }
418
419 sub _prepare_install {
420   my $self      = shift;
421   my $sqltargs  = { %{$self->sql_translator_args}, %{shift @_} };
422   my $from_file = shift;
423   my $to_file   = shift;
424   my $dir       = $self->script_directory;
425   my $databases = $self->databases;
426   my $version   = $self->schema_version;
427
428   foreach my $db (@$databases) {
429     my $sql = $self->_sql_from_yaml($sqltargs, $from_file, $db ) or next;
430
431     my $filename = $self->$to_file($db, $version, $dir);
432     if (-e $filename ) {
433       carp "Overwriting existing DDL file - $filename";
434       unlink $filename;
435     }
436     open my $file, q(>), $filename;
437     print {$file} join ";\n", @$sql;
438     close $file;
439   }
440 }
441
442 sub _resultsource_install_filename {
443   my ($self, $source_name) = @_;
444   return sub {
445     my ($self, $type, $version) = @_;
446     my $dirname = catfile( $self->script_directory, $type, 'schema', $version );
447     mkpath($dirname) unless -d $dirname;
448
449     return catfile( $dirname, "001-auto-$source_name.sql" );
450   }
451 }
452
453 sub _resultsource_protoschema_filename {
454   my ($self, $source_name) = @_;
455   return sub {
456     my ($self, $version) = @_;
457     my $dirname = catfile( $self->script_directory, '_protoschema', $version );
458     mkpath($dirname) unless -d $dirname;
459
460     return catfile( $dirname, "001-auto-$source_name.yml" );
461   }
462 }
463
464 sub install_resultsource {
465   my ($self, $args) = @_;
466   my $source          = $args->{result_source};
467   my $version         = $args->{version};
468   log_info { 'installing_resultsource ' . $source->source_name . ", version $version" };
469   my $rs_install_file =
470     $self->_resultsource_install_filename($source->source_name);
471
472   my $files = [
473      $self->$rs_install_file(
474       $self->storage->sqlt_type,
475       $version,
476     )
477   ];
478   $self->_run_sql_and_perl($files);
479 }
480
481 sub prepare_resultsource_install {
482   my $self = shift;
483   my $source = (shift @_)->{result_source};
484   log_info { 'preparing install for resultsource ' . $source->source_name };
485
486   my $install_filename = $self->_resultsource_install_filename($source->source_name);
487   my $proto_filename = $self->_resultsource_protoschema_filename($source->source_name);
488   $self->prepare_protoschema({
489       parser_args => { sources => [$source->source_name], }
490   }, $proto_filename);
491   $self->_prepare_install({}, $proto_filename, $install_filename);
492 }
493
494 sub prepare_deploy {
495   log_info { 'preparing deploy' };
496   my $self = shift;
497   $self->prepare_protoschema({}, '_ddl_protoschema_produce_filename');
498   $self->_prepare_install({}, '_ddl_protoschema_produce_filename', '_ddl_schema_produce_filename');
499 }
500
501 sub prepare_upgrade {
502   my ($self, $args) = @_;
503   log_info {
504      "preparing upgrade from $args->{from_version} to $args->{to_version}"
505   };
506   $self->_prepare_changegrade(
507     $args->{from_version}, $args->{to_version}, $args->{version_set}, 'up'
508   );
509 }
510
511 sub prepare_downgrade {
512   my ($self, $args) = @_;
513   log_info {
514      "preparing downgrade from $args->{from_version} to $args->{to_version}"
515   };
516   $self->_prepare_changegrade(
517     $args->{from_version}, $args->{to_version}, $args->{version_set}, 'down'
518   );
519 }
520
521 method _coderefs_per_files($files) {
522   no warnings 'redefine';
523   [map eval do { local( @ARGV, $/ ) = $_; <> }, @$files]
524 }
525
526 method _prepare_changegrade($from_version, $to_version, $version_set, $direction) {
527   my $schema    = $self->schema;
528   my $databases = $self->databases;
529   my $dir       = $self->script_directory;
530
531   my $schema_version = $self->schema_version;
532   my $diff_file_method = "_ddl_schema_${direction}_produce_filename";
533   foreach my $db (@$databases) {
534     my $diff_file = $self->$diff_file_method($db, $version_set, $dir );
535     if(-e $diff_file) {
536       carp("Overwriting existing $direction-diff file - $diff_file");
537       unlink $diff_file;
538     }
539
540     open my $file, q(>), $diff_file;
541     print {$file} join ";\n", @{$self->_sqldiff_from_yaml($from_version, $to_version, $db, $direction)};
542     close $file;
543   }
544 }
545
546 method _read_sql_file($file) {
547   return unless $file;
548
549   open my $fh, '<', $file;
550   my @data = split /;\n/, join '', <$fh>;
551   close $fh;
552
553   @data = grep {
554     $_ && # remove blank lines
555     !/^(BEGIN|BEGIN TRANSACTION|COMMIT)/ # strip txn's
556   } map {
557     s/^\s+//; s/\s+$//; # trim whitespace
558     join '', grep { !/^--/ } split /\n/ # remove comments
559   } @data;
560
561   return \@data;
562 }
563
564 sub downgrade_single_step {
565   my $self = shift;
566   my $version_set = (shift @_)->{version_set};
567   Dlog_info { "downgrade_single_step'ing $_" } $version_set;
568
569   my $sqlt_type = $self->storage->sqlt_type;
570   my $sql_to_run;
571   if ($self->ignore_ddl) {
572      $sql_to_run = $self->_sqldiff_from_yaml(
573        $version_set->[0], $version_set->[1], $sqlt_type, 'down',
574      );
575   }
576   my $sql = $self->_run_sql_and_perl($self->_ddl_schema_down_consume_filenames(
577     $sqlt_type,
578     $version_set,
579   ), $sql_to_run);
580
581   return ['', $sql];
582 }
583
584 sub upgrade_single_step {
585   my $self = shift;
586   my $version_set = (shift @_)->{version_set};
587   Dlog_info { "upgrade_single_step'ing $_" } $version_set;
588
589   my $sqlt_type = $self->storage->sqlt_type;
590   my $sql_to_run;
591   if ($self->ignore_ddl) {
592      $sql_to_run = $self->_sqldiff_from_yaml(
593        $version_set->[0], $version_set->[1], $sqlt_type, 'up',
594      );
595   }
596   my $sql = $self->_run_sql_and_perl($self->_ddl_schema_up_consume_filenames(
597     $sqlt_type,
598     $version_set,
599   ), $sql_to_run);
600   return ['', $sql];
601 }
602
603 sub prepare_protoschema {
604   my $self      = shift;
605   my $sqltargs  = { %{$self->sql_translator_args}, %{shift @_} };
606   my $to_file   = shift;
607   my $filename
608     = $self->$to_file($self->schema_version);
609
610   # we do this because the code that uses this sets parser args,
611   # so we just need to merge in the package
612   $sqltargs->{parser_args}{package} = $self->schema;
613   my $sqlt = SQL::Translator->new({
614     parser                  => 'SQL::Translator::Parser::DBIx::Class',
615     producer                => 'SQL::Translator::Producer::YAML',
616     %{ $sqltargs },
617   });
618
619   my $yml = $sqlt->translate;
620
621   croak("Failed to translate to YAML: " . $sqlt->error)
622     unless $yml;
623
624   if (-e $filename ) {
625     carp "Overwriting existing DDL-YML file - $filename";
626     unlink $filename;
627   }
628
629   open my $file, q(>), $filename;
630   print {$file} $yml;
631   close $file;
632 }
633
634 __PACKAGE__->meta->make_immutable;
635
636 1;
637
638 # vim: ts=2 sw=2 expandtab
639
640 __END__
641
642 =head1 DESCRIPTION
643
644 This class is the meat of L<DBIx::Class::DeploymentHandler>.  It takes care
645 of generating serialized schemata  as well as sql files to move from one
646 version of a schema to the rest.  One of the hallmark features of this class
647 is that it allows for multiple sql files for deploy and upgrade, allowing
648 developers to fine tune deployment.  In addition it also allows for perl
649 files to be run at any stage of the process.
650
651 For basic usage see L<DBIx::Class::DeploymentHandler::HandlesDeploy>.  What's
652 documented here is extra fun stuff or private methods.
653
654 =head1 DIRECTORY LAYOUT
655
656 Arguably this is the best feature of L<DBIx::Class::DeploymentHandler>.  It's
657 heavily based upon L<DBIx::Migration::Directories>, but has some extensions and
658 modifications, so even if you are familiar with it, please read this.  I feel
659 like the best way to describe the layout is with the following example:
660
661  $sql_migration_dir
662  |- SQLite
663  |  |- down
664  |  |  `- 2-1
665  |  |     `- 001-auto.sql
666  |  |- schema
667  |  |  `- 1
668  |  |     `- 001-auto.sql
669  |  `- up
670  |     |- 1-2
671  |     |  `- 001-auto.sql
672  |     `- 2-3
673  |        `- 001-auto.sql
674  |- _common
675  |  |- down
676  |  |  `- 2-1
677  |  |     `- 002-remove-customers.pl
678  |  `- up
679  |     `- 1-2
680  |        `- 002-generate-customers.pl
681  |- _generic
682  |  |- down
683  |  |  `- 2-1
684  |  |     `- 001-auto.sql
685  |  |- schema
686  |  |  `- 1
687  |  |     `- 001-auto.sql
688  |  `- up
689  |     `- 1-2
690  |        |- 001-auto.sql
691  |        `- 002-create-stored-procedures.sql
692  `- MySQL
693     |- down
694     |  `- 2-1
695     |     `- 001-auto.sql
696     |- preinstall
697     |  `- 1
698     |     |- 001-create_database.pl
699     |     `- 002-create_users_and_permissions.pl
700     |- schema
701     |  `- 1
702     |     `- 001-auto.sql
703     `- up
704        `- 1-2
705           `- 001-auto.sql
706
707 So basically, the code
708
709  $dm->deploy(1)
710
711 on an C<SQLite> database that would simply run
712 C<$sql_migration_dir/SQLite/schema/1/001-auto.sql>.  Next,
713
714  $dm->upgrade_single_step([1,2])
715
716 would run C<$sql_migration_dir/SQLite/up/1-2/001-auto.sql> followed by
717 C<$sql_migration_dir/_common/up/1-2/002-generate-customers.pl>.
718
719 C<.pl> files don't have to be in the C<_common> directory, but most of the time
720 they should be, because perl scripts are generally be database independent.
721
722 C<_generic> exists for when you for some reason are sure that your SQL is
723 generic enough to run on all databases.  Good luck with that one.
724
725 Note that unlike most steps in the process, C<preinstall> will not run SQL, as
726 there may not even be an database at preinstall time.  It will run perl scripts
727 just like the other steps in the process, but nothing is passed to them.
728 Until people have used this more it will remain freeform, but a recommended use
729 of preinstall is to have it prompt for username and password, and then call the
730 appropriate C<< CREATE DATABASE >> commands etc.
731
732 =head1 PERL SCRIPTS
733
734 A perl script for this tool is very simple.  It merely needs to contain an
735 anonymous sub that takes a L<DBIx::Class::Schema> as it's only argument.
736 A very basic perl script might look like:
737
738  #!perl
739
740  use strict;
741  use warnings;
742
743  sub {
744    my $schema = shift;
745
746    $schema->resultset('Users')->create({
747      name => 'root',
748      password => 'root',
749    })
750  }
751
752 =attr schema
753
754 The L<DBIx::Class::Schema> (B<required>) that is used to talk to the database
755 and generate the DDL.
756
757 =attr storage
758
759 The L<DBIx::Class::Storage> that is I<actually> used to talk to the database
760 and generate the DDL.  This is automatically created with L</_build_storage>.
761
762 =attr sql_translator_args
763
764 The arguments that get passed to L<SQL::Translator> when it's used.
765
766 =attr script_directory
767
768 The directory (default C<'sql'>) that scripts are stored in
769
770 =attr databases
771
772 The types of databases (default C<< [qw( MySQL SQLite PostgreSQL )] >>) to
773 generate files for
774
775 =attr txn_wrap
776
777 Set to true (which is the default) to wrap all upgrades and deploys in a single
778 transaction.
779
780 =attr schema_version
781
782 The version the schema on your harddrive is at.  Defaults to
783 C<< $self->schema->schema_version >>.
784
785 =begin comment
786
787 =head2 __ddl_consume_with_prefix
788
789  $dm->__ddl_consume_with_prefix( 'SQLite', [qw( 1.00 1.01 )], 'up' )
790
791 This is the meat of the multi-file upgrade/deploy stuff.  It returns a list of
792 files in the order that they should be run for a generic "type" of upgrade.
793 You should not be calling this in user code.
794
795 =head2 _ddl_schema_consume_filenames
796
797  $dm->__ddl_schema_consume_filenames( 'SQLite', [qw( 1.00 )] )
798
799 Just a curried L</__ddl_consume_with_prefix>.  Get's a list of files for an
800 initial deploy.
801
802 =head2 _ddl_schema_produce_filename
803
804  $dm->__ddl_schema_produce_filename( 'SQLite', [qw( 1.00 )] )
805
806 Returns a single file in which an initial schema will be stored.
807
808 =head2 _ddl_schema_up_consume_filenames
809
810  $dm->_ddl_schema_up_consume_filenames( 'SQLite', [qw( 1.00 )] )
811
812 Just a curried L</__ddl_consume_with_prefix>.  Get's a list of files for an
813 upgrade.
814
815 =head2 _ddl_schema_down_consume_filenames
816
817  $dm->_ddl_schema_down_consume_filenames( 'SQLite', [qw( 1.00 )] )
818
819 Just a curried L</__ddl_consume_with_prefix>.  Get's a list of files for a
820 downgrade.
821
822 =head2 _ddl_schema_up_produce_filenames
823
824  $dm->_ddl_schema_up_produce_filename( 'SQLite', [qw( 1.00 1.01 )] )
825
826 Returns a single file in which the sql to upgrade from one schema to another
827 will be stored.
828
829 =head2 _ddl_schema_down_produce_filename
830
831  $dm->_ddl_schema_down_produce_filename( 'SQLite', [qw( 1.00 1.01 )] )
832
833 Returns a single file in which the sql to downgrade from one schema to another
834 will be stored.
835
836 =head2 _resultsource_install_filename
837
838  my $filename_fn = $dm->_resultsource_install_filename('User');
839  $dm->$filename_fn('SQLite', '1.00')
840
841 Returns a function which in turn returns a single filename used to install a
842 single resultsource.  Weird interface is convenient for me.  Deal with it.
843
844 =head2 _run_sql_and_perl
845
846  $dm->_run_sql_and_perl([qw( list of filenames )])
847
848 Simply put, this runs the list of files passed to it.  If the file ends in
849 C<.sql> it runs it as sql and if it ends in C<.pl> it runs it as a perl file.
850
851 Depending on L</txn_wrap> all of the files run will be wrapped in a single
852 transaction.
853
854 =head2 _prepare_install
855
856  $dm->_prepare_install({ add_drop_table => 0 }, sub { 'file_to_create' })
857
858 Generates the sql file for installing the database.  First arg is simply
859 L<SQL::Translator> args and the second is a coderef that returns the filename
860 to store the sql in.
861
862 =head2 _prepare_changegrade
863
864  $dm->_prepare_changegrade('1.00', '1.01', [qw( 1.00 1.01)], 'up')
865
866 Generates the sql file for migrating from one schema version to another.  First
867 arg is the version to start from, second is the version to go to, third is the
868 L<version set|DBIx::Class::DeploymentHandler/VERSION SET>, and last is the
869 direction of the changegrade, be it 'up' or 'down'.
870
871 =head2 _read_sql_file
872
873  $dm->_read_sql_file('foo.sql')
874
875 Reads a sql file and returns lines in an C<ArrayRef>.  Strips out comments,
876 transactions, and blank lines.
877
878 =end comment