forked from DOCGroup/autobuild
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathutility.pm
More file actions
224 lines (185 loc) · 6.5 KB
/
utility.pm
File metadata and controls
224 lines (185 loc) · 6.5 KB
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
use strict;
use warnings;
package utility;
use File::Path qw(rmtree);
# Run command, returns 0 if there was an error. If the second argument is
# passed, it's assumed to be an autobuild command result hashref and "failure"
# will be set to "fatal" if it is a total failure is fatal and "non-fatal" if
# the exit status result is just non-zero.
sub run_command ($;$)
{
my $command = shift;
my $ab_command_result = shift;
if ($main::verbose) {
print ("===== Running Command: $command\n");
}
if (system ($command)) {
my $signal = $? & 127;
my $error_message;
if ($? == -1) {
$error_message = "Failed to Run: $!";
if (defined ($ab_command_result)) {
$ab_command_result->{failure} = 'fatal';
}
}
elsif ($signal) {
$error_message = sprintf ("Exited on Signal %d, %s coredump",
$signal, ($? & 128) ? 'with' : 'without');
if (defined ($ab_command_result)) {
$ab_command_result->{failure} = 'non-fatal';
}
}
else {
$error_message = sprintf ("Returned %d", $? >> 8);
if (defined ($ab_command_result)) {
$ab_command_result->{failure} = 'non-fatal';
}
}
print STDERR "Command \"$command\" $error_message\n";
return 0;
}
return 1;
}
###############################################################################
#
# index_logs
#
# Builds the index.txt file
#
# Arguments: $ - directory to index
# $ - optional name to add to title
# $ - optional diff root
#
# Returns: Nothing
#
###############################################################################
sub index_logs ($;$$)
{
my $dir = shift;
my $name = shift;
my $diffRoot = shift;
my @files;
my $dh = new DirHandle ($dir);
# Load the directory contents into the @existing array
if (!defined $dh) {
print STDERR __FILE__, ": Could not read directory $dir\n";
return 0;
}
while (defined($_ = $dh->read)) {
if ($_ =~ m/^(...._.._.._.._..).txt/) {
push @files, $1;
}
}
undef $dh;
@files = reverse sort @files;
my $fh = new FileHandle ($dir . '/index.html', 'w');
if (!defined $fh) {
print STDERR __FILE__, ": Cannot create index.html in $dir\n";
return 0;
}
my $title = 'Build History';
if (defined $name) {
$title .= " for $name";
}
print $fh "<html>\n<head>\n<title>$title</title>\n</head>\n";
print $fh "<body bgcolor=\"white\"><h1>$title</h1>\n<hr>\n";
print $fh "<table border=\"1\">\n<th>Last Finished</th><th>Rev</th><th>Setup</th><th>Compile</th><th>Test</th>\n";
foreach my $file (@files) {
my $totals_fh = new FileHandle ($dir . '/' . $file . '_Totals.html', 'r');
print $fh '<tr>';
if (defined $totals_fh) {
my $diffRev = 'None';
print $fh "<td><a href=\"${file}_Totals.html\">$file</a></td>";
while (<$totals_fh>) {
if (m/^<!-- BUILD_TOTALS\:/) {
if (m/ACE: ([0-9a-f]{6,12})/) {
$diffRev = $1;
}
elsif (m/OpenDDS: ([0-9a-f]{6,12})/) {
$diffRev = $1;
}
if (($diffRev) && ($diffRev !~ /None/) && ($diffRoot)) {
my $url = $diffRoot . $diffRev;
my $link = "<a href='$url'>$diffRev</a>";
print $fh "<td> $link </td>";
} else {
print $fh "<td> $diffRev </td>";
}
if (m/Setup: (\d+)-(\d+)-(\d+)/) {
print $fh '<td>';
if ($2 > 0) {
print $fh "<font color=\"red\">$2 Error(s)</font> ";
}
if ($3 > 0) {
print $fh "<font color=\"orange\">$3 Warning(s)</font>";
}
if ($2 == 0 && $3 == 0) {
print $fh ' ';
}
print $fh '</td>';
}
else {
print $fh '<td> </td>';
}
if (m/Compile: (\d+)-(\d+)-(\d+)/) {
print $fh '<td>';
if ($2 > 0) {
print $fh "<font color=\"red\">$2 Error(s)</font> ";
}
if ($3 > 0) {
print $fh "<font color=\"orange\">$3 Warning(s)</font>";
}
if ($2 == 0 && $3 == 0) {
print $fh ' ';
}
print $fh '</td>';
}
else {
print $fh '<td> </td>';
}
if (m/Test: (\d+)-(\d+)-(\d+)/) {
print $fh '<td>';
if ($2 > 0) {
print $fh "<font color=\"red\">$2 Error(s)</font> ";
}
if ($3 > 0) {
print $fh "<font color=\"orange\">$3 Warning(s)</font>";
}
if ($2 == 0 && $3 == 0) {
print $fh ' ';
}
print $fh '</td>';
}
else {
print $fh '<td> </td>';
}
last;
}
}
}
else {
print $fh "<td>$file</td><td> </td><td> </td><td> </td><td> </td>";
}
print $fh "</tr>\n";
}
print $fh "</table>\n</body>\n</html>\n";
return 1;
}
sub remove_tree ($)
{
my $path = shift;
if (-e $path) {
rmtree ($path, {error => \my $errors});
if ($errors && @{$errors}) {
print STDERR __FILE__, ": failed to remove some or all of \"$path\". " .
"Details on following lines:\n";
for my $error (@{$errors}) {
my ($file, $message) = %{$error};
print STDERR __FILE__, ": remove error on $file: $message\n";
}
return 0;
}
}
return 1;
}
1;