author | William Roberts <williamr@symbian.org> |
Fri, 27 Aug 2010 12:59:17 +0100 | |
changeset 307 | 150026b6d3e6 |
parent 291 | 9195c2848015 |
child 310 | 46889a3f0a06 |
permissions | -rw-r--r-- |
274
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
1 |
# Copyright (c) 2009 Symbian Foundation Ltd |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
2 |
# This component and the accompanying materials are made available |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
3 |
# under the terms of the License "Eclipse Public License v1.0" |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
4 |
# which accompanies this distribution, and is available |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
5 |
# at the URL "http://www.eclipse.org/legal/epl-v10.html". |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
6 |
# |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
7 |
# Initial Contributors: |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
8 |
# Symbian Foundation Ltd - initial contribution. |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
9 |
# |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
10 |
# Contributors: |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
11 |
# Dario Sestito <darios@symbian.org> |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
12 |
# |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
13 |
# Description: |
277 | 14 |
# Dumps environment info such as tools version to cmdline and/or to a file. |
15 |
# Compare environment info with a baseline |
|
274
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
16 |
|
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
17 |
use strict; |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
18 |
|
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
19 |
use Getopt::Long; |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
20 |
|
275
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
21 |
my $report; |
288
77dc8956ed66
Add EPOCROOT to the envinfo report
Dario Sestito <darios@symbian.org>
parents:
287
diff
changeset
|
22 |
my $output = "$ENV{'EPOCROOT'}\\output\\logs\\envinfo.txt"; |
77dc8956ed66
Add EPOCROOT to the envinfo report
Dario Sestito <darios@symbian.org>
parents:
287
diff
changeset
|
23 |
$output =~ s/^\\+/\\/; |
275
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
24 |
my $compare; |
288
77dc8956ed66
Add EPOCROOT to the envinfo report
Dario Sestito <darios@symbian.org>
parents:
287
diff
changeset
|
25 |
my $baseline = "$ENV{'EPOCROOT'}\\build_info\\logs\\envinfo.txt"; |
77dc8956ed66
Add EPOCROOT to the envinfo report
Dario Sestito <darios@symbian.org>
parents:
287
diff
changeset
|
26 |
$baseline =~ s/^\\+/\\/; |
274
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
27 |
my $help = 0; |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
28 |
GetOptions(( |
275
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
29 |
'report:s' => \$report, |
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
30 |
'compare:s' => \$compare, |
274
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
31 |
'help!' => \$help |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
32 |
)); |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
33 |
|
275
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
34 |
$output = $report if ($report); |
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
35 |
$baseline = $compare if ($compare); |
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
36 |
|
274
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
37 |
if ($help) |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
38 |
{ |
287
598059d917c3
Restructure envinfo help
Dario Sestito <darios@symbian.org>
parents:
286
diff
changeset
|
39 |
print <<_EOH; |
598059d917c3
Restructure envinfo help
Dario Sestito <darios@symbian.org>
parents:
286
diff
changeset
|
40 |
envinfo |
598059d917c3
Restructure envinfo help
Dario Sestito <darios@symbian.org>
parents:
286
diff
changeset
|
41 |
Dumps environment info such as tools version to cmdline and/or to a file |
598059d917c3
Restructure envinfo help
Dario Sestito <darios@symbian.org>
parents:
286
diff
changeset
|
42 |
Compare info with a baseline |
598059d917c3
Restructure envinfo help
Dario Sestito <darios@symbian.org>
parents:
286
diff
changeset
|
43 |
|
598059d917c3
Restructure envinfo help
Dario Sestito <darios@symbian.org>
parents:
286
diff
changeset
|
44 |
Usage: envinfo.pl [options] |
598059d917c3
Restructure envinfo help
Dario Sestito <darios@symbian.org>
parents:
286
diff
changeset
|
45 |
|
598059d917c3
Restructure envinfo help
Dario Sestito <darios@symbian.org>
parents:
286
diff
changeset
|
46 |
Options: |
598059d917c3
Restructure envinfo help
Dario Sestito <darios@symbian.org>
parents:
286
diff
changeset
|
47 |
-h, --help Show this help message and exit |
288
77dc8956ed66
Add EPOCROOT to the envinfo report
Dario Sestito <darios@symbian.org>
parents:
287
diff
changeset
|
48 |
-r,--report [FILE] Write report to FILE (default %EPOCROOT%\\output\\logs\\envinfo.txt) |
287
598059d917c3
Restructure envinfo help
Dario Sestito <darios@symbian.org>
parents:
286
diff
changeset
|
49 |
-c,--compare [LOCATION] |
598059d917c3
Restructure envinfo help
Dario Sestito <darios@symbian.org>
parents:
286
diff
changeset
|
50 |
Compare environment with info at LOCATION |
288
77dc8956ed66
Add EPOCROOT to the envinfo report
Dario Sestito <darios@symbian.org>
parents:
287
diff
changeset
|
51 |
(default %EPOCROOT%\\build_info\\logs\\envinfo.txt) |
287
598059d917c3
Restructure envinfo help
Dario Sestito <darios@symbian.org>
parents:
286
diff
changeset
|
52 |
_EOH |
274
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
53 |
exit(0); |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
54 |
} |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
55 |
|
275
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
56 |
my $baseline_environment_info = {}; |
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
57 |
if (defined $compare) |
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
58 |
{ |
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
59 |
my $target = ''; |
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
60 |
my $tmp_file = ''; |
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
61 |
# understand where we should get the info from |
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
62 |
$target = $baseline if (-f $baseline); |
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
63 |
$target = "$baseline\\envinfo.txt" if (!$target && -f "$baseline\\envinfo.txt"); |
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
64 |
$target = "$baseline\\build_info\\logs\\envinfo.txt" if (!$target && -f "$baseline\\build_info\\logs\\envinfo.txt"); |
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
65 |
$target = "$baseline\\build_BOM.zip" if (!$target && -f "$baseline\\build_BOM.zip"); |
276
ad9846216af2
Fix: wrong location for envinfo.txt in zip file. Add more locations to look for envinfo.txt
Dario Sestito <darios@symbian.org>
parents:
275
diff
changeset
|
66 |
$target = "$baseline\\output\\logs\\envinfo.txt" if (!$target && -f "$baseline\\output\\logs\\envinfo.txt"); |
ad9846216af2
Fix: wrong location for envinfo.txt in zip file. Add more locations to look for envinfo.txt
Dario Sestito <darios@symbian.org>
parents:
275
diff
changeset
|
67 |
$target = "$baseline\\output\\zips\\release\\build_BOM.zip" if (!$target && -f "$baseline\\output\\zips\\release\\build_BOM.zip"); |
275
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
68 |
if (!$target) |
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
69 |
{ |
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
70 |
warn "WARNING: Can't find envinfo.txt from location '$baseline'\n"; |
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
71 |
} |
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
72 |
elsif ($target =~ /\.zip$/) |
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
73 |
{ |
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
74 |
print "Extracting envinfo.txt from $target\n"; |
276
ad9846216af2
Fix: wrong location for envinfo.txt in zip file. Add more locations to look for envinfo.txt
Dario Sestito <darios@symbian.org>
parents:
275
diff
changeset
|
75 |
my $cmd = "7z e -y $target build_info\\logs\\BOM\\envinfo.txt"; |
275
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
76 |
my $output = `$cmd 2>&1`; |
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
77 |
if ($output =~ /is not recognized as an internal or external command/) |
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
78 |
{ |
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
79 |
$target = ''; |
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
80 |
warn "WARNING: You need to have 7z in the PATH if you want to do comparison against a compressed baseline\n"; |
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
81 |
} |
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
82 |
elsif ($output =~ /No files to process/) |
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
83 |
{ |
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
84 |
$target = ''; |
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
85 |
warn "WARNING: The compressed baseline doesn't seem to contain an envinfo.txt file\n"; |
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
86 |
} |
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
87 |
else |
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
88 |
{ |
290
802d76cf07f1
Fix: when comparing to zipped baseline the temporary file is not removed
Dario Sestito <darios@symbian.org>
parents:
289
diff
changeset
|
89 |
$tmp_file = "tmp$$.txt"; |
275
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
90 |
system("ren envinfo.txt $tmp_file"); |
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
91 |
$target = $tmp_file; |
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
92 |
} |
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
93 |
} |
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
94 |
|
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
95 |
if (!$target) |
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
96 |
{ |
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
97 |
warn "WARNING: Will not do comparison\n"; |
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
98 |
$compare = undef; |
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
99 |
} |
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
100 |
else |
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
101 |
{ |
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
102 |
print "Will compare environment info to $target\n"; |
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
103 |
|
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
104 |
if (open(BASEINFO, $target)) |
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
105 |
{ |
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
106 |
for my $line (<BASEINFO>) |
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
107 |
{ |
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
108 |
if ($line =~ /([^\t]*)\t([^\t]*)/) |
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
109 |
{ |
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
110 |
my $name = $1; |
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
111 |
my $version = $2; |
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
112 |
chomp $name; |
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
113 |
chomp $version; |
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
114 |
$baseline_environment_info->{$name}=$version; |
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
115 |
} |
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
116 |
} |
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
117 |
close(BASEINFO); |
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
118 |
unlink $tmp_file if ($tmp_file); |
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
119 |
} |
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
120 |
else |
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
121 |
{ |
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
122 |
warn "WARNING: Could not open file $target for reading. Will not do comparison\n"; |
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
123 |
$compare = undef; |
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
124 |
} |
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
125 |
} |
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
126 |
|
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
127 |
} |
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
128 |
|
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
129 |
|
274
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
130 |
my @environment_info = (); |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
131 |
|
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
132 |
# Machine name |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
133 |
push @environment_info, {name=>'Machine', version=>$ENV{'COMPUTERNAME'}}; |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
134 |
|
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
135 |
# OS Name and Version |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
136 |
my $os_name = 'N.A.'; |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
137 |
my $os_ver = 'N.A.'; |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
138 |
my $os_out = `systeminfo`; |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
139 |
$os_name = $1 if ($os_out =~ /^OS Name:\s+(.*)/m); |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
140 |
$os_ver = $1 if ($os_out =~ /^OS Version:\s+(.*)/m); |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
141 |
push @environment_info, {name=>'OS Name', version=>$os_name}; |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
142 |
push @environment_info, {name=>'OS Version', version=>$os_ver}; |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
143 |
|
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
144 |
# Perl |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
145 |
my $perl_ver = 'N.A.'; |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
146 |
my $perl_out = `perl -v`; |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
147 |
$perl_ver = $1 if ($perl_out =~ /This is perl, v(\S+)/m); |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
148 |
push @environment_info, {name=>'Perl', version=>$perl_ver}; |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
149 |
|
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
150 |
# Python |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
151 |
my $python_ver = 'N.A.'; |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
152 |
my $python_out = `python -V 2>&1`; |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
153 |
$python_ver = $1 if ($python_out =~ /^Python\s+(\S+)/m); |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
154 |
push @environment_info, {name=>'Python', version=>$python_ver}; |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
155 |
|
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
156 |
# Mercurial |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
157 |
my $hg_ver = 'N.A.'; |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
158 |
my $hg_out = `hg --version`; |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
159 |
$hg_ver = $1 if ($hg_out =~ /^Mercurial Distributed SCM \(version ([^)]+)\)/m); |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
160 |
push @environment_info, {name=>'Mercurial', version=>$hg_ver}; |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
161 |
|
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
162 |
# 7-Zip |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
163 |
my $zip_ver = 'N.A.'; |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
164 |
my $zip_out = `7z`; |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
165 |
$zip_ver = $1 if ($zip_out =~ /^7-Zip\s+(\S+)\s+Copyright/m); |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
166 |
push @environment_info, {name=>'7-Zip', version=>$zip_ver}; |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
167 |
|
288
77dc8956ed66
Add EPOCROOT to the envinfo report
Dario Sestito <darios@symbian.org>
parents:
287
diff
changeset
|
168 |
# EPOCROOT |
77dc8956ed66
Add EPOCROOT to the envinfo report
Dario Sestito <darios@symbian.org>
parents:
287
diff
changeset
|
169 |
my $epocroot_ver = 'N.A.'; |
77dc8956ed66
Add EPOCROOT to the envinfo report
Dario Sestito <darios@symbian.org>
parents:
287
diff
changeset
|
170 |
my $epocroot_out = `echo %EPOCROOT%`; |
77dc8956ed66
Add EPOCROOT to the envinfo report
Dario Sestito <darios@symbian.org>
parents:
287
diff
changeset
|
171 |
chomp $epocroot_out; |
77dc8956ed66
Add EPOCROOT to the envinfo report
Dario Sestito <darios@symbian.org>
parents:
287
diff
changeset
|
172 |
$epocroot_ver = $epocroot_out if ($epocroot_out ne '%EPOCROOT%'); |
77dc8956ed66
Add EPOCROOT to the envinfo report
Dario Sestito <darios@symbian.org>
parents:
287
diff
changeset
|
173 |
push @environment_info, {name=>'EPOCROOT', version=>$epocroot_ver}; |
77dc8956ed66
Add EPOCROOT to the envinfo report
Dario Sestito <darios@symbian.org>
parents:
287
diff
changeset
|
174 |
|
274
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
175 |
# Raptor |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
176 |
my $sbs_ver = 'N.A.'; |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
177 |
my $sbs_out = `sbs -v`; |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
178 |
$sbs_ver = $1 if ($sbs_out =~ /^sbs version (.*)/m); |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
179 |
push @environment_info, {name=>'sbs', version=>$sbs_ver}; |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
180 |
|
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
181 |
# Metrowerk Compiler |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
182 |
my $mwcc_ver = 'N.A.'; |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
183 |
my $mwcc_out = `mwccsym2 -version`; |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
184 |
$mwcc_ver = $1 if ($mwcc_out =~ /^Version (.*)/m); |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
185 |
push @environment_info, {name=>'mwccsym2', version=>$mwcc_ver}; |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
186 |
|
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
187 |
# RVCT 2.2 |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
188 |
my $rvct22_ver = 'N.A.'; |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
189 |
my $rvct22_path = ''; |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
190 |
if (defined $ENV{'SBS_RVCT22BIN'}) |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
191 |
{ |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
192 |
$rvct22_path = $ENV{'SBS_RVCT22BIN'}; |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
193 |
} |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
194 |
elsif (defined $ENV{'RVCT22BIN'}) |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
195 |
{ |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
196 |
$rvct22_path = $ENV{'RVCT22BIN'}; |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
197 |
} |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
198 |
my $rvct22_cmd = 'armcc 2>&1'; |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
199 |
$rvct22_cmd = "$rvct22_path\\$rvct22_cmd" if ($rvct22_path); |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
200 |
my $rvct22_out = `$rvct22_cmd`; |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
201 |
$rvct22_ver = $1 if ($rvct22_out =~ m#ARM/Thumb C/C\+\+ Compiler, RVCT2.2 (.*)#m); |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
202 |
push @environment_info, {name=>'RVCT2.2', version=>$rvct22_ver}; |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
203 |
|
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
204 |
# RVCT 4.0 |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
205 |
my $rvct40_ver = 'N.A.'; |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
206 |
my $rvct40_path = ''; |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
207 |
if (defined $ENV{'SBS_RVCT40BIN'}) |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
208 |
{ |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
209 |
$rvct40_path = $ENV{'SBS_RVCT40BIN'}; |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
210 |
} |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
211 |
elsif (defined $ENV{'RVCT40BIN'}) |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
212 |
{ |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
213 |
$rvct40_path = $ENV{'RVCT40BIN'}; |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
214 |
} |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
215 |
my $rvct40_cmd = 'armcc 2>&1'; |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
216 |
$rvct40_cmd = "$rvct40_path\\$rvct40_cmd" if ($rvct40_path); |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
217 |
my $rvct40_out = `$rvct40_cmd`; |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
218 |
$rvct40_ver = $1 if ($rvct40_out =~ m#ARM C/C\+\+ Compiler, RVCT4.0 (.*)#m); |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
219 |
push @environment_info, {name=>'RVCT4.0', version=>$rvct40_ver}; |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
220 |
|
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
221 |
# GCCE 4.4.1 |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
222 |
my $gcc441_ver = 'N.A.'; |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
223 |
my $gcc441_path = ''; |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
224 |
if (defined $ENV{'SBS_GCCE441BIN'}) |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
225 |
{ |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
226 |
$gcc441_path = $ENV{'SBS_GCCE441BIN'}; |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
227 |
} |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
228 |
elsif (defined $ENV{'GCCE441BIN'}) |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
229 |
{ |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
230 |
$gcc441_path = $ENV{'GCCE441BIN'}; |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
231 |
} |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
232 |
if ($gcc441_path) |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
233 |
{ |
286
047e37a8f43f
Allow better version reporting for gcc compiler
Dario Sestito <darios@symbian.org>
parents:
277
diff
changeset
|
234 |
my $gcc441_cmd = "$gcc441_path\\arm-none-symbianelf-g++ --version"; |
274
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
235 |
my $gcc441_out = `$gcc441_cmd`; |
286
047e37a8f43f
Allow better version reporting for gcc compiler
Dario Sestito <darios@symbian.org>
parents:
277
diff
changeset
|
236 |
$gcc441_ver = $1 if ($gcc441_out =~ /arm-none-symbianelf-g\+\+\ (.*)/); |
274
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
237 |
} |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
238 |
push @environment_info, {name=>'GCC4.4.1', version=>$gcc441_ver}; |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
239 |
|
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
240 |
# Helium |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
241 |
my $helium_ver = 'N.A.'; |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
242 |
if ($ENV{'HELIUM_HOME'} && -f "$ENV{'HELIUM_HOME'}\\config\\version.txt") |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
243 |
{ |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
244 |
open(VERSION, "$ENV{'HELIUM_HOME'}\\config\\version.txt"); |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
245 |
my $line = ''; |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
246 |
while ($line = <VERSION>) |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
247 |
{ |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
248 |
$helium_ver = $1 if ($line =~ /^helium\.version=(.*)/); |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
249 |
} |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
250 |
close(VERSION); |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
251 |
} |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
252 |
push @environment_info, {name=>'helium', version=>$helium_ver}; |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
253 |
|
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
254 |
# java |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
255 |
my $java_ver = 'N.A.'; |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
256 |
my $java_out = `java -version 2>&1`; |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
257 |
$java_ver = $1 if ($java_out =~ /^java version (.*)/m); |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
258 |
push @environment_info, {name=>'java', version=>$java_ver}; |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
259 |
|
275
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
260 |
# change tabs to spaces |
274
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
261 |
for my $tool_info (@environment_info) |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
262 |
{ |
275
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
263 |
$tool_info->{name} =~ s/\t/ /g; |
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
264 |
$tool_info->{version} =~ s/\t/ /g; |
274
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
265 |
} |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
266 |
|
288
77dc8956ed66
Add EPOCROOT to the envinfo report
Dario Sestito <darios@symbian.org>
parents:
287
diff
changeset
|
267 |
print "\nEnvironment Information:\n"; |
274
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
268 |
|
275
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
269 |
my $cmp_notpresent = 0; |
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
270 |
my $cmp_diffver = 0; |
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
271 |
for my $tool_info (@environment_info) |
274
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
272 |
{ |
275
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
273 |
print " " . $tool_info->{name} . ": " . $tool_info->{version}; |
274
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
274 |
|
275
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
275 |
if (defined $compare && |
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
276 |
$tool_info->{name} ne 'Machine' && |
291
9195c2848015
EPOCROOT should not be compared against baseline
Dario Sestito <darios@symbian.org>
parents:
290
diff
changeset
|
277 |
$tool_info->{name} ne 'OS Name' && |
9195c2848015
EPOCROOT should not be compared against baseline
Dario Sestito <darios@symbian.org>
parents:
290
diff
changeset
|
278 |
$tool_info->{name} ne 'EPOCROOT') |
274
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
279 |
{ |
275
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
280 |
print "\t"; |
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
281 |
if (defined $baseline_environment_info->{$tool_info->{name}}) |
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
282 |
{ |
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
283 |
my $baselineversion = $baseline_environment_info->{$tool_info->{name}}; |
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
284 |
if ($tool_info->{version} eq 'N.A.' && $baselineversion ne 'N.A.') |
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
285 |
{ |
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
286 |
print "[ERROR: tool not present]"; |
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
287 |
$cmp_notpresent++; |
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
288 |
} |
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
289 |
elsif ($tool_info->{version} eq $baselineversion || $baselineversion eq 'N.A.') |
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
290 |
{ |
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
291 |
print "[OK]"; |
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
292 |
} |
289
759aa5329d25
Fix: tools version comparison shows always less recent
Dario Sestito <darios@symbian.org>
parents:
288
diff
changeset
|
293 |
elsif (($tool_info->{version} cmp $baselineversion) < 0) |
275
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
294 |
{ |
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
295 |
print "[WARNING: less recent than baseline]"; |
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
296 |
$cmp_diffver++; |
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
297 |
} |
289
759aa5329d25
Fix: tools version comparison shows always less recent
Dario Sestito <darios@symbian.org>
parents:
288
diff
changeset
|
298 |
elsif (($tool_info->{version} cmp $baselineversion) > 0) |
275
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
299 |
{ |
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
300 |
print "[WARNING: more recent than baseline]"; |
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
301 |
$cmp_diffver++; |
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
302 |
} |
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
303 |
} |
274
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
304 |
} |
275
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
305 |
print "\n"; |
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
306 |
} |
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
307 |
|
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
308 |
print "\n"; |
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
309 |
|
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
310 |
if (defined $compare) |
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
311 |
{ |
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
312 |
print "Summary of comparison to baseline:\n"; |
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
313 |
if ($cmp_notpresent || $cmp_diffver) |
274
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
314 |
{ |
275
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
315 |
print " Tools not present or not found in the expected location: $cmp_notpresent\n"; |
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
316 |
print " Tools at different version: $cmp_diffver\n"; |
274
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
317 |
} |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
318 |
else |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
319 |
{ |
275
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
320 |
print " All tools seem to match the baseline :-)\n"; |
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
321 |
} |
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
322 |
print "\n"; |
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
323 |
} |
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
324 |
|
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
325 |
# write report file |
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
326 |
if (defined $report) |
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
327 |
{ |
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
328 |
if (open(ENVINFO, ">$output")) |
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
329 |
{ |
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
330 |
for my $tool_info (@environment_info) |
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
331 |
{ |
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
332 |
print ENVINFO "$tool_info->{name}\t$tool_info->{version}\n"; |
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
333 |
} |
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
334 |
close(ENVINFO); |
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
335 |
print "Wrote report file: $output\n"; |
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
336 |
} |
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
337 |
else |
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
338 |
{ |
f914b0494f03
Changed envinfo slightly to have comparison of tools version with a baseline
Dario Sestito <darios@symbian.org>
parents:
274
diff
changeset
|
339 |
warn "WARNING: Could not write to file: $output\n"; |
274
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
340 |
} |
becbd829b411
Add envinfo.pl tool to dump environment info
Dario Sestito <darios@symbian.org>
parents:
diff
changeset
|
341 |
} |