-
Notifications
You must be signed in to change notification settings - Fork 4
/
project_build
executable file
·1046 lines (813 loc) · 26 KB
/
project_build
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#!/usr/bin/env perl
# Run an InterMine production build and dump the database occasionally.
# The project.xml in the current directory controls which actions to
# run/merge/postprocess.
# The database to dump will be found by reading the properties from $HOME/.intermine/<mine_name>.properties
# where <mine_name> is the name of the directory where the script is run
use strict;
use warnings;
use Getopt::Std;
use Cwd;
use XML::Parser::PerlSAX;
use Text::Glob qw(glob_to_regex);
my $saved_dir = getcwd;
my @ant_command = ("$saved_dir/gradlew --stacktrace --no-daemon");
my $dump_file_prefix;
my $dump_host;
my $project_file = 'project.xml';
my $pgpass_file = "$ENV{HOME}/.pgpass";
my $default_port = '5432';
my $final_dump_name = 'final-dump';
my $final_marker = 'final';
sub read_properties {
my $file = shift;
open(my $in, '<', "$file") or die "cannot open $file: $!\n";
my %properties;
while (<$in>) {
next if /^\s*#/;
chomp;
my ($k, $v) = split(/\s*=\s*/, $_, 2);
next unless $k;
$properties{$k} = $v;
}
close($in) or die "Problem reading from $file: $!\n";
return %properties;
}
sub usage
{
die <<"HELP";
usage:
$0 [-v] [-b] [-l | -r] [-T] [-u | -U] [-V <version>] [-D dest_database_name] [-a <actions>] dump_host dump_prefix
flags:
-v is passed to ant
-l attempt to restart by reading the last dump file
-r attempt to restart just after the last dump point _without_ loading a dump
-b run build-db before starting build and drop any existing backup databases
-n parse files and report actions, but don't execute anything
-V set the release number to pass to ant (as -Drelease=release_number)
-T instead of making backup copies of the database in the
server using the "CREATE DATABASE foo WITH TEMPLATE bar" command,
dump and reload to restart.
-E Set the default database encoding (defaults to SQL_ASCII if not passed)
-D set the destination database for the completed build; the database will be
copied to this name in the same postgres server that the build used
-a set the list of actions to perform - the list must be a subset of the
sources/postprocesses in the project.xml file.
- The -l and -r operate as usual.
- To run all steps starting at <some_action> use a dash after the action
name: -a <some_action>-
- To perform only the final dump use: -a $final_dump_name
- The action names can be patterns: -a 'flymine-static,*dmel*'
- To refer to dump step and skip its corresponding action use the action
name with "-dump" appended
eg -a fly-fish-dump- (starts with the fly-fish dump then continues)
-a fly-fish-dump,flymine-static,create-references,$final_dump_name
-u Build userprofile database if not already populated
-U Build userprofile database even if already populated
dump_host is the host to run pg_dump and pg_restore on
With the -t flag, one dump is made the end of the build with the name
dump_prefix.final
Without the -t flag, a dump is made after integrating each source in the
project.xml that has dump="true" set. A final dump is also made.
example:
$0 prod1 /tmp/production_dump
HELP
}
if (!-f $project_file) {
warn "can't find $project_file in the current directory\n";
usage();
}
my $verbose = 0;
my $load_last = 0;
my $restart = 0;
# if true, don't execute anything just print what will happen
my $dry_run = 0;
# if true don't dump and reload, instead do backup copies in the server using
# the "CREATE DATABASE foo WITH TEMPLATE bar" command
my $server_backup = 1;
my $db_encoding = 'SQL_ASCII';
# if true, run build-db before starting the integration
my $run_build_db = 0;
my $dest_db;
my $release;
my @required_actions_list = ();
my $start_action = undef;
# Process command-line opts
my %opts = ();
if (!getopts('vrlbTnuUE:D:a:V:', \%opts)) {
usage();
}
if ($opts{v}) {
$verbose = 1;
push @ant_command, '--stacktrace';
}
if ($opts{l}) {
$load_last = 1;
}
if ($opts{r}) {
$restart = 1;
}
if ($opts{n}) {
$dry_run = 1;
}
if ($opts{T}) {
$server_backup = 0;
}
if (defined $opts{E}) {
$db_encoding = $opts{E};
}
if ($opts{b}) {
$run_build_db = 1;
}
if ($opts{D}) {
$dest_db = $opts{D};
}
my $build_userprofile_db;
if ($opts{u} or $opts{U}) {
# $build_userprofile_db = 1;
}
my $overwrite_userprofile_ok;
if ($opts{U}) {
# $overwrite_userprofile_ok = 1;
}
if (exists $opts{a}) {
my $arg = $opts{a};
if ($arg =~ /^.*,.*-$/) {
warn "error: can't use commas and '-' in -a <actions> argument: $arg\n";
usage;
}
if ($arg =~ /(.*)-$/) {
$start_action = $1;
} else {
@required_actions_list = split (',', $arg);
}
}
if ($opts{V}) {
$release = $opts{V};
push @ant_command, "-Dorg.gradle.project.release=$release"
}
if (@ARGV == 2) {
$dump_host = $ARGV[0];
$dump_file_prefix = $ARGV[1];
} else {
usage;
}
my $log_file = "pbuild.log";
my $mode = ($run_build_db) ? '>' : '>>';
open(LOG, $mode, $log_file) or die "can't open $log_file: $!\n";
my $old_handle = select(LOG);
$| = 1; # autoflush
select $old_handle;
my $current_directory = (getcwd() =~ m:.*/(.*):)[0];
my $properties_file = "$ENV{HOME}/.intermine/$current_directory.properties";
if (defined $release) {
$properties_file .= ".$release";
}
my @psql_command = 'psql';
my @dump_command = qw[pg_dump -F c];
my @load_command = qw[pg_restore -1];
my @dropdb_command = qw[dropdb];
my @createdb_command = (qw[createdb -E ], $db_encoding);
sub log_message
{
my $message = shift;
my $verbose = shift;
if (defined $message) {
print LOG "$message\n";
if (defined $verbose && $verbose) {
print STDERR "$message\n";
}
} else {
print LOG "\n";
}
}
sub log_and_print
{
log_message shift, 1;
}
# run a command and exit the script if it returns a non-zero
sub run_and_check_status
{
my $command_name = $_[0];
log_and_print `date`, "\n\n";
log_and_print "starting command: @_\n";
my $result = 0;
if (!$dry_run) {
open F, "@_ |" or die "can't run @_: $?\n";
while (<F>) {
chomp;
log_message " [$command_name] $_";
}
close F;
$result = $?;
}
log_and_print `date`, "\n\n";
log_and_print "finished\n\n";
if ($result != 0) {
warn "ERROR: $result\n";
}
if (!$dry_run && $result != 0) {
log_and_print "failed with exit code $?: @_\n";
print STDERR "check log: $log_file\n";
exit 1;
}
}
sub spawn
{
my $pass = shift;
my @spawn_args = @_;
if (!defined $dump_host || $dump_host eq 'localhost') {
$ENV{PAGER} = "/bin/cat";
@spawn_args = "sh -c '@spawn_args'";
} else {
unshift @spawn_args, "ssh", $dump_host;
}
if ($dry_run) {
log_and_print "command to run: @spawn_args\n";
} else {
my $pid = open(my $PROCESS, '-|', @spawn_args)
or die "Could not execute @spawn_args\n";
while (<$PROCESS>) {
if (/error/i) {
die "Error returned by @spawn_args\n";
}
}
close $PROCESS;
}
}
sub run_build_db
{
log_and_print `date`, "\n";
log_and_print "\nbuilding db: @ant_command builddb\n";
my $saved_dir = getcwd;
#chdir "$saved_dir/dbmodel" or die "can't change directory into: $saved_dir/dbmodel\n";
run_and_check_status @ant_command, "clean";
run_and_check_status @ant_command, "builddb";
#chdir $saved_dir
# or die "can't return to previous directory ($saved_dir) after $saved_dir/dbmodel\n";
}
sub dropdb_backups
{
my ($db, $user, $pass, $host, $port, $database_names_ref, $actions_ref) = @_;
my @database_names = @$database_names_ref;
my @actions = @$actions_ref;
for my $action (@actions) {
my $action_type = $action->{type};
my @action_args = @{$action->{args}};
if ($action_type eq 'dump') {
my $action_name = $action_args[0];
my $backup_name = "$db:$action_name";
if (grep {$_ eq $backup_name} @database_names) {
my @params = ('-U', $user, '-h', $host, $backup_name);
log_and_print `date`, "\n";
log_and_print "\ndropping old backup database: @dropdb_command @params\n";
spawn($pass, @dropdb_command, @params);
}
}
}
}
sub create_prod_db
{
my ($db, $user, $pass, $host, $port, $suffix) = @_;
my @params = ('-U', $user, '-h', $host, $db);
log_and_print `date`, "\n";
log_and_print "\ncreating database: @createdb_command @params\n";
eval {
# ignore error - it's OK if the database doesn't exist
spawn($pass, @createdb_command, @params);
};
run_build_db();
}
sub copy_db
{
my ($db, $user, $pass, $host, $port, $to_db) = @_;
my @params = ('-U', $user, '-h', $host, '-T', $db, $to_db);
log_and_print `date`, "\n\n";
log_and_print "\nmaking db copy: @createdb_command @params\n";
# retry a few times because sometimes the createdb fails with a "no
# such file or directory" error because some table/index files
# (temporary tables maybe) disappear while being copied
for (my $i = 1; $i <= 25; $i++) {
eval {
spawn($pass, @createdb_command, @params);
};
if ($@) {
my $pause = $i * 5;
warn "failure ($@) - will try again in $pause seconds ...\n";
sleep($pause);
} else {
last;
}
}
die "$@\n" if $@;
}
sub make_server_backup
{
my ($db, $user, $pass, $host, $port, $suffix) = @_;
copy_db($db, $user, $pass, $host, $port, "$db:$suffix");
log_and_print `date`, "\n\n";
log_and_print "finished backup\n\n";
}
sub server_restore
{
my ($db, $user, $pass, $host, $port, $suffix) = @_;
my @params = ('-U', $user, '-h', $host);
if (defined $port) {
unshift @params, "-p", $port;
}
log_and_print `date`, "\n\n";
log_and_print "\nrunning: @dropdb_command @params $db\n";
eval {
# ignore failures
spawn($pass, @dropdb_command, @params, $db);
};
log_and_print `date`, "\n\n";
log_and_print "\nrunning: @createdb_command @params -T $db:$suffix $db\n";
spawn($pass, @createdb_command, @params, '-T', "$db:$suffix", $db);
log_and_print `date`, "\n\n";
log_and_print "finished restore - now analysing\n\n";
my $saved_dir = getcwd;
#chdir "$saved_dir/dbmodel" or die "can't change directory into: $saved_dir/dbmodel\n";
#run_and_check_status @ant_command, "analyse-db-production";
#chdir $saved_dir
# or die "can't return to previous directory ($saved_dir) after $saved_dir/dbmodel\n";
log_and_print `date`, "\n\n";
log_and_print "finished analysing\n\n";
}
sub dump_db
{
my $db = shift;
my $user = shift;
my $pass = shift;
my $host = shift;
my $port = shift;
my $out_file = shift;
my @params = ('-U', $user, '-h', $host, '-f', $out_file, $db);
if (defined $port) {
unshift @params, "-p", $port;
}
log_and_print `date`, "\n\n";
log_and_print "\ndumping: @dump_command @params\n";
my @spawn_args = ($pass, "@dump_command @params");
spawn(@spawn_args);
log_and_print `date`, "\n\n";
log_and_print "finished dump\n\n";
}
sub load_db
{
my $db = shift;
my $user = shift;
my $pass = shift;
my $host = shift;
my $port = shift;
my $in_file = shift;
my @params = ('-U', $user, '-h', $host);
if (defined $port) {
unshift @params, "-p", $port;
}
log_and_print `date`, "\n\n";
log_and_print "\nrunning: @dropdb_command @params $db\n";
eval {
# ignore failures
spawn($pass, @dropdb_command, @params, $db);
};
log_and_print `date`, "\n\n";
log_and_print "\nrunning: @createdb_command @params $db\n";
spawn($pass, @createdb_command, @params, $db);
push @params, '-d', $db, $in_file;
log_and_print `date`, "\n\n";
log_and_print "\nrunning: @load_command @params\n";
spawn($pass, @load_command, @params);
log_and_print `date`, "\n\n";
#log_and_print "finished load - now analysing\n\n";
#my $saved_dir = getcwd;
#chdir "$saved_dir/dbmodel" or die "can't change directory into: $saved_dir/dbmodel\n";
#run_and_check_status @ant_command, "analyse-db-production";
#chdir $saved_dir
# or die "can't return to previous directory ($saved_dir) after $saved_dir/dbmodel\n";
#log_and_print `date`, "\n\n";
#log_and_print "finished analysing\n\n";
}
package ProjectXML::Handler;
use vars qw{ $AUTOLOAD };
sub new {
my $type = shift;
my $self = ( $#_ == 0 ) ? shift : { @_ };
$self->{sources} = [];
return bless $self, $type;
}
sub start_element
{
my $self = shift;
my $args = shift;
my $element_name = $args->{Name};
my $action_name = $args->{Attributes}{name};
my $dump_flag = (exists $args->{Attributes}{dump} and $args->{Attributes}{dump} eq 'true');
my $index_flag = exists $args->{Attributes}{index};
if ($element_name eq 'source') {
push @{$self->{actions}}, {
type => 'integrate',
args => ["integrate -Psource=$action_name"],
name => $action_name
};
} elsif ($element_name eq 'post-process') {
push @{$self->{actions}}, {
type => 'postprocess',
args => ["postprocess -Pprocess=$action_name"],
name => $action_name
};
} elsif ($element_name eq 'property' and $action_name eq 'intermine.properties.file') {
$self->{properties_file} = $args->{Attributes}{value};
} else {
return;
}
if ($dump_flag) {
push @{$self->{actions}}, {
type => 'dump',
args => ["$action_name"],
name => "$action_name-dump"
};
}
if ($index_flag) {
push @{$self->{actions}}, {
type => 'index',
args => ["$action_name"],
name => "$action_name-index"
};
}
}
sub processing_instruction { }
sub ignorable_whitespace { }
# Others
sub AUTOLOAD {
my $self = shift;
my $method = $AUTOLOAD;
$method =~ s/.*:://;
return if $method eq 'DESTROY';
print "UNRECOGNIZED $method\n";
}
1;
package main;
# add missing lines to .pgpass so that createdb and co never ask for a password
sub fix_pgpass
{
my ($db, $user, $pass, $host, $port) = @_;
if (-f $pgpass_file) {
open PGPASS, '<', $pgpass_file or die "can't open $pgpass_file: $!\n";
while (my $line = <PGPASS>) {
chomp $line;
my ($line_host, $line_port, $line_db, $line_user, $line_pass) =
split (/:/, $line);
if ($line_host eq $host &&
($line_port eq $default_port && !defined $port ||
defined $port && $line_port eq $port) &&
($line_db eq '*' || $line_db eq $db) &&
$line_user eq $user &&
$line_pass eq $pass) {
# match
chmod 0600, $pgpass_file or die "can't change mode of $pgpass_file: $!\n";
return;
}
}
close PGPASS;
}
open PGPASS, '>>', $pgpass_file
or die "can't open $pgpass_file for appending: $!\n";
my $out_port;
if (defined $port) {
$out_port = $port;
} else {
$out_port = $default_port;
}
print PGPASS "$host:$out_port:*:$user:$pass\n";
close PGPASS or die "can't close $pgpass_file: $!\n";
chmod 0600, $pgpass_file or die "can't change mode of $pgpass_file: $!\n";
}
sub userprofile_db_already_populated {
my $properties_file = shift;
my $userprofiledb;
my $psql_opt = q{-c '\d'};
open (my $props, '<', $ENV{HOME}.'/.intermine/'.$properties_file)
or die "Cannot open $project_file for reading, $!";
while (<$props>) {
if (/\Qdb.userprofile-production.datasource.databaseName\E/) {
(undef, $userprofiledb) = split(/=/);
last;
}
}
close $props or die "Could not close $project_file after reading, $!";
my $command = join(' ', @psql_command, $psql_opt, $userprofiledb);
my $results = qx/$command/;
if ($results =~ /(?:psql: FATAL database.*does not exist|No relations found)/) {
return 0; # database does not exist, or is empty
} elsif ($results =~ /List of Relations.*\d+ rows/s) {
return 1; #database exists and is populated
} else {
die "Unknown psql response status: $results";
}
}
sub get_actions
{
my $handler = ProjectXML::Handler->new();
my $parser = XML::Parser::PerlSAX->new(Handler => $handler);
$parser->parse(Source => { SystemId => $project_file });
if (!defined $handler->{actions}) {
die "invalid project.xml file, unable to continue build";
}
my @actions = @{$handler->{actions}};
if (@actions && $actions[-1]{type} ne 'dump') {
push @actions, {
type => 'dump',
args => [$final_marker],
name => $final_dump_name,
};
}
if (defined $dest_db) {
push @actions, {
type => 'copy',
args => [$dest_db],
name => "copy_to_$dest_db"
};
}
my $properties_file = $handler->{properties_file};
if ($build_userprofile_db) {
if ($overwrite_userprofile_ok
or userprofile_db_already_populated($properties_file) ) {
push @actions, {
type => 'webapp',
args => ['build-db-userprofile'],
name => 'Build_Userprofile_DB',
};
}
};
my @return_actions = ();
if (defined $start_action) {
my $seen_start = 0;
# we're restarting so remove all actions before start_action
for my $action (@actions) {
if ($seen_start || $action->{name} eq $start_action) {
push @return_actions, $action;
$seen_start = 1;
}
}
if (!$seen_start) {
warn "error: start action $start_action not found in $project_file\n";
usage;
}
} else {
my @actions_not_found = @required_actions_list;
if (@required_actions_list) {
my %action_map = map {($_->{name}, $_)} @actions;
# remove all not in required list
for my $req_action_pattern (@required_actions_list) {
my $req_action_re = glob_to_regex($req_action_pattern);
for my $action (@actions) {
my $action_name = $action->{name};
if ($action_name =~ /$req_action_re/) {
push @return_actions, $action;
}
}
}
if (!@return_actions) {
warn "error: not found in $project_file\n";
usage;
}
if ($verbose) {
my $action_names = join ',', map { $_->{name} } @return_actions;
warn "running actions: $action_names\n";
}
} else {
# default - use all actions from project.xml
@return_actions = @actions;
}
}
return @return_actions;
}
# find the last existing backup file
sub get_restart_suffix_file
{
my ($dump_file_prefix, @actions) = @_;
my %remote_suffixes = ();
my $command;
if ($dump_host eq 'localhost') {
$command = qq{ls -1 $dump_file_prefix.*};
} else {
$command = qq{ssh $dump_host "ls -1 $dump_file_prefix.*"};
}
open LS_OUTPUT, qq{$command|};
while (my $line = <LS_OUTPUT>) {
chomp $line;
if ($line =~ /$dump_file_prefix.(.*)/) {
$remote_suffixes{$1} = 1;
}
}
my $restart_dump_suffix = undef;
for my $action (@actions) {
my $action_type = $action->{type};
my @action_args = @{$action->{args}};
if ($action_type eq 'dump') {
if (exists $remote_suffixes{$action_args[0]}) {
$restart_dump_suffix = $action_args[0];
}
}
}
close LS_OUTPUT;
return $restart_dump_suffix;
}
sub get_database_names
{
my ($db, $user, $pass, $host, $port, @actions) = @_;
my @database_names = ();
my @params = ('-U', $user, '-h', $host, '-d', 'postgres', '-l');
if (defined $port) {
push @params, "-p", $port;
}
my $command = "@psql_command @params";
log_and_print `date`, "\n\n";
log_and_print "\nrunning: $command\n";
open PSQL, "$command|"
or die "can't open pipe to $command: $!\n";
while (my $line = <PSQL>) {
chomp $line;
if ($line =~ /^\s*(\S+)/) {
push @database_names, $1;
}
}
close LS_OUTPUT;
return @database_names;
}
# find the last existing backup suffix by asking the postgres server
sub get_restart_suffix_server
{
my ($db, $database_names_ref, $actions_ref) = @_;
my @actions = @{$actions_ref};
my %remote_suffixes = ();
for my $database_name (@{$database_names_ref}) {
if ($database_name =~ /$db:(\S+)/) {
$remote_suffixes{$1} = 1;
}
}
my $restart_suffix = undef;
for my $action (@actions) {
my $action_type = $action->{type};
my @action_args = @{$action->{args}};
if ($action_type eq 'dump') {
if (exists $remote_suffixes{$action_args[0]}) {
$restart_suffix = $action_args[0];
}
}
}
close LS_OUTPUT;
return $restart_suffix;
}
log_and_print "reading properties from: $properties_file\n";
my %properties = read_properties($properties_file);
my ($prod_host, $prod_db, $prod_user, $prod_pass) = @properties{qw/
db.production.datasource.serverName
db.production.datasource.databaseName
db.production.datasource.user
db.production.datasource.password
/};
my $prod_port;
if ($prod_host =~ /(.+):(\d+)/) {
$prod_host = $1;
$prod_port = $2;
}
log_message "found properties:";
log_message " prod_host: $prod_host";
log_message " prod_port: " . (defined($prod_port) ? $prod_port : "default");
log_message " prod_db: $prod_db";
log_message " prod_user: $prod_user";
log_message " prod_pass: $prod_pass";
log_message;
fix_pgpass($prod_db, $prod_user, $prod_pass, $prod_host, $prod_port);
my @actions = get_actions();
my $restart_dump_suffix = undef;
my @database_names = get_database_names($prod_db, $prod_user, $prod_pass,
$prod_host, $prod_port);
if (grep {$_ eq $prod_db } @database_names) {
if ($verbose) {
log_and_print ("not creating $prod_db as it already exists\n");
}
if ($run_build_db) {
run_build_db();
dropdb_backups($prod_db, $prod_user, $prod_pass, $prod_host, $prod_port,
[@database_names], [@actions]);
# if we're starting from scratch, don't try to load old databases
@database_names = ();
}
} else {
create_prod_db($prod_db, $prod_user, $prod_pass, $prod_host, $prod_port);
dropdb_backups($prod_db, $prod_user, $prod_pass, $prod_host, $prod_port,
[@database_names], [@actions]);
# if we're starting from scratch, don't try to load old databases
@database_names = ();
}
if (($load_last || $restart) && !$run_build_db) {
my $restart_file_suffix = get_restart_suffix_file($dump_file_prefix, @actions);
if ($server_backup) {
if (defined $restart_file_suffix && $restart_file_suffix eq $final_marker) {
log_and_print ("backup with .$final_marker suffix exists - " .
"build finished - exiting\n");
exit(0);
} else {
$restart_dump_suffix =
get_restart_suffix_server($prod_db, \@database_names, \@actions);
}
} else {
$restart_dump_suffix = $restart_file_suffix;
}
if (defined $restart_dump_suffix) {
if ($restart_dump_suffix eq $final_marker) {
log_and_print ("backup with .$final_marker suffix exists - " .
"build finished - exiting\n");
exit(0);
} else {
if ($load_last) {
if ($server_backup) {
log_and_print "\nrestarting using database: $prod_db:$restart_dump_suffix\n";
server_restore ($prod_db, $prod_user, $prod_pass, $prod_host, $prod_port,
$restart_dump_suffix);
} else {
my $dump_file_name = "$dump_file_prefix.$restart_dump_suffix";
log_and_print "\nrestarting from $dump_file_name\n";
load_db ($prod_db, $prod_user, $prod_pass, $prod_host, $prod_port,
$dump_file_name);
}
} else {
log_and_print ("\nrestarting build at stage: $restart_dump_suffix - " .
"NOT restoring from backup\n");
}
}
} else {
warn "no backup file found\n";
}
}
my $seen_start_action = 0;
if ((!$load_last && !$restart) || !defined $restart_dump_suffix) {
# always start at the beginning of the command list if we aren't restarting
$seen_start_action = 1;
}
my @action_times = ();
for my $action (@actions) {
my $action_name = $action->{name};
my $action_type = $action->{type};
my @action_args = @{$action->{args}};
if ($seen_start_action) {
my $start_time = time();
if ($action_type =~ /^(?:integrate|postprocess|webapp)$/) {
my $saved_dir = getcwd;
#chdir $action_type
# or die "can't change directory into: $saved_dir/$action_type\n";
run_and_check_status @ant_command, @action_args;
#chdir $saved_dir
# or die "can't return to previous directory ($saved_dir) after $action_type\n";
} elsif ($action_type eq 'dump') {
if (@action_args != 1) {
die "dump: needs one parameter at: $action: @action_args\n";
}
if ($server_backup && $action_name ne $final_dump_name) {
make_server_backup ($prod_db, $prod_user, $prod_pass, $prod_host, $prod_port,
$action_args[0]);
} else {
dump_db ($prod_db, $prod_user, $prod_pass, $prod_host, $prod_port,
"$dump_file_prefix.$action_args[0]");
}
} elsif ($action_type eq 'copy') {
copy_db($prod_db, $prod_user, $prod_pass, $prod_host, $prod_port, $action_args[0]);
} else {
die qq{unknown action: "$action_type"\n};
}