mirror of
https://github.com/MaskRay/ccls.git
synced 2025-04-02 23:12:08 +00:00
QueryLocation and QueryRef
This commit is contained in:
parent
be1ed58fc5
commit
715fece4dd
41
src/query.cc
41
src/query.cc
@ -42,6 +42,7 @@ optional<QueryType::Def> ToQuery(const IdMap& id_map,
|
|||||||
result.kind = type.kind;
|
result.kind = type.kind;
|
||||||
result.hover = type.hover;
|
result.hover = type.hover;
|
||||||
result.comments = type.comments;
|
result.comments = type.comments;
|
||||||
|
result.file = id_map.primary_file;
|
||||||
if (type.definition_spelling)
|
if (type.definition_spelling)
|
||||||
result.definition_spelling =
|
result.definition_spelling =
|
||||||
id_map.ToQuery(*type.definition_spelling, SymbolRole::Definition);
|
id_map.ToQuery(*type.definition_spelling, SymbolRole::Definition);
|
||||||
@ -69,6 +70,7 @@ optional<QueryFunc::Def> ToQuery(const IdMap& id_map,
|
|||||||
result.storage = func.storage;
|
result.storage = func.storage;
|
||||||
result.hover = func.hover;
|
result.hover = func.hover;
|
||||||
result.comments = func.comments;
|
result.comments = func.comments;
|
||||||
|
result.file = id_map.primary_file;
|
||||||
if (func.definition_spelling)
|
if (func.definition_spelling)
|
||||||
result.definition_spelling =
|
result.definition_spelling =
|
||||||
id_map.ToQuery(*func.definition_spelling, SymbolRole::Definition);
|
id_map.ToQuery(*func.definition_spelling, SymbolRole::Definition);
|
||||||
@ -92,12 +94,14 @@ optional<QueryVar::Def> ToQuery(const IdMap& id_map, const IndexVar::Def& var) {
|
|||||||
result.short_name_size = var.short_name_size;
|
result.short_name_size = var.short_name_size;
|
||||||
result.hover = var.hover;
|
result.hover = var.hover;
|
||||||
result.comments = var.comments;
|
result.comments = var.comments;
|
||||||
|
result.file = id_map.primary_file;
|
||||||
if (var.definition_spelling)
|
if (var.definition_spelling)
|
||||||
result.definition_spelling =
|
result.definition_spelling =
|
||||||
id_map.ToQuery(*var.definition_spelling, SymbolRole::Definition);
|
QueryLocation{*var.definition_spelling, id_map.primary_file,
|
||||||
|
SymbolRole::Definition};
|
||||||
if (var.definition_extent)
|
if (var.definition_extent)
|
||||||
result.definition_extent =
|
result.definition_extent = QueryLocation{
|
||||||
id_map.ToQuery(*var.definition_extent, SymbolRole::None);
|
*var.definition_extent, id_map.primary_file, SymbolRole::None};
|
||||||
result.variable_type = id_map.ToQuery(var.variable_type);
|
result.variable_type = id_map.ToQuery(var.variable_type);
|
||||||
result.parent_id = var.parent_id;
|
result.parent_id = var.parent_id;
|
||||||
result.parent_kind = var.parent_kind;
|
result.parent_kind = var.parent_kind;
|
||||||
@ -368,6 +372,34 @@ Maybe<QueryVarId> GetQueryVarIdFromUsr(QueryDatabase* query_db,
|
|||||||
|
|
||||||
} // namespace
|
} // namespace
|
||||||
|
|
||||||
|
QueryFileId QueryRef::FileId(QueryDatabase* db) const {
|
||||||
|
switch (lex_parent_kind) {
|
||||||
|
case SymbolKind::Invalid:
|
||||||
|
break;
|
||||||
|
case SymbolKind::File:
|
||||||
|
return QueryFileId(lex_parent_id);
|
||||||
|
case SymbolKind::Func: {
|
||||||
|
QueryFunc& file = db->funcs[lex_parent_id.id];
|
||||||
|
if (file.def)
|
||||||
|
return file.def->file;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
case SymbolKind::Type: {
|
||||||
|
QueryType& type = db->types[lex_parent_id.id];
|
||||||
|
if (type.def)
|
||||||
|
return type.def->file;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
case SymbolKind::Var: {
|
||||||
|
QueryVar& var = db->vars[lex_parent_id.id];
|
||||||
|
if (var.def)
|
||||||
|
return var.def->file;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return QueryFileId();
|
||||||
|
}
|
||||||
|
|
||||||
Maybe<QueryFileId> QueryDatabase::GetQueryFileIdFromPath(
|
Maybe<QueryFileId> QueryDatabase::GetQueryFileIdFromPath(
|
||||||
const std::string& path) {
|
const std::string& path) {
|
||||||
return ::GetQueryFileIdFromPath(this, path, false);
|
return ::GetQueryFileIdFromPath(this, path, false);
|
||||||
@ -410,9 +442,6 @@ IdMap::IdMap(QueryDatabase* query_db, const IdCache& local_ids)
|
|||||||
QueryLocation IdMap::ToQuery(Range range, SymbolRole role) const {
|
QueryLocation IdMap::ToQuery(Range range, SymbolRole role) const {
|
||||||
return QueryLocation{range, primary_file, role};
|
return QueryLocation{range, primary_file, role};
|
||||||
}
|
}
|
||||||
QueryFileId IdMap::ToQuery(IndexFileId) const {
|
|
||||||
return primary_file;
|
|
||||||
}
|
|
||||||
QueryTypeId IdMap::ToQuery(IndexTypeId id) const {
|
QueryTypeId IdMap::ToQuery(IndexTypeId id) const {
|
||||||
assert(cached_type_ids_.find(id) != cached_type_ids_.end());
|
assert(cached_type_ids_.find(id) != cached_type_ids_.end());
|
||||||
return QueryTypeId(cached_type_ids_.find(id)->second);
|
return QueryTypeId(cached_type_ids_.find(id)->second);
|
||||||
|
21
src/query.h
21
src/query.h
@ -34,18 +34,19 @@ struct QueryLocation {
|
|||||||
bool HasValue() const { return range.HasValue(); }
|
bool HasValue() const { return range.HasValue(); }
|
||||||
QueryFileId FileId() const { return path; }
|
QueryFileId FileId() const { return path; }
|
||||||
|
|
||||||
|
std::tuple<Range, QueryFileId, SymbolRole> ToTuple() const {
|
||||||
|
return std::make_tuple(range, path, role);
|
||||||
|
}
|
||||||
bool operator==(const QueryLocation& o) const {
|
bool operator==(const QueryLocation& o) const {
|
||||||
return path == o.path && range == o.range;
|
return ToTuple() == o.ToTuple();
|
||||||
}
|
}
|
||||||
bool operator!=(const QueryLocation& o) const { return !(*this == o); }
|
bool operator!=(const QueryLocation& o) const { return !(*this == o); }
|
||||||
bool operator<(const QueryLocation& o) const {
|
bool operator<(const QueryLocation& o) const {
|
||||||
if (path != o.path)
|
return ToTuple() < o.ToTuple();
|
||||||
return path < o.path;
|
|
||||||
return range < o.range;
|
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
MAKE_REFLECT_STRUCT(QueryLocation, range, path, role);
|
MAKE_REFLECT_STRUCT(QueryLocation, range, path, role);
|
||||||
MAKE_HASHABLE(QueryLocation, t.range, t.path);
|
MAKE_HASHABLE(QueryLocation, t.range, t.path, t.role);
|
||||||
|
|
||||||
namespace std {
|
namespace std {
|
||||||
template <>
|
template <>
|
||||||
@ -56,6 +57,15 @@ struct hash<::SymbolKind> {
|
|||||||
};
|
};
|
||||||
} // namespace std
|
} // namespace std
|
||||||
|
|
||||||
|
struct QueryRef {
|
||||||
|
Range range;
|
||||||
|
Id<void> lex_parent_id;
|
||||||
|
SymbolKind lex_parent_kind;
|
||||||
|
SymbolRole role;
|
||||||
|
QueryFileId FileId(QueryDatabase*) const;
|
||||||
|
};
|
||||||
|
//MAKE_REFLECT_STRUCT(QueryRef, range, lex_parent_id, lex_parent_kind, role);
|
||||||
|
|
||||||
struct SymbolIdx {
|
struct SymbolIdx {
|
||||||
SymbolKind kind;
|
SymbolKind kind;
|
||||||
RawId idx;
|
RawId idx;
|
||||||
@ -418,7 +428,6 @@ struct IdMap {
|
|||||||
// FIXME Too verbose
|
// FIXME Too verbose
|
||||||
// clang-format off
|
// clang-format off
|
||||||
QueryLocation ToQuery(Range range, SymbolRole role) const;
|
QueryLocation ToQuery(Range range, SymbolRole role) const;
|
||||||
QueryFileId ToQuery(IndexFileId) const;
|
|
||||||
QueryTypeId ToQuery(IndexTypeId id) const;
|
QueryTypeId ToQuery(IndexTypeId id) const;
|
||||||
QueryFuncId ToQuery(IndexFuncId id) const;
|
QueryFuncId ToQuery(IndexFuncId id) const;
|
||||||
QueryVarId ToQuery(IndexVarId id) const;
|
QueryVarId ToQuery(IndexVarId id) const;
|
||||||
|
Loading…
Reference in New Issue
Block a user