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
|
/*
* Copyright 2014 Olivier de Gaalon <olivier.jg@gmail.com>
* Copyright 2014 Milian Wolff <mail@milianw.de>
*
* 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 2 of
* the License or (at your option) version 3 or any later version
* accepted by the membership of KDE e.V. (or its successor approved
* by the membership of KDE e.V.), which shall act as a proxy
* defined in Section 14 of version 3 of the license.
*
* 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 "clanghelpers.h"
#include <language/duchain/duchain.h>
#include <language/duchain/duchainlock.h>
#include <language/duchain/declaration.h>
#include <language/duchain/parsingenvironment.h>
#include <language/backgroundparser/urlparselock.h>
#include "builder.h"
#include "parsesession.h"
#include "clangparsingenvironmentfile.h"
#include "clangindex.h"
#include "clangducontext.h"
#include "util/clangdebug.h"
#include "util/clangtypes.h"
#include "libclang_include_path.h"
#include <QCoreApplication>
#include <QDir>
#include <QFileInfo>
#include <QRegularExpression>
#include <algorithm>
using namespace KDevelop;
namespace {
CXChildVisitResult visitCursor(CXCursor cursor, CXCursor, CXClientData data)
{
if (cursor.kind != CXCursor_InclusionDirective) {
return CXChildVisit_Continue;
}
auto imports = static_cast<Imports*>(data);
CXFile file = clang_getIncludedFile(cursor);
if(!file){
return CXChildVisit_Continue;
}
CXSourceLocation location = clang_getCursorLocation(cursor);
CXFile parentFile;
uint line, column;
clang_getFileLocation(location, &parentFile, &line, &column, nullptr);
foreach (const auto& import, imports->values(parentFile)) {
// clang_getInclusions doesn't include the same import twice, so we shouldn't do it too.
if (import.file == file) {
return CXChildVisit_Continue;
}
}
imports->insert(parentFile, {file, CursorInRevision(line-1, column-1)});
return CXChildVisit_Recurse;
}
ReferencedTopDUContext createTopContext(const IndexedString& path, const ClangParsingEnvironment& environment)
{
ClangParsingEnvironmentFile* file = new ClangParsingEnvironmentFile(path, environment);
ReferencedTopDUContext context = new ClangTopDUContext(path, RangeInRevision(0, 0, INT_MAX, INT_MAX), file);
DUChain::self()->addDocumentChain(context);
context->updateImportsCache();
return context;
}
}
Imports ClangHelpers::tuImports(CXTranslationUnit tu)
{
Imports imports;
// Intentionally don't use clang_getInclusions here, as it skips already visited inclusions
// which makes TestDUChain::testNestedImports fail
CXCursor tuCursor = clang_getTranslationUnitCursor(tu);
clang_visitChildren(tuCursor, &visitCursor, &imports);
return imports;
}
bool importLocationLessThan(const Import& lhs, const Import& rhs)
{
return lhs.location.line < rhs.location.line;
}
ReferencedTopDUContext ClangHelpers::buildDUChain(CXFile file, const Imports& imports, const ParseSession& session,
TopDUContext::Features features, IncludeFileContexts& includedFiles,
ClangIndex* index, const std::function<bool()>& abortFunction)
{
if (includedFiles.contains(file)) {
return {};
}
if (abortFunction && abortFunction()) {
return {};
}
// prevent recursion
includedFiles.insert(file, {});
// ensure DUChain for imports are built properly, and in correct order
QList<Import> sortedImports = imports.values(file);
std::sort(sortedImports.begin(), sortedImports.end(), importLocationLessThan);
foreach(const auto& import, sortedImports) {
buildDUChain(import.file, imports, session, features, includedFiles, index, abortFunction);
}
const IndexedString path(QDir(ClangString(clang_getFileName(file)).toString()).canonicalPath());
if (path.isEmpty()) {
// may happen when the file gets removed before the job is run
return {};
}
const auto& environment = session.environment();
bool update = false;
UrlParseLock urlLock(path);
ReferencedTopDUContext context;
{
DUChainWriteLocker lock;
context = DUChain::self()->chainForDocument(path, &environment);
if (!context) {
context = ::createTopContext(path, environment);
} else {
update = true;
}
includedFiles.insert(file, context);
if (update) {
auto envFile = ClangParsingEnvironmentFile::Ptr(dynamic_cast<ClangParsingEnvironmentFile*>(context->parsingEnvironmentFile().data()));
Q_ASSERT(envFile);
if (!envFile)
return context;
/* NOTE: When we are here, then either the translation unit or one of its headers was changed.
* Thus we must always update the translation unit to propagate the change(s).
* See also: https://bugs.kde.org/show_bug.cgi?id=356327
* This assumes that headers are independent, we may need to improve that in the future
* and also update header files more often when other files included therein got updated.
*/
if (path != environment.translationUnitUrl() && !envFile->needsUpdate(&environment) && envFile->featuresSatisfied(features)) {
return context;
} else {
//TODO: don't attempt to update if this environment is worse quality than the outdated one
if (index && envFile->environmentQuality() < environment.quality()) {
index->pinTranslationUnitForUrl(environment.translationUnitUrl(), path);
}
envFile->setEnvironment(environment);
envFile->setModificationRevision(ModificationRevision::revisionForFile(context->url()));
}
context->clearImportedParentContexts();
}
context->setFeatures(features);
foreach(const auto& import, sortedImports) {
auto ctx = includedFiles.value(import.file);
if (!ctx) {
// happens for cyclic imports
continue;
}
context->addImportedParentContext(ctx, import.location);
}
context->updateImportsCache();
}
const auto problems = session.problemsForFile(file);
{
DUChainWriteLocker lock;
context->setProblems(problems);
}
Builder::visit(session.unit(), file, includedFiles, update);
DUChain::self()->emitUpdateReady(path, context);
return context;
}
DeclarationPointer ClangHelpers::findDeclaration(CXSourceLocation location, const QualifiedIdentifier& id, const ReferencedTopDUContext& top)
{
if (!top) {
// may happen for cyclic includes
return {};
}
auto cursor = CursorInRevision(ClangLocation(location));
DUChainReadLocker lock;
if (!id.isEmpty()) {
const auto& decls = top->findDeclarations(id);
for (Declaration* decl : decls) {
if (decl->range().contains(cursor) ||
(decl->range().isEmpty() && decl->range().start == cursor))
{
return DeclarationPointer(decl);
}
}
}
// there was no match based on the IDs, try the classical
// range based search (very slow)
Q_ASSERT(top);
if (DUContext *local = top->findContextAt(cursor)) {
if (local->owner() && local->owner()->range().contains(cursor)) {
return DeclarationPointer(local->owner());
}
return DeclarationPointer(local->findDeclarationAt(cursor));
}
return {};
}
DeclarationPointer ClangHelpers::findDeclaration(CXCursor cursor, const IncludeFileContexts& includes)
{
auto location = clang_getCursorLocation(cursor);
CXFile file = nullptr;
clang_getFileLocation(location, &file, nullptr, nullptr, nullptr);
if (!file) {
return {};
}
// build a qualified identifier by following the chain of semantic parents
QList<Identifier> ids;
CXCursor currentCursor = cursor;
while (currentCursor.kind != CXCursor_TranslationUnit &&
currentCursor.kind != CXCursor_InvalidFile)
{
ids << Identifier(ClangString(clang_getCursorSpelling(currentCursor)).toString());
currentCursor = clang_getCursorSemanticParent(currentCursor);
}
QualifiedIdentifier qid;
for (int i = ids.size()-1; i >= 0; --i)
{
qid.push(ids[i]);
}
return findDeclaration(location, qid, includes.value(file));
}
DeclarationPointer ClangHelpers::findDeclaration(CXType type, const IncludeFileContexts& includes)
{
CXCursor cursor = clang_getTypeDeclaration(type);
return findDeclaration(cursor, includes);
}
DeclarationPointer ClangHelpers::findForwardDeclaration(CXType type, DUContext* context, CXCursor cursor)
{
if(type.kind != CXType_Record && type.kind != CXType_ObjCInterface && type.kind != CXType_ObjCClass){
return {};
}
auto qualifiedIdentifier = QualifiedIdentifier(ClangString(clang_getTypeSpelling(type)).toString());
DUChainReadLocker lock;
const auto decls = context->findDeclarations(qualifiedIdentifier,
CursorInRevision(ClangLocation(clang_getCursorLocation(cursor)))
);
for (auto decl : decls) {
if (decl->isForwardDeclaration()) {
return DeclarationPointer(decl);
}
}
return {};
}
RangeInRevision ClangHelpers::cursorSpellingNameRange(CXCursor cursor, const Identifier& id)
{
auto range = ClangRange(clang_Cursor_getSpellingNameRange(cursor, 0, 0)).toRangeInRevision();
#if CINDEX_VERSION_MINOR < 29
auto kind = clang_getCursorKind(cursor);
// Clang used to report invalid ranges for destructors and methods like 'operator='
if (kind == CXCursor_Destructor || kind == CXCursor_CXXMethod) {
range.end.column = range.start.column + id.toString().length();
}
#endif
Q_UNUSED(id);
return range;
}
QStringList ClangHelpers::headerExtensions()
{
static const QStringList headerExtensions = {
QStringLiteral("h"),
QStringLiteral("H"),
QStringLiteral("hh"),
QStringLiteral("hxx"),
QStringLiteral("hpp"),
QStringLiteral("tlh"),
QStringLiteral("h++"),
};
return headerExtensions;
}
QStringList ClangHelpers::sourceExtensions()
{
static const QStringList sourceExtensions = {
QStringLiteral("c"),
QStringLiteral("cc"),
QStringLiteral("cpp"),
QStringLiteral("c++"),
QStringLiteral("cxx"),
QStringLiteral("C"),
QStringLiteral("m"),
QStringLiteral("mm"),
QStringLiteral("M"),
QStringLiteral("inl"),
QStringLiteral("_impl.h"),
};
return sourceExtensions;
}
bool ClangHelpers::isSource(const QString& path)
{
const auto& extensions = sourceExtensions();
return std::any_of(extensions.constBegin(), extensions.constEnd(),
[&](const QString& ext) { return path.endsWith(ext); });
}
bool ClangHelpers::isHeader(const QString& path)
{
const auto& extensions = headerExtensions();
return std::any_of(extensions.constBegin(), extensions.constEnd(),
[&](const QString& ext) { return path.endsWith(ext); });
}
QString ClangHelpers::clangVersion()
{
static const auto clangVersion = []() -> QString {
// NOTE: The apidocs for clang_getClangVersion() clearly state it shouldn't be used for parsing
// but there's no other way to retrieve the Clang version at runtime at this point...
const ClangString version(clang_getClangVersion());
clangDebug() << "Full Clang version:" << version;
// samples:
// clang version 6.0.1 (trunk 321709) (git@github.com:llvm-mirror/llvm.git 5136df4d089a086b70d452160ad5451861269498)
// clang version 7.0.0-svn341916-1~exp1~20180911115939.26 (branches/release_70)
QRegularExpression re(QStringLiteral("^clang version (\\d+\\.\\d+\\.\\d+)"));
const auto match = re.match(version.toString());
if (!match.hasMatch())
return {};
return match.captured(1); // return e.g. 7.0.0
}();
return clangVersion;
}
QString ClangHelpers::clangBuiltinIncludePath()
{
static const auto dir = []() -> QString {
auto dir = QString::fromUtf8(qgetenv("KDEV_CLANG_BUILTIN_DIR"));
if (!dir.isEmpty()) {
clangDebug() << "Using dir from $KDEV_CLANG_BUILTIN_DIR:" << dir;
return dir;
}
#ifdef Q_OS_WIN32
// attempt to use the bundled copy on Windows
dir = QDir::cleanPath(QStringLiteral("%1/../lib/clang/%2/include")
.arg(QCoreApplication::applicationDirPath(), clangVersion()));
clangDebug() << "Trying" << dir;
if (QFileInfo(dir).isDir()) {
return dir;
}
#endif
clangDebug() << "Using builtin dir:" << KDEV_CLANG_BUILTIN_DIR;
return QString::fromUtf8(KDEV_CLANG_BUILTIN_DIR);
}();
return dir;
}
|