2018-03-22 13:57:03 +01:00
|
|
|
/****************************************************************************
|
|
|
|
|
**
|
|
|
|
|
** Copyright (C) 2018 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.
|
|
|
|
|
**
|
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
|
|
#include "indexdataconsumer.h"
|
|
|
|
|
|
|
|
|
|
#include <clang/Basic/SourceLocation.h>
|
|
|
|
|
#include <clang/Index/IndexSymbol.h>
|
|
|
|
|
#include <clang/AST/Decl.h>
|
2018-03-22 17:46:43 +01:00
|
|
|
#include <clang/AST/DeclVisitor.h>
|
2018-03-22 13:57:03 +01:00
|
|
|
|
|
|
|
|
#include <llvm/ADT/ArrayRef.h>
|
|
|
|
|
|
|
|
|
|
namespace ClangBackEnd {
|
|
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
bool hasSymbolRole(clang::index::SymbolRole role, clang::index::SymbolRoleSet roleSet)
|
|
|
|
|
{
|
|
|
|
|
return roleSet & static_cast<clang::index::SymbolRoleSet>(role);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Utils::SmallString symbolName(const clang::NamedDecl *declaration)
|
|
|
|
|
{
|
2018-03-29 18:44:02 +02:00
|
|
|
clang::DeclarationName declarationName(declaration->getIdentifier());
|
|
|
|
|
|
|
|
|
|
return declarationName.getAsString();
|
2018-03-22 13:57:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SymbolType symbolType(clang::index::SymbolRoleSet roles)
|
|
|
|
|
{
|
|
|
|
|
if (hasSymbolRole(clang::index::SymbolRole::Reference, roles))
|
|
|
|
|
return SymbolType::DeclarationReference;
|
|
|
|
|
else if (hasSymbolRole(clang::index::SymbolRole::Declaration, roles))
|
|
|
|
|
return SymbolType::Declaration;
|
|
|
|
|
else if (hasSymbolRole(clang::index::SymbolRole::Definition, roles))
|
|
|
|
|
return SymbolType::Definition;
|
|
|
|
|
|
|
|
|
|
return SymbolType::None;
|
|
|
|
|
}
|
|
|
|
|
|
2018-03-22 17:46:43 +01:00
|
|
|
using SymbolKindAndTags = std::pair<SymbolKind, SymbolTags>;
|
|
|
|
|
|
|
|
|
|
class IndexingDeclVisitor : public clang::ConstDeclVisitor<IndexingDeclVisitor, SymbolKindAndTags>
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
SymbolKindAndTags VisitTagDecl(const clang::TagDecl *declaration)
|
|
|
|
|
{
|
|
|
|
|
SymbolKindAndTags result = {SymbolKind::Tag, {}};
|
|
|
|
|
switch (declaration->getTagKind()) {
|
|
|
|
|
case clang::TTK_Struct: result.second.push_back(SymbolTag::Struct); break;
|
|
|
|
|
case clang::TTK_Interface: result.second.push_back(SymbolTag::MsvcInterface); break;
|
|
|
|
|
case clang::TTK_Union: result.second.push_back(SymbolTag::Union); break;
|
|
|
|
|
case clang::TTK_Class: result.second.push_back(SymbolTag::Class); break;
|
|
|
|
|
case clang::TTK_Enum: result.second.push_back(SymbolTag::Enumeration); break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SymbolKindAndTags VisitFunctionDecl(const clang::FunctionDecl*)
|
|
|
|
|
{
|
|
|
|
|
return {SymbolKind::Function, {}};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SymbolKindAndTags VisitVarDecl(const clang::VarDecl*)
|
|
|
|
|
{
|
|
|
|
|
return {SymbolKind::Variable, {}};
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
SymbolKindAndTags symbolKindAndTags(const clang::Decl *declaration)
|
|
|
|
|
{
|
|
|
|
|
static IndexingDeclVisitor visitor;
|
|
|
|
|
return visitor.Visit(declaration);
|
|
|
|
|
}
|
2018-03-22 13:57:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool IndexDataConsumer::handleDeclOccurence(const clang::Decl *declaration,
|
|
|
|
|
clang::index::SymbolRoleSet symbolRoles,
|
|
|
|
|
llvm::ArrayRef<clang::index::SymbolRelation> symbolRelations,
|
|
|
|
|
clang::FileID fileId,
|
|
|
|
|
unsigned offset,
|
|
|
|
|
IndexDataConsumer::ASTNodeInfo astNodeInfo)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
const auto *namedDeclaration = clang::dyn_cast<clang::NamedDecl>(declaration);
|
|
|
|
|
if (namedDeclaration) {
|
|
|
|
|
if (!namedDeclaration->getIdentifier())
|
|
|
|
|
return true;
|
|
|
|
|
|
|
|
|
|
SymbolIndex globalId = toSymbolIndex(declaration->getCanonicalDecl());
|
|
|
|
|
clang::SourceLocation sourceLocation = m_sourceManager->getLocForStartOfFile(fileId).getLocWithOffset(offset);
|
|
|
|
|
|
|
|
|
|
auto found = m_symbolEntries.find(globalId);
|
|
|
|
|
if (found == m_symbolEntries.end()) {
|
|
|
|
|
Utils::optional<Utils::PathString> usr = generateUSR(namedDeclaration);
|
|
|
|
|
if (usr) {
|
2018-03-22 17:46:43 +01:00
|
|
|
auto kindAndTags = symbolKindAndTags(declaration);
|
2018-03-22 13:57:03 +01:00
|
|
|
m_symbolEntries.emplace(std::piecewise_construct,
|
|
|
|
|
std::forward_as_tuple(globalId),
|
2018-03-22 17:46:43 +01:00
|
|
|
std::forward_as_tuple(std::move(usr.value()),
|
|
|
|
|
symbolName(namedDeclaration),
|
|
|
|
|
kindAndTags.first,
|
|
|
|
|
kindAndTags.second));
|
2018-03-22 13:57:03 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
m_sourceLocationEntries.emplace_back(globalId,
|
|
|
|
|
filePathId(sourceLocation),
|
|
|
|
|
lineColum(sourceLocation),
|
|
|
|
|
symbolType(symbolRoles));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} // namespace ClangBackEnd
|