Initial work on specification docs
[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  |- _protoschema
663  |  |- schema
664  |     |- 1
665  |     |  `- 001-auto.yml
666  |     |- 2
667  |     |  `- 001-auto.yml
668  |     `- 3
669  |        `- 001-auto.yml
670  |- SQLite
671  |  |- down
672  |  |  `- 2-1
673  |  |     `- 001-auto.sql
674  |  |- schema
675  |  |  `- 1
676  |  |     `- 001-auto.sql
677  |  `- up
678  |     |- 1-2
679  |     |  `- 001-auto.sql
680  |     `- 2-3
681  |        `- 001-auto.sql
682  |- _common
683  |  |- down
684  |  |  `- 2-1
685  |  |     `- 002-remove-customers.pl
686  |  `- up
687  |     `- 1-2
688  |        `- 002-generate-customers.pl
689  |- _generic
690  |  |- down
691  |  |  `- 2-1
692  |  |     `- 001-auto.sql
693  |  |- schema
694  |  |  `- 1
695  |  |     `- 001-auto.sql
696  |  `- up
697  |     `- 1-2
698  |        |- 001-auto.sql
699  |        `- 002-create-stored-procedures.sql
700  `- MySQL
701     |- down
702     |  `- 2-1
703     |     `- 001-auto.sql
704     |- preinstall
705     |  `- 1
706     |     |- 001-create_database.pl
707     |     `- 002-create_users_and_permissions.pl
708     |- schema
709     |  `- 1
710     |     `- 001-auto.sql
711     `- up
712        `- 1-2
713           `- 001-auto.sql
714
715 So basically, the code
716
717  $dm->deploy(1)
718
719 on an C<SQLite> database that would simply run
720 C<$sql_migration_dir/SQLite/schema/1/001-auto.sql>.  Next,
721
722  $dm->upgrade_single_step([1,2])
723
724 would run C<$sql_migration_dir/SQLite/up/1-2/001-auto.sql> followed by
725 C<$sql_migration_dir/_common/up/1-2/002-generate-customers.pl>.
726
727 C<.pl> files don't have to be in the C<_common> directory, but most of the time
728 they should be, because perl scripts are generally be database independent.
729
730 C<_generic> exists for when you for some reason are sure that your SQL is
731 generic enough to run on all databases.  Good luck with that one.
732
733 Note that unlike most steps in the process, C<preinstall> will not run SQL, as
734 there may not even be an database at preinstall time.  It will run perl scripts
735 just like the other steps in the process, but nothing is passed to them.
736 Until people have used this more it will remain freeform, but a recommended use
737 of preinstall is to have it prompt for username and password, and then call the
738 appropriate C<< CREATE DATABASE >> commands etc.
739
740 =head2 Directory Specification
741
742 The following subdirectories are recognized by this DeployMethod:
743
744 =over 2
745
746 =item C<_protoschema> This directory can have the following subdirs:
747
748 =over 2
749
750 =item C<down> This directory merely contains directories named after
751 migrations, which are of the form C<$from_version-$to_version>.  Inside of
752 these directories you may put Perl scripts which are to return a subref
753 that takes the arguments C<< $from_schema, $to_schema >>, which are
754 L<SQL::Translator::Schema> objects.
755
756 =item C<up> This directory merely contains directories named after
757 migrations, which are of the form C<$from_version-$to_version>.  Inside of
758 these directories you may put Perl scripts which are to return a subref
759 that takes the arguments C<< $from_schema, $to_schema >>, which are
760 L<SQL::Translator::Schema> objects.
761
762 =item C<schema> This directory merely contains directories named after schema
763 versions, which in turn contain C<yaml> files that are serialized versions
764 of the schema at that version.  These files are not for editing by hand.
765
766 =back
767
768 =back
769
770 =head1 PERL SCRIPTS
771
772 A perl script for this tool is very simple.  It merely needs to contain an
773 anonymous sub that takes a L<DBIx::Class::Schema> as it's only argument.
774 A very basic perl script might look like:
775
776  #!perl
777
778  use strict;
779  use warnings;
780
781  sub {
782    my $schema = shift;
783
784    $schema->resultset('Users')->create({
785      name => 'root',
786      password => 'root',
787    })
788  }
789
790 =attr schema
791
792 The L<DBIx::Class::Schema> (B<required>) that is used to talk to the database
793 and generate the DDL.
794
795 =attr storage
796
797 The L<DBIx::Class::Storage> that is I<actually> used to talk to the database
798 and generate the DDL.  This is automatically created with L</_build_storage>.
799
800 =attr sql_translator_args
801
802 The arguments that get passed to L<SQL::Translator> when it's used.
803
804 =attr script_directory
805
806 The directory (default C<'sql'>) that scripts are stored in
807
808 =attr databases
809
810 The types of databases (default C<< [qw( MySQL SQLite PostgreSQL )] >>) to
811 generate files for
812
813 =attr txn_wrap
814
815 Set to true (which is the default) to wrap all upgrades and deploys in a single
816 transaction.
817
818 =attr schema_version
819
820 The version the schema on your harddrive is at.  Defaults to
821 C<< $self->schema->schema_version >>.
822
823 =begin comment
824
825 =head2 __ddl_consume_with_prefix
826
827  $dm->__ddl_consume_with_prefix( 'SQLite', [qw( 1.00 1.01 )], 'up' )
828
829 This is the meat of the multi-file upgrade/deploy stuff.  It returns a list of
830 files in the order that they should be run for a generic "type" of upgrade.
831 You should not be calling this in user code.
832
833 =head2 _ddl_schema_consume_filenames
834
835  $dm->__ddl_schema_consume_filenames( 'SQLite', [qw( 1.00 )] )
836
837 Just a curried L</__ddl_consume_with_prefix>.  Get's a list of files for an
838 initial deploy.
839
840 =head2 _ddl_schema_produce_filename
841
842  $dm->__ddl_schema_produce_filename( 'SQLite', [qw( 1.00 )] )
843
844 Returns a single file in which an initial schema will be stored.
845
846 =head2 _ddl_schema_up_consume_filenames
847
848  $dm->_ddl_schema_up_consume_filenames( 'SQLite', [qw( 1.00 )] )
849
850 Just a curried L</__ddl_consume_with_prefix>.  Get's a list of files for an
851 upgrade.
852
853 =head2 _ddl_schema_down_consume_filenames
854
855  $dm->_ddl_schema_down_consume_filenames( 'SQLite', [qw( 1.00 )] )
856
857 Just a curried L</__ddl_consume_with_prefix>.  Get's a list of files for a
858 downgrade.
859
860 =head2 _ddl_schema_up_produce_filenames
861
862  $dm->_ddl_schema_up_produce_filename( 'SQLite', [qw( 1.00 1.01 )] )
863
864 Returns a single file in which the sql to upgrade from one schema to another
865 will be stored.
866
867 =head2 _ddl_schema_down_produce_filename
868
869  $dm->_ddl_schema_down_produce_filename( 'SQLite', [qw( 1.00 1.01 )] )
870
871 Returns a single file in which the sql to downgrade from one schema to another
872 will be stored.
873
874 =head2 _resultsource_install_filename
875
876  my $filename_fn = $dm->_resultsource_install_filename('User');
877  $dm->$filename_fn('SQLite', '1.00')
878
879 Returns a function which in turn returns a single filename used to install a
880 single resultsource.  Weird interface is convenient for me.  Deal with it.
881
882 =head2 _run_sql_and_perl
883
884  $dm->_run_sql_and_perl([qw( list of filenames )])
885
886 Simply put, this runs the list of files passed to it.  If the file ends in
887 C<.sql> it runs it as sql and if it ends in C<.pl> it runs it as a perl file.
888
889 Depending on L</txn_wrap> all of the files run will be wrapped in a single
890 transaction.
891
892 =head2 _prepare_install
893
894  $dm->_prepare_install({ add_drop_table => 0 }, sub { 'file_to_create' })
895
896 Generates the sql file for installing the database.  First arg is simply
897 L<SQL::Translator> args and the second is a coderef that returns the filename
898 to store the sql in.
899
900 =head2 _prepare_changegrade
901
902  $dm->_prepare_changegrade('1.00', '1.01', [qw( 1.00 1.01)], 'up')
903
904 Generates the sql file for migrating from one schema version to another.  First
905 arg is the version to start from, second is the version to go to, third is the
906 L<version set|DBIx::Class::DeploymentHandler/VERSION SET>, and last is the
907 direction of the changegrade, be it 'up' or 'down'.
908
909 =head2 _read_sql_file
910
911  $dm->_read_sql_file('foo.sql')
912
913 Reads a sql file and returns lines in an C<ArrayRef>.  Strips out comments,
914 transactions, and blank lines.
915
916 =end comment