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
|
#!/usr/bin/perl -w
############################################################################
#
# Copyright (C) 2016 The Qt Company Ltd.
# Contact: https://www.qt.io/licensing/
#
# This file is part of Qt Creator.
#
# Commercial License Usage
# Licensees holding valid commercial Qt licenses may use this file in
# accordance with the commercial license agreement provided with the
# Software or, alternatively, in accordance with the terms contained in
# a written agreement between you and The Qt Company. For licensing terms
# and conditions see https://www.qt.io/terms-conditions. For further
# information use the contact form at https://www.qt.io/contact-us.
#
# GNU General Public License Usage
# Alternatively, this file may be used under the terms of the GNU
# General Public License version 3 as published by the Free Software
# Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
# included in the packaging of this file. Please review the following
# information to ensure the GNU General Public License requirements will
# be met: https://www.gnu.org/licenses/gpl-3.0.html.
#
############################################################################
=head1 NAME
msanalyzer2tasks.pl - Convert MSVC/Static analyzer warnings and errors into Qt Creator task files.
=head1 SYNOPSIS
msanalyzer2tasks.pl < logfile > taskfile
=cut
# Sample:
# <DEFECTS>
# <DEFECT>
# <SFA>
# <FILEPATH>c:\dev\qt5\qtbase\src\corelib\statemachine\</FILEPATH>
# <FILENAME>qstatemachine.cpp</FILENAME>
# <LINE>968</LINE>
# <COLUMN>21</COLUMN>
# </SFA>
# <DEFECTCODE>6246</DEFECTCODE>
# <DESCRIPTION>Local declaration of 'i' hides declaration of the same name in outer scope. For additional information, see previous declaration at line '953' of 'c:\dev\qt5\qtbase\src\corelib\statemachine\qstatemachine.cpp'.</DESCRIPTION>
# <FUNCTION>QStateMachinePrivate::enterStates</FUNCTION>
# <DECORATED>?enterStates@QStateMachinePrivate@@UAEXPAVQEvent@@ABV?$QList@PAVQAbstractState@@@@1ABV?$QSet@PAVQAbstractState@@@@AAV?$QHash@PAVQAbstractState@@V?$QVector@UQPropertyAssignment@@@@@@ABV?$QList@PAVQAbstractAnimation@@@@@Z</DECORATED>
# <FUNCLINE>941</FUNCLINE>
# <PATH>
# <SFA>
# <FILEPATH>c:\dev\qt5\qtbase\src\corelib\statemachine\</FILEPATH>
# <FILENAME>qstatemachine.cpp</FILENAME>
# <LINE>953</LINE>
# <COLUMN>18</COLUMN>
# </SFA>
# </PATH>
# </DEFECT>
# <DEFECT>
use strict;
my ($description, $defectCode);
my (@filePaths, @fileNames, @lineNumbers);
# Return element contents of a line "<ELEMENT>Contents</ELEMENT>"
sub elementContents
{
my ($line) = @_;
return $line =~ /^ *<([^>]*)>([^<]*)<\/.*$/
? ($1, $2) : (undef, undef)
}
# Fix path 'c:\foo\' -> 'c:/foo'
sub fixFilePath
{
my ($p) = @_;
$p =~ s|\\|/|g;
my $lastSlash = rindex($p, '/');
chop($p) if $lastSlash == length($p) - 1;
return $p;
}
# Fix message (replace XML entities, backslash)
sub fixMessage
{
my ($m) = @_;
$m =~ s|\\|/|g;
$m =~ s/</</g;
$m =~ s/>/>/g;
$m =~ s/&/&/g;
return $m;
}
while (my $line = <STDIN> ) {
chomp($line);
my ($element, $content) = elementContents($line);
if (defined($element)) {
if ($element eq 'FILEPATH') {
push(@filePaths, fixFilePath($content));
} elsif ($element eq 'FILENAME') {
push(@fileNames, $content);
} elsif ($element eq 'LINE') {
push(@lineNumbers, $content);
} elsif ($element eq 'DESCRIPTION') {
$description = fixMessage($content);
} elsif ($element eq 'DEFECTCODE') {
$defectCode = $content;
}
} elsif (index($line, '</DEFECT>') >= 0) {
my $count = scalar(@filePaths);
for (my $i = 0; $i < $count; $i++) {
my $text = $description;
$text .= ' (' . $defectCode . ')' if defined $defectCode;
print $filePaths[$i], '/', $fileNames[$i], "\t", $lineNumbers[$i], "\twarn\t", $text,"\n";
}
$description = $defectCode = undef;
@filePaths = @fileNames= @lineNumbers = ();
}
}
|