ccls/query.h

110 lines
2.9 KiB
C
Raw Normal View History

2017-02-23 09:23:23 +00:00
#pragma once
2017-02-26 08:11:47 +00:00
#include "indexer.h"
2017-02-23 09:23:23 +00:00
// NOTE: If updating this enum, make sure to also update the parser and the
// help text.
enum class Command {
Callees,
Callers,
FindAllUsages,
FindInterestingUsages,
GotoReferenced,
Hierarchy,
Outline,
Search
};
// NOTE: If updating this enum, make sure to also update the parser and the
// help text.
enum class PreferredSymbolLocation {
Declaration,
Definition
2017-02-26 08:11:47 +00:00
};
using Usr = std::string;
2017-02-26 19:45:59 +00:00
struct UsrRef {
Usr usr;
Location loc;
2017-02-26 08:11:47 +00:00
2017-02-26 19:45:59 +00:00
bool operator==(const UsrRef& other) const {
return usr == other.usr && loc == other.loc;
}
};
2017-02-26 08:11:47 +00:00
// There are two sources of reindex updates: the (single) definition of a
// symbol has changed, or one of many users of the symbol has changed.
//
// For simplicitly, if the single definition has changed, we update all of the
// associated single-owner definition data. See |Update*DefId|.
//
// If one of the many symbol users submits an update, we store the update such
// that it can be merged with other updates before actually being applied to
// the main database. See |MergeableUpdate|.
2017-02-26 19:45:59 +00:00
template<typename TValue>
2017-02-26 08:11:47 +00:00
struct MergeableUpdate {
// The type/func/var which is getting new usages.
2017-02-26 19:45:59 +00:00
Usr usr;
2017-02-26 08:11:47 +00:00
// Entries to add and remove.
std::vector<TValue> to_add;
std::vector<TValue> to_remove;
};
struct QueryableTypeDef {
2017-02-26 19:45:59 +00:00
TypeDefDefinitionData<Usr, Usr, Usr> def;
std::vector<Usr> derived;
2017-02-26 08:11:47 +00:00
std::vector<Location> uses;
2017-02-26 19:45:59 +00:00
using DefUpdate = TypeDefDefinitionData<Usr, Usr, Usr>;
using DerivedUpdate = MergeableUpdate<Usr>;
using UsesUpdate = MergeableUpdate<Location>;
2017-02-26 08:11:47 +00:00
2017-02-26 19:45:59 +00:00
QueryableTypeDef(IdCache& id_cache, IndexedTypeDef& indexed);
2017-02-26 08:11:47 +00:00
};
struct QueryableFuncDef {
2017-02-26 19:45:59 +00:00
FuncDefDefinitionData<Usr, Usr, Usr, UsrRef> def;
2017-02-26 08:11:47 +00:00
std::vector<Location> declarations;
2017-02-26 19:45:59 +00:00
std::vector<Usr> derived;
std::vector<UsrRef> callers;
2017-02-26 08:11:47 +00:00
std::vector<Location> uses;
2017-02-26 19:45:59 +00:00
using DefUpdate = FuncDefDefinitionData<Usr, Usr, Usr, UsrRef>;
using DeclarationsUpdate = MergeableUpdate<Location>;
using DerivedUpdate = MergeableUpdate<Usr>;
using CallersUpdate = MergeableUpdate<UsrRef>;
using UsesUpdate = MergeableUpdate<Location>;
2017-02-26 08:11:47 +00:00
2017-02-26 19:45:59 +00:00
QueryableFuncDef(IdCache& id_cache, IndexedFuncDef& indexed);
2017-02-26 08:11:47 +00:00
};
struct QueryableVarDef {
2017-02-26 19:45:59 +00:00
VarDefDefinitionData<Usr, Usr, Usr> def;
2017-02-26 08:11:47 +00:00
std::vector<Location> uses;
2017-02-26 19:45:59 +00:00
using DefUpdate = VarDefDefinitionData<Usr, Usr, Usr>;
using UsesUpdate = MergeableUpdate<Location>;
2017-02-26 08:11:47 +00:00
2017-02-26 19:45:59 +00:00
QueryableVarDef(IdCache& id_cache, IndexedVarDef& indexed);
2017-02-26 08:11:47 +00:00
};
2017-02-26 19:45:59 +00:00
enum class SymbolKind { Invalid, Type, Func, Var };
2017-02-26 08:11:47 +00:00
struct SymbolIdx {
SymbolKind kind;
2017-02-26 19:45:59 +00:00
uint64_t idx;
SymbolIdx() : kind(SymbolKind::Invalid), idx(-1) {} // Default ctor needed by stdlib. Do not use.
SymbolIdx(SymbolKind kind, uint64_t idx) : kind(kind), idx(idx) {}
2017-02-26 08:11:47 +00:00
};
struct QueryableFile {
FileId file_id;
// Symbols declared in the file.
std::vector<SymbolIdx> declared_symbols;
// Symbols which have definitions in the file.
std::vector<SymbolIdx> defined_symbols;
2017-02-23 09:23:23 +00:00
};