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
|
//===--- StoreSymbolRecord.cpp --------------------------------------------===//
//
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2018 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See https://swift.org/LICENSE.txt for license information
// See https://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
//
//===----------------------------------------------------------------------===//
#include "StoreSymbolRecord.h"
#include "IndexDatastore.h"
#include "IndexStoreDB/Database/Database.h"
#include "IndexStoreDB/Support/Logging.h"
#include "IndexStoreDB/Support/Path.h"
#include "llvm/ADT/ArrayRef.h"
#include "llvm/Support/FileSystem.h"
#include "llvm/Support/Path.h"
#include "llvm/Support/raw_ostream.h"
using namespace IndexStoreDB;
using namespace IndexStoreDB::db;
using namespace IndexStoreDB::index;
using namespace indexstore;
using namespace llvm;
static SymbolLanguage convertStoreLanguage(indexstore_symbol_language_t storeLang) {
switch(storeLang) {
case INDEXSTORE_SYMBOL_LANG_C:
return SymbolLanguage::C;
case INDEXSTORE_SYMBOL_LANG_OBJC:
return SymbolLanguage::ObjC;
case INDEXSTORE_SYMBOL_LANG_CXX:
return SymbolLanguage::CXX;
case INDEXSTORE_SYMBOL_LANG_SWIFT:
return SymbolLanguage::Swift;
default:
return SymbolLanguage::C; // fallback.
}
}
static SymbolKind convertStoreSymbolKind(indexstore_symbol_kind_t storeKind) {
switch(storeKind) {
case INDEXSTORE_SYMBOL_KIND_MODULE:
return SymbolKind::Module;
case INDEXSTORE_SYMBOL_KIND_NAMESPACE:
return SymbolKind::Namespace;
case INDEXSTORE_SYMBOL_KIND_NAMESPACEALIAS:
return SymbolKind::NamespaceAlias;
case INDEXSTORE_SYMBOL_KIND_MACRO:
return SymbolKind::Macro;
case INDEXSTORE_SYMBOL_KIND_ENUM:
return SymbolKind::Enum;
case INDEXSTORE_SYMBOL_KIND_STRUCT:
return SymbolKind::Struct;
case INDEXSTORE_SYMBOL_KIND_CLASS:
return SymbolKind::Class;
case INDEXSTORE_SYMBOL_KIND_PROTOCOL:
return SymbolKind::Protocol;
case INDEXSTORE_SYMBOL_KIND_EXTENSION:
return SymbolKind::Extension;
case INDEXSTORE_SYMBOL_KIND_UNION:
return SymbolKind::Union;
case INDEXSTORE_SYMBOL_KIND_TYPEALIAS:
return SymbolKind::TypeAlias;
case INDEXSTORE_SYMBOL_KIND_FUNCTION:
return SymbolKind::Function;
case INDEXSTORE_SYMBOL_KIND_VARIABLE:
return SymbolKind::Variable;
case INDEXSTORE_SYMBOL_KIND_FIELD:
return SymbolKind::Field;
case INDEXSTORE_SYMBOL_KIND_ENUMCONSTANT:
return SymbolKind::EnumConstant;
case INDEXSTORE_SYMBOL_KIND_INSTANCEMETHOD:
return SymbolKind::InstanceMethod;
case INDEXSTORE_SYMBOL_KIND_CLASSMETHOD:
return SymbolKind::ClassMethod;
case INDEXSTORE_SYMBOL_KIND_STATICMETHOD:
return SymbolKind::StaticMethod;
case INDEXSTORE_SYMBOL_KIND_INSTANCEPROPERTY:
return SymbolKind::InstanceProperty;
case INDEXSTORE_SYMBOL_KIND_CLASSPROPERTY:
return SymbolKind::ClassProperty;
case INDEXSTORE_SYMBOL_KIND_STATICPROPERTY:
return SymbolKind::StaticProperty;
case INDEXSTORE_SYMBOL_KIND_CONSTRUCTOR:
return SymbolKind::Constructor;
case INDEXSTORE_SYMBOL_KIND_DESTRUCTOR:
return SymbolKind::Destructor;
case INDEXSTORE_SYMBOL_KIND_CONVERSIONFUNCTION:
return SymbolKind::ConversionFunction;
case INDEXSTORE_SYMBOL_KIND_PARAMETER:
return SymbolKind::Parameter;
case INDEXSTORE_SYMBOL_KIND_COMMENTTAG:
return SymbolKind::CommentTag;
case INDEXSTORE_SYMBOL_KIND_CONCEPT:
return SymbolKind::Concept;
default:
return SymbolKind::Unknown;
}
}
static SymbolSubKind convertStoreSymbolSubKind(indexstore_symbol_subkind_t storeKind) {
switch (storeKind) {
case INDEXSTORE_SYMBOL_SUBKIND_CXXCOPYCONSTRUCTOR:
return SymbolSubKind::CXXCopyConstructor;
case INDEXSTORE_SYMBOL_SUBKIND_CXXMOVECONSTRUCTOR:
return SymbolSubKind::CXXMoveConstructor;
case INDEXSTORE_SYMBOL_SUBKIND_ACCESSORGETTER:
return SymbolSubKind::AccessorGetter;
case INDEXSTORE_SYMBOL_SUBKIND_ACCESSORSETTER:
return SymbolSubKind::AccessorSetter;
case INDEXSTORE_SYMBOL_SUBKIND_SWIFTACCESSORWILLSET:
return SymbolSubKind::SwiftAccessorWillSet;
case INDEXSTORE_SYMBOL_SUBKIND_SWIFTACCESSORDIDSET:
return SymbolSubKind::SwiftAccessorDidSet;
case INDEXSTORE_SYMBOL_SUBKIND_SWIFTACCESSORADDRESSOR:
return SymbolSubKind::SwiftAccessorAddressor;
case INDEXSTORE_SYMBOL_SUBKIND_SWIFTACCESSORMUTABLEADDRESSOR:
return SymbolSubKind::SwiftAccessorMutableAddressor;
case INDEXSTORE_SYMBOL_SUBKIND_SWIFTEXTENSIONOFSTRUCT:
return SymbolSubKind::SwiftExtensionOfStruct;
case INDEXSTORE_SYMBOL_SUBKIND_SWIFTEXTENSIONOFCLASS:
return SymbolSubKind::SwiftExtensionOfClass;
case INDEXSTORE_SYMBOL_SUBKIND_SWIFTEXTENSIONOFENUM:
return SymbolSubKind::SwiftExtensionOfEnum;
case INDEXSTORE_SYMBOL_SUBKIND_SWIFTEXTENSIONOFPROTOCOL:
return SymbolSubKind::SwiftExtensionOfProtocol;
case INDEXSTORE_SYMBOL_SUBKIND_SWIFTPREFIXOPERATOR:
return SymbolSubKind::SwiftPrefixOperator;
case INDEXSTORE_SYMBOL_SUBKIND_SWIFTPOSTFIXOPERATOR:
return SymbolSubKind::SwiftPostfixOperator;
case INDEXSTORE_SYMBOL_SUBKIND_SWIFTINFIXOPERATOR:
return SymbolSubKind::SwiftInfixOperator;
case INDEXSTORE_SYMBOL_SUBKIND_SWIFTSUBSCRIPT:
return SymbolSubKind::SwiftSubscript;
case INDEXSTORE_SYMBOL_SUBKIND_SWIFTASSOCIATEDTYPE:
return SymbolSubKind::SwiftAssociatedType;
case INDEXSTORE_SYMBOL_SUBKIND_SWIFTGENERICTYPEPARAM:
return SymbolSubKind::SwiftGenericTypeParam;
default:
return SymbolSubKind::None;
}
}
static SymbolInfo getSymbolInfo(IndexRecordSymbol sym) {
return SymbolInfo{ convertStoreSymbolKind(sym.getKind()),
convertStoreSymbolSubKind(sym.getSubKind()),
SymbolPropertySet(sym.getProperties()),
convertStoreLanguage(sym.getLanguage()) };
}
static SymbolRef convertSymbol(IndexRecordSymbol sym) {
return std::make_shared<Symbol>(getSymbolInfo(sym),
sym.getName(), sym.getUSR());
}
static SymbolRoleSet convertFromIndexStoreRoles(uint64_t Roles, bool isCanonical) {
SymbolRoleSet newRoles = SymbolRoleSet(Roles);
if (isCanonical)
newRoles |= SymbolRole::Canonical;
return newRoles;
}
static SymbolRoleSet convertFromIndexStoreRoles(uint64_t Roles, const SymbolInfo &sym) {
bool isCanonical;
if (sym.preferDeclarationAsCanonical())
isCanonical = Roles & INDEXSTORE_SYMBOL_ROLE_DECLARATION;
else
isCanonical = Roles & INDEXSTORE_SYMBOL_ROLE_DEFINITION;
return convertFromIndexStoreRoles(Roles, isCanonical);
}
StoreSymbolRecord::~StoreSymbolRecord() {
// llvm::errs() << "Destructing record: " << RecordName << '\n';
}
std::shared_ptr<StoreSymbolRecord>
StoreSymbolRecord::create(IndexStoreRef store,
StringRef recordName, IDCode providerCode,
SymbolProviderKind symProviderKind,
ArrayRef<FileAndTarget> fileReferences) {
auto Rec = std::make_shared<StoreSymbolRecord>();
Rec->Store = std::move(store);
Rec->RecordName = recordName;
Rec->ProviderCode = providerCode;
Rec->SymProviderKind = symProviderKind;
Rec->FileAndTargetRefs = fileReferences;
return Rec;
}
bool StoreSymbolRecord::doForData(function_ref<void(IndexRecordReader &)> Action) {
// FIXME: Cache this using libcache ? We may need to repeat searches.
std::string Error;
auto Reader = IndexRecordReader(*Store, RecordName, Error);
if (!Reader) {
LOG_WARN_FUNC("error reading record '"<< RecordName <<"': " << Error);
return true;
}
Action(Reader);
return false;
}
namespace {
class OccurrenceConverter {
function_ref<bool(SymbolOccurrenceRef Occur)> Receiver;
std::vector<FileAndTarget> FileAndTargetRefs;
SymbolProviderKind SymProviderKind;
public:
OccurrenceConverter(StoreSymbolRecord &SymRecord,
function_ref<bool(SymbolOccurrenceRef Occur)> Receiver)
: Receiver(std::move(Receiver)) {
FileAndTargetRefs = SymRecord.getSourceFileReferencesAndTargets();
SymProviderKind = SymRecord.getProviderKind();
}
bool operator()(IndexRecordOccurrence RecSym) {
auto Sym = convertSymbol(RecSym.getSymbol());
SymbolRoleSet OccurRoles = convertFromIndexStoreRoles(RecSym.getRoles(), Sym->getSymbolInfo());
SmallVector<SymbolRelation, 4> Relations;
RecSym.foreachRelation([&](IndexSymbolRelation Rel) -> bool {
SymbolRoleSet Roles = convertFromIndexStoreRoles(Rel.getRoles(), /*isCanonical=*/false);
SymbolRef RelSym = convertSymbol(Rel.getSymbol());
Relations.emplace_back(Roles, std::move(RelSym));
return true;
});
for (auto &FileRef : FileAndTargetRefs) {
auto LineCol = RecSym.getLineCol();
SymbolLocation SymLoc(FileRef.Path, LineCol.first, LineCol.second);
auto Occur = std::make_shared<SymbolOccurrence>(Sym, OccurRoles,
std::move(SymLoc),
SymProviderKind,
FileRef.Target,
Relations);
bool Continue = Receiver(std::move(Occur));
if (!Continue)
return false;
}
return true;
}
};
class PredOccurrenceConverter {
function_ref<bool(IndexRecordOccurrence)> Predicate;
OccurrenceConverter Converter;
public:
PredOccurrenceConverter(StoreSymbolRecord &SymRecord,
function_ref<bool(IndexRecordOccurrence)> Predicate,
function_ref<bool(SymbolOccurrenceRef Occur)> Receiver)
: Predicate(std::move(Predicate)),
Converter(SymRecord, Receiver) { }
bool operator()(IndexRecordOccurrence RecSym) {
if (Predicate(RecSym) == false)
return true;
return Converter(RecSym);
}
};
}
bool StoreSymbolRecord::isSystem() const {
if (FileAndTargetRefs.empty())
return false;
return FileAndTargetRefs.front().Path.isSystem();
}
bool StoreSymbolRecord::foreachCoreSymbolData(function_ref<bool(StringRef USR,
StringRef Name,
SymbolInfo Info,
SymbolRoleSet Roles,
SymbolRoleSet RelatedRoles)> Receiver) {
bool Finished;
bool Err = doForData([&](IndexRecordReader &Reader) {
Finished = Reader.foreachSymbol(/*noCache=*/true, [&](IndexRecordSymbol sym)->bool {
auto symInfo = getSymbolInfo(sym);
return Receiver(sym.getUSR(), sym.getName(), symInfo,
convertFromIndexStoreRoles(sym.getRoles(), symInfo),
convertFromIndexStoreRoles(sym.getRelatedRoles(), /*isCanonical=*/false));
});
});
return !Err && Finished;
}
bool StoreSymbolRecord::foreachSymbolOccurrence(function_ref<bool(SymbolOccurrenceRef Occur)> Receiver) {
bool Finished;
bool Err = doForData([&](IndexRecordReader &Reader) {
// Return all occurrences.
auto Pred = [](IndexRecordOccurrence) -> bool { return true; };
PredOccurrenceConverter Converter(*this, Pred, Receiver);
Finished = Reader.foreachOccurrence(/*symbolsFilter=*/None,
/*relatedSymbolsFilter=*/None,
Converter);
});
return !Err && Finished;
}
static void searchDeclsByUSR(IndexRecordReader &Reader,
ArrayRef<db::IDCode> USRs,
SmallVectorImpl<IndexRecordSymbol> &FoundDecls) {
SmallVector<db::IDCode, 8> NotFoundUSRs(USRs.begin(), USRs.end());
auto filter = [&](IndexRecordSymbol RecSym, bool &stop) -> bool {
db::IDCode RecSymUSRCode = db::makeIDCodeFromString(RecSym.getUSR());
auto It = std::find(NotFoundUSRs.begin(), NotFoundUSRs.end(), RecSymUSRCode);
if (It == NotFoundUSRs.end())
return false;
// FIXME: Ideally we would stop looking for a USR once we found it, but
// we are having records where symbols can show up multiple times (with different roles).
// NotFoundUSRs.erase(It);
// stop = NotFoundUSRs.empty();
return true;
};
auto receiver = [&](IndexRecordSymbol sym) {
FoundDecls.push_back(sym);
};
Reader.searchSymbols(filter, receiver);
}
namespace {
class CheckIndexStoreRolesPredicate {
SymbolRoleSet Roles;
public:
CheckIndexStoreRolesPredicate(SymbolRoleSet roles) : Roles(roles) {}
bool operator()(IndexRecordOccurrence recOccur) {
SymbolRoleSet occurRoles;
// Only retrieve the symbol if we need to (there is a 'canonical' check).
if (Roles.contains(SymbolRole::Canonical)) {
auto symInfo = getSymbolInfo(recOccur.getSymbol());
occurRoles = convertFromIndexStoreRoles(recOccur.getRoles(), symInfo);
} else {
occurRoles = convertFromIndexStoreRoles(recOccur.getRoles(), /*isCanonical=*/false);
}
return occurRoles.containsAny(Roles);
}
};
}
bool StoreSymbolRecord::foreachSymbolOccurrenceByUSR(ArrayRef<db::IDCode> USRs,
SymbolRoleSet RoleSet,
function_ref<bool(SymbolOccurrenceRef Occur)> Receiver) {
assert(!USRs.empty() && "did not set any USR!");
assert(RoleSet && "did not set any role!");
bool Finished = true;
bool Err = doForData([&](IndexRecordReader &Reader) {
SmallVector<IndexRecordSymbol, 8> FoundDecls;
searchDeclsByUSR(Reader, USRs, FoundDecls);
if (FoundDecls.empty())
return;
CheckIndexStoreRolesPredicate Pred(RoleSet);
PredOccurrenceConverter Converter(*this, Pred, Receiver);
Finished = Reader.foreachOccurrence(/*DeclsFilter=*/FoundDecls,
/*RelatedDeclsFilter=*/None,
Converter);
});
return !Err && Finished;
}
bool StoreSymbolRecord::foreachRelatedSymbolOccurrenceByUSR(ArrayRef<db::IDCode> USRs,
SymbolRoleSet RoleSet,
function_ref<bool(SymbolOccurrenceRef Occur)> Receiver) {
assert(!USRs.empty() && "did not set any USR!");
assert(RoleSet && "did not set any role!");
bool Finished = true;
bool Err = doForData([&](IndexRecordReader &Reader) {
SmallVector<IndexRecordSymbol, 8> FoundDecls;
searchDeclsByUSR(Reader, USRs, FoundDecls);
if (FoundDecls.empty())
return;
CheckIndexStoreRolesPredicate Pred(RoleSet);
PredOccurrenceConverter Converter(*this, Pred, Receiver);
Finished = Reader.foreachOccurrence(/*DeclsFilter=*/None,
/*RelatedDeclsFilter=*/FoundDecls,
Converter);
});
return !Err && Finished;
}
bool StoreSymbolRecord::foreachUnitTestSymbolOccurrence(function_ref<bool(SymbolOccurrenceRef Occur)> Receiver) {
bool Finished = true;
bool Err = doForData([&](IndexRecordReader &Reader) {
SmallVector<IndexRecordSymbol, 8> FoundDecls;
auto filter = [&](IndexRecordSymbol recSym, bool &stop) -> bool {
auto symInfo = getSymbolInfo(recSym);
return symInfo.Properties.contains(SymbolProperty::UnitTest);
};
auto receiver = [&](IndexRecordSymbol sym) {
FoundDecls.push_back(sym);
};
Reader.searchSymbols(filter, receiver);
if (FoundDecls.empty())
return;
// Return all occurrences.
auto Pred = [](IndexRecordOccurrence) -> bool { return true; };
PredOccurrenceConverter Converter(*this, Pred, Receiver);
Finished = Reader.foreachOccurrence(/*symbolsFilter=*/FoundDecls,
/*relatedSymbolsFilter=*/None,
Converter);
});
return !Err && Finished;
}
|