ccls/src/query.h

234 lines
7.3 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"
#include "serializer.h"
2017-02-26 08:11:47 +00:00
using Usr = std::string;
2017-02-27 02:03:14 +00:00
struct QueryableFile;
struct QueryableTypeDef;
struct QueryableFuncDef;
struct QueryableVarDef;
using QueryFileId = Id<QueryableFile>;
using QueryTypeId = Id<QueryableTypeDef>;
using QueryFuncId = Id<QueryableFuncDef>;
using QueryVarId = Id<QueryableVarDef>;
// TODO: in types, store refs separately from irefs. Then we can drop
// 'interesting' from location when that is cleaned up.
2017-02-27 02:03:14 +00:00
struct QueryableLocation {
Usr path;
2017-04-07 06:20:30 +00:00
Range range;
QueryableLocation(Usr path, Range range)
: path(path), range(range) {}
QueryableLocation OffsetStartColumn(int offset) const {
QueryableLocation result = *this;
result.range.start.column += offset;
return result;
2017-04-03 01:34:15 +00:00
}
2017-02-27 02:03:14 +00:00
bool operator==(const QueryableLocation& other) const {
// Note: We ignore |is_interesting|.
return
path == other.path &&
2017-04-07 06:20:30 +00:00
range == other.range;
2017-02-27 02:03:14 +00:00
}
2017-02-27 07:23:43 +00:00
bool operator!=(const QueryableLocation& other) const { return !(*this == other); }
bool operator<(const QueryableLocation& o) const {
return
path < o.path &&
2017-04-07 06:20:30 +00:00
range < o.range;
2017-04-05 08:06:18 +00:00
}
};
2017-02-26 19:45:59 +00:00
struct UsrRef {
Usr usr;
2017-04-07 06:20:30 +00:00
QueryableLocation loc;
2017-02-26 08:11:47 +00:00
2017-04-07 06:20:30 +00:00
UsrRef(Usr usr, QueryableLocation loc) : usr(usr), loc(loc) {}
2017-02-27 07:23:43 +00:00
2017-02-26 19:45:59 +00:00
bool operator==(const UsrRef& other) const {
2017-04-07 06:20:30 +00:00
return usr == other.usr && loc.range.start == other.loc.range.start;
2017-02-26 19:45:59 +00:00
}
2017-02-27 07:23:43 +00:00
bool operator!=(const UsrRef& other) const { return !(*this == other); }
bool operator<(const UsrRef& other) const {
2017-04-07 06:20:30 +00:00
return usr < other.usr && loc.range.start < other.loc.range.start;
2017-02-27 07:23:43 +00:00
}
2017-02-26 19:45:59 +00:00
};
2017-02-27 02:03:14 +00:00
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;
2017-02-27 07:23:43 +00:00
MergeableUpdate(Usr usr, const std::vector<TValue>& to_add)
: usr(usr), to_add(to_add) {}
2017-02-27 07:23:43 +00:00
MergeableUpdate(Usr usr, const std::vector<TValue>& to_add, const std::vector<TValue>& to_remove)
: usr(usr), to_add(to_add), to_remove(to_remove) {}
};
template<typename TValue>
struct ReplacementUpdate {
// The type/func/var which is getting new usages.
Usr usr;
// New entries.
std::vector<TValue> values;
ReplacementUpdate(Usr usr, const std::vector<TValue>& entries)
: usr(usr), entries(entries) {}
};
2017-03-14 08:33:39 +00:00
2017-02-27 07:23:43 +00:00
struct QueryableFile {
struct Def {
Usr usr;
// Outline of the file (ie, for code lens).
std::vector<UsrRef> outline;
// Every symbol found in the file (ie, for goto definition)
std::vector<UsrRef> all_symbols;
};
2017-02-27 07:23:43 +00:00
using DefUpdate = Def;
2017-02-27 07:23:43 +00:00
DefUpdate def;
QueryableFile() {}
2017-02-27 07:23:43 +00:00
QueryableFile(const IndexedFile& indexed);
2017-02-26 08:11:47 +00:00
};
2017-03-14 08:33:39 +00:00
2017-02-26 08:11:47 +00:00
struct QueryableTypeDef {
using DefUpdate = TypeDefDefinitionData<Usr, Usr, Usr, QueryableLocation>;
2017-02-26 19:45:59 +00:00
using DerivedUpdate = MergeableUpdate<Usr>;
2017-04-03 01:34:15 +00:00
using InstantiationsUpdate = MergeableUpdate<Usr>;
2017-04-07 06:20:30 +00:00
using UsesUpdate = MergeableUpdate<QueryableLocation>;
2017-02-27 02:03:14 +00:00
DefUpdate def;
std::vector<Usr> derived;
2017-04-03 01:34:15 +00:00
std::vector<Usr> instantiations;
2017-04-07 06:20:30 +00:00
std::vector<QueryableLocation> uses;
2017-02-26 08:11:47 +00:00
QueryableTypeDef() : def("") {}
2017-02-27 07:23:43 +00:00
QueryableTypeDef(IdCache& id_cache, const IndexedTypeDef& indexed);
2017-02-26 08:11:47 +00:00
};
2017-03-14 08:33:39 +00:00
2017-02-26 08:11:47 +00:00
struct QueryableFuncDef {
using DefUpdate = FuncDefDefinitionData<Usr, Usr, Usr, UsrRef, QueryableLocation>;
2017-04-07 06:20:30 +00:00
using DeclarationsUpdate = MergeableUpdate<QueryableLocation>;
2017-02-26 19:45:59 +00:00
using DerivedUpdate = MergeableUpdate<Usr>;
using CallersUpdate = MergeableUpdate<UsrRef>;
2017-04-07 06:20:30 +00:00
using UsesUpdate = MergeableUpdate<QueryableLocation>;
2017-02-27 02:03:14 +00:00
DefUpdate def;
2017-04-07 06:20:30 +00:00
std::vector<QueryableLocation> declarations;
2017-02-27 02:03:14 +00:00
std::vector<Usr> derived;
std::vector<UsrRef> callers;
2017-04-07 06:20:30 +00:00
std::vector<QueryableLocation> uses;
2017-02-26 08:11:47 +00:00
QueryableFuncDef() : def("") {}
2017-02-27 07:23:43 +00:00
QueryableFuncDef(IdCache& id_cache, const IndexedFuncDef& indexed);
2017-02-26 08:11:47 +00:00
};
2017-03-14 08:33:39 +00:00
2017-02-26 08:11:47 +00:00
struct QueryableVarDef {
using DefUpdate = VarDefDefinitionData<Usr, Usr, Usr, QueryableLocation>;
2017-04-07 06:20:30 +00:00
using UsesUpdate = MergeableUpdate<QueryableLocation>;
2017-02-26 08:11:47 +00:00
2017-02-27 02:03:14 +00:00
DefUpdate def;
2017-04-07 06:20:30 +00:00
std::vector<QueryableLocation> uses;
2017-02-26 08:11:47 +00:00
QueryableVarDef() : def("") {}
2017-02-27 07:23:43 +00:00
QueryableVarDef(IdCache& id_cache, const IndexedVarDef& indexed);
2017-02-26 08:11:47 +00:00
};
2017-03-14 08:33:39 +00:00
2017-02-27 02:03:14 +00:00
enum class SymbolKind { Invalid, File, 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
};
2017-02-27 07:23:43 +00:00
struct IndexUpdate {
// Creates a new IndexUpdate that will import |file|.
static IndexUpdate CreateImport(IndexedFile& file);
static IndexUpdate CreateDelta(IndexedFile& current, IndexedFile& updated);
// Merge |update| into this update; this can reduce overhead / index update
// work can be parallelized.
void Merge(const IndexUpdate& update);
2017-02-27 07:23:43 +00:00
// File updates.
std::vector<Usr> files_removed;
std::vector<QueryableFile::DefUpdate> files_def_update;
2017-02-27 07:23:43 +00:00
// Type updates.
std::vector<Usr> types_removed;
std::vector<QueryableTypeDef::DefUpdate> types_def_update;
2017-02-27 07:23:43 +00:00
std::vector<QueryableTypeDef::DerivedUpdate> types_derived;
2017-04-03 01:34:15 +00:00
std::vector<QueryableTypeDef::InstantiationsUpdate> types_instantiations;
2017-02-27 07:23:43 +00:00
std::vector<QueryableTypeDef::UsesUpdate> types_uses;
// Function updates.
std::vector<Usr> funcs_removed;
std::vector<QueryableFuncDef::DefUpdate> funcs_def_update;
2017-02-27 07:23:43 +00:00
std::vector<QueryableFuncDef::DeclarationsUpdate> funcs_declarations;
std::vector<QueryableFuncDef::DerivedUpdate> funcs_derived;
std::vector<QueryableFuncDef::CallersUpdate> funcs_callers;
std::vector<QueryableFuncDef::UsesUpdate> funcs_uses;
// Variable updates.
std::vector<Usr> vars_removed;
std::vector<QueryableVarDef::DefUpdate> vars_def_update;
2017-02-27 07:23:43 +00:00
std::vector<QueryableVarDef::UsesUpdate> vars_uses;
private:
2017-02-27 07:23:43 +00:00
// Creates an index update assuming that |previous| is already
// in the index, so only the delta between |previous| and |current|
// will be applied.
IndexUpdate(IndexedFile& previous, IndexedFile& current);
};
// The query database is heavily optimized for fast queries. It is stored
// in-memory.
struct QueryableDatabase {
// Indicies between lookup vectors are related to symbols, ie, index 5 in
// |qualified_names| matches index 5 in |symbols|.
std::vector<std::string> qualified_names;
std::vector<SymbolIdx> symbols;
// Raw data storage.
std::vector<QueryableFile> files; // File path is stored as a Usr.
std::vector<QueryableTypeDef> types;
std::vector<QueryableFuncDef> funcs;
std::vector<QueryableVarDef> vars;
// Lookup symbol based on a usr.
std::unordered_map<Usr, SymbolIdx> usr_to_symbol;
// Insert the contents of |update| into |db|.
void ApplyIndexUpdate(IndexUpdate* update);
void RemoveUsrs(const std::vector<Usr>& to_remove);
void ImportOrUpdate(const std::vector<QueryableFile::DefUpdate>& updates);
void ImportOrUpdate(const std::vector<QueryableTypeDef::DefUpdate>& updates);
void ImportOrUpdate(const std::vector<QueryableFuncDef::DefUpdate>& updates);
void ImportOrUpdate(const std::vector<QueryableVarDef::DefUpdate>& updates);
2017-04-07 06:21:16 +00:00
};