2017-06-15 05:32:23 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "query_utils.h"
|
|
|
|
|
|
|
|
#include "query.h"
|
|
|
|
#include "working_files.h"
|
|
|
|
|
|
|
|
#include <optional.h>
|
|
|
|
|
2017-09-22 01:14:57 +00:00
|
|
|
optional<QueryLocation> GetDefinitionSpellingOfSymbol(QueryDatabase* db,
|
|
|
|
const QueryTypeId& id);
|
|
|
|
optional<QueryLocation> GetDefinitionSpellingOfSymbol(QueryDatabase* db,
|
|
|
|
const QueryFuncId& id);
|
|
|
|
optional<QueryLocation> GetDefinitionSpellingOfSymbol(QueryDatabase* db,
|
|
|
|
const QueryVarId& id);
|
|
|
|
optional<QueryLocation> GetDefinitionSpellingOfSymbol(QueryDatabase* db,
|
|
|
|
const SymbolIdx& symbol);
|
|
|
|
optional<QueryLocation> GetDefinitionExtentOfSymbol(QueryDatabase* db,
|
|
|
|
const SymbolIdx& symbol);
|
2017-06-15 05:32:23 +00:00
|
|
|
std::string GetHoverForSymbol(QueryDatabase* db, const SymbolIdx& symbol);
|
2017-09-22 01:14:57 +00:00
|
|
|
optional<QueryFileId> GetDeclarationFileForSymbol(QueryDatabase* db,
|
|
|
|
const SymbolIdx& symbol);
|
|
|
|
std::vector<QueryLocation> ToQueryLocation(
|
|
|
|
QueryDatabase* db,
|
|
|
|
const std::vector<QueryFuncRef>& refs);
|
|
|
|
std::vector<QueryLocation> ToQueryLocation(QueryDatabase* db,
|
|
|
|
const std::vector<QueryTypeId>& ids);
|
|
|
|
std::vector<QueryLocation> ToQueryLocation(QueryDatabase* db,
|
|
|
|
const std::vector<QueryFuncId>& ids);
|
|
|
|
std::vector<QueryLocation> ToQueryLocation(QueryDatabase* db,
|
|
|
|
const std::vector<QueryVarId>& ids);
|
|
|
|
std::vector<QueryLocation> GetUsesOfSymbol(QueryDatabase* db,
|
|
|
|
const SymbolIdx& symbol);
|
|
|
|
std::vector<QueryLocation> GetDeclarationsOfSymbolForGotoDefinition(
|
|
|
|
QueryDatabase* db,
|
|
|
|
const SymbolIdx& symbol);
|
|
|
|
optional<QueryLocation> GetBaseDefinitionOrDeclarationSpelling(
|
|
|
|
QueryDatabase* db,
|
|
|
|
QueryFunc& func);
|
2017-07-19 07:17:38 +00:00
|
|
|
bool HasCallersOnSelfOrBaseOrDerived(QueryDatabase* db, QueryFunc& root);
|
2017-09-22 01:14:57 +00:00
|
|
|
std::vector<QueryFuncRef> GetCallersForAllBaseFunctions(QueryDatabase* db,
|
|
|
|
QueryFunc& root);
|
|
|
|
std::vector<QueryFuncRef> GetCallersForAllDerivedFunctions(QueryDatabase* db,
|
|
|
|
QueryFunc& root);
|
|
|
|
optional<lsPosition> GetLsPosition(WorkingFile* working_file,
|
|
|
|
const Position& position);
|
2017-06-15 05:32:23 +00:00
|
|
|
optional<lsRange> GetLsRange(WorkingFile* working_file, const Range& location);
|
2017-09-22 01:14:57 +00:00
|
|
|
lsDocumentUri GetLsDocumentUri(QueryDatabase* db,
|
|
|
|
QueryFileId file_id,
|
|
|
|
std::string* path);
|
2017-06-15 05:32:23 +00:00
|
|
|
lsDocumentUri GetLsDocumentUri(QueryDatabase* db, QueryFileId file_id);
|
2017-09-22 01:14:57 +00:00
|
|
|
optional<lsLocation> GetLsLocation(QueryDatabase* db,
|
|
|
|
WorkingFiles* working_files,
|
|
|
|
const QueryLocation& location);
|
|
|
|
NonElidedVector<lsLocation> GetLsLocations(
|
|
|
|
QueryDatabase* db,
|
|
|
|
WorkingFiles* working_files,
|
|
|
|
const std::vector<QueryLocation>& locations);
|
2017-06-15 05:32:23 +00:00
|
|
|
// Returns a symbol. The symbol will have *NOT* have a location assigned.
|
2017-09-22 01:14:57 +00:00
|
|
|
optional<lsSymbolInformation> GetSymbolInfo(QueryDatabase* db,
|
|
|
|
WorkingFiles* working_files,
|
|
|
|
SymbolIdx symbol);
|
2017-06-15 05:32:23 +00:00
|
|
|
|
2017-09-22 01:14:57 +00:00
|
|
|
lsWorkspaceEdit BuildWorkspaceEdit(QueryDatabase* db,
|
|
|
|
WorkingFiles* working_files,
|
|
|
|
const std::vector<QueryLocation>& locations,
|
|
|
|
const std::string& new_text);
|
|
|
|
|
|
|
|
std::vector<SymbolRef> FindSymbolsAtLocation(WorkingFile* working_file,
|
|
|
|
QueryFile* file,
|
|
|
|
lsPosition position);
|
2017-09-22 01:18:24 +00:00
|
|
|
|
|
|
|
// Lookup |symbol| in |db| and insert the value into |result|.
|
|
|
|
void InsertSymbolIntoResult(QueryDatabase* db,
|
|
|
|
WorkingFiles* working_files,
|
|
|
|
SymbolIdx symbol,
|
|
|
|
std::vector<lsSymbolInformation>* result);
|