forked from csutils/csdiff
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparser-gcc.cc
848 lines (682 loc) · 22.5 KB
/
parser-gcc.cc
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
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
/*
* Copyright (C) 2013 Red Hat, Inc.
*
* This file is part of csdiff.
*
* csdiff 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
* any later version.
*
* csdiff 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 csdiff. If not, see <http://www.gnu.org/licenses/>.
*/
#include "parser-gcc.hh"
#include "parser-common.hh"
#include "regex.hh"
#include <algorithm>
#include <boost/filesystem.hpp>
namespace GccParserImpl {
enum EToken {
T_NULL = 0,
T_EMPTY,
T_UNKNOWN,
T_INC,
T_SCOPE,
T_MSG,
T_SIDEBAR,
T_MARKER
};
class ITokenizer {
public:
virtual ~ITokenizer() { }
virtual EToken readNext(DefEvent *pEvt) = 0;
virtual int lineNo() const = 0;
};
class AbstractTokenFilter: public ITokenizer {
public:
int lineNo() const override {
return agent_->lineNo();
}
protected:
/// @param agent the object will NOT be deleted on destruction
AbstractTokenFilter(ITokenizer *agent):
agent_(agent)
{
}
ITokenizer *agent_;
};
#define RE_LOCATION "(?<file>[^ #:\"][^:\"]+)(?::(?<line>[0-9]+))?(?::(?<col>[0-9]+))?"
#define RE_TOOL_SUFFIX "(?: <--\\[[^\\]]+\\])?$"
#define RE_FNC_SMATCH "(\\(null\\)|[_A-Za-z][_A-Za-z0-9]*)\\(\\)"
class Tokenizer: public ITokenizer {
public:
Tokenizer(std::istream &input):
input_(input),
lineNo_(0)
{
}
int lineNo() const override {
return lineNo_;
}
EToken readNext(DefEvent *pEvt) override;
private:
std::istream &input_;
int lineNo_;
const RE reSideBar_ =
RE("^ *((([0-9]+)? \\| )|(\\+\\+\\+ \\|\\+)).*$");
const RE reMarker_ =
RE("^ *[ ~^|]+$");
const RE reInc_ =
RE("^(?:In file included| +) from " RE_LOCATION "[:,]"
RE_TOOL_SUFFIX);
const RE reScope_ =
RE("^" RE_LOCATION ": ([A-Z].+):" RE_TOOL_SUFFIX);
const RE reMsg_ =
RE("^" RE_LOCATION /* evt/msg */ ": (" RE_EVENT "): (.*)$");
const RE reSmatch_ =
RE("^(?<file>[^:]+):(?<line>[0-9]+)() " /* file:line */
RE_FNC_SMATCH /* fnc */
" ([a-z]+): (.*)$") /* evt: msg */;
const RE reUbsanScope_ =
RE("^\\s*#\\d+ (0x[[:xdigit:]]+) in ([^ ]+) " /* address, fnc */
/* file:line OR executable+address */
"(?:(?<file>[^:]+):(?<line>[0-9]+)|\\((?<file>[^+]+)\\+(?<line>0x[[:xdigit:]]+)\\))"
/* BuildId */
"(?: \\(BuildId: [[:xdigit:]]+\\))?$");
};
EToken Tokenizer::readNext(DefEvent *pEvt)
{
std::string line;
if (!std::getline(input_, line))
return T_NULL;
if (line.empty())
return T_EMPTY;
// drop CR at end of the line, coming from GCC in source code snippets
if ('\r' == line.back())
line.pop_back();
lineNo_++;
*pEvt = DefEvent();
pEvt->msg = line;
// check for line markers produced by gcc-9.2.1 (a.k.a. sidebar)
if (boost::regex_match(pEvt->msg, reSideBar_))
// xxx.c:2:1: note: include '<stdlib.h>' or provide a declaration...
// 1 | #include <stdio.h>
// +++ |+#include <stdlib.h>
// 2 |
return T_SIDEBAR;
if (boost::regex_match(line, reMarker_))
return T_MARKER;
EToken tok;
boost::smatch sm;
if (boost::regex_match(line, sm, reMsg_)) {
tok = T_MSG;
pEvt->event = sm[/* evt */ 4];
pEvt->msg = sm[/* msg */ 5];
}
else if (boost::regex_match(line, sm, reScope_)) {
tok = T_SCOPE;
pEvt->event = "scope_hint";
pEvt->msg = sm[/* msg */ 4];
}
else if (boost::regex_match(line, sm, reInc_)) {
tok = T_INC;
pEvt->event = "included_from";
pEvt->msg = "Included from here.";
}
else if (boost::regex_match(line, sm, reSmatch_)) {
tok = T_MSG;
pEvt->event = sm[/* evt */ 5];
pEvt->msg = sm[/* fnc */ 4] + "(): ";
pEvt->msg += sm[/* msg */ 6];
}
else if (boost::regex_match(line, sm, reUbsanScope_)) {
tok = T_MSG;
pEvt->event = "note";
pEvt->msg = sm[/* fnc */ 2] + "() at " + sm[/* address */ 1];
}
else
return T_UNKNOWN;
// read file name, event, and msg
pEvt->fileName = sm["file"];
// parse line number
pEvt->line = parseInt(sm["line"]);
// parse column number
pEvt->column = parseInt(sm["col"]);
return tok;
}
#define RE_CLANG_EVT "(?:error|warning)"
#define RE_CLANG_CNT_EVTS "(?:(?:1 " RE_CLANG_EVT \
")|(?:[0-9]+ " RE_CLANG_EVT "s))"
class NoiseFilter: public AbstractTokenFilter {
public:
NoiseFilter(ITokenizer *agent):
AbstractTokenFilter(agent)
{
}
EToken readNext(DefEvent *) override;
private:
const RE reClangWarnCnt_ =
RE("^" RE_CLANG_CNT_EVTS " generated\\.$");
};
EToken NoiseFilter::readNext(DefEvent *pEvt)
{
for (;;) {
const EToken tok = agent_->readNext(pEvt);
if (T_UNKNOWN != tok)
return tok;
if (!boost::regex_match(pEvt->msg, reClangWarnCnt_))
return tok;
}
}
class MarkerConverter: public AbstractTokenFilter {
public:
MarkerConverter(ITokenizer *agent):
AbstractTokenFilter(agent),
lastTok_(T_NULL),
lineNo_(0)
{
}
int lineNo() const override {
return lineNo_;
}
EToken readNext(DefEvent *pEvt) override;
private:
EToken lastTok_;
DefEvent lastEvt_;
int lineNo_;
};
EToken MarkerConverter::readNext(DefEvent *pEvt)
{
EToken tok = lastTok_;
if (T_NULL != tok) {
*pEvt = lastEvt_;
lineNo_ = agent_->lineNo();
lastTok_ = T_NULL;
return tok;
}
tok = agent_->readNext(pEvt);
lineNo_ = agent_->lineNo();
switch (tok) {
case T_SIDEBAR:
pEvt->event = "#";
tok = T_MSG;
break;
case T_UNKNOWN:
break;
default:
return tok;
}
lastTok_ = agent_->readNext(&lastEvt_);
switch (lastTok_) {
case T_SIDEBAR:
case T_MARKER:
break;
default:
return tok;
}
// translate both events to comments
lastEvt_.event = pEvt->event = "#";
// translate both tokens to T_MSG
lastTok_ = T_MSG;
return T_MSG;
}
class MultilineConcatenator: public AbstractTokenFilter {
public:
MultilineConcatenator(ITokenizer *agent):
AbstractTokenFilter(agent),
lastTok_(T_NULL)
{
}
EToken readNext(DefEvent *pEvt) override;
private:
EToken lastTok_;
DefEvent lastEvt_;
bool tryMerge(DefEvent *pEvt);
#define REASON_SUFFIX "( \\[[^ \\]]+\\])?" RE_TOOL_SUFFIX
const RE reBase_ =
RE("^([^ ].*[^\\]])" REASON_SUFFIX);
const RE reExtra_ =
RE("^ *((?: [^ ].*[^\\]])|(?:\\(.+\\)))" REASON_SUFFIX);
};
bool MultilineConcatenator::tryMerge(DefEvent *pEvt)
{
if (T_MSG != lastTok_)
// only messages can be merged together
return false;
if (pEvt->event == "#")
// do not concatenate multi-line comments
return false;
if (pEvt->event != lastEvt_.event)
// different kind of event
return false;
if (pEvt->fileName != lastEvt_.fileName
|| pEvt->line != lastEvt_.line
|| pEvt->column != lastEvt_.column)
// different location info
return false;
boost::smatch smBase;
if (!boost::regex_match(pEvt->msg, smBase, reBase_))
return false;
boost::smatch smExtra;
if (!boost::regex_match(lastEvt_.msg, smExtra, reExtra_))
return false;
// we need to drop the [-Wreason] suffix from the first message if same
if (smBase[/* -W suffix */ 2] != smExtra[/* -W suffix */ 2])
return false;
assert(!smExtra[/* msg */ 1].str().empty());
const char *gap = (' ' == *smExtra[/* msg */ 1].str().begin()) ? "" : " ";
// concatenate both messages together
pEvt->msg = smBase[/* msg */ 1] + gap
+ smExtra[/* msg */1] + smExtra[/* suf */2];
// clear the already merged token
lastTok_ = T_NULL;
return true;
}
EToken MultilineConcatenator::readNext(DefEvent *pEvt)
{
EToken tok;
switch (lastTok_) {
case T_NULL:
// no last token --> we have to read a new one
tok = agent_->readNext(pEvt);
break;
case T_MSG:
// reuse the last T_MSG token
tok = lastTok_;
*pEvt = lastEvt_;
break;
default:
// flush the last token and bail out
tok = lastTok_;
*pEvt = lastEvt_;
lastTok_ = T_NULL;
return tok;
}
if (T_MSG == tok) {
do
// read one token ahead
lastTok_ = agent_->readNext(&lastEvt_);
while
// try to merge it with the previous one
(this->tryMerge(pEvt));
}
return tok;
}
class BasicGccParser {
public:
BasicGccParser(InStream &input):
rawTokenizer_(input.str()),
noiseFilter_(&rawTokenizer_),
markerConverter_(&noiseFilter_),
tokenizer_(&markerConverter_),
fileName_(input.fileName()),
silent_(input.silent()),
hasKeyEvent_(false),
hasError_(false)
{
}
bool getNext(Defect *);
bool hasError() const;
private:
Tokenizer rawTokenizer_;
NoiseFilter noiseFilter_;
MarkerConverter markerConverter_;
MultilineConcatenator tokenizer_;
const std::string fileName_;
const bool silent_;
bool hasKeyEvent_;
bool hasError_;
Defect defCurrent_;
void handleError();
bool digCppcheckEvt(Defect *pDef);
bool exportAndReset(Defect *pDef);
const RE reCppcheck_ =
RE("^([0-9A-Za-z_]+)(?:\\(CWE-([0-9]+)\\))?: (.*)$");
const RE reClang_ =
RE("^clang.*$");
const RE reProspector_ =
RE(RE_EVENT_PROSPECTOR);
const RE reShellCheckMsg_ =
RE("^.* \\[SC[0-9]+\\]$");
const RE reSmatchMsg_ =
RE("^" RE_FNC_SMATCH ": .*$");
const RE reTool_ =
RE("^(.*) <--\\[([^\\]]+)\\]$");
};
void BasicGccParser::handleError()
{
if (!hasKeyEvent_)
// drop the events captured up to now
defCurrent_ = Defect();
hasError_ = true;
if (silent_)
return;
std::cerr << fileName_ << ":" << tokenizer_.lineNo()
<< ": error: invalid syntax\n";
}
bool BasicGccParser::digCppcheckEvt(Defect *pDef)
{
DefEvent &keyEvt = pDef->events[pDef->keyEventIdx];
if (keyEvt.event == "#")
// this is just a comment, do not look for real events
return false;
boost::smatch sm;
if (!boost::regex_match(keyEvt.msg, sm, reCppcheck_))
return false;
// format produced by cscppc, embed cppcheck checker's ID into the event
pDef->checker = "CPPCHECK_WARNING";
keyEvt.event += "[";
keyEvt.event += sm[/* id */ 1];
keyEvt.event += "]";
// store CWE if available
pDef->cwe = parseInt(sm[/* cwe */ 2]);
// this assignment invalidates sm!
keyEvt.msg = sm[/* msg */ 3];
return true;
}
bool BasicGccParser::exportAndReset(Defect *pDef)
{
Defect &def = defCurrent_;
if (!hasKeyEvent_)
// nothing to export yet
return false;
// assume COMPILER_WARNING by default
def.checker = "COMPILER_WARNING";
DefEvent &keyEvt = def.events[def.keyEventIdx];
boost::smatch sm;
if (boost::regex_match(keyEvt.msg, sm, reTool_)) {
const std::string tool = sm[/* tool */ 2].str();
if (boost::regex_match(tool, reClang_))
// <--[clang] or <--[clang++]
def.checker = "CLANG_WARNING";
else if (tool == "shellcheck")
// <--[shellcheck]
def.checker = "SHELLCHECK_WARNING";
else if (tool == "smatch")
// <--[smatch]
def.checker = "SMATCH_WARNING";
else if (tool == "cppcheck" && !this->digCppcheckEvt(&def))
// <--[cppcheck] ... assume cppcheck running with --template=gcc
def.checker = "CPPCHECK_WARNING";
}
else if (boost::regex_match(keyEvt.event, reProspector_))
def.checker = "PROSPECTOR_WARNING";
else if (boost::regex_match(keyEvt.msg, reShellCheckMsg_))
def.checker = "SHELLCHECK_WARNING";
else if (boost::regex_match(keyEvt.msg, reSmatchMsg_))
def.checker = "SMATCH_WARNING";
else
// no <--[TOOL] suffix given
this->digCppcheckEvt(&def);
// drop the " <--[tool]" suffixes
for (DefEvent &evt : def.events)
if (boost::regex_match(evt.msg, sm, reTool_))
evt.msg = sm[/* msg */ 1];
// export the current state and clear the data for next iteration
*pDef = def;
def = Defect();
hasKeyEvent_ = false;
return true;
}
bool BasicGccParser::getNext(Defect *pDef)
{
bool done = false;
while (!done) {
DefEvent evt;
const EToken tok = tokenizer_.readNext(&evt);
switch (tok) {
case T_NULL:
if (!hasKeyEvent_ && !defCurrent_.events.empty())
// some events read prior to EOF, but we have no key event
this->handleError();
return this->exportAndReset(pDef);
case T_EMPTY:
continue;
case T_INC:
case T_SCOPE:
done = this->exportAndReset(pDef);
defCurrent_.events.push_back(evt);
break;
case T_MSG:
done = this->exportAndReset(pDef);
defCurrent_.keyEventIdx = defCurrent_.events.size();
defCurrent_.events.push_back(evt);
hasKeyEvent_ = true;
break;
case T_SIDEBAR:
case T_MARKER:
case T_UNKNOWN:
this->handleError();
continue;
}
}
return true;
}
bool BasicGccParser::hasError() const
{
return hasError_;
}
} // namespace GccParserImpl
using namespace GccParserImpl;
struct GccPostProcessor::Private {
const ImpliedAttrDigger digger;
void transGccAnal(Defect *pDef) const;
void transUbsan(Defect *pDef) const;
void polishGccAnal(Defect *pDef) const;
void polishClangAnal(Defect *pDef) const;
void transSuffixGeneric(Defect *pDef, const std::string, const RE &) const;
void transShellCheckId(Defect *pDef) const;
const RE reClangWarningEvt = RE("^(.*) (\\[[A-Za-z.]+\\])$");
const RE reGccAnalCoreEvt = RE("^(.*) (\\[-Wanalyzer-[^ \\]]+\\])$");
const RE reGccAnalCwe = RE("^(.*) \\[CWE-([0-9]+)\\]$");
const RE reGccAnalTraceEvt = RE("^\\([0-9]+\\) .*$$");
const RE reGccWarningEvt = RE("^(.*) (\\[-W[^ \\]]+\\])$");
const RE reShellCheckId = RE("(^.*) (\\[SC([0-9]+)\\])$");
};
GccPostProcessor::GccPostProcessor():
d(new Private)
{
}
GccPostProcessor::~GccPostProcessor()
{
delete d;
}
void GccPostProcessor::Private::transGccAnal(Defect *pDef) const
{
if ("COMPILER_WARNING" != pDef->checker)
return;
// check for [-Wanalyzer-...] suffix in message of the key event
DefEvent &keyEvt = pDef->events[pDef->keyEventIdx];
boost::smatch sm;
if (!boost::regex_match(keyEvt.msg, sm, this->reGccAnalCoreEvt))
return;
// COMPILER_WARNING -> GCC_ANALYZER_WARNING
pDef->checker = "GCC_ANALYZER_WARNING";
keyEvt.event += sm[/* id */ 2];
// this invalidates sm
keyEvt.msg = sm[/* msg */ 1];
// pick CWE number if available
if (!boost::regex_match(keyEvt.msg, sm, this->reGccAnalCwe))
return;
pDef->cwe = parseInt(sm[/* cwe */ 2]);
// this invalidates sm
keyEvt.msg = sm[/* msg */ 1];
}
void GccPostProcessor::Private::transUbsan(Defect *pDef) const
{
if ("COMPILER_WARNING" != pDef->checker)
return;
// UBSAN always uses 'runtime error' for its key event
DefEvent &keyEvt = pDef->events[pDef->keyEventIdx];
if (keyEvt.event != "runtime error")
return;
pDef->checker = "UBSAN_WARNING";
// UBSAN may only use the base name for the file path in its key event.
// However, the top of the backtrace, if present, always contains the
// whole path to this file.
if (!keyEvt.fileName.empty() && keyEvt.fileName.front() == '/')
return;
using path = boost::filesystem::path;
const auto &keyFileName = path(keyEvt.fileName).filename();
for (const auto &evt : pDef->events) {
const auto &evtFileName = path(evt.fileName).filename();
// check that the basenames and line numbers match
if (&keyEvt != &evt
&& keyFileName == evtFileName
&& keyEvt.line == evt.line)
{
keyEvt.fileName = evt.fileName;
break;
}
}
}
void GccPostProcessor::Private::polishGccAnal(Defect *pDef) const
{
if ("GCC_ANALYZER_WARNING" != pDef->checker)
return;
for (DefEvent &evt : pDef->events) {
if (evt.verbosityLevel != /* note */ 1 || evt.event != "note")
// not a "note" event
continue;
if (!boost::regex_match(evt.msg, this->reGccAnalTraceEvt))
// not a "trace" event either
continue;
evt.verbosityLevel = /* trace */ 2;
}
}
void GccPostProcessor::Private::polishClangAnal(Defect *pDef) const
{
if ("CLANG_WARNING" != pDef->checker)
return;
// FIXME: we should distinguish `clang --analyze` and clang compiler
for (DefEvent &evt : pDef->events) {
if (evt.verbosityLevel != /* note */ 1 || evt.event != "note")
// not a "note" event
continue;
evt.verbosityLevel = /* trace */ 2;
}
}
void GccPostProcessor::Private::transSuffixGeneric(
Defect *pDef,
const std::string checker,
const RE &reEvt)
const
{
if (checker != pDef->checker)
return;
// check for [...] suffix in message of the key event
DefEvent &keyEvt = pDef->events[pDef->keyEventIdx];
boost::smatch sm;
if (!boost::regex_match(keyEvt.msg, sm, reEvt))
return;
// append [...] to key event ID and remove it from event msg
keyEvt.event += sm[/* id */ 2];
// this invalidates sm
keyEvt.msg = sm[/* msg */ 1];
}
void GccPostProcessor::apply(Defect *pDef) const
{
d->transGccAnal(pDef);
d->transUbsan(pDef);
d->transSuffixGeneric(pDef, "CLANG_WARNING", d->reClangWarningEvt);
d->transSuffixGeneric(pDef, "COMPILER_WARNING", d->reGccWarningEvt);
d->transSuffixGeneric(pDef, "SHELLCHECK_WARNING", d->reShellCheckId);
d->polishGccAnal(pDef);
d->polishClangAnal(pDef);
d->digger.inferLangFromChecker(pDef, /* onlyIfMissing */ false);
d->digger.inferToolFromChecker(pDef, /* onlyIfMissing */ false);
}
struct GccParser::Private {
BasicGccParser core;
GccPostProcessor postProc;
Defect lastDef;
Private(InStream &input):
core(input)
{
}
bool checkMerge(DefEvent &keyEvt);
bool tryMerge(Defect *pDef);
const RE reLocation = RE("^this is the location.*$");
};
GccParser::GccParser(InStream &input):
d(new Private(input))
{
}
GccParser::~GccParser()
{
delete d;
}
bool GccParser::Private::checkMerge(DefEvent &keyEvt)
{
if (keyEvt.event == "#")
// can merge a comment
return true;
if (keyEvt.event == "note"
// shellcheck emits "note" always as key event with no context info
&& this->lastDef.checker != "SHELLCHECK_WARNING")
// can merge a "note" event
return true;
if (keyEvt.event != "warning")
// we know to merge only notes and warnings
return false;
// check whether the warning comes with a location only
if (!boost::regex_match(keyEvt.msg, this->reLocation))
return false;
// translate "warning" -> "note" so that we have an unambiguous key event
keyEvt.event = "note";
return true;
}
bool GccParser::Private::tryMerge(Defect *pDef)
{
TEvtList &lastEvts = this->lastDef.events;
DefEvent &lastKeyEvt = lastEvts[this->lastDef.keyEventIdx];
if (!this->checkMerge(lastKeyEvt))
// not something we can merge
return false;
if (pDef->checker != this->lastDef.checker && lastKeyEvt.event != "#")
// do not merge events of incompatible checkers
return false;
TEvtList &evts = pDef->events;
const DefEvent &keyEvt = evts[pDef->keyEventIdx];
if (keyEvt.event == "note")
// avoid using "note" as the key event
return false;
// concatenate the events and purge the last defect
std::copy(lastEvts.begin(), lastEvts.end(), std::back_inserter(evts));
lastEvts.clear();
return true;
}
bool GccParser::getNext(Defect *pDef)
{
// pick the last defect and clear the stash
*pDef = d->lastDef;
d->lastDef.events.clear();
if (pDef->events.size() <= pDef->keyEventIdx
// no valid last defect --> read a new one
&& !d->core.getNext(pDef))
// no valid current defect either
return false;
// defect merging loop
while (d->core.getNext(&d->lastDef) && d->tryMerge(pDef))
;
// initialize verbosityLevel
// FIXME: similar code to KeyEventDigger::initVerbosity()
TEvtList &evtList = pDef->events;
const unsigned evtCount = evtList.size();
const unsigned keyEventIdx = pDef->keyEventIdx;
for (unsigned idx = 0U; idx < evtCount; ++idx)
evtList[idx].verbosityLevel = (keyEventIdx != idx);
// apply final transformations
d->postProc.apply(pDef);
return true;
}
bool GccParser::hasError() const
{
return d->core.hasError();
}