v0.002200
[dbsrgits/DBIx-Class-DeploymentHandler.git] / lib / DBIx / Class / DeploymentHandler / DeployMethod / SQL / Translator.pm
CommitLineData
45d0d9d5 1package DBIx::Class::DeploymentHandler::DeployMethod::SQL::Translator;
334bced5 2use Moose;
9af9d0b2 3
9a3a62f1 4# ABSTRACT: Manage your SQL and Perl migrations in nicely laid out directories
5
9af9d0b2 6use autodie;
7use Carp qw( carp croak );
56203087 8use DBIx::Class::DeploymentHandler::LogImporter qw(:log :dlog);
1fcd4fe6 9use Context::Preserve;
9af9d0b2 10
7f50d101 11use Try::Tiny;
9af9d0b2 12
d23c7c77 13use SQL::Translator;
14require SQL::Translator::Diff;
9af9d0b2 15
d23c7c77 16require DBIx::Class::Storage; # loaded for type constraint
41863428 17use DBIx::Class::DeploymentHandler::Types;
18
9af9d0b2 19use File::Path 'mkpath';
20use File::Spec::Functions;
2e68a8e1 21
7521a845 22with 'DBIx::Class::DeploymentHandler::HandlesDeploy';
3c1b5ee8 23
93460690 24has ignore_ddl => (
25 isa => 'Bool',
26 is => 'ro',
27 default => undef,
28);
29
92624ee5 30has force_overwrite => (
31 isa => 'Bool',
32 is => 'ro',
33 default => undef,
34);
35
d54b8d69 36has schema => (
d54b8d69 37 is => 'ro',
38 required => 1,
d54b8d69 39);
40
334bced5 41has storage => (
42 isa => 'DBIx::Class::Storage',
43 is => 'ro',
44 lazy_build => 1,
45);
46
6e2665d3 47sub _build_storage {
48 my $self = shift;
2eaf903b 49 my $s = $self->schema->storage;
50 $s->_determine_driver;
51 $s
52}
53
02a7b8ac 54has sql_translator_args => (
334bced5 55 isa => 'HashRef',
56 is => 'ro',
57 default => sub { {} },
58);
91adde75 59has script_directory => (
334bced5 60 isa => 'Str',
61 is => 'ro',
62 required => 1,
63 default => 'sql',
64);
65
334bced5 66has databases => (
67 coerce => 1,
68 isa => 'DBIx::Class::DeploymentHandler::Databases',
69 is => 'ro',
70 default => sub { [qw( MySQL SQLite PostgreSQL )] },
71);
72
a7d53deb 73has txn_wrap => (
74 is => 'ro',
75 isa => 'Bool',
76 default => 1,
77);
78
73caa630 79has schema_version => (
80 is => 'ro',
e86c0c07 81 isa => 'Str',
73caa630 82 lazy_build => 1,
83);
84
6df6dcb9 85# this will probably never get called as the DBICDH
86# will be passing down a schema_version normally, which
87# is built the same way, but we leave this in place
115c68ce 88sub _build_schema_version {
6e2665d3 89 my $self = shift;
115c68ce 90 $self->schema->schema_version
6e2665d3 91}
73caa630 92
6e2665d3 93sub __ddl_consume_with_prefix {
94 my ($self, $type, $versions, $prefix) = @_;
91adde75 95 my $base_dir = $self->script_directory;
262166c1 96
76d08d08 97 my $main = catfile( $base_dir, $type );
76d08d08 98 my $common =
99 catfile( $base_dir, '_common', $prefix, join q(-), @{$versions} );
262166c1 100
25c3bec3 101 my $common_any =
102 catfile( $base_dir, '_common', $prefix, '_any' );
103
262166c1 104 my $dir;
105 if (-d $main) {
76d08d08 106 $dir = catfile($main, $prefix, join q(-), @{$versions})
262166c1 107 } else {
38857f30 108 if ($self->ignore_ddl) {
109 return []
110 } else {
111 croak "$main does not exist; please write/generate some SQL"
112 }
262166c1 113 }
25c3bec3 114 my $dir_any = catfile($main, $prefix, '_any');
262166c1 115
ef44838b 116 my %files;
117 try {
118 opendir my($dh), $dir;
119 %files =
120 map { $_ => "$dir/$_" }
121 grep { /\.(?:sql|pl|sql-\w+)$/ && -f "$dir/$_" }
122 readdir $dh;
123 closedir $dh;
124 } catch {
125 die $_ unless $self->ignore_ddl;
126 };
25c3bec3 127 for my $dirname (grep { -d $_ } $common, $common_any, $dir_any) {
128 opendir my($dh), $dirname;
129 for my $filename (grep { /\.(?:sql|pl)$/ && -f catfile($dirname,$_) } readdir $dh) {
262166c1 130 unless ($files{$filename}) {
25c3bec3 131 $files{$filename} = catfile($dirname,$filename);
262166c1 132 }
133 }
134 closedir $dh;
135 }
136
137 return [@files{sort keys %files}]
138}
3c1b5ee8 139
6e2665d3 140sub _ddl_initialize_consume_filenames {
141 my ($self, $type, $version) = @_;
ff40cb1f 142 $self->__ddl_consume_with_prefix($type, [ $version ], 'initialize')
fc4b7602 143}
144
6e2665d3 145sub _ddl_schema_consume_filenames {
146 my ($self, $type, $version) = @_;
58eb99c3 147 $self->__ddl_consume_with_prefix($type, [ $version ], 'deploy')
3c1b5ee8 148}
149
6e2665d3 150sub _ddl_protoschema_deploy_consume_filenames {
151 my ($self, $version) = @_;
c72832d7 152 my $base_dir = $self->script_directory;
153
154 my $dir = catfile( $base_dir, '_source', 'deploy', $version);
155 return [] unless -d $dir;
156
157 opendir my($dh), $dir;
158 my %files = map { $_ => "$dir/$_" } grep { /\.yml$/ && -f "$dir/$_" } readdir $dh;
159 closedir $dh;
160
161 return [@files{sort keys %files}]
162}
163
6e2665d3 164sub _ddl_protoschema_upgrade_consume_filenames {
165 my ($self, $versions) = @_;
f9c6ab50 166 my $base_dir = $self->script_directory;
167
58eb99c3 168 my $dir = catfile( $base_dir, '_preprocess_schema', 'upgrade', join q(-), @{$versions});
f9c6ab50 169
170 return [] unless -d $dir;
171
172 opendir my($dh), $dir;
173 my %files = map { $_ => "$dir/$_" } grep { /\.pl$/ && -f "$dir/$_" } readdir $dh;
174 closedir $dh;
175
176 return [@files{sort keys %files}]
177}
178
6e2665d3 179sub _ddl_protoschema_downgrade_consume_filenames {
180 my ($self, $versions) = @_;
f9c6ab50 181 my $base_dir = $self->script_directory;
182
58eb99c3 183 my $dir = catfile( $base_dir, '_preprocess_schema', 'downgrade', join q(-), @{$versions});
f9c6ab50 184
185 return [] unless -d $dir;
186
187 opendir my($dh), $dir;
188 my %files = map { $_ => "$dir/$_" } grep { /\.pl$/ && -f "$dir/$_" } readdir $dh;
189 closedir $dh;
190
191 return [@files{sort keys %files}]
192}
193
6e2665d3 194sub _ddl_protoschema_produce_filename {
195 my ($self, $version) = @_;
58eb99c3 196 my $dirname = catfile( $self->script_directory, '_source', 'deploy', $version );
7e08eddd 197 mkpath($dirname) unless -d $dirname;
198
199 return catfile( $dirname, '001-auto.yml' );
200}
201
6e2665d3 202sub _ddl_schema_produce_filename {
203 my ($self, $type, $version) = @_;
58eb99c3 204 my $dirname = catfile( $self->script_directory, $type, 'deploy', $version );
76d08d08 205 mkpath($dirname) unless -d $dirname;
d54b8d69 206
09bc35e3 207 return catfile( $dirname, '001-auto.sql' );
d54b8d69 208}
209
6e2665d3 210sub _ddl_schema_upgrade_consume_filenames {
211 my ($self, $type, $versions) = @_;
58eb99c3 212 $self->__ddl_consume_with_prefix($type, $versions, 'upgrade')
3c1b5ee8 213}
214
6e2665d3 215sub _ddl_schema_downgrade_consume_filenames {
216 my ($self, $type, $versions) = @_;
58eb99c3 217 $self->__ddl_consume_with_prefix($type, $versions, 'downgrade')
a41a04e5 218}
219
6e2665d3 220sub _ddl_schema_upgrade_produce_filename {
221 my ($self, $type, $versions) = @_;
91adde75 222 my $dir = $self->script_directory;
76d311e7 223
58eb99c3 224 my $dirname = catfile( $dir, $type, 'upgrade', join q(-), @{$versions});
76d08d08 225 mkpath($dirname) unless -d $dirname;
a41a04e5 226
e62add58 227 return catfile( $dirname, '001-auto.sql' );
a41a04e5 228}
229
6e2665d3 230sub _ddl_schema_downgrade_produce_filename {
231 my ($self, $type, $versions, $dir) = @_;
58eb99c3 232 my $dirname = catfile( $dir, $type, 'downgrade', join q(-), @{$versions} );
76d08d08 233 mkpath($dirname) unless -d $dirname;
24f4524b 234
09bc35e3 235 return catfile( $dirname, '001-auto.sql');
24f4524b 236}
237
6e2665d3 238sub _run_sql_array {
239 my ($self, $sql) = @_;
41219a5d 240 my $storage = $self->storage;
5d7b27cf 241
115c68ce 242 $sql = [ _split_sql_chunk( @$sql ) ];
1f0d0633 243
f4075791 244 Dlog_trace { "Running SQL $_" } $sql;
f36afe83 245 foreach my $line (@{$sql}) {
5d7b27cf 246 $storage->_query_start($line);
10a62c3d 247 # the whole reason we do this is so that we can see the line that was run
5d7b27cf 248 try {
5d7b27cf 249 $storage->dbh_do (sub { $_[1]->do($line) });
250 }
251 catch {
10a62c3d 252 die "$_ (running line '$line')"
60e09fce 253 };
5d7b27cf 254 $storage->_query_end($line);
255 }
4d09f712 256 return join "\n", @$sql
f36afe83 257}
258
115c68ce 259# split a chunk o' SQL into statements
260sub _split_sql_chunk {
261 my @sql = map { split /;\n/, $_ } @_;
262
263 for ( @sql ) {
264 # strip transactions
265 s/^(?:BEGIN|BEGIN TRANSACTION|COMMIT).*//mgi;
266
267 # trim whitespaces
268 s/^\s+|\s+$//mg;
269
270 # remove comments
271 s/^--.*//gm;
272
273 # remove blank lines
274 s/^\n//mg;
275
276 # put on single line
277 s/\n/ /g;
278 }
279
280 return @sql;
281}
282
6e2665d3 283sub _run_sql {
284 my ($self, $filename) = @_;
f4075791 285 log_debug { "Running SQL from $filename" };
f36afe83 286 return $self->_run_sql_array($self->_read_sql_file($filename));
5d7b27cf 287}
2e68a8e1 288
a89cd737 289sub _load_sandbox {
290 my $_file = shift;
291
292 my $_package = $_file;
32bd7c45 293 $_package =~ s/([^A-Za-z0-9_])/sprintf("_%2x", ord($1))/eg;
a89cd737 294
32bd7c45 295 my $fn = eval sprintf <<'END_EVAL', $_package;
a89cd737 296package DBICDH::Sandbox::%s;
297{
32bd7c45 298 our $app;
299 $app ||= require $_file;
a89cd737 300 if ( !$app && ( my $error = $@ || $! )) { die $error; }
301 $app;
302}
303END_EVAL
32bd7c45 304
305 croak $@ if $@;
306
80dcc097 307 croak "$_file should define an anonymous sub that takes a schema but it didn't!"
32bd7c45 308 unless ref $fn && ref $fn eq 'CODE';
309
310 return $fn;
a89cd737 311}
312
6e2665d3 313sub _run_perl {
314 my ($self, $filename, $versions) = @_;
f4075791 315 log_debug { "Running Perl from $filename" };
c8a2f7bd 316
a89cd737 317 my $fn = _load_sandbox($filename);
318
f4075791 319 Dlog_trace { "Running Perl $_" } $fn;
5d7b27cf 320
32bd7c45 321 $fn->($self->schema, $versions)
5d7b27cf 322}
5d7b27cf 323
1fcd4fe6 324sub txn_do {
325 my ( $self, $code ) = @_;
326 return $code->() unless $self->txn_wrap;
327
328 my $guard = $self->schema->txn_scope_guard;
329
330 return preserve_context { $code->() } after => sub { $guard->commit };
331}
332
6e2665d3 333sub _run_sql_and_perl {
334 my ($self, $filenames, $sql_to_run, $versions) = @_;
5d7b27cf 335 my @files = @{$filenames};
1fcd4fe6 336 $self->txn_do(sub {
337 $self->_run_sql_array($sql_to_run) if $self->ignore_ddl;
338
339 my $sql = ($sql_to_run)?join ";\n", @$sql_to_run:'';
340 FILENAME:
341 for my $filename (@files) {
342 if ($self->ignore_ddl && $filename =~ /^[^_]*-auto.*\.sql$/) {
343 next FILENAME
344 } elsif ($filename =~ /\.sql$/) {
345 $sql .= $self->_run_sql($filename)
346 } elsif ( $filename =~ /\.pl$/ ) {
347 $self->_run_perl($filename, $versions)
348 } else {
349 croak "A file ($filename) got to deploy that wasn't sql or perl!";
350 }
351 }
352
353 return $sql;
354 });
41219a5d 355}
356
357sub deploy {
358 my $self = shift;
be140a5f 359 my $version = (shift @_ || {})->{version} || $self->schema_version;
f4075791 360 log_info { "deploying version $version" };
ef44838b 361 my $sqlt_type = $self->storage->sqlt_type;
362 my $sql;
363 if ($self->ignore_ddl) {
364 $sql = $self->_sql_from_yaml({},
4ea5caf5 365 '_ddl_protoschema_deploy_consume_filenames', $sqlt_type
ef44838b 366 );
367 }
368 return $self->_run_sql_and_perl($self->_ddl_schema_consume_filenames(
369 $sqlt_type,
370 $version,
25c3bec3 371 ), $sql, [$version]);
2e68a8e1 372}
373
ff40cb1f 374sub initialize {
9faec51a 375 my $self = shift;
376 my $args = shift;
377 my $version = $args->{version} || $self->schema_version;
ff40cb1f 378 log_info { "initializing version $version" };
9faec51a 379 my $storage_type = $args->{storage_type} || $self->storage->sqlt_type;
fc4b7602 380
ff40cb1f 381 my @files = @{$self->_ddl_initialize_consume_filenames(
9faec51a 382 $storage_type,
fc4b7602 383 $version,
384 )};
385
386 for my $filename (@files) {
387 # We ignore sql for now (till I figure out what to do with it)
388 if ( $filename =~ /^(.+)\.pl$/ ) {
fc4b7602 389 my $filedata = do { local( @ARGV, $/ ) = $filename; <> };
fc4b7602 390
9faec51a 391 no warnings 'redefine';
5b5defbc 392 my $fn = eval "$filedata";
fc4b7602 393 use warnings;
5b5defbc 394
9faec51a 395 if ($@) {
6e9a733d 396 croak "$filename failed to compile: $@";
9faec51a 397 } elsif (ref $fn eq 'CODE') {
fc4b7602 398 $fn->()
399 } else {
6e9a733d 400 croak "$filename should define an anonymous sub but it didn't!";
fc4b7602 401 }
402 } else {
ff40cb1f 403 croak "A file ($filename) got to initialize_scripts that wasn't sql or perl!";
fc4b7602 404 }
405 }
406}
407
6e2665d3 408sub _sqldiff_from_yaml {
409 my ($self, $from_version, $to_version, $db, $direction) = @_;
91adde75 410 my $dir = $self->script_directory;
28563f97 411 my $sqltargs = {
412 add_drop_table => 1,
413 ignore_constraint_names => 1,
414 ignore_index_names => 1,
415 %{$self->sql_translator_args}
416 };
d54b8d69 417
28563f97 418 my $source_schema;
419 {
420 my $prefilename = $self->_ddl_protoschema_produce_filename($from_version, $dir);
421
422 # should probably be a croak
423 carp("No previous schema file found ($prefilename)")
424 unless -e $prefilename;
425
426 my $t = SQL::Translator->new({
427 %{$sqltargs},
428 debug => 0,
429 trace => 0,
430 parser => 'SQL::Translator::Parser::YAML',
431 });
432
433 my $out = $t->translate( $prefilename )
434 or croak($t->error);
435
436 $source_schema = $t->schema;
437
438 $source_schema->name( $prefilename )
439 unless $source_schema->name;
440 }
441
442 my $dest_schema;
443 {
444 my $filename = $self->_ddl_protoschema_produce_filename($to_version, $dir);
445
446 # should probably be a croak
447 carp("No next schema file found ($filename)")
448 unless -e $filename;
449
450 my $t = SQL::Translator->new({
451 %{$sqltargs},
452 debug => 0,
453 trace => 0,
454 parser => 'SQL::Translator::Parser::YAML',
455 });
456
457 my $out = $t->translate( $filename )
458 or croak($t->error);
459
460 $dest_schema = $t->schema;
461
462 $dest_schema->name( $filename )
463 unless $dest_schema->name;
464 }
f9c6ab50 465
466 my $transform_files_method = "_ddl_protoschema_${direction}_consume_filenames";
467 my $transforms = $self->_coderefs_per_files(
468 $self->$transform_files_method([$from_version, $to_version])
469 );
470 $_->($source_schema, $dest_schema) for @$transforms;
471
28563f97 472 return [SQL::Translator::Diff::schema_diff(
473 $source_schema, $db,
474 $dest_schema, $db,
475 $sqltargs
476 )];
477}
478
6e2665d3 479sub _sql_from_yaml {
480 my ($self, $sqltargs, $from_file, $db) = @_;
28563f97 481 my $schema = $self->schema;
482 my $version = $self->schema_version;
93460690 483
4ea5caf5 484 my @sql;
2e68a8e1 485
4ea5caf5 486 my $actual_file = $self->$from_file($version);
487 for my $yaml_filename (@{
488 DlogS_trace { "generating SQL from Serialized SQL Files: $_" }
489 (ref $actual_file?$actual_file:[$actual_file])
490 }) {
491 my $sqlt = SQL::Translator->new({
492 add_drop_table => 0,
493 parser => 'SQL::Translator::Parser::YAML',
494 %{$sqltargs},
495 producer => $db,
496 });
497
498 push @sql, $sqlt->translate($yaml_filename);
499 if(!@sql) {
500 carp("Failed to translate to $db, skipping. (" . $sqlt->error . ")");
501 return undef;
502 }
28563f97 503 }
504 return \@sql;
505}
506
507sub _prepare_install {
508 my $self = shift;
509 my $sqltargs = { %{$self->sql_translator_args}, %{shift @_} };
510 my $from_file = shift;
511 my $to_file = shift;
512 my $dir = $self->script_directory;
513 my $databases = $self->databases;
514 my $version = $self->schema_version;
515
2e68a8e1 516 foreach my $db (@$databases) {
28563f97 517 my $sql = $self->_sql_from_yaml($sqltargs, $from_file, $db ) or next;
2e68a8e1 518
c8a2f7bd 519 my $filename = $self->$to_file($db, $version, $dir);
9600776d 520 if (-e $filename ) {
92624ee5 521 if ($self->force_overwrite) {
522 carp "Overwriting existing DDL file - $filename";
523 unlink $filename;
524 } else {
525 die "Cannot overwrite '$filename', either enable force_overwrite or delete it"
526 }
2e68a8e1 527 }
387b11d2 528 open my $file, q(>), $filename;
28563f97 529 print {$file} join ";\n", @$sql;
2e68a8e1 530 close $file;
531 }
532}
533
c8a2f7bd 534sub _resultsource_install_filename {
535 my ($self, $source_name) = @_;
536 return sub {
537 my ($self, $type, $version) = @_;
58eb99c3 538 my $dirname = catfile( $self->script_directory, $type, 'deploy', $version );
c8a2f7bd 539 mkpath($dirname) unless -d $dirname;
540
09bc35e3 541 return catfile( $dirname, "001-auto-$source_name.sql" );
c8a2f7bd 542 }
543}
544
e62add58 545sub _resultsource_protoschema_filename {
546 my ($self, $source_name) = @_;
547 return sub {
548 my ($self, $version) = @_;
d3d6512c 549 my $dirname = catfile( $self->script_directory, '_source', 'deploy', $version );
e62add58 550 mkpath($dirname) unless -d $dirname;
551
552 return catfile( $dirname, "001-auto-$source_name.yml" );
553 }
554}
555
c8a2f7bd 556sub install_resultsource {
be140a5f 557 my ($self, $args) = @_;
ba99ba44 558 my $source = $args->{result_source}
559 or die 'result_source must be passed to install_resultsource';
560 my $version = $args->{version}
561 or die 'version must be passed to install_resultsource';
f4075791 562 log_info { 'installing_resultsource ' . $source->source_name . ", version $version" };
c8a2f7bd 563 my $rs_install_file =
564 $self->_resultsource_install_filename($source->source_name);
565
566 my $files = [
567 $self->$rs_install_file(
568 $self->storage->sqlt_type,
569 $version,
570 )
571 ];
25c3bec3 572 $self->_run_sql_and_perl($files, '', [$version]);
c8a2f7bd 573}
574
575sub prepare_resultsource_install {
576 my $self = shift;
be140a5f 577 my $source = (shift @_)->{result_source};
f4075791 578 log_info { 'preparing install for resultsource ' . $source->source_name };
c8a2f7bd 579
e62add58 580 my $install_filename = $self->_resultsource_install_filename($source->source_name);
581 my $proto_filename = $self->_resultsource_protoschema_filename($source->source_name);
6cae2f56 582 $self->prepare_protoschema({
c8a2f7bd 583 parser_args => { sources => [$source->source_name], }
e62add58 584 }, $proto_filename);
585 $self->_prepare_install({}, $proto_filename, $install_filename);
c8a2f7bd 586}
587
91557c90 588sub prepare_deploy {
f4075791 589 log_info { 'preparing deploy' };
c8a2f7bd 590 my $self = shift;
6776a6d4 591 $self->prepare_protoschema({
592 # Exclude __VERSION so that it gets installed separately
593 parser_args => { sources => [grep { $_ ne '__VERSION' } $self->schema->sources], }
594 }, '_ddl_protoschema_produce_filename');
e62add58 595 $self->_prepare_install({}, '_ddl_protoschema_produce_filename', '_ddl_schema_produce_filename');
c8a2f7bd 596}
597
a41a04e5 598sub prepare_upgrade {
be140a5f 599 my ($self, $args) = @_;
0df68524 600 log_info {
f4075791 601 "preparing upgrade from $args->{from_version} to $args->{to_version}"
0df68524 602 };
be140a5f 603 $self->_prepare_changegrade(
58eb99c3 604 $args->{from_version}, $args->{to_version}, $args->{version_set}, 'upgrade'
be140a5f 605 );
76d311e7 606}
607
608sub prepare_downgrade {
be140a5f 609 my ($self, $args) = @_;
0df68524 610 log_info {
f4075791 611 "preparing downgrade from $args->{from_version} to $args->{to_version}"
0df68524 612 };
be140a5f 613 $self->_prepare_changegrade(
58eb99c3 614 $args->{from_version}, $args->{to_version}, $args->{version_set}, 'downgrade'
be140a5f 615 );
76d311e7 616}
617
6e2665d3 618sub _coderefs_per_files {
619 my ($self, $files) = @_;
f9c6ab50 620 no warnings 'redefine';
621 [map eval do { local( @ARGV, $/ ) = $_; <> }, @$files]
622}
623
6e2665d3 624sub _prepare_changegrade {
625 my ($self, $from_version, $to_version, $version_set, $direction) = @_;
2e68a8e1 626 my $schema = $self->schema;
627 my $databases = $self->databases;
91adde75 628 my $dir = $self->script_directory;
2e68a8e1 629
73caa630 630 my $schema_version = $self->schema_version;
e62add58 631 my $diff_file_method = "_ddl_schema_${direction}_produce_filename";
e62add58 632 foreach my $db (@$databases) {
633 my $diff_file = $self->$diff_file_method($db, $version_set, $dir );
634 if(-e $diff_file) {
92624ee5 635 if ($self->force_overwrite) {
636 carp("Overwriting existing $direction-diff file - $diff_file");
637 unlink $diff_file;
638 } else {
639 die "Cannot overwrite '$diff_file', either enable force_overwrite or delete it"
640 }
2e68a8e1 641 }
642
387b11d2 643 open my $file, q(>), $diff_file;
f9c6ab50 644 print {$file} join ";\n", @{$self->_sqldiff_from_yaml($from_version, $to_version, $db, $direction)};
2e68a8e1 645 close $file;
646 }
647}
648
6e2665d3 649sub _read_sql_file {
650 my ($self, $file) = @_;
334bced5 651 return unless $file;
652
115c68ce 653 local $/ = undef; #sluuuuuurp
654
aabd4237 655 open my $fh, '<', $file;
115c68ce 656 return [ _split_sql_chunk( <$fh> ) ];
1f0d0633 657}
658
7d2a6974 659sub downgrade_single_step {
76d311e7 660 my $self = shift;
be140a5f 661 my $version_set = (shift @_)->{version_set};
f4075791 662 Dlog_info { "downgrade_single_step'ing $_" } $version_set;
41219a5d 663
ef44838b 664 my $sqlt_type = $self->storage->sqlt_type;
665 my $sql_to_run;
666 if ($self->ignore_ddl) {
667 $sql_to_run = $self->_sqldiff_from_yaml(
58eb99c3 668 $version_set->[0], $version_set->[1], $sqlt_type, 'downgrade',
ef44838b 669 );
670 }
58eb99c3 671 my $sql = $self->_run_sql_and_perl($self->_ddl_schema_downgrade_consume_filenames(
ef44838b 672 $sqlt_type,
627581cd 673 $version_set,
25c3bec3 674 ), $sql_to_run, $version_set);
3249629f 675
41219a5d 676 return ['', $sql];
76d311e7 677}
678
7d2a6974 679sub upgrade_single_step {
7521a845 680 my $self = shift;
be140a5f 681 my $version_set = (shift @_)->{version_set};
f4075791 682 Dlog_info { "upgrade_single_step'ing $_" } $version_set;
41219a5d 683
ef44838b 684 my $sqlt_type = $self->storage->sqlt_type;
685 my $sql_to_run;
686 if ($self->ignore_ddl) {
687 $sql_to_run = $self->_sqldiff_from_yaml(
58eb99c3 688 $version_set->[0], $version_set->[1], $sqlt_type, 'upgrade',
ef44838b 689 );
690 }
58eb99c3 691 my $sql = $self->_run_sql_and_perl($self->_ddl_schema_upgrade_consume_filenames(
ef44838b 692 $sqlt_type,
627581cd 693 $version_set,
25c3bec3 694 ), $sql_to_run, $version_set);
41219a5d 695 return ['', $sql];
334bced5 696}
697
6cae2f56 698sub prepare_protoschema {
7e08eddd 699 my $self = shift;
e62add58 700 my $sqltargs = { %{$self->sql_translator_args}, %{shift @_} };
701 my $to_file = shift;
7e08eddd 702 my $filename
e62add58 703 = $self->$to_file($self->schema_version);
7e08eddd 704
e62add58 705 # we do this because the code that uses this sets parser args,
706 # so we just need to merge in the package
707 $sqltargs->{parser_args}{package} = $self->schema;
7e08eddd 708 my $sqlt = SQL::Translator->new({
709 parser => 'SQL::Translator::Parser::DBIx::Class',
710 producer => 'SQL::Translator::Producer::YAML',
e62add58 711 %{ $sqltargs },
7e08eddd 712 });
713
714 my $yml = $sqlt->translate;
715
716 croak("Failed to translate to YAML: " . $sqlt->error)
717 unless $yml;
718
719 if (-e $filename ) {
92624ee5 720 if ($self->force_overwrite) {
721 carp "Overwriting existing DDL-YML file - $filename";
722 unlink $filename;
723 } else {
724 die "Cannot overwrite '$filename', either enable force_overwrite or delete it"
725 }
7e08eddd 726 }
727
728 open my $file, q(>), $filename;
729 print {$file} $yml;
730 close $file;
731}
732
aabd4237 733__PACKAGE__->meta->make_immutable;
734
2e68a8e1 7351;
e051bb00 736
e52174e3 737# vim: ts=2 sw=2 expandtab
738
e051bb00 739__END__
740
bcc72297 741=head1 DESCRIPTION
742
e62add58 743This class is the meat of L<DBIx::Class::DeploymentHandler>. It takes care
744of generating serialized schemata as well as sql files to move from one
745version of a schema to the rest. One of the hallmark features of this class
746is that it allows for multiple sql files for deploy and upgrade, allowing
747developers to fine tune deployment. In addition it also allows for perl
748files to be run at any stage of the process.
bcc72297 749
750For basic usage see L<DBIx::Class::DeploymentHandler::HandlesDeploy>. What's
751documented here is extra fun stuff or private methods.
752
753=head1 DIRECTORY LAYOUT
754
39c88a9a 755Arguably this is the best feature of L<DBIx::Class::DeploymentHandler>.
756It's spiritually based upon L<DBIx::Migration::Directories>, but has a
757lot of extensions and modifications, so even if you are familiar with it,
758please read this. I feel like the best way to describe the layout is with
759the following example:
92c34cab 760
761 $sql_migration_dir
58eb99c3 762 |- _source
763 | |- deploy
03882cab 764 | |- 1
765 | | `- 001-auto.yml
766 | |- 2
767 | | `- 001-auto.yml
768 | `- 3
769 | `- 001-auto.yml
92c34cab 770 |- SQLite
58eb99c3 771 | |- downgrade
4f85efc6 772 | | `- 2-1
e62add58 773 | | `- 001-auto.sql
58eb99c3 774 | |- deploy
92c34cab 775 | | `- 1
e62add58 776 | | `- 001-auto.sql
58eb99c3 777 | `- upgrade
92c34cab 778 | |- 1-2
e62add58 779 | | `- 001-auto.sql
92c34cab 780 | `- 2-3
e62add58 781 | `- 001-auto.sql
92c34cab 782 |- _common
58eb99c3 783 | |- downgrade
4f85efc6 784 | | `- 2-1
92c34cab 785 | | `- 002-remove-customers.pl
58eb99c3 786 | `- upgrade
92c34cab 787 | `- 1-2
25c3bec3 788 | | `- 002-generate-customers.pl
789 | `- _any
790 | `- 999-bump-action.pl
92c34cab 791 `- MySQL
58eb99c3 792 |- downgrade
4f85efc6 793 | `- 2-1
e62add58 794 | `- 001-auto.sql
ff40cb1f 795 |- initialize
80ff6f6d 796 | `- 1
797 | |- 001-create_database.pl
798 | `- 002-create_users_and_permissions.pl
58eb99c3 799 |- deploy
92c34cab 800 | `- 1
e62add58 801 | `- 001-auto.sql
58eb99c3 802 `- upgrade
92c34cab 803 `- 1-2
e62add58 804 `- 001-auto.sql
92c34cab 805
806So basically, the code
807
808 $dm->deploy(1)
809
810on an C<SQLite> database that would simply run
58eb99c3 811C<$sql_migration_dir/SQLite/deploy/1/001-auto.sql>. Next,
92c34cab 812
813 $dm->upgrade_single_step([1,2])
814
58eb99c3 815would run C<$sql_migration_dir/SQLite/upgrade/1-2/001-auto.sql> followed by
25c3bec3 816C<$sql_migration_dir/_common/upgrade/1-2/002-generate-customers.pl>, and
817finally punctuated by
818C<$sql_migration_dir/_common/upgrade/_any/999-bump-action.pl>.
92c34cab 819
0824f31f 820C<.pl> files don't have to be in the C<_common> directory, but most of the time
39c88a9a 821they should be, because perl scripts are generally database independent.
92c34cab 822
ff40cb1f 823Note that unlike most steps in the process, C<initialize> will not run SQL, as
824there may not even be an database at initialize time. It will run perl scripts
80ff6f6d 825just like the other steps in the process, but nothing is passed to them.
826Until people have used this more it will remain freeform, but a recommended use
ff40cb1f 827of initialize is to have it prompt for username and password, and then call the
80ff6f6d 828appropriate C<< CREATE DATABASE >> commands etc.
829
03882cab 830=head2 Directory Specification
831
832The following subdirectories are recognized by this DeployMethod:
833
834=over 2
835
58eb99c3 836=item C<_source> This directory can contain the following directories:
03882cab 837
838=over 2
839
39c88a9a 840=item C<deploy> This directory merely contains directories named after schema
841versions, which in turn contain C<yaml> files that are serialized versions
842of the schema at that version. These files are not for editing by hand.
843
844=back
845
846=item C<_preprocess_schema> This directory can contain the following
847directories:
848
849=over 2
850
58eb99c3 851=item C<downgrade> This directory merely contains directories named after
03882cab 852migrations, which are of the form C<$from_version-$to_version>. Inside of
853these directories you may put Perl scripts which are to return a subref
854that takes the arguments C<< $from_schema, $to_schema >>, which are
855L<SQL::Translator::Schema> objects.
856
58eb99c3 857=item C<upgrade> This directory merely contains directories named after
03882cab 858migrations, which are of the form C<$from_version-$to_version>. Inside of
859these directories you may put Perl scripts which are to return a subref
860that takes the arguments C<< $from_schema, $to_schema >>, which are
861L<SQL::Translator::Schema> objects.
862
03882cab 863=back
864
5b766a24 865=item C<$storage_type> This is a set of scripts that gets run depending on what
866your storage type is. If you are not sure what your storage type is, take a
867look at the producers listed for L<SQL::Translator>. Also note, C<_common>
868is a special case. C<_common> will get merged into whatever other files you
25c3bec3 869already have. This directory can contain the following directories itself:
71d00500 870
871=over 2
872
ff40cb1f 873=item C<initialize> Gets run before the C<deploy> is C<deploy>ed. Has the
58eb99c3 874same structure as the C<deploy> subdirectory as well; that is, it has a
875directory for each schema version. Unlike C<deploy>, C<upgrade>, and C<downgrade>
71d00500 876though, it can only run C<.pl> files, and the coderef in the perl files get
877no arguments passed to them.
878
58eb99c3 879=item C<deploy> Gets run when the schema is C<deploy>ed. Structure is a
71d00500 880directory per schema version, and then files are merged with C<_common> and run
881in filename order. C<.sql> files are merely run, as expected. C<.pl> files are
882run according to L</PERL SCRIPTS>.
883
58eb99c3 884=item C<upgrade> Gets run when the schema is C<upgrade>d. Structure is a directory
71d00500 885per upgrade step, (for example, C<1-2> for upgrading from version 1 to version
8862,) and then files are merged with C<_common> and run in filename order.
887C<.sql> files are merely run, as expected. C<.pl> files are run according
888to L</PERL SCRIPTS>.
889
58eb99c3 890=item C<downgrade> Gets run when the schema is C<downgrade>d. Structure is a directory
71d00500 891per downgrade step, (for example, C<2-1> for downgrading from version 2 to version
8921,) and then files are merged with C<_common> and run in filename order.
893C<.sql> files are merely run, as expected. C<.pl> files are run according
894to L</PERL SCRIPTS>.
895
896
897=back
898
03882cab 899=back
900
25c3bec3 901Note that there can be an C<_any> in the place of any of the versions (like
902C<1-2> or C<1>), which means those scripts will be run B<every> time. So if
903you have an C<_any> in C<_common/upgrade>, that script will get run for every
904upgrade.
905
92c34cab 906=head1 PERL SCRIPTS
907
7d0b0f2b 908A perl script for this tool is very simple. It merely needs to contain an
25c3bec3 909anonymous sub that takes a L<DBIx::Class::Schema> and the version set as it's
910arguments.
911
92c34cab 912A very basic perl script might look like:
913
914 #!perl
915
916 use strict;
917 use warnings;
918
57a30fa8 919 use DBIx::Class::DeploymentHandler::DeployMethod::SQL::Translator::ScriptHelpers
920 'schema_from_schema_loader';
921
922 schema_from_schema_loader({ naming => 'v4' }, sub {
92c34cab 923 my $schema = shift;
924
25c3bec3 925 # [1] for deploy, [1,2] for upgrade or downgrade, probably used with _any
926 my $versions = shift;
927
92c34cab 928 $schema->resultset('Users')->create({
929 name => 'root',
930 password => 'root',
931 })
57a30fa8 932 })
933
934Note that the above uses
935L<DBIx::Class::DeploymentHanlder::DeployMethod::SQL::Translator::ScriptHelpers/schema_from_schema_loader>.
936Using a raw coderef is strongly discouraged as it is likely to break as you
937modify your schema.
bcc72297 938
39c88a9a 939=attr ignore_ddl
940
941This attribute will, when set to true (default is false), cause the DM to use
942L<SQL::Translator> to use the C<_source>'s serialized SQL::Translator::Schema
943instead of any pregenerated SQL. If you have a development server this is
944probably the best plan of action as you will not be putting as many generated
945files in your version control. Goes well with with C<databases> of C<[]>.
946
92624ee5 947=attr force_overwrite
948
949When this attribute is true generated files will be overwritten when the
950methods which create such files are run again. The default is false, in which
951case the program will die with a message saying which file needs to be deleted.
952
eb28403b 953=attr schema
a65184c8 954
bcc72297 955The L<DBIx::Class::Schema> (B<required>) that is used to talk to the database
956and generate the DDL.
957
eb28403b 958=attr storage
a65184c8 959
bcc72297 960The L<DBIx::Class::Storage> that is I<actually> used to talk to the database
961and generate the DDL. This is automatically created with L</_build_storage>.
962
02a7b8ac 963=attr sql_translator_args
cfc9edf9 964
02a7b8ac 965The arguments that get passed to L<SQL::Translator> when it's used.
a65184c8 966
91adde75 967=attr script_directory
cfc9edf9 968
91adde75 969The directory (default C<'sql'>) that scripts are stored in
cfc9edf9 970
eb28403b 971=attr databases
cfc9edf9 972
973The types of databases (default C<< [qw( MySQL SQLite PostgreSQL )] >>) to
974generate files for
975
eb28403b 976=attr txn_wrap
977
bcc72297 978Set to true (which is the default) to wrap all upgrades and deploys in a single
979transaction.
980
73caa630 981=attr schema_version
982
983The version the schema on your harddrive is at. Defaults to
984C<< $self->schema->schema_version >>.
ec167a97 985
986=head1 SEE ALSO
987
988This class is an implementation of
989L<DBIx::Class::DeploymentHandler::HandlesDeploy>. Pretty much all the
990documentation is there.