author | Dario Sestito <darios@symbian.org> |
Fri, 09 Apr 2010 17:38:33 +0100 | |
changeset 232 | 0244765a8d6f |
parent 188 | dbf40764ca6a |
child 233 | cf1d34408de3 |
permissions | -rw-r--r-- |
177 | 1 |
# Copyright (c) 2009 Symbian Foundation Ltd |
2 |
# This component and the accompanying materials are made available |
|
3 |
# under the terms of the License "Eclipse Public License v1.0" |
|
4 |
# which accompanies this distribution, and is available |
|
5 |
# at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
6 |
# |
|
7 |
# Initial Contributors: |
|
8 |
# Symbian Foundation Ltd - initial contribution. |
|
9 |
# |
|
10 |
# Contributors: |
|
11 |
# |
|
12 |
# Description: |
|
13 |
# Raptor parser module. |
|
14 |
# Extract, analyzes and dumps text in <buildlog> context which doesn't belong to any <recipe> tags |
|
15 |
||
16 |
package RaptorUnreciped; |
|
17 |
||
18 |
use strict; |
|
19 |
use RaptorCommon; |
|
20 |
||
21 |
our $reset_status = {}; |
|
22 |
my $buildlog_status = {}; |
|
23 |
my $buildlog_subtag_status = {}; |
|
24 |
||
25 |
$reset_status->{name} = 'reset_status'; |
|
26 |
$reset_status->{next_status} = {buildlog=>$buildlog_status}; |
|
27 |
||
28 |
$buildlog_status->{name} = 'buildlog_status'; |
|
29 |
$buildlog_status->{next_status} = {'?default?'=>$buildlog_subtag_status}; |
|
30 |
$buildlog_status->{on_start} = 'RaptorUnreciped::on_start_buildlog'; |
|
31 |
$buildlog_status->{on_end} = 'RaptorUnreciped::on_end_buildlog'; |
|
32 |
$buildlog_status->{on_chars} = 'RaptorUnreciped::on_chars_buildlog'; |
|
33 |
||
34 |
$buildlog_subtag_status->{name} = 'buildlog_subtag_status'; |
|
35 |
$buildlog_subtag_status->{next_status} = {}; |
|
36 |
$buildlog_subtag_status->{on_start} = 'RaptorUnreciped::on_start_buildlog_subtag'; |
|
37 |
$buildlog_subtag_status->{on_end} = 'RaptorUnreciped::on_end_buildlog_subtag'; |
|
38 |
||
39 |
my $filename = ''; |
|
40 |
||
41 |
my $characters = ''; |
|
42 |
my $store_chars = 1; |
|
43 |
||
44 |
my $CATEGORY_RAPTORUNRECIPED = 'raptor_unreciped'; |
|
45 |
my $CATEGORY_RAPTORUNRECIPED_NORULETOMAKETARGET = 'no_rule_to_make_target'; |
|
46 |
my $CATEGORY_RAPTORUNRECIPED_IGNORINGOLDCOMMANDSFORTARGET = 'ignoring_old_commands_for_target'; |
|
47 |
my $CATEGORY_RAPTORUNRECIPED_OVERRIDINGCOMMANDSFORTARGET = 'overriding_commands_for_target'; |
|
182
d7b846505d9e
Add more categories for unreciped failures
Dario Sestito <darios@symbian.org>
parents:
177
diff
changeset
|
48 |
my $CATEGORY_RAPTORUNRECIPED_MAKE_TARGETNOTREMADEBECAUSEOFERRORS = 'make_target_not_remade_because_of_errors'; |
185
978ef35b4e5f
Add more categories for unreciped and raptor error failures
Dario Sestito <darios@symbian.org>
parents:
182
diff
changeset
|
49 |
my $CATEGORY_RAPTORUNRECIPED_MAKE_NORULETOMAKETARGETNEEDEDBY = 'make_no_rule_to_make_target_needed_by'; |
182
d7b846505d9e
Add more categories for unreciped failures
Dario Sestito <darios@symbian.org>
parents:
177
diff
changeset
|
50 |
my $CATEGORY_RAPTORUNRECIPED_MAKE_NORULETOMAKETARGET = 'make_no_rule_to_make_target'; |
177 | 51 |
|
52 |
sub process |
|
53 |
{ |
|
186
b76adfbc6648
Don't dump failures which aren't reported
Dario Sestito <darios@symbian.org>
parents:
185
diff
changeset
|
54 |
my ($text, $logfile, $component, $mmp, $phase, $recipe, $file) = @_; |
b76adfbc6648
Don't dump failures which aren't reported
Dario Sestito <darios@symbian.org>
parents:
185
diff
changeset
|
55 |
|
b76adfbc6648
Don't dump failures which aren't reported
Dario Sestito <darios@symbian.org>
parents:
185
diff
changeset
|
56 |
my $dumped = 1; |
177 | 57 |
|
58 |
my $category = $CATEGORY_RAPTORUNRECIPED; |
|
59 |
my $severity = ''; |
|
60 |
my $subcategory = ''; |
|
61 |
||
62 |
if ($text =~ m,make\.exe: \*\*\* No rule to make target,) |
|
63 |
{ |
|
64 |
$severity = $RaptorCommon::SEVERITY_MAJOR; |
|
65 |
my $subcategory = $CATEGORY_RAPTORUNRECIPED_NORULETOMAKETARGET; |
|
186
b76adfbc6648
Don't dump failures which aren't reported
Dario Sestito <darios@symbian.org>
parents:
185
diff
changeset
|
66 |
RaptorCommon::dump_fault($category, $subcategory, $severity, $logfile, $component, $mmp, $phase, $recipe, $file); |
177 | 67 |
} |
68 |
elsif ($text =~ m,: warning: ignoring old commands for target,) |
|
69 |
{ |
|
185
978ef35b4e5f
Add more categories for unreciped and raptor error failures
Dario Sestito <darios@symbian.org>
parents:
182
diff
changeset
|
70 |
# don't dump |
186
b76adfbc6648
Don't dump failures which aren't reported
Dario Sestito <darios@symbian.org>
parents:
185
diff
changeset
|
71 |
$dumped = 0; |
177 | 72 |
} |
73 |
elsif ($text =~ m,: warning: overriding commands for target,) |
|
74 |
{ |
|
75 |
$severity = $RaptorCommon::SEVERITY_MINOR; |
|
76 |
my $subcategory = $CATEGORY_RAPTORUNRECIPED_OVERRIDINGCOMMANDSFORTARGET; |
|
186
b76adfbc6648
Don't dump failures which aren't reported
Dario Sestito <darios@symbian.org>
parents:
185
diff
changeset
|
77 |
RaptorCommon::dump_fault($category, $subcategory, $severity, $logfile, $component, $mmp, $phase, $recipe, $file); |
177 | 78 |
} |
188
dbf40764ca6a
Match both make: and make.exe: in some unreciped regexp
Dario Sestito <darios@symbian.org>
parents:
186
diff
changeset
|
79 |
elsif ($text =~ m,^make(\.exe)?: \*\*\* No rule to make target .*\ needed by .*,) |
182
d7b846505d9e
Add more categories for unreciped failures
Dario Sestito <darios@symbian.org>
parents:
177
diff
changeset
|
80 |
{ |
d7b846505d9e
Add more categories for unreciped failures
Dario Sestito <darios@symbian.org>
parents:
177
diff
changeset
|
81 |
$severity = $RaptorCommon::SEVERITY_MINOR; |
185
978ef35b4e5f
Add more categories for unreciped and raptor error failures
Dario Sestito <darios@symbian.org>
parents:
182
diff
changeset
|
82 |
my $subcategory = $CATEGORY_RAPTORUNRECIPED_MAKE_NORULETOMAKETARGETNEEDEDBY; |
186
b76adfbc6648
Don't dump failures which aren't reported
Dario Sestito <darios@symbian.org>
parents:
185
diff
changeset
|
83 |
RaptorCommon::dump_fault($category, $subcategory, $severity, $logfile, $component, $mmp, $phase, $recipe, $file); |
185
978ef35b4e5f
Add more categories for unreciped and raptor error failures
Dario Sestito <darios@symbian.org>
parents:
182
diff
changeset
|
84 |
} |
188
dbf40764ca6a
Match both make: and make.exe: in some unreciped regexp
Dario Sestito <darios@symbian.org>
parents:
186
diff
changeset
|
85 |
elsif ($text =~ m,^make(\.exe)?: \*\*\* No rule to make target .*,) |
185
978ef35b4e5f
Add more categories for unreciped and raptor error failures
Dario Sestito <darios@symbian.org>
parents:
182
diff
changeset
|
86 |
{ |
978ef35b4e5f
Add more categories for unreciped and raptor error failures
Dario Sestito <darios@symbian.org>
parents:
182
diff
changeset
|
87 |
$severity = $RaptorCommon::SEVERITY_MINOR; |
182
d7b846505d9e
Add more categories for unreciped failures
Dario Sestito <darios@symbian.org>
parents:
177
diff
changeset
|
88 |
my $subcategory = $CATEGORY_RAPTORUNRECIPED_MAKE_NORULETOMAKETARGET; |
186
b76adfbc6648
Don't dump failures which aren't reported
Dario Sestito <darios@symbian.org>
parents:
185
diff
changeset
|
89 |
RaptorCommon::dump_fault($category, $subcategory, $severity, $logfile, $component, $mmp, $phase, $recipe, $file); |
182
d7b846505d9e
Add more categories for unreciped failures
Dario Sestito <darios@symbian.org>
parents:
177
diff
changeset
|
90 |
} |
232
0244765a8d6f
Add heuristic determination of package for Raptor errors and warnings
Dario Sestito <darios@symbian.org>
parents:
188
diff
changeset
|
91 |
elsif ($text =~ m,^make(\.exe)?: \*\*\* .* Error \d,) |
0244765a8d6f
Add heuristic determination of package for Raptor errors and warnings
Dario Sestito <darios@symbian.org>
parents:
188
diff
changeset
|
92 |
{ |
0244765a8d6f
Add heuristic determination of package for Raptor errors and warnings
Dario Sestito <darios@symbian.org>
parents:
188
diff
changeset
|
93 |
# don't dump |
0244765a8d6f
Add heuristic determination of package for Raptor errors and warnings
Dario Sestito <darios@symbian.org>
parents:
188
diff
changeset
|
94 |
$dumped = 0; |
0244765a8d6f
Add heuristic determination of package for Raptor errors and warnings
Dario Sestito <darios@symbian.org>
parents:
188
diff
changeset
|
95 |
} |
0244765a8d6f
Add heuristic determination of package for Raptor errors and warnings
Dario Sestito <darios@symbian.org>
parents:
188
diff
changeset
|
96 |
elsif ($text =~ m,^make(\.exe)?: Target .* not remade because of errors,) |
0244765a8d6f
Add heuristic determination of package for Raptor errors and warnings
Dario Sestito <darios@symbian.org>
parents:
188
diff
changeset
|
97 |
{ |
0244765a8d6f
Add heuristic determination of package for Raptor errors and warnings
Dario Sestito <darios@symbian.org>
parents:
188
diff
changeset
|
98 |
# don't dump |
0244765a8d6f
Add heuristic determination of package for Raptor errors and warnings
Dario Sestito <darios@symbian.org>
parents:
188
diff
changeset
|
99 |
$dumped = 0; |
0244765a8d6f
Add heuristic determination of package for Raptor errors and warnings
Dario Sestito <darios@symbian.org>
parents:
188
diff
changeset
|
100 |
} |
188
dbf40764ca6a
Match both make: and make.exe: in some unreciped regexp
Dario Sestito <darios@symbian.org>
parents:
186
diff
changeset
|
101 |
elsif ($text =~ m,^make(\.exe)?: Nothing to be done for .*,) |
177 | 102 |
{ |
103 |
# don't dump |
|
186
b76adfbc6648
Don't dump failures which aren't reported
Dario Sestito <darios@symbian.org>
parents:
185
diff
changeset
|
104 |
$dumped = 0; |
177 | 105 |
} |
106 |
elsif ($text =~ m,^(true|false)$,) |
|
107 |
{ |
|
108 |
# don't dump |
|
186
b76adfbc6648
Don't dump failures which aren't reported
Dario Sestito <darios@symbian.org>
parents:
185
diff
changeset
|
109 |
$dumped = 0; |
177 | 110 |
} |
185
978ef35b4e5f
Add more categories for unreciped and raptor error failures
Dario Sestito <darios@symbian.org>
parents:
182
diff
changeset
|
111 |
elsif ($text =~ m,win32/cygwin/bin/cp\.exe,) |
978ef35b4e5f
Add more categories for unreciped and raptor error failures
Dario Sestito <darios@symbian.org>
parents:
182
diff
changeset
|
112 |
{ |
978ef35b4e5f
Add more categories for unreciped and raptor error failures
Dario Sestito <darios@symbian.org>
parents:
182
diff
changeset
|
113 |
# don't dump |
186
b76adfbc6648
Don't dump failures which aren't reported
Dario Sestito <darios@symbian.org>
parents:
185
diff
changeset
|
114 |
$dumped = 0; |
185
978ef35b4e5f
Add more categories for unreciped and raptor error failures
Dario Sestito <darios@symbian.org>
parents:
182
diff
changeset
|
115 |
} |
978ef35b4e5f
Add more categories for unreciped and raptor error failures
Dario Sestito <darios@symbian.org>
parents:
182
diff
changeset
|
116 |
elsif ($text =~ m,epoc32/tools/svgtbinencode\.exe,) |
978ef35b4e5f
Add more categories for unreciped and raptor error failures
Dario Sestito <darios@symbian.org>
parents:
182
diff
changeset
|
117 |
{ |
978ef35b4e5f
Add more categories for unreciped and raptor error failures
Dario Sestito <darios@symbian.org>
parents:
182
diff
changeset
|
118 |
# don't dump |
186
b76adfbc6648
Don't dump failures which aren't reported
Dario Sestito <darios@symbian.org>
parents:
185
diff
changeset
|
119 |
$dumped = 0; |
185
978ef35b4e5f
Add more categories for unreciped and raptor error failures
Dario Sestito <darios@symbian.org>
parents:
182
diff
changeset
|
120 |
} |
978ef35b4e5f
Add more categories for unreciped and raptor error failures
Dario Sestito <darios@symbian.org>
parents:
182
diff
changeset
|
121 |
elsif ($text =~ m,win32/cygwin/bin/chmod\.exe a\+rw,) |
978ef35b4e5f
Add more categories for unreciped and raptor error failures
Dario Sestito <darios@symbian.org>
parents:
182
diff
changeset
|
122 |
{ |
978ef35b4e5f
Add more categories for unreciped and raptor error failures
Dario Sestito <darios@symbian.org>
parents:
182
diff
changeset
|
123 |
# don't dump |
186
b76adfbc6648
Don't dump failures which aren't reported
Dario Sestito <darios@symbian.org>
parents:
185
diff
changeset
|
124 |
$dumped = 0; |
185
978ef35b4e5f
Add more categories for unreciped and raptor error failures
Dario Sestito <darios@symbian.org>
parents:
182
diff
changeset
|
125 |
} |
232
0244765a8d6f
Add heuristic determination of package for Raptor errors and warnings
Dario Sestito <darios@symbian.org>
parents:
188
diff
changeset
|
126 |
elsif ($text =~ m,^make(\.exe)?: \*\*\* Waiting for unfinished jobs\.\.\.\.,) |
0244765a8d6f
Add heuristic determination of package for Raptor errors and warnings
Dario Sestito <darios@symbian.org>
parents:
188
diff
changeset
|
127 |
{ |
0244765a8d6f
Add heuristic determination of package for Raptor errors and warnings
Dario Sestito <darios@symbian.org>
parents:
188
diff
changeset
|
128 |
# don't dump |
0244765a8d6f
Add heuristic determination of package for Raptor errors and warnings
Dario Sestito <darios@symbian.org>
parents:
188
diff
changeset
|
129 |
$dumped = 0; |
0244765a8d6f
Add heuristic determination of package for Raptor errors and warnings
Dario Sestito <darios@symbian.org>
parents:
188
diff
changeset
|
130 |
} |
177 | 131 |
else # log everything by default |
132 |
{ |
|
186
b76adfbc6648
Don't dump failures which aren't reported
Dario Sestito <darios@symbian.org>
parents:
185
diff
changeset
|
133 |
RaptorCommon::dump_fault($category, $subcategory, $severity, $logfile, $component, $mmp, $phase, $recipe, $file); |
177 | 134 |
} |
186
b76adfbc6648
Don't dump failures which aren't reported
Dario Sestito <darios@symbian.org>
parents:
185
diff
changeset
|
135 |
|
b76adfbc6648
Don't dump failures which aren't reported
Dario Sestito <darios@symbian.org>
parents:
185
diff
changeset
|
136 |
return $dumped; |
177 | 137 |
} |
138 |
||
139 |
sub on_start_buildlog |
|
140 |
{ |
|
141 |
RaptorCommon::init(); |
|
142 |
||
143 |
$filename = "$::raptorbitsdir/raptor_unreciped.txt"; |
|
144 |
if (!-f$filename) |
|
145 |
{ |
|
146 |
print "Writing unreciped file $filename\n"; |
|
147 |
open(FILE, ">$filename"); |
|
148 |
close(FILE); |
|
149 |
} |
|
150 |
} |
|
151 |
||
152 |
sub on_chars_buildlog |
|
153 |
{ |
|
154 |
my ($ch) = @_; |
|
155 |
||
156 |
#print "on_chars_buildlog\n"; |
|
157 |
||
158 |
if ($store_chars) |
|
159 |
{ |
|
160 |
$characters .= $ch->{Data}; |
|
161 |
||
162 |
#print "characters is now -->$characters<--\n"; |
|
163 |
} |
|
164 |
} |
|
165 |
||
166 |
sub on_end_buildlog_subtag |
|
167 |
{ |
|
168 |
$store_chars = 1; |
|
169 |
} |
|
170 |
||
171 |
sub process_characters |
|
172 |
{ |
|
173 |
#print "process_characters\n"; |
|
174 |
||
175 |
$characters =~ s,^[\r\n]*,,; |
|
176 |
$characters =~ s,[\r\n]*$,,; |
|
177 |
||
178 |
#print "characters is -->$characters<--\n"; |
|
179 |
||
180 |
my @lines = split(/[\r\n]/, $characters); |
|
181 |
for my $line (@lines) |
|
182 |
{ |
|
183 |
if ($line =~ m,[^\s^\r^\n],) |
|
184 |
{ |
|
186
b76adfbc6648
Don't dump failures which aren't reported
Dario Sestito <darios@symbian.org>
parents:
185
diff
changeset
|
185 |
my $dumped = process($line, $::current_log_file, '', '', '', '', "raptor_unreciped.txt"); |
177 | 186 |
|
186
b76adfbc6648
Don't dump failures which aren't reported
Dario Sestito <darios@symbian.org>
parents:
185
diff
changeset
|
187 |
if ($dumped) |
177 | 188 |
{ |
186
b76adfbc6648
Don't dump failures which aren't reported
Dario Sestito <darios@symbian.org>
parents:
185
diff
changeset
|
189 |
open(FILE, ">>$filename"); |
b76adfbc6648
Don't dump failures which aren't reported
Dario Sestito <darios@symbian.org>
parents:
185
diff
changeset
|
190 |
print FILE "---failure_item_$::failure_item_number\---\n"; |
b76adfbc6648
Don't dump failures which aren't reported
Dario Sestito <darios@symbian.org>
parents:
185
diff
changeset
|
191 |
print FILE "$line\n\n"; |
177 | 192 |
close(FILE); |
193 |
} |
|
194 |
} |
|
195 |
} |
|
196 |
||
197 |
$characters = ''; |
|
198 |
$store_chars = 0; |
|
199 |
} |
|
200 |
||
201 |
sub on_start_buildlog_subtag |
|
202 |
{ |
|
203 |
#print "on_start_buildlog_subtag\n"; |
|
204 |
||
205 |
process_characters(); |
|
206 |
} |
|
207 |
||
208 |
sub on_end_buildlog |
|
209 |
{ |
|
210 |
process_characters(); |
|
211 |
} |
|
212 |
||
213 |
||
214 |
1; |