#pragma once #include "indexer.h" #include "serializer.h" using Usr = std::string; struct QueryableFile; struct QueryableTypeDef; struct QueryableFuncDef; struct QueryableVarDef; using QueryFileId = Id; using QueryTypeId = Id; using QueryFuncId = Id; using QueryVarId = Id; struct IdMap; // TODO: in types, store refs separately from irefs. Then we can drop // 'interesting' from location when that is cleaned up. struct QueryableLocation { Usr path; 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; } bool operator==(const QueryableLocation& other) const { // Note: We ignore |is_interesting|. return path == other.path && range == other.range; } bool operator!=(const QueryableLocation& other) const { return !(*this == other); } bool operator<(const QueryableLocation& o) const { return path < o.path && range < o.range; } }; struct UsrRef { Usr usr; QueryableLocation loc; UsrRef(Usr usr, QueryableLocation loc) : usr(usr), loc(loc) {} bool operator==(const UsrRef& other) const { return usr == other.usr && loc.range.start == other.loc.range.start; } bool operator!=(const UsrRef& other) const { return !(*this == other); } bool operator<(const UsrRef& other) const { return usr < other.usr && loc.range.start < other.loc.range.start; } }; // 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|. template struct MergeableUpdate { // The type/func/var which is getting new usages. Usr usr; // Entries to add and remove. std::vector to_add; std::vector to_remove; MergeableUpdate(Usr usr, const std::vector& to_add) : usr(usr), to_add(to_add) {} MergeableUpdate(Usr usr, const std::vector& to_add, const std::vector& to_remove) : usr(usr), to_add(to_add), to_remove(to_remove) {} }; template struct ReplacementUpdate { // The type/func/var which is getting new usages. Usr usr; // New entries. std::vector values; ReplacementUpdate(Usr usr, const std::vector& entries) : usr(usr), entries(entries) {} }; struct QueryableFile { struct Def { Usr usr; // Outline of the file (ie, for code lens). std::vector outline; // Every symbol found in the file (ie, for goto definition) std::vector all_symbols; }; using DefUpdate = Def; DefUpdate def; QueryableFile(const Usr& usr) { def.usr = usr; } QueryableFile(const Def& def) : def(def) {} QueryableFile(const IdMap& id_map, const IndexedFile& indexed); }; struct QueryableTypeDef { using DefUpdate = TypeDefDefinitionData; using DerivedUpdate = MergeableUpdate; using InstantiationsUpdate = MergeableUpdate; using UsesUpdate = MergeableUpdate; DefUpdate def; std::vector derived; std::vector instantiations; std::vector uses; QueryableTypeDef(const Usr& usr) : def(usr) {} QueryableTypeDef(const DefUpdate& def) : def(def) {} QueryableTypeDef(const IdMap& id_map, const IndexedTypeDef& indexed); }; struct QueryableFuncDef { using DefUpdate = FuncDefDefinitionData; using DeclarationsUpdate = MergeableUpdate; using DerivedUpdate = MergeableUpdate; using CallersUpdate = MergeableUpdate; using UsesUpdate = MergeableUpdate; DefUpdate def; std::vector declarations; std::vector derived; std::vector callers; std::vector uses; QueryableFuncDef(const Usr& usr) : def(usr) {} QueryableFuncDef(const DefUpdate& def) : def(def) {} QueryableFuncDef(const IdMap& id_map, const IndexedFuncDef& indexed); }; struct QueryableVarDef { using DefUpdate = VarDefDefinitionData; using UsesUpdate = MergeableUpdate; DefUpdate def; std::vector uses; QueryableVarDef(const Usr& usr) : def(usr) {} QueryableVarDef(const DefUpdate& def) : def(def) {} QueryableVarDef(const IdMap& id_map, const IndexedVarDef& indexed); }; enum class SymbolKind { Invalid, File, Type, Func, Var }; struct SymbolIdx { SymbolKind kind; 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) {} }; struct IndexUpdate { // Creates a new IndexUpdate that will import |file|. static IndexUpdate CreateImport(const IdMap& id_map, IndexedFile& file); static IndexUpdate CreateDelta(const IdMap& current_id_map, const IdMap& previous_id_map, IndexedFile& current, IndexedFile& updated); // Merge |update| into this update; this can reduce overhead / index update // work can be parallelized. void Merge(const IndexUpdate& update); // File updates. std::vector files_removed; std::vector files_def_update; // Type updates. std::vector types_removed; std::vector types_def_update; std::vector types_derived; std::vector types_instantiations; std::vector types_uses; // Function updates. std::vector funcs_removed; std::vector funcs_def_update; std::vector funcs_declarations; std::vector funcs_derived; std::vector funcs_callers; std::vector funcs_uses; // Variable updates. std::vector vars_removed; std::vector vars_def_update; std::vector vars_uses; private: // Creates an index update assuming that |previous| is already // in the index, so only the delta between |previous| and |current| // will be applied. IndexUpdate(const IdMap& current_id_map, const IdMap& previous_id_map, 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 qualified_names; std::vector symbols; // Raw data storage. std::vector files; // File path is stored as a Usr. std::vector types; std::vector funcs; std::vector vars; // Lookup symbol based on a usr. std::unordered_map usr_to_symbol; // Insert the contents of |update| into |db|. void ApplyIndexUpdate(IndexUpdate* update); void RemoveUsrs(const std::vector& to_remove); void ImportOrUpdate(const std::vector& updates); void ImportOrUpdate(const std::vector& updates); void ImportOrUpdate(const std::vector& updates); void ImportOrUpdate(const std::vector& updates); }; struct IdMap { // TODO threading model // - [querydb] Create IdMap mapping from every id registered in local_ids // - [indexer] Create IndexUpdate using IdMap cached state // - [querydb] Apply IndexUpdate // // Then lookup in cached_* should *never* fail. const IdCache& local_ids; IdMap(QueryableDatabase* query_db, const IdCache& local_ids); // TODO private: QueryFileId index_file_id; std::unordered_map cached_type_ids_; std::unordered_map cached_func_ids_; std::unordered_map cached_var_ids_; };