-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcheckbase.cpp
215 lines (173 loc) · 5.99 KB
/
checkbase.cpp
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
/*
This file is part of the clazy static checker.
Copyright (C) 2015 Klarälvdalens Datakonsult AB, a KDAB Group company, [email protected]
Author: Sérgio Martins <[email protected]>
Copyright (C) 2015 Sergio Martins <[email protected]>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library 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
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
#include "checkbase.h"
#include "StringUtils.h"
#include <clang/AST/Decl.h>
#include <clang/AST/DeclCXX.h>
#include <clang/AST/ASTContext.h>
#include <clang/AST/ParentMap.h>
#include <clang/Rewrite/Frontend/FixItRewriter.h>
#include <vector>
using namespace clang;
using namespace std;
CheckBase::CheckBase(const string &name, const CompilerInstance &ci)
: m_ci(ci)
, m_name(name)
, m_lastDecl(nullptr)
, m_lastStmt(nullptr)
, m_enabledFixits(0)
{
ASTContext &context = m_ci.getASTContext();
m_tu = context.getTranslationUnitDecl();
m_lastMethodDecl = nullptr;
}
CheckBase::~CheckBase()
{
}
void CheckBase::VisitStatement(Stmt *stm)
{
if (!shouldIgnoreFile(stm->getLocStart())) {
m_lastStmt = stm;
VisitStmt(stm);
}
}
void CheckBase::VisitDeclaration(Decl *decl)
{
if (shouldIgnoreFile(decl->getLocStart()))
return;
m_lastDecl = decl;
auto mdecl = dyn_cast<CXXMethodDecl>(decl);
if (mdecl)
m_lastMethodDecl = mdecl;
VisitDecl(decl);
}
string CheckBase::name() const
{
return m_name;
}
void CheckBase::setParentMap(ParentMap *parentMap)
{
m_parentMap = parentMap;
}
void CheckBase::VisitStmt(Stmt *)
{
}
void CheckBase::VisitDecl(Decl *)
{
}
bool CheckBase::shouldIgnoreFile(SourceLocation loc) const
{
if (!loc.isValid() || (ignoresAstNodesInSystemHeaders() && sm().isInSystemHeader(loc)))
return true;
string filename = sm().getFilename(loc);
return clazy_std::any_of(filesToIgnore(), [filename](const std::string &ignored) {
return clazy_std::contains(filename, ignored);
});
}
std::vector<std::string> CheckBase::filesToIgnore() const
{
return {};
}
void CheckBase::emitWarning(clang::Decl *d, const std::string &error, bool printWarningTag)
{
emitWarning(d->getLocStart(), error, printWarningTag);
}
void CheckBase::emitWarning(clang::Stmt *s, const std::string &error, bool printWarningTag)
{
emitWarning(s->getLocStart(), error, printWarningTag);
}
void CheckBase::emitWarning(clang::SourceLocation loc, std::string error, bool printWarningTag)
{
emitWarning(loc, error, {}, printWarningTag);
}
void CheckBase::emitWarning(clang::SourceLocation loc, std::string error, const vector<FixItHint> &fixits, bool printWarningTag)
{
if (loc.isMacroID()) {
if (warningAlreadyEmitted(loc))
return; // For warnings in macro arguments we get a warning in each place the argument is used within the expanded macro, so filter all the dups
m_emittedWarningsInMacro.push_back(loc.getRawEncoding());
}
const string tag = " [-Wclazy-" + name() + ']';
if (printWarningTag)
error += tag;
reallyEmitWarning(loc, error, fixits);
for (const auto& l : m_queuedManualInterventionWarnings) {
string msg = string("FixIt failed, requires manual intervention: ");
if (!l.second.empty())
msg += ' ' + l.second;
reallyEmitWarning(l.first, msg + tag, {});
}
m_queuedManualInterventionWarnings.clear();
}
void CheckBase::reallyEmitWarning(clang::SourceLocation loc, const std::string &error, const vector<FixItHint> &fixits)
{
FullSourceLoc full(loc, sm());
unsigned id = m_ci.getDiagnostics().getDiagnosticIDs()->getCustomDiagID(DiagnosticIDs::Warning, error.c_str());
DiagnosticBuilder B = m_ci.getDiagnostics().Report(full, id);
for (const FixItHint& fixit : fixits) {
if (!fixit.isNull())
B.AddFixItHint(fixit);
}
}
void CheckBase::queueManualFixitWarning(clang::SourceLocation loc, int fixitType, const string &message)
{
if (isFixitEnabled(fixitType) && !manualFixitAlreadyQueued(loc)) {
m_queuedManualInterventionWarnings.push_back({loc, message});
m_emittedManualFixItsWarningsInMacro.push_back(loc.getRawEncoding());
}
}
bool CheckBase::warningAlreadyEmitted(SourceLocation loc) const
{
PresumedLoc ploc = sm().getPresumedLoc(loc);
for (auto rawLoc : m_emittedWarningsInMacro) {
SourceLocation l = SourceLocation::getFromRawEncoding(rawLoc);
PresumedLoc p = sm().getPresumedLoc(l);
if (Utils::presumedLocationsEqual(p, ploc))
return true;
}
return false;
}
bool CheckBase::manualFixitAlreadyQueued(SourceLocation loc) const
{
PresumedLoc ploc = sm().getPresumedLoc(loc);
for (auto loc : m_emittedManualFixItsWarningsInMacro) {
SourceLocation l = SourceLocation::getFromRawEncoding(loc);
PresumedLoc p = sm().getPresumedLoc(l);
if (Utils::presumedLocationsEqual(p, ploc))
return true;
}
return false;
}
std::vector<string> CheckBase::supportedOptions() const
{
return {};
}
bool CheckBase::isOptionSet(const std::string &optionName) const
{
const string qualifiedName = name() + '-' + optionName;
return CheckManager::instance()->isOptionSet(qualifiedName);
}
void CheckBase::setEnabledFixits(int fixits)
{
m_enabledFixits = fixits;
}
bool CheckBase::isFixitEnabled(int fixit) const
{
return (m_enabledFixits & fixit) || CheckManager::instance()->allFixitsEnabled();
}