FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
cppcheck/gui/checkthread.cpp at main · lineCode/cppcheck · GitHub
lineCode
/
cppcheck
Public
forked from
cppcheck-opensource/cppcheck
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
cppcheck
/
gui
/
checkthread.cpp
Copy path
More file actions
More file actions
Latest commit
History
History
History
467 lines (407 loc) · 15.9 KB
Breadcrumbs
cppcheck
/
gui
/
checkthread.cpp
Copy path
File metadata and controls
467 lines (407 loc) · 15.9 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
/*
* Cppcheck - A tool for static C/C++ code analysis
* Copyright (C) 2007-2022 Cppcheck team.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#
include
"
checkthread.h
"
#
include
"
analyzerinfo.h
"
#
include
"
common.h
"
#
include
"
cppcheck.h
"
#
include
"
erroritem.h
"
#
include
"
errorlogger.h
"
#
include
"
errortypes.h
"
#
include
"
settings.h
"
#
include
"
standards.h
"
#
include
"
threadresult.h
"
#
include
<
cstddef
>
#
include
<
functional
>
#
include
<
list
>
#
include
<
map
>
#
include
<
ostream
>
#
include
<
set
>
#
include
<
string
>
#
include
<
vector
>
#
include
<
QDebug
>
#
include
<
QDir
>
#
include
<
QFile
>
#
include
<
QProcess
>
#
include
<
QRegularExpression
>
#
include
<
QSettings
>
//
NOLINTNEXTLINE(performance-unnecessary-value-param) - used as callback so we need to preserve the signature
static
bool
executeCommand
(std::string exe, std::vector<std::string> args, std::string redirect, std::string *output)
{
output->
clear
();
QStringList args2;
for
(
const
std::string &arg: args)
args2 <<
QString::fromStdString
(arg);
QProcess process;
process.
start
(
QString::fromStdString
(exe), args2);
process.
waitForFinished
();
if
(redirect ==
"
2>&1
"
) {
QString s1 = process.
readAllStandardOutput
();
QString s2 = process.
readAllStandardError
();
*output = (s1 +
"
\n
"
+ s2).
toStdString
();
}
else
*output = process.
readAllStandardOutput
().
toStdString
();
if
(redirect.
compare
(
0
,
3
,
"
2>
"
) ==
0
) {
std::ofstream
fout
(redirect.
substr
(
3
));
fout << process.
readAllStandardError
().
toStdString
();
}
return
process.
exitCode
() ==
0
;
}
CheckThread::CheckThread
(ThreadResult &result) :
mState(Ready),
mResult(result),
mCppcheck(result,
true
, executeCommand),
mAnalyseWholeProgram(
false
)
{
//
ctor
}
CheckThread::~CheckThread
()
{
//
dtor
}
void
CheckThread::check
(
const
Settings &settings)
{
mFiles
.
clear
();
mCppcheck
.
settings
() = settings;
start
();
}
void
CheckThread::analyseWholeProgram
(
const
QStringList &files)
{
mFiles
= files;
mAnalyseWholeProgram
=
true
;
start
();
}
//
cppcheck-suppress unusedFunction - TODO: false positive
void
CheckThread::run
()
{
mState
= Running;
if
(!
mFiles
.
isEmpty
() ||
mAnalyseWholeProgram
) {
mAnalyseWholeProgram
=
false
;
qDebug
() <<
"
Whole program analysis
"
;
const
std::string &buildDir =
mCppcheck
.
settings
().
buildDir
;
if
(!buildDir.
empty
()) {
std::map<std::string,std::
size_t
> files2;
for
(
const
QString& file :
mFiles
)
files2[file.
toStdString
()] =
0
;
mCppcheck
.
analyseWholeProgram
(buildDir, files2);
}
mFiles
.
clear
();
emit
done
();
return
;
}
QString file =
mResult
.
getNextFile
();
while
(!file.
isEmpty
() &&
mState
== Running) {
qDebug
() <<
"
Checking file
"
<< file;
mCppcheck
.
check
(file.
toStdString
());
runAddonsAndTools
(
nullptr
, file);
emit
fileChecked
(file);
if
(
mState
== Running)
file =
mResult
.
getNextFile
();
}
ImportProject::FileSettings fileSettings =
mResult
.
getNextFileSettings
();
while
(!fileSettings.
filename
.
empty
() &&
mState
== Running) {
file =
QString::fromStdString
(fileSettings.
filename
);
qDebug
() <<
"
Checking file
"
<< file;
mCppcheck
.
check
(fileSettings);
runAddonsAndTools
(&fileSettings,
QString::fromStdString
(fileSettings.
filename
));
emit
fileChecked
(file);
if
(
mState
== Running)
fileSettings =
mResult
.
getNextFileSettings
();
}
if
(
mState
== Running)
mState
= Ready;
else
mState
= Stopped;
emit
done
();
}
void
CheckThread::runAddonsAndTools
(
const
ImportProject::FileSettings *fileSettings,
const
QString &fileName)
{
for
(
const
QString& addon :
mAddonsAndTools
) {
if
(addon ==
CLANG_ANALYZER
|| addon ==
CLANG_TIDY
) {
if
(!fileSettings)
continue
;
if
(!fileSettings->
cfg
.
empty
() && fileSettings->
cfg
.
compare
(
0
,
5
,
"
Debug
"
) !=
0
)
continue
;
QStringList args;
for
(std::list<std::string>::const_iterator incIt = fileSettings->
includePaths
.
begin
(); incIt != fileSettings->
includePaths
.
end
(); ++incIt)
args << (
"
-I
"
+
QString::fromStdString
(*incIt));
for
(std::list<std::string>::const_iterator i = fileSettings->
systemIncludePaths
.
begin
(); i != fileSettings->
systemIncludePaths
.
end
(); ++i)
args <<
"
-isystem
"
<<
QString::fromStdString
(*i);
for
(
const
QString& def :
QString::fromStdString
(fileSettings->
defines
).
split
(
"
;
"
)) {
args << (
"
-D
"
+ def);
}
for
(
const
std::string& U : fileSettings->
undefs
) {
args <<
QString::fromStdString
(
"
-U
"
+ U);
}
const
QString clangPath =
CheckThread::clangTidyCmd
();
if
(!clangPath.
isEmpty
()) {
QDir
dir
(clangPath +
"
/../lib/clang
"
);
for
(QString ver : dir.
entryList
()) {
QString includePath = dir.
absolutePath
() +
'
/
'
+ ver +
"
/include
"
;
if
(ver[
0
] !=
'
.
'
&&
QDir
(includePath).
exists
()) {
args <<
"
-isystem
"
<< includePath;
break
;
}
}
}
#
ifdef
Q_OS_WIN
//
To create compile_commands.json in windows see:
//
https://bitsmaker.gitlab.io/post/clang-tidy-from-vs2015/
for
(QString includePath :
mClangIncludePaths
) {
if
(!includePath.
isEmpty
()) {
includePath.
replace
(
"
\\
"
,
"
/
"
);
args <<
"
-isystem
"
<< includePath.
trimmed
();
}
}
args <<
"
-U__STDC__
"
<<
"
-fno-ms-compatibility
"
;
#
endif
if
(!fileSettings->
standard
.
empty
())
args << (
"
-std=
"
+
QString::fromStdString
(fileSettings->
standard
));
else
{
//
TODO: pass C or C++ standard based on file type
const
std::string std =
mCppcheck
.
settings
().
standards
.
getCPP
();
if
(!std.
empty
()) {
args << (
"
-std=
"
+
QString::fromStdString
(std));
}
}
QString analyzerInfoFile;
const
std::string &buildDir =
mCppcheck
.
settings
().
buildDir
;
if
(!buildDir.
empty
()) {
analyzerInfoFile =
QString::fromStdString
(
AnalyzerInformation::getAnalyzerInfoFile
(buildDir, fileSettings->
filename
, fileSettings->
cfg
));
QStringList
args2
(args);
args2.
insert
(
0
,
"
-E
"
);
args2 << fileName;
QProcess process;
process.
start
(
clangCmd
(),args2);
process.
waitForFinished
();
const
QByteArray &ba = process.
readAllStandardOutput
();
#
if
(QT_VERSION >= QT_VERSION_CHECK(6, 0, 0))
const
quint16 chksum =
qChecksum
(
QByteArrayView
(ba));
#
else
const
quint16 chksum =
qChecksum
(ba.
data
(), ba.
length
());
#
endif
QFile
f1
(analyzerInfoFile +
'
.
'
+ addon +
"
-E
"
);
if
(f1.
open
(QIODevice::ReadOnly | QIODevice::Text)) {
QTextStream
in1
(&f1);
const
quint16 oldchksum = in1.
readAll
().
toInt
();
if
(oldchksum == chksum) {
QFile
f2
(analyzerInfoFile +
'
.
'
+ addon +
"
-results
"
);
if
(f2.
open
(QIODevice::ReadOnly | QIODevice::Text)) {
QTextStream
in2
(&f2);
parseClangErrors
(addon, fileName, in2.
readAll
());
continue
;
}
}
f1.
close
();
}
f1.
open
(QIODevice::WriteOnly | QIODevice::Text);
QTextStream
out1
(&f1);
out1 << chksum;
QFile::remove
(analyzerInfoFile +
'
.
'
+ addon +
"
-results
"
);
}
if
(addon ==
CLANG_ANALYZER
) {
/*
// Using clang
args.insert(0,"--analyze");
args.insert(1, "-Xanalyzer");
args.insert(2, "-analyzer-output=text");
args << fileName;
*/
//
Using clang-tidy
args.
insert
(
0
,
"
-checks=-*,clang-analyzer-*
"
);
args.
insert
(
1
, fileName);
args.
insert
(
2
,
"
--
"
);
}
else
{
args.
insert
(
0
,
"
-checks=*,-clang-analyzer-*,-llvm*
"
);
args.
insert
(
1
, fileName);
args.
insert
(
2
,
"
--
"
);
}
{
const
QString
cmd
(
clangTidyCmd
());
QString
debug
(cmd.
contains
(
"
"
) ? (
'
\"
'
+ cmd +
'
\"
'
) : cmd);
for
(
const
QString& arg : args) {
if
(arg.
contains
(
"
"
))
debug +=
"
\"
"
+ arg +
'
\"
'
;
else
debug +=
'
'
+ arg;
}
qDebug
() << debug;
if
(!analyzerInfoFile.
isEmpty
()) {
QFile
f
(analyzerInfoFile +
'
.
'
+ addon +
"
-cmd
"
);
if
(f.
open
(QIODevice::WriteOnly | QIODevice::Text)) {
QTextStream
out
(&f);
out << debug;
}
}
}
QProcess process;
process.
start
(
clangTidyCmd
(), args);
process.
waitForFinished
(
600
*
1000
);
const
QString
errout
(process.
readAllStandardOutput
() +
"
\n\n\n
"
+ process.
readAllStandardError
());
if
(!analyzerInfoFile.
isEmpty
()) {
QFile
f
(analyzerInfoFile +
'
.
'
+ addon +
"
-results
"
);
if
(f.
open
(QIODevice::WriteOnly | QIODevice::Text)) {
QTextStream
out
(&f);
out << errout;
}
}
parseClangErrors
(addon, fileName, errout);
}
}
}
void
CheckThread::stop
()
{
mState
= Stopping;
Settings::terminate
();
}
void
CheckThread::parseClangErrors
(
const
QString &tool,
const
QString &file0, QString err)
{
QList<ErrorItem> errorItems;
ErrorItem errorItem;
static
const
QRegularExpression
r1
(
"
^(.+):([0-9]+):([0-9]+): (note|warning|error|fatal error): (.*)$
"
);
static
const
QRegularExpression
r2
(
"
^(.*)
\\
[([a-zA-Z0-9
\\
-_
\\
.]+)
\\
]$
"
);
QTextStream
in
(&err, QIODevice::ReadOnly);
while
(!in.
atEnd
()) {
QString line = in.
readLine
();
if
(line.
startsWith
(
"
Assertion failed:
"
)) {
ErrorItem e;
e.
errorPath
.
append
(
QErrorPathItem
());
e.
errorPath
.
last
().
file
= file0;
e.
errorPath
.
last
().
line
=
1
;
e.
errorPath
.
last
().
column
=
1
;
e.
errorId
= tool +
"
-internal-error
"
;
e.
file0
= file0;
e.
message
= line;
e.
severity
= Severity::information;
errorItems.
append
(e);
continue
;
}
const
QRegularExpressionMatch r1MatchRes = r1.
match
(line);
if
(!r1MatchRes.
hasMatch
())
continue
;
if
(r1MatchRes.
captured
(
4
) !=
"
note
"
) {
errorItems.
append
(errorItem);
errorItem =
ErrorItem
();
errorItem.
file0
= r1MatchRes.
captured
(
1
);
}
errorItem.
errorPath
.
append
(
QErrorPathItem
());
errorItem.
errorPath
.
last
().
file
= r1MatchRes.
captured
(
1
);
errorItem.
errorPath
.
last
().
line
= r1MatchRes.
captured
(
2
).
toInt
();
errorItem.
errorPath
.
last
().
column
= r1MatchRes.
captured
(
3
).
toInt
();
if
(r1MatchRes.
captured
(
4
) ==
"
warning
"
)
errorItem.
severity
= Severity::SeverityType::warning;
else
if
(r1MatchRes.
captured
(
4
) ==
"
error
"
|| r1MatchRes.
captured
(
4
) ==
"
fatal error
"
)
errorItem.
severity
= Severity::SeverityType::error;
QString message,id;
const
QRegularExpressionMatch r2MatchRes = r2.
match
(r1MatchRes.
captured
(
5
));
if
(r2MatchRes.
hasMatch
()) {
message = r2MatchRes.
captured
(
1
);
const
QString
id1
(r2MatchRes.
captured
(
2
));
if
(id1.
startsWith
(
"
clang
"
))
id = id1;
else
id = tool +
'
-
'
+ r2MatchRes.
captured
(
2
);
if
(tool ==
CLANG_TIDY
) {
if
(id1.
startsWith
(
"
performance
"
))
errorItem.
severity
= Severity::SeverityType::performance;
else
if
(id1.
startsWith
(
"
portability
"
))
errorItem.
severity
= Severity::SeverityType::portability;
else
if
(id1.
startsWith
(
"
misc
"
) && !id1.
contains
(
"
unused
"
))
errorItem.
severity
= Severity::SeverityType::warning;
else
errorItem.
severity
= Severity::SeverityType::style;
}
}
else
{
message = r1MatchRes.
captured
(
5
);
id =
CLANG_ANALYZER
;
}
if
(errorItem.
errorPath
.
size
() ==
1
) {
errorItem.
message
= message;
errorItem.
errorId
= id;
}
errorItem.
errorPath
.
last
().
info
= message;
}
errorItems.
append
(errorItem);
for
(
const
ErrorItem &e : errorItems) {
if
(e.
errorPath
.
isEmpty
())
continue
;
Suppressions::ErrorMessage errorMessage;
errorMessage.
setFileName
(e.
errorPath
.
back
().
file
.
toStdString
());
errorMessage.
lineNumber
= e.
errorPath
.
back
().
line
;
errorMessage.
errorId
= e.
errorId
.
toStdString
();
errorMessage.
symbolNames
= e.
symbolNames
.
toStdString
();
if
(
isSuppressed
(errorMessage))
continue
;
std::list<ErrorMessage::FileLocation> callstack;
std::transform
(e.
errorPath
.
begin
(), e.
errorPath
.
end
(),
std::back_inserter
(callstack), [](
const
QErrorPathItem& path) {
return
ErrorMessage::FileLocation
(path.
file
.
toStdString
(), path.
info
.
toStdString
(), path.
line
, path.
column
);
});
const
std::string f0 = file0.
toStdString
();
const
std::string msg = e.
message
.
toStdString
();
const
std::string id = e.
errorId
.
toStdString
();
ErrorMessage
errmsg
(callstack, f0, e.
severity
, msg, id, Certainty::normal);
mResult
.
reportErr
(errmsg);
}
}
bool
CheckThread::isSuppressed
(
const
Suppressions::ErrorMessage &errorMessage)
const
{
return
std::any_of
(
mSuppressions
.
begin
(),
mSuppressions
.
end
(), [&](
const
Suppressions::Suppression& s) {
return
s.
isSuppressed
(errorMessage);
});
}
QString
CheckThread::clangCmd
()
{
QString path =
QSettings
().
value
(
SETTINGS_CLANG_PATH
,
QString
()).
toString
();
if
(!path.
isEmpty
())
path +=
'
/
'
;
path +=
"
clang
"
;
#
ifdef
Q_OS_WIN
path +=
"
.exe
"
;
#
endif
QProcess process;
process.
start
(path,
QStringList
() <<
"
--version
"
);
process.
waitForFinished
();
if
(process.
exitCode
() ==
0
)
return
path;
#
ifdef
Q_OS_WIN
//
Try to autodetect clang
if
(
QFileInfo
(
"
C:/Program Files/LLVM/bin/clang.exe
"
).
exists
())
return
"
C:/Program Files/LLVM/bin/clang.exe
"
;
#
endif
return
QString
();
}
QString
CheckThread::clangTidyCmd
()
{
QString path =
QSettings
().
value
(
SETTINGS_CLANG_PATH
,
QString
()).
toString
();
if
(!path.
isEmpty
())
path +=
'
/
'
;
path +=
"
clang-tidy
"
;
#
ifdef
Q_OS_WIN
path +=
"
.exe
"
;
#
endif
QProcess process;
process.
start
(path,
QStringList
() <<
"
--version
"
);
process.
waitForFinished
();
if
(process.
exitCode
() ==
0
)
return
path;
#
ifdef
Q_OS_WIN
//
Try to autodetect clang-tidy
if
(
QFileInfo
(
"
C:/Program Files/LLVM/bin/clang-tidy.exe
"
).
exists
())
return
"
C:/Program Files/LLVM/bin/clang-tidy.exe
"
;
#
endif
return
QString
();
}
Back
|
FazBrowse Home
|
New Git URL