author | Dario Sestito <darios@symbian.org> |
Thu, 02 Sep 2010 11:48:45 +0100 | |
changeset 290 | 2ca4533db9fe |
parent 267 | a02973783e64 |
permissions | -rw-r--r-- |
176 | 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: |
|
236
08436a227940
Add author information. Reviewed descriptions
Dario Sestito <darios@symbian.org>
parents:
185
diff
changeset
|
11 |
# Dario Sestito <darios@symbian.org> |
176 | 12 |
# |
13 |
# Description: |
|
14 |
# Common constants for the raptor parser suite |
|
15 |
||
16 |
package RaptorCommon; |
|
17 |
||
18 |
our $SEVERITY_CRITICAL = 'critical'; |
|
19 |
our $SEVERITY_MAJOR = 'major'; |
|
20 |
our $SEVERITY_MINOR = 'minor'; |
|
21 |
||
22 |
sub init |
|
23 |
{ |
|
24 |
my $filename = "$::raptorbitsdir/summary.csv"; |
|
25 |
if (!-f$filename) |
|
26 |
{ |
|
27 |
print "Writing summary file $filename\n"; |
|
28 |
open(SUMMARY, ">$filename"); |
|
29 |
close(SUMMARY); |
|
30 |
} |
|
31 |
} |
|
32 |
||
33 |
sub dump_fault |
|
34 |
{ |
|
185
b76adfbc6648
Don't dump failures which aren't reported
Dario Sestito <darios@symbian.org>
parents:
176
diff
changeset
|
35 |
my ($category, $subcategory, $severity, $location, $component, $mmp, $phase, $recipe, $file) = @_; |
b76adfbc6648
Don't dump failures which aren't reported
Dario Sestito <darios@symbian.org>
parents:
176
diff
changeset
|
36 |
|
b76adfbc6648
Don't dump failures which aren't reported
Dario Sestito <darios@symbian.org>
parents:
176
diff
changeset
|
37 |
$::failure_item_number++; |
176 | 38 |
|
39 |
open(SUMMARY, ">>$::raptorbitsdir/summary.csv"); |
|
185
b76adfbc6648
Don't dump failures which aren't reported
Dario Sestito <darios@symbian.org>
parents:
176
diff
changeset
|
40 |
print SUMMARY "$category,$subcategory,$severity,$location,$component,$mmp,$phase,$recipe,$file,$::failure_item_number\n"; |
176 | 41 |
close(SUMMARY); |
42 |
} |
|
43 |
||
267
a02973783e64
Extend UH parser to cope with tools build
Dario Sestito <darios@symbian.org>
parents:
236
diff
changeset
|
44 |
sub normalize_bldinf_path |
a02973783e64
Extend UH parser to cope with tools build
Dario Sestito <darios@symbian.org>
parents:
236
diff
changeset
|
45 |
{ |
a02973783e64
Extend UH parser to cope with tools build
Dario Sestito <darios@symbian.org>
parents:
236
diff
changeset
|
46 |
my ($bldinfref) = @_; |
a02973783e64
Extend UH parser to cope with tools build
Dario Sestito <darios@symbian.org>
parents:
236
diff
changeset
|
47 |
|
a02973783e64
Extend UH parser to cope with tools build
Dario Sestito <darios@symbian.org>
parents:
236
diff
changeset
|
48 |
${$bldinfref} = lc(${$bldinfref}); |
a02973783e64
Extend UH parser to cope with tools build
Dario Sestito <darios@symbian.org>
parents:
236
diff
changeset
|
49 |
${$bldinfref} =~ s,^[A-Za-z]:,,; |
a02973783e64
Extend UH parser to cope with tools build
Dario Sestito <darios@symbian.org>
parents:
236
diff
changeset
|
50 |
${$bldinfref} =~ s,[\\],/,g; |
a02973783e64
Extend UH parser to cope with tools build
Dario Sestito <darios@symbian.org>
parents:
236
diff
changeset
|
51 |
} |
a02973783e64
Extend UH parser to cope with tools build
Dario Sestito <darios@symbian.org>
parents:
236
diff
changeset
|
52 |
|
a02973783e64
Extend UH parser to cope with tools build
Dario Sestito <darios@symbian.org>
parents:
236
diff
changeset
|
53 |
sub get_package_subpath |
a02973783e64
Extend UH parser to cope with tools build
Dario Sestito <darios@symbian.org>
parents:
236
diff
changeset
|
54 |
{ |
a02973783e64
Extend UH parser to cope with tools build
Dario Sestito <darios@symbian.org>
parents:
236
diff
changeset
|
55 |
my ($bldinf) = @_; |
a02973783e64
Extend UH parser to cope with tools build
Dario Sestito <darios@symbian.org>
parents:
236
diff
changeset
|
56 |
|
a02973783e64
Extend UH parser to cope with tools build
Dario Sestito <darios@symbian.org>
parents:
236
diff
changeset
|
57 |
my $package = ''; |
a02973783e64
Extend UH parser to cope with tools build
Dario Sestito <darios@symbian.org>
parents:
236
diff
changeset
|
58 |
|
a02973783e64
Extend UH parser to cope with tools build
Dario Sestito <darios@symbian.org>
parents:
236
diff
changeset
|
59 |
if ($bldinf =~ m,(unknown/unknown),) |
a02973783e64
Extend UH parser to cope with tools build
Dario Sestito <darios@symbian.org>
parents:
236
diff
changeset
|
60 |
{ |
a02973783e64
Extend UH parser to cope with tools build
Dario Sestito <darios@symbian.org>
parents:
236
diff
changeset
|
61 |
$package = 'unknown/unknown'; |
a02973783e64
Extend UH parser to cope with tools build
Dario Sestito <darios@symbian.org>
parents:
236
diff
changeset
|
62 |
} |
a02973783e64
Extend UH parser to cope with tools build
Dario Sestito <darios@symbian.org>
parents:
236
diff
changeset
|
63 |
elsif ($bldinf =~ m,^/+?([^/]*?/[^/]*?/[^/]*?)/,) |
a02973783e64
Extend UH parser to cope with tools build
Dario Sestito <darios@symbian.org>
parents:
236
diff
changeset
|
64 |
{ |
a02973783e64
Extend UH parser to cope with tools build
Dario Sestito <darios@symbian.org>
parents:
236
diff
changeset
|
65 |
$package = $1; |
a02973783e64
Extend UH parser to cope with tools build
Dario Sestito <darios@symbian.org>
parents:
236
diff
changeset
|
66 |
} |
a02973783e64
Extend UH parser to cope with tools build
Dario Sestito <darios@symbian.org>
parents:
236
diff
changeset
|
67 |
#elsif ($bldinf =~ m,^/+?([^/]*?/[^/]*?)/,) |
a02973783e64
Extend UH parser to cope with tools build
Dario Sestito <darios@symbian.org>
parents:
236
diff
changeset
|
68 |
#{ |
a02973783e64
Extend UH parser to cope with tools build
Dario Sestito <darios@symbian.org>
parents:
236
diff
changeset
|
69 |
# $package = $1; |
a02973783e64
Extend UH parser to cope with tools build
Dario Sestito <darios@symbian.org>
parents:
236
diff
changeset
|
70 |
#} |
a02973783e64
Extend UH parser to cope with tools build
Dario Sestito <darios@symbian.org>
parents:
236
diff
changeset
|
71 |
#elsif ($bldinf =~ m,^/+?([^/]*?)/,) |
a02973783e64
Extend UH parser to cope with tools build
Dario Sestito <darios@symbian.org>
parents:
236
diff
changeset
|
72 |
#{ |
a02973783e64
Extend UH parser to cope with tools build
Dario Sestito <darios@symbian.org>
parents:
236
diff
changeset
|
73 |
# $package = $1; |
a02973783e64
Extend UH parser to cope with tools build
Dario Sestito <darios@symbian.org>
parents:
236
diff
changeset
|
74 |
#} |
a02973783e64
Extend UH parser to cope with tools build
Dario Sestito <darios@symbian.org>
parents:
236
diff
changeset
|
75 |
|
a02973783e64
Extend UH parser to cope with tools build
Dario Sestito <darios@symbian.org>
parents:
236
diff
changeset
|
76 |
return $package; |
a02973783e64
Extend UH parser to cope with tools build
Dario Sestito <darios@symbian.org>
parents:
236
diff
changeset
|
77 |
} |
a02973783e64
Extend UH parser to cope with tools build
Dario Sestito <darios@symbian.org>
parents:
236
diff
changeset
|
78 |
|
176 | 79 |
1; |