forked from DOCGroup/autobuild
-
Notifications
You must be signed in to change notification settings - Fork 0
/
autobuild.pl
executable file
·831 lines (746 loc) · 24.9 KB
/
autobuild.pl
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
eval '(exit $?0)' && eval 'exec perl -S $0 ${1+"$@"}'
& eval 'exec perl -S $0 $argv:q'
if 0;
##############################################################################
##############################################################################
use diagnostics;
use Time::Local;
use File::Basename;
use Cwd;
if ( $^O eq 'VMS' ) {
require VMS::Filespec;
import VMS::Filespec qw(unixpath);
}
else {
use FindBin;
use lib ($FindBin::Bin || '.');
}
## Use 'our' to make visible outside this file
#
our $verbose = 0;
our $deprecated = 0;
our $pathsep = (($^O eq "MSWin32") ? ';' : ':');
our $dirsep = (($^O eq "MSWin32") ? '\\' : '/');
my $keep_going = 0;
my $parse_only = 0;
my $check_only = 0;
my $xml_dump = 0;
my $status_file = '';
my $build_start_time = scalar gmtime(time());
my @files;
my %data = ();
my %command_table = ();
my $cvs_tag;
my $starting_dir= getcwd ();
my $warn_nonfatal;
##############################################################################
# Load the commands allowed here
#
require common::mail;
require command::anonymous_shell;
require command::auto_run_tests;
require command::auto_run_remote_tests;
require command::quickfast_auto_run_tests;
require command::check_compiler;
require command::check_linker;
require command::doxygen;
require command::jboss_build;
require command::jboss_report;
require command::print_os_version;
require command::print_remote_os_version;
require command::print_autobuild_config;
require command::print_env_vars;
require command::print_autotools_version;
require command::print_tool_version;
require command::print_make_version;
require command::print_openssl_version;
require command::print_cidlc_version;
require command::process_listener;
require command::configure;
require command::create_ace_build;
require command::create_ace_build_legacy;
require command::clone_build_tree;
require command::cvs;
require command::cvsgrab;
require command::file_manipulation;
require command::fuzz;
require command::log;
require command::notify;
if ( $^O eq 'VMS' ) {
require command::vmsmake;
}
else {
require command::make;
}
require command::printaceconfig;
require command::printqfconfig;
require command::print_status;
require command::process_logs;
require command::shell; ## (Setup stage) execute command.
require command::status;
require command::tar;
require command::test; ## as shell (but Test Stage)
require command::win32make;
require command::rem_sems;
require command::generate_makefile;
require command::generate_workspace;
require command::vc6make;
require command::vc7make;
require command::incredibuild;
require command::wincemake;
require command::xcodemake;
require command::svn;
require command::git;
require command::p4;
require command::zip;
require command::unzip;
require command::run_perl_script; ## This runs a perl command (like test).
require command::run_process; ## This Spawns/Kills a concurrent test.
require command::setup_lvrt;
require command::eval;
require command::setenv;
require command::setvariable;
##############################################################################
# Parse the arguments supplied when executed
#
while ($#ARGV >= 0)
{
if ($ARGV[0] =~ m/^-v$/i) {
if (defined $ARGV[1] && $ARGV[1] =~ m/^(\d+)$/) {
shift;
$verbose = $1;
}
else {
++$verbose;
}
shift;
}
elsif ($ARGV[0] =~ m/^-v(\d+)$/i) {
$verbose = $1;
shift;
}
elsif ($ARGV[0] =~ m/^-c$/i) {
$check_only = 1;
shift;
}
elsif ($ARGV[0] =~ m/^-d$/i) {
$deprecated = 1;
shift;
}
elsif ($ARGV[0] =~ m/^-k$/i) {
$keep_going = 1;
shift;
}
elsif ($ARGV[0] =~ m/^-p$/i) {
$parse_only = 1;
shift;
}
elsif ($ARGV[0] =~ m/^-cvs_tag$/i) {
shift;
$cvs_tag = shift;
if (!defined $cvs_tag) {
print "cvs_tag requires a tag name\n";
exit 1;
}
print "CVS tag set to: $cvs_tag\n";
}
elsif ($ARGV[0] =~ m/^-xml$/i) {
shift;
$xml_dump = 1;
}
elsif ($ARGV[0] =~ m/^-w$/i) {
$warn_nonfatal = 1;
shift;
}
elsif ($ARGV[0] =~ m!^(-|/\?)!) {
print "Error: Unknown option $ARGV[0]\n" if ($ARGV[0] !~ m!^(-|/)\?!);
print
"Useage: $0 [-c][-cvs_tag <tag>][-d][-k][-p][-v][-xml] files_to_process.xml [...]\n",
"where:\n",
" -c Parse and Check each command but don't execute any\n",
" -cvs_tag <tag> Checkout operations use <tag> instead of HEAD\n",
" -d Deprecated features issue warning messages\n",
" -k Keep going if errors encountered\n",
" -p Parse only, don't check or execute commands\n",
" -v Verbose parsing messages displayed (more for each -v given)\n",
" -v0 Verbose off (default)\n",
" -v1 Verbose level 1\n",
" -v2 Verbose level 2\n",
" -xml Dumps to <your_file>_dump.xml a newly processed input file\n",
" -w Non-fatal errors are only warnings\n",
"\n";
exit 1;
}
else {
push @files, shift;
}
}
if (scalar @files == 0) {
print "No input files specified\n";
exit 1;
}
require common::betterparser;
my $parser = new BetterParser;
##############################################################################
# Subroutines to get execution path into @INC (nicked from MPC:-)
# because FindBin does not work on OpenVMS
#
sub which {
my($prog) = shift;
my($exec) = $prog;
my($part) = '';
if (defined $ENV{'PATH'}) {
foreach $part (split(/$pathsep/, $ENV{'PATH'})) {
$part .= (( $^O eq 'VMS' ) ? "" : "/" ) . "$prog";
if ( -x $part ) {
$exec = $part;
last;
}
}
}
return $exec;
}
##############################################################################
#
sub GetVariable ($)
{
my $varname = shift;
my $value = $data{VARS}->{$varname};
if ($value && $value ne '') {
# fix the separators
#
$value =~ s/\\/\//g;
# expand environment variables on windows
#
$value =~ s/%([^%]*)%/$ENV{$1}/ge;
# on unix, note they must be in this form ${xxx}
#
$value =~ s'\$\{(\w+)\}'$ENV{$1}'ge;
}
return $value;
}
##############################################################################
#
sub SetVariable ($$)
{
my $variable = shift;
my $option = shift;
$data{VARS}->{$variable} = $option;
}
##############################################################################
#
sub GetEnvironment ()
{
return @{$data{ENVIRONMENT}};
}
##############################################################################
#
sub IsRegisteredCommand ($)
{
my $name = shift;
return defined $command_table{$name};
}
##############################################################################
#
sub RegisterCommand ($$)
{
my $name = shift;
my $obj = shift;
if (IsRegisteredCommand ($name)) {
print STDERR "Command \"$name\" already defined\n";
return 0;
}
$command_table{$name} = $obj;
return 1;
}
##############################################################################
#
sub SetStatusFile ($)
{
$status_file = shift;
}
##############################################################################
#
sub ChangeStatus ($$)
{
my $command = shift;
my $details = shift;
if ($status_file ne '') {
my $file_handle = new FileHandle ($status_file, 'w');
if (!defined $file_handle) {
print STDERR __FILE__,
': ', ($warn_nonfatal ? 'Unable to set' : 'Error setting'),
" status to file ($status_file)", ($warn_nonfatal ? '' : ": $!"), "\n";
# Non fatal error, so just return.
return;
}
print $file_handle "SCOREBOARD_STATUS: $command\n\n";
print $file_handle "Command details: $details\n" if ($details ne '');
print $file_handle 'Command started: ' .
(scalar gmtime(time())) . " UTC\n";
print $file_handle "Last Build started: $build_start_time UTC\n";
}
}
# This variable holds the status from the last time ::PrintStatus was set explicitly
my $previous_status = "Beginning";
##############################################################################
#
sub PrintStatus ($$)
{
my $section = shift;
my $description = shift;
if ($section eq "")
{
$section = $previous_status;
}
else
{
$previous_status = $section;
}
ChangeStatus ($section, $description);
if ($description ne '') {
$description = "($description) ";
}
print "\n#################### $section $description";
print "[" . (scalar gmtime(time())) . " UTC]\n";
}
##############################################################################
# This takes a string and substitutes any <variable_names> into a copy of the
# string. In case of undefined variables, also needs the filename and line
# number(s) where the definition of this string was found.
#
sub subsituteVars ($;$$$)
{
my ($inputString, $filename, $lineFrom, $lineTo) = @_;
my $outputString= $inputString;
# Search and replace all <vars> in string
#
while ($outputString =~ s/<([a-zA-Z0-9_.]+)>(.*)$//) {
my $variable = $1;
my $restOfString = $2;
my $value= GetVariable( $variable );
if (!defined $value) {
if (defined $filename && defined $lineFrom) {
print STDERR "WARNING: $filename($lineFrom";
if (defined $lineTo && $lineTo != $lineFrom) {
print STDERR "-$lineTo";
}
print STDERR "):\n";
}
print STDERR " Variable <$variable> has not been defined";
if ($inputString !~ m/^\s*<$variable>\s*$/) {
print STDERR ", as used in:\n \'$inputString\'";
}
print STDERR "\n";
$value= "";
}
$outputString .= $value . $restOfString;
}
return $outputString;
}
##############################################################################
# Due to a problem with VMS systems being unable to directly assign complete
# new hashes to the %ENV environment, we need to check and if necessary
# perform the changes one by one.
#
sub ChangeENV (\%)
{
my $newENV = shift;
if ($^O ne "VMS") {
%ENV = %$newENV;
return;
}
# Check if any environment variables are to be removed, and if so delete
# them from the current environment. Only do this if the name is one we
# have actually been told to modify.
#
my $thisKey;
foreach $thisKey (keys %ENV) {
if (!defined $newENV->{$thisKey}) {
foreach my $variable (@{$data{ENVIRONMENT}}) {
if ($variable->{NAME} eq $thisKey) {
delete $ENV{$thisKey};
last;
}
}
}
}
# Now set any new or changed values into the current environment.
# Only change the ENV values if they have actually changed, some
# seem to be READONLY (and even if they are set back to the same
# value it causes problems). Only do this if the name is one we
# have actually been told to modify.
#
foreach $thisKey (keys %$newENV) {
if (!defined $ENV{$thisKey} || $ENV{$thisKey} ne $newENV->{$thisKey}) {
foreach my $variable (@{$data{ENVIRONMENT}}) {
if ($variable->{NAME} eq $thisKey) {
$ENV{$thisKey} = $newENV->{$thisKey};
last;
}
}
}
}
}
##############################################################################
# Parse, CheckReqs, and Run every inputfile passed in.
#
INPFILE: foreach my $file (@files) {
undef (@{$data{ENVIRONMENT}});
undef (%{$data{VARS}});
undef (@{$data{COMMANDS}});
undef (%{$data{GROUPS}});
undef (@{$data{UNUSED_GROUPS}});
# We save a copy of the initial environment values which is stored under
# the name "default", any other group names encountered by the parsing will
# add extra entries to this hash, and add another copy of the initial
# environment (so these can be modified separately from the default).
#
my %copyENV = %ENV;
$data{GROUPS}->{default} = \%copyENV;
push @{$data{UNUSED_GROUPS}}, "default";
# Put the name of the file we are parsing into a global variable
# named BUILD_CONFIG_FILE, and its path into BUILD_CONFIG_PATH.
#
if (!File::Spec->file_name_is_absolute ($file)) {
$file = File::Spec->rel2abs ($file);
}
$data{VARS}->{BUILD_CONFIG_FILE} = File::Basename::basename ($file);
$data{VARS}->{BUILD_CONFIG_PATH} = File::Basename::dirname ($file);
my $temp_file = $file;
$temp_file =~ s!\\!/!g; ## replace windows seperators with unix ones
$temp_file =~ s!^.*configs/autobuild!configs/autobuild!;
$data{VARS}->{CVS_CONFIG_FILE} = $temp_file;
# Put the name of this autobuild file we are parsing into a global variable
# named AUTOBUILD_PL_PATH.
#
my $this_file = __FILE__;
if (!File::Spec->file_name_is_absolute ($this_file)) {
$this_file = File::Spec->rel2abs ($this_file);
}
$data{VARS}->{AUTOBUILD_PL_PATH} = $this_file;
$data{VARS}->{AUTOBUILD_ROOT} = File::Basename::dirname ($this_file);
# Setup some other usefull variables before parsing the actual xml file.
#
$data{VARS}->{'cvs_tag'} = (defined $cvs_tag) ? $cvs_tag : 'HEAD';
#
$data{VARS}->{'isAIX'} = ($^O eq 'aix' ) ? 1 : 0;
$data{VARS}->{'isDecOSF'} = ($^O eq 'dec_osf') ? 1 : 0;
$data{VARS}->{'isHpux'} = ($^O eq 'hpux' ) ? 1 : 0;
$data{VARS}->{'isLinux'} = ($^O eq 'linux' ) ? 1 : 0;
$data{VARS}->{'isLynxos'} = ($^O eq 'lynxos' ) ? 1 : 0;
$data{VARS}->{'isSolaris'} = ($^O eq 'solaris') ? 1 : 0;
$data{VARS}->{'isVMS'} = ($^O eq 'VMS' ) ? 1 : 0;
$data{VARS}->{'isWin'} = ($^O eq 'MSWin32') ? 1 : 0;
#
# and this is the generic one for everything non-windows / VMS.
#
$data{VARS}->{'isUnix'} = ($^O ne 'VMS' &&
$^O ne 'MSWin32') ? 1 : 0;
############################################################################
# Parse the actual xml input file
#
my $errors_found = !$parser->Parse ($file, \%data);
if (scalar @{$data{ENVIRONMENT}} &&
scalar @{$data{COMMANDS}} &&
scalar @{$data{UNUSED_GROUPS}} ) {
print STDERR "WARNING: $file:\n",
" Environment group",
(1 == scalar @{$data{UNUSED_GROUPS}}? " \"" : "s \""),
join ("\", \"", @{$data{UNUSED_GROUPS}}), "\" w",
(1 == scalar @{$data{UNUSED_GROUPS}}? "as" : "ere"),
" declared but never used\n";
}
if ($xml_dump) {
require common::simplencoder;
my $encoder = new SimpleEncoder;
my $xml_dump_file = $file;
$xml_dump_file =~ s/(\..*)$/_dump$1/;
print "\nEncoding: $file\n as: $xml_dump_file\n" if ($verbose);
$encoder->Encode ($xml_dump_file, \%data);
next;
}
if (!$keep_going && $errors_found) {
print STDERR "\nNo commands are being checked (due to the errors above)\n";
exit 1;
}
if ($parse_only) {
print "\nParsed successfully, No errors found\n";
next;
}
############################################################################
# Actually set the environment variables
#
print "\nSetting Enviroment variables\n" if ($verbose);
my %originalENV = %ENV;
foreach my $variable (@{$data{ENVIRONMENT}}) {
my $VALUE = $variable->{VALUE};
my $NAME = $variable->{NAME};
$NAME = uc $NAME if ($^O eq 'MSWin32');
# Find in which environment groups this setting must take effect
#
my $GROUPS = $variable->{GROUPS};
if (!defined $GROUPS || !scalar @$GROUPS) {
my @allKeys= keys %{$data{GROUPS}};
$GROUPS = \@allKeys;
}
my $onlyDefault = (1 == scalar keys %{$data{GROUPS}});
foreach my $thisGroup (@$GROUPS) {
my $thisENV = $data{GROUPS}->{$thisGroup};
my $TYPE = $variable->{TYPE};
if ($TYPE =~ m/^(?:delete|remove|unset)$/i) {
delete $thisENV->{$NAME} if (defined $thisENV->{$NAME});
print " Deleted $NAME" .
($onlyDefault ? "\n" : " <-$thisGroup\n") if (1 < $verbose);
}
else {
if (!defined $thisENV->{$NAME} || $TYPE =~ m/^(?:replace|set)$/i) {
$thisENV->{$NAME} = $VALUE;
}
elsif ($TYPE =~ m/^prefix$/i) {
$VALUE =~ s/^$pathsep*//;
$VALUE =~ s/$pathsep*$//;
$thisENV->{$NAME} =~ s/^$pathsep*//;
$thisENV->{$NAME} =~ s/$pathsep*$//;
$thisENV->{$NAME} = $VALUE . $pathsep . $thisENV->{$NAME} if ("" ne $VALUE);
}
elsif ($TYPE =~ m/^(?:postfix|suffix)$/i) {
$VALUE =~ s/^$pathsep*//;
$VALUE =~ s/$pathsep*$//;
$thisENV->{$NAME} =~ s/^$pathsep*//;
$thisENV->{$NAME} =~ s/$pathsep*$//;
$thisENV->{$NAME} .= $pathsep . $VALUE if ("" ne $VALUE);
}
elsif ($TYPE !~ m/^(?:default(?:_(?:only|value)?)?|ifundefined)$/i) {
print STDERR "IGNORING Don't know type \"$TYPE\"\n",
" for Variable: $NAME=\"$VALUE\"\n";
$errors_found = 1;
last;
}
print " $NAME=\"" . $thisENV->{$NAME} . "\"" .
($onlyDefault ? "\n" : " <-$thisGroup\n") if (1 < $verbose);
}
} ## foreach environment group to modify
} ## End of setting environment variables loop
if (!$keep_going && $errors_found) {
print STDERR "\nNo commands are being checked (due to the errors above)\n";
next;
}
my $oldRoot = GetVariable ("root");
if (defined $oldRoot && $oldRoot =~ s/^\s*([^\s].*?)\s*$/$1/) {
if (!File::Spec->file_name_is_absolute ($oldRoot)) {
$oldRoot = File::Spec->rel2abs ($oldRoot);
$data{VARS}->{root} = $oldRoot;
}
print "\nRoot is \"$oldRoot\"\n" if ($verbose);
chdir ($oldRoot);
}
elsif ($verbose) {
print "\nRoot is UNDEFINED\n";
}
my $rootDir= getcwd ();
print "Directory separator is: $dirsep\n" if ($verbose);
print "Path separator is: $pathsep\n" if ($verbose);
############################################################################
# Check each command's requirements
#
print "\nChecking Requirements\n" if ($verbose);
my $currentENV = "";
foreach my $command (@{$data{COMMANDS}}) {
# Since not all parsers define all of the command attributes,
# we make sure that any undefined ones have default meanings.
#
$command->{SUBVARS} = 2 if (!defined $command->{SUBVARS});
$command->{GROUP} = "default" if (!defined $command->{GROUP});
# Note, $command->{IF_TEXT} cannot be checked here as the previous
# commands have not actually been executed yet. Thus if we are
# checking for the result of one of those commands (rather than simply
# the true/false of some variable setup by the xml control file) we
# wouldn't perform the commands requirements checking stage.
#
my $NAME = $command->{NAME};
my $OPTIONS = $command->{OPTIONS};
my $SUBVARS = $command->{SUBVARS};
my $DIRECTORY = $command->{DIRECTORY};
my $GROUP = $command->{GROUP};
# These command attributes may not exist.
#
my $FILE = $command->{FILE};
my $LINE_FROM = $command->{LINE_FROM};
my $LINE_TO = $command->{LINE_FROM};
my $CMD = "Checking \"$NAME\" line";
if (!defined $LINE_TO || $LINE_FROM == $LINE_TO) {
$CMD .= " $LINE_FROM";
}
else {
$CMD .= "s $LINE_FROM-$LINE_TO";
}
$CMD .= " of \"$FILE\"";
print " $CMD\n" if (1 < $verbose);
if (!IsRegisteredCommand ($NAME)) {
print STDERR " Unknown $CMD\n";
$command->{NAME}= ""; ## IGNORE this command if we keep going
$errors_found = 1;
}
else {
my $cmd_handler = $command_table{$NAME};
# Substitute any <variables> in the command's options string IF
# desired. (0= Don't Substitute, 1= Always Substitute, 2= If command
# normally requires substitution, otherwise don't.)
#
if (2 == $SUBVARS &&
defined $cmd_handler->{'substitute_vars_in_options'} &&
$cmd_handler->{'substitute_vars_in_options'} ) {
$command->{SUBVARS}= 1; # Record that we are subsituting
}
# We must change the environment BEFORE we attempt to subsituteVars
# as the function can substitute environment values in place of
# environment names within the variable being substituted.
#
if ($GROUP ne $currentENV) {
$currentENV = $GROUP;
ChangeENV (%{$data{GROUPS}->{$GROUP}});
}
# Always substitute any <variables> in the command's directory string.
#
if ("" ne $DIRECTORY) {
$DIRECTORY=
subsituteVars ($DIRECTORY, $FILE, $LINE_FROM, $LINE_TO);
if ($DIRECTORY =~ s/^\s*([^\s].*?)\s*$/$1/ &&
!File::Spec->file_name_is_absolute ($DIRECTORY)) {
$DIRECTORY = File::Spec->rel2abs ($DIRECTORY);
}
if ("" ne $DIRECTORY) {
# If we fail here it may be due to a previous command such as mkdir
# not yet having been executed, so we don't report problems here.
#
if (chdir ($DIRECTORY)) {
$data{VARS}->{root} = $DIRECTORY;
}
}
} ## DIRECTORY specified
if ($cmd_handler->CheckRequirements () == 0) {
print STDERR " When $CMD\n" if ($verbose <= 1);
$command->{NAME}= ""; ## IGNORE this command if we keep going
$errors_found = 1;
}
if ("" ne $DIRECTORY) {
chdir ($rootDir);
$data{VARS}->{root} = $oldRoot;
}
} ## Command is known
} ## end of check command requirements
if (!$keep_going && $errors_found) {
print STDERR "\nNo commands are being executed (due to the errors above)\n";
chdir ($starting_dir);
ChangeENV (%originalENV);
next;
}
if ($check_only) {
print "\nCommands checked successfully, No errors found\n";
next;
}
############################################################################
# Execute each command
#
print "\nRunning Commands\n" if ($verbose);
foreach my $command (@{$data{COMMANDS}}) {
# Ignore any unknown commands (errors displayed above in check
# requirements)
#
my $NAME = $command->{NAME};
next if ("" eq $NAME);
# These command attributes always exist due check requirements.
#
my $OPTIONS = $command->{OPTIONS};
my $SUBVARS = $command->{SUBVARS};
my $DIRECTORY = $command->{DIRECTORY};
my $GROUP = $command->{GROUP};
my $IF_TEXT = $command->{IF_TEXT};
# These command attributes may not exist.
#
my $FILE = $command->{FILE};
my $LINE_FROM = $command->{LINE_FROM};
my $LINE_TO = $command->{LINE_FROM};
my $CMD = "Executing \"$NAME\" line";
if (!defined $LINE_TO || $LINE_FROM == $LINE_TO) {
$CMD .= " $LINE_FROM";
}
else {
$CMD .= "s $LINE_FROM-$LINE_TO";
}
$CMD .= " of \"$FILE\"";
my $CMD2 = "with options: $OPTIONS";
print "\n",'=' x 79,"\n===== $CMD\n" if (1 < $verbose);
# We must change the environment BEFORE we attempt to subsituteVars
# as the function can substitute environment values in place of
# environment names within the variable being substituted.
#
if ("default" ne $GROUP) {
print "===== environment: \"$GROUP\"\n" if (1 < $verbose);
}
if ($GROUP ne $currentENV) {
$currentENV = $GROUP;
ChangeENV (%{$data{GROUPS}->{$GROUP}});
}
print "===== $CMD2\n" if (1 < $verbose);
# Work out if we are going to execute this command.
#
my $IF_result =
subsituteVars ($IF_TEXT, $FILE, $LINE_FROM, $LINE_TO);
if ($IF_result !~ s/^\s*(?:true|)\s*$/1/i) {
$IF_result = eval ($IF_result);
$IF_result = 0 if (!defined $IF_result ||
$IF_result !~ s/^\s*([^\s].*?)\s*$/$1/);
}
if ($IF_result) {
# Substitute any <variables> in the command's options string IF desired.
#
$OPTIONS=
subsituteVars ($OPTIONS, $FILE, $LINE_FROM, $LINE_TO) if ($SUBVARS);
if ($OPTIONS ne $command->{OPTIONS}) {
print "===== subsitutions: $OPTIONS\n" if (1 < $verbose);
}
# Always substitute any <variables> in the command's directory string
# if a change of directory/root has been specified for the command.
#
if ("" ne $DIRECTORY) {
$DIRECTORY=
subsituteVars ($DIRECTORY, $FILE, $LINE_FROM, $LINE_TO );
if ($DIRECTORY =~ s/^\s*([^\s].*?)\s*$/$1/ &&
!File::Spec->file_name_is_absolute ($DIRECTORY)) {
$DIRECTORY = File::Spec->rel2abs ($DIRECTORY);
}
if ("" ne $DIRECTORY) {
print "===== root: $DIRECTORY\n" if (1 < $verbose);
$data{VARS}->{root} = $DIRECTORY;
if (!chdir ($DIRECTORY)) {
print STDERR "WARNING: While $CMD $CMD2:\n" if ($verbose <= 1);
print STDERR " Cannot change to directory \"$DIRECTORY\"\n";
}
}
}
if ($command_table{$NAME}->Run ($OPTIONS) == 0) {
print STDERR "ERROR: While $CMD $CMD2:\n" if ($verbose <= 1);
print STDERR " The command failed";
if (!$keep_going) {
print STDERR ", exiting.\n";
chdir ($starting_dir);
ChangeENV (%originalENV);
next INPFILE;
}
print STDERR "!\n";
}
if ("" ne $DIRECTORY) {
$data{VARS}->{root} = $oldRoot;
chdir ($rootDir);
}
}
else {
print "===== Skipped because if=\"$IF_TEXT\" is false\n" if (1 < $verbose);
}
} ## end of execute commands
print "\nFinished Commands\n" if ($verbose);
chdir ($starting_dir);
ChangeENV (%originalENV);
} ## next input file