mirror of
https://github.com/MaskRay/ccls.git
synced 2024-11-22 07:35:08 +00:00
Delay requests if the document has not not indexed (#176)
This fixes a plethora of "not indexed" errors when the document has not been indexed. * Message handler throws NotIndexed if not overdue * The message is put into backlog and tagged with backlog_path * path2backlog[path] tracks backlog associated with document `path` * The backlog is cleared when the index is merged * backlog[0] is forced to run if it becomes overdue
This commit is contained in:
parent
dd74d03cfc
commit
8835a555f8
@ -230,6 +230,12 @@ struct Config {
|
||||
std::vector<std::string> whitelist;
|
||||
} index;
|
||||
|
||||
struct Request {
|
||||
// If the document of a request has not been indexed, wait up to this many
|
||||
// milleseconds before reporting error.
|
||||
int64_t timeout = 5000;
|
||||
} request;
|
||||
|
||||
struct Session {
|
||||
int maxNum = 10;
|
||||
} session;
|
||||
@ -266,12 +272,14 @@ REFLECT_STRUCT(Config::Index, blacklist, comments, initialBlacklist,
|
||||
initialWhitelist, multiVersion, multiVersionBlacklist,
|
||||
multiVersionWhitelist, onChange, threads, trackDependency,
|
||||
whitelist);
|
||||
REFLECT_STRUCT(Config::Request, timeout);
|
||||
REFLECT_STRUCT(Config::Session, maxNum);
|
||||
REFLECT_STRUCT(Config::WorkspaceSymbol, caseSensitivity, maxNum, sort);
|
||||
REFLECT_STRUCT(Config::Xref, maxNum);
|
||||
REFLECT_STRUCT(Config, compilationDatabaseCommand, compilationDatabaseDirectory,
|
||||
cacheDirectory, cacheFormat, clang, client, codeLens, completion,
|
||||
diagnostics, highlight, index, session, workspaceSymbol, xref);
|
||||
diagnostics, highlight, index, request, session, workspaceSymbol,
|
||||
xref);
|
||||
|
||||
extern Config *g_config;
|
||||
|
||||
|
@ -9,8 +9,8 @@
|
||||
|
||||
#include <rapidjson/fwd.h>
|
||||
|
||||
#include <chrono>
|
||||
#include <iosfwd>
|
||||
#include <unordered_map>
|
||||
|
||||
namespace ccls {
|
||||
struct RequestId {
|
||||
@ -31,6 +31,8 @@ struct InMessage {
|
||||
std::string method;
|
||||
std::unique_ptr<char[]> message;
|
||||
std::unique_ptr<rapidjson::Document> document;
|
||||
std::chrono::steady_clock::time_point deadline;
|
||||
std::string backlog_path;
|
||||
};
|
||||
|
||||
enum class ErrorCode {
|
||||
|
@ -97,11 +97,8 @@ struct ScanLineEvent {
|
||||
};
|
||||
} // namespace
|
||||
|
||||
void ReplyOnce::NotReady(bool file) {
|
||||
if (file)
|
||||
Error(ErrorCode::InvalidRequest, "not opened");
|
||||
else
|
||||
Error(ErrorCode::InternalError, "not indexed");
|
||||
void ReplyOnce::NotOpened(std::string_view path) {
|
||||
Error(ErrorCode::InvalidRequest, std::string(path) + " is not opened");
|
||||
}
|
||||
|
||||
void ReplyOnce::ReplyLocationLink(std::vector<LocationLink> &result) {
|
||||
@ -203,13 +200,11 @@ MessageHandler::MessageHandler() {
|
||||
|
||||
void MessageHandler::Run(InMessage &msg) {
|
||||
rapidjson::Document &doc = *msg.document;
|
||||
rapidjson::Value param;
|
||||
rapidjson::Value null;
|
||||
auto it = doc.FindMember("params");
|
||||
if (it != doc.MemberEnd())
|
||||
param = it->value;
|
||||
JsonReader reader(¶m);
|
||||
JsonReader reader(it != doc.MemberEnd() ? &it->value : &null);
|
||||
if (msg.id.Valid()) {
|
||||
ReplyOnce reply{msg.id};
|
||||
ReplyOnce reply{*this, msg.id};
|
||||
auto it = method2request.find(msg.method);
|
||||
if (it != method2request.end()) {
|
||||
try {
|
||||
@ -218,6 +213,8 @@ void MessageHandler::Run(InMessage &msg) {
|
||||
reply.Error(ErrorCode::InvalidParams,
|
||||
"invalid params of " + msg.method + ": expected " +
|
||||
ex.what() + " for " + reader.GetPath());
|
||||
} catch (NotIndexed &) {
|
||||
throw;
|
||||
} catch (...) {
|
||||
reply.Error(ErrorCode::InternalError, "failed to process " + msg.method);
|
||||
}
|
||||
@ -237,7 +234,8 @@ void MessageHandler::Run(InMessage &msg) {
|
||||
}
|
||||
}
|
||||
|
||||
QueryFile *MessageHandler::FindFile(const std::string &path, int *out_file_id) {
|
||||
QueryFile *MessageHandler::FindFile(const std::string &path,
|
||||
int *out_file_id) {
|
||||
QueryFile *ret = nullptr;
|
||||
auto it = db->name2file_id.find(LowerPathIfInsensitive(path));
|
||||
if (it != db->name2file_id.end()) {
|
||||
@ -254,6 +252,24 @@ QueryFile *MessageHandler::FindFile(const std::string &path, int *out_file_id) {
|
||||
return ret;
|
||||
}
|
||||
|
||||
std::pair<QueryFile *, WorkingFile *>
|
||||
MessageHandler::FindOrFail(const std::string &path, ReplyOnce &reply,
|
||||
int *out_file_id) {
|
||||
WorkingFile *wf = wfiles->GetFile(path);
|
||||
if (!wf) {
|
||||
reply.NotOpened(path);
|
||||
return {nullptr, nullptr};
|
||||
}
|
||||
QueryFile *file = FindFile(path, out_file_id);
|
||||
if (!file) {
|
||||
if (!overdue)
|
||||
throw NotIndexed{path};
|
||||
reply.Error(ErrorCode::InvalidRequest, "not indexed");
|
||||
return {nullptr, nullptr};
|
||||
}
|
||||
return {file, wf};
|
||||
}
|
||||
|
||||
void EmitSkippedRanges(WorkingFile *wfile, QueryFile &file) {
|
||||
CclsSetSkippedRanges params;
|
||||
params.uri = DocumentUri::FromPath(wfile->filename);
|
||||
|
@ -187,7 +187,13 @@ REFLECT_STRUCT(Diagnostic, range, severity, code, source, message);
|
||||
REFLECT_STRUCT(ShowMessageParam, type, message);
|
||||
REFLECT_UNDERLYING_B(LanguageId);
|
||||
|
||||
struct NotIndexed {
|
||||
std::string path;
|
||||
};
|
||||
struct MessageHandler;
|
||||
|
||||
struct ReplyOnce {
|
||||
MessageHandler &handler;
|
||||
RequestId id;
|
||||
template <typename Res> void operator()(Res &&result) const {
|
||||
if (id.Valid())
|
||||
@ -198,7 +204,7 @@ struct ReplyOnce {
|
||||
if (id.Valid())
|
||||
pipeline::ReplyError(id, [&](JsonWriter &w) { Reflect(w, err); });
|
||||
}
|
||||
void NotReady(bool file);
|
||||
void NotOpened(std::string_view path);
|
||||
void ReplyLocationLink(std::vector<LocationLink> &result);
|
||||
};
|
||||
|
||||
@ -213,10 +219,14 @@ struct MessageHandler {
|
||||
llvm::StringMap<std::function<void(JsonReader &)>> method2notification;
|
||||
llvm::StringMap<std::function<void(JsonReader &, ReplyOnce &)>>
|
||||
method2request;
|
||||
bool overdue = false;
|
||||
|
||||
MessageHandler();
|
||||
void Run(InMessage &msg);
|
||||
QueryFile *FindFile(const std::string &path, int *out_file_id = nullptr);
|
||||
std::pair<QueryFile *, WorkingFile *> FindOrFail(const std::string &path,
|
||||
ReplyOnce &reply,
|
||||
int *out_file_id = nullptr);
|
||||
|
||||
private:
|
||||
void Bind(const char *method, void (MessageHandler::*handler)(JsonReader &));
|
||||
|
@ -188,8 +188,7 @@ void MessageHandler::ccls_call(JsonReader &reader, ReplyOnce &reply) {
|
||||
Expand(this, &*result, param.callee, param.callType, param.qualified,
|
||||
param.levels);
|
||||
} else {
|
||||
QueryFile *file = FindFile(param.textDocument.uri.GetPath());
|
||||
WorkingFile *wf = file ? wfiles->GetFile(file->def->path) : nullptr;
|
||||
auto [file, wf] = FindOrFail(param.textDocument.uri.GetPath(), reply);
|
||||
if (!wf)
|
||||
return;
|
||||
for (SymbolRef sym : FindSymbolsAtLocation(wf, file, param.position)) {
|
||||
|
@ -134,10 +134,10 @@ void Inheritance(MessageHandler *m, Param ¶m, ReplyOnce &reply) {
|
||||
Expand(m, &*result, param.derived, param.qualified, param.levels)))
|
||||
result.reset();
|
||||
} else {
|
||||
QueryFile *file = m->FindFile(param.textDocument.uri.GetPath());
|
||||
if (!file)
|
||||
auto [file, wf] = m->FindOrFail(param.textDocument.uri.GetPath(), reply);
|
||||
if (!wf) {
|
||||
return;
|
||||
WorkingFile *wf = m->wfiles->GetFile(file->def->path);
|
||||
}
|
||||
for (SymbolRef sym : FindSymbolsAtLocation(wf, file, param.position))
|
||||
if (sym.kind == Kind::Func || sym.kind == Kind::Type) {
|
||||
result = BuildInitial(m, sym, param.derived, param.qualified,
|
||||
|
@ -269,12 +269,9 @@ void MessageHandler::ccls_member(JsonReader &reader, ReplyOnce &reply) {
|
||||
param.levels, param.kind)))
|
||||
result.reset();
|
||||
} else {
|
||||
QueryFile *file = FindFile(param.textDocument.uri.GetPath());
|
||||
WorkingFile *wf = file ? wfiles->GetFile(file->def->path) : nullptr;
|
||||
if (!wf) {
|
||||
reply.NotReady(file);
|
||||
auto [file, wf] = FindOrFail(param.textDocument.uri.GetPath(), reply);
|
||||
if (!wf)
|
||||
return;
|
||||
}
|
||||
for (SymbolRef sym : FindSymbolsAtLocation(wf, file, param.position)) {
|
||||
switch (sym.kind) {
|
||||
case Kind::Func:
|
||||
|
@ -29,10 +29,8 @@ Maybe<Range> FindParent(QueryFile *file, Pos pos) {
|
||||
void MessageHandler::ccls_navigate(JsonReader &reader, ReplyOnce &reply) {
|
||||
Param param;
|
||||
Reflect(reader, param);
|
||||
QueryFile *file = FindFile(param.textDocument.uri.GetPath());
|
||||
WorkingFile *wf = file ? wfiles->GetFile(file->def->path) : nullptr;
|
||||
auto [file, wf] = FindOrFail(param.textDocument.uri.GetPath(), reply);
|
||||
if (!wf) {
|
||||
reply.NotReady(file);
|
||||
return;
|
||||
}
|
||||
Position ls_pos = param.position;
|
||||
|
@ -19,10 +19,8 @@ REFLECT_STRUCT(Param, textDocument, position, kind);
|
||||
void MessageHandler::ccls_vars(JsonReader &reader, ReplyOnce &reply) {
|
||||
Param param;
|
||||
Reflect(reader, param);
|
||||
QueryFile *file = FindFile(param.textDocument.uri.GetPath());
|
||||
WorkingFile *wf = file ? wfiles->GetFile(file->def->path) : nullptr;
|
||||
auto [file, wf] = FindOrFail(param.textDocument.uri.GetPath(), reply);
|
||||
if (!wf) {
|
||||
reply.NotReady(file);
|
||||
return;
|
||||
}
|
||||
|
||||
|
@ -377,7 +377,7 @@ void MessageHandler::initialize(JsonReader &reader, ReplyOnce &reply) {
|
||||
void StandaloneInitialize(MessageHandler &handler, const std::string &root) {
|
||||
InitializeParam param;
|
||||
param.rootUri = DocumentUri::FromPath(root);
|
||||
ReplyOnce reply;
|
||||
ReplyOnce reply{handler};
|
||||
Initialize(&handler, param, reply);
|
||||
}
|
||||
|
||||
|
@ -23,11 +23,9 @@ REFLECT_STRUCT(CodeAction, title, kind, edit);
|
||||
}
|
||||
void MessageHandler::textDocument_codeAction(CodeActionParam ¶m,
|
||||
ReplyOnce &reply) {
|
||||
WorkingFile *wf = wfiles->GetFile(param.textDocument.uri.GetPath());
|
||||
if (!wf) {
|
||||
reply.NotReady(true);
|
||||
WorkingFile *wf = FindOrFail(param.textDocument.uri.GetPath(), reply).second;
|
||||
if (!wf)
|
||||
return;
|
||||
}
|
||||
std::vector<CodeAction> result;
|
||||
std::vector<Diagnostic> diagnostics;
|
||||
wfiles->WithLock([&]() { diagnostics = wf->diagnostics; });
|
||||
@ -84,16 +82,13 @@ struct CommonCodeLensParams {
|
||||
|
||||
void MessageHandler::textDocument_codeLens(TextDocumentParam ¶m,
|
||||
ReplyOnce &reply) {
|
||||
QueryFile *file = FindFile(param.textDocument.uri.GetPath());
|
||||
WorkingFile *wf = file ? wfiles->GetFile(file->def->path) : nullptr;
|
||||
if (!wf) {
|
||||
reply.NotReady(file);
|
||||
auto [file, wf] = FindOrFail(param.textDocument.uri.GetPath(), reply);
|
||||
if (!wf)
|
||||
return;
|
||||
}
|
||||
|
||||
std::vector<CodeLens> result;
|
||||
auto Add = [&](const char *singular, Cmd_xref show, Range range, int num,
|
||||
bool force_display = false) {
|
||||
auto Add = [&, wf = wf](const char *singular, Cmd_xref show, Range range,
|
||||
int num, bool force_display = false) {
|
||||
if (!num && !force_display)
|
||||
return;
|
||||
std::optional<lsRange> ls_range = GetLsRange(wf, range);
|
||||
|
@ -447,7 +447,7 @@ void MessageHandler::textDocument_completion(CompletionParam ¶m,
|
||||
std::string path = param.textDocument.uri.GetPath();
|
||||
WorkingFile *wf = wfiles->GetFile(path);
|
||||
if (!wf) {
|
||||
reply.NotReady(true);
|
||||
reply.NotOpened(path);
|
||||
return;
|
||||
}
|
||||
|
||||
|
@ -36,12 +36,9 @@ std::vector<DeclRef> GetNonDefDeclarationTargets(DB *db, SymbolRef sym) {
|
||||
void MessageHandler::textDocument_declaration(TextDocumentPositionParam ¶m,
|
||||
ReplyOnce &reply) {
|
||||
int file_id;
|
||||
QueryFile *file = FindFile(param.textDocument.uri.GetPath(), &file_id);
|
||||
WorkingFile *wf = file ? wfiles->GetFile(file->def->path) : nullptr;
|
||||
if (!wf) {
|
||||
reply.NotReady(file);
|
||||
auto [file, wf] = FindOrFail(param.textDocument.uri.GetPath(), reply, &file_id);
|
||||
if (!wf)
|
||||
return;
|
||||
}
|
||||
|
||||
std::vector<LocationLink> result;
|
||||
Position &ls_pos = param.position;
|
||||
@ -57,12 +54,9 @@ void MessageHandler::textDocument_declaration(TextDocumentPositionParam ¶m,
|
||||
void MessageHandler::textDocument_definition(TextDocumentPositionParam ¶m,
|
||||
ReplyOnce &reply) {
|
||||
int file_id;
|
||||
QueryFile *file = FindFile(param.textDocument.uri.GetPath(), &file_id);
|
||||
WorkingFile *wf = file ? wfiles->GetFile(file->def->path) : nullptr;
|
||||
if (!wf) {
|
||||
reply.NotReady(file);
|
||||
auto [file, wf] = FindOrFail(param.textDocument.uri.GetPath(), reply, &file_id);
|
||||
if (!wf)
|
||||
return;
|
||||
}
|
||||
|
||||
std::vector<LocationLink> result;
|
||||
Maybe<DeclRef> on_def;
|
||||
@ -178,12 +172,9 @@ void MessageHandler::textDocument_definition(TextDocumentPositionParam ¶m,
|
||||
|
||||
void MessageHandler::textDocument_typeDefinition(
|
||||
TextDocumentPositionParam ¶m, ReplyOnce &reply) {
|
||||
QueryFile *file = FindFile(param.textDocument.uri.GetPath());
|
||||
WorkingFile *wf = file ? wfiles->GetFile(file->def->path) : nullptr;
|
||||
if (!file) {
|
||||
reply.NotReady(file);
|
||||
auto [file, wf] = FindOrFail(param.textDocument.uri.GetPath(), reply);
|
||||
if (!file)
|
||||
return;
|
||||
}
|
||||
|
||||
std::vector<LocationLink> result;
|
||||
auto Add = [&](const QueryType &type) {
|
||||
|
@ -32,12 +32,9 @@ REFLECT_STRUCT(DocumentHighlight, range, kind, role);
|
||||
void MessageHandler::textDocument_documentHighlight(
|
||||
TextDocumentPositionParam ¶m, ReplyOnce &reply) {
|
||||
int file_id;
|
||||
QueryFile *file = FindFile(param.textDocument.uri.GetPath(), &file_id);
|
||||
WorkingFile *wf = file ? wfiles->GetFile(file->def->path) : nullptr;
|
||||
if (!wf) {
|
||||
reply.NotReady(file);
|
||||
auto [file, wf] = FindOrFail(param.textDocument.uri.GetPath(), reply, &file_id);
|
||||
if (!wf)
|
||||
return;
|
||||
}
|
||||
|
||||
std::vector<DocumentHighlight> result;
|
||||
std::vector<SymbolRef> syms =
|
||||
@ -78,10 +75,8 @@ REFLECT_STRUCT(DocumentLink, range, target);
|
||||
|
||||
void MessageHandler::textDocument_documentLink(TextDocumentParam ¶m,
|
||||
ReplyOnce &reply) {
|
||||
QueryFile *file = FindFile(param.textDocument.uri.GetPath());
|
||||
WorkingFile *wf = file ? wfiles->GetFile(file->def->path) : nullptr;
|
||||
auto [file, wf] = FindOrFail(param.textDocument.uri.GetPath(), reply);
|
||||
if (!wf) {
|
||||
reply.NotReady(file);
|
||||
return;
|
||||
}
|
||||
|
||||
@ -153,10 +148,8 @@ void MessageHandler::textDocument_documentSymbol(JsonReader &reader,
|
||||
Reflect(reader, param);
|
||||
|
||||
int file_id;
|
||||
QueryFile *file = FindFile(param.textDocument.uri.GetPath(), &file_id);
|
||||
WorkingFile *wf = file ? wfiles->GetFile(file->def->path) : nullptr;
|
||||
auto [file, wf] = FindOrFail(param.textDocument.uri.GetPath(), reply, &file_id);
|
||||
if (!wf) {
|
||||
reply.NotReady(file);
|
||||
return;
|
||||
}
|
||||
|
||||
|
@ -19,12 +19,9 @@ REFLECT_STRUCT(FoldingRange, startLine, startCharacter, endLine, endCharacter,
|
||||
|
||||
void MessageHandler::textDocument_foldingRange(TextDocumentParam ¶m,
|
||||
ReplyOnce &reply) {
|
||||
QueryFile *file = FindFile(param.textDocument.uri.GetPath());
|
||||
WorkingFile *wf = file ? wfiles->GetFile(file->def->path) : nullptr;
|
||||
if (!wf) {
|
||||
reply.NotReady(file);
|
||||
auto [file, wf] = FindOrFail(param.textDocument.uri.GetPath(), reply);
|
||||
if (!wf)
|
||||
return;
|
||||
}
|
||||
std::vector<FoldingRange> result;
|
||||
std::optional<lsRange> ls_range;
|
||||
|
||||
|
@ -68,21 +68,16 @@ void Format(ReplyOnce &reply, WorkingFile *wfile, tooling::Range range) {
|
||||
|
||||
void MessageHandler::textDocument_formatting(DocumentFormattingParam ¶m,
|
||||
ReplyOnce &reply) {
|
||||
QueryFile *file = FindFile(param.textDocument.uri.GetPath());
|
||||
WorkingFile *wf = file ? wfiles->GetFile(file->def->path) : nullptr;
|
||||
if (!wf) {
|
||||
reply.NotReady(file);
|
||||
auto [file, wf] = FindOrFail(param.textDocument.uri.GetPath(), reply);
|
||||
if (!wf)
|
||||
return;
|
||||
}
|
||||
Format(reply, wf, {0, (unsigned)wf->buffer_content.size()});
|
||||
}
|
||||
|
||||
void MessageHandler::textDocument_onTypeFormatting(
|
||||
DocumentOnTypeFormattingParam ¶m, ReplyOnce &reply) {
|
||||
QueryFile *file = FindFile(param.textDocument.uri.GetPath());
|
||||
WorkingFile *wf = file ? wfiles->GetFile(file->def->path) : nullptr;
|
||||
auto [file, wf] = FindOrFail(param.textDocument.uri.GetPath(), reply);
|
||||
if (!wf) {
|
||||
reply.NotReady(file);
|
||||
return;
|
||||
}
|
||||
std::string_view code = wf->buffer_content;
|
||||
@ -95,10 +90,8 @@ void MessageHandler::textDocument_onTypeFormatting(
|
||||
|
||||
void MessageHandler::textDocument_rangeFormatting(
|
||||
DocumentRangeFormattingParam ¶m, ReplyOnce &reply) {
|
||||
QueryFile *file = FindFile(param.textDocument.uri.GetPath());
|
||||
WorkingFile *wf = file ? wfiles->GetFile(file->def->path) : nullptr;
|
||||
auto [file, wf] = FindOrFail(param.textDocument.uri.GetPath(), reply);
|
||||
if (!wf) {
|
||||
reply.NotReady(file);
|
||||
return;
|
||||
}
|
||||
std::string_view code = wf->buffer_content;
|
||||
|
@ -81,12 +81,9 @@ GetHover(DB *db, LanguageId lang, SymbolRef sym, int file_id) {
|
||||
|
||||
void MessageHandler::textDocument_hover(TextDocumentPositionParam ¶m,
|
||||
ReplyOnce &reply) {
|
||||
QueryFile *file = FindFile(param.textDocument.uri.GetPath());
|
||||
WorkingFile *wf = file ? wfiles->GetFile(file->def->path) : nullptr;
|
||||
if (!wf) {
|
||||
reply.NotReady(file);
|
||||
auto [file, wf] = FindOrFail(param.textDocument.uri.GetPath(), reply);
|
||||
if (!wf)
|
||||
return;
|
||||
}
|
||||
|
||||
Hover result;
|
||||
for (SymbolRef sym : FindSymbolsAtLocation(wf, file, param.position)) {
|
||||
|
@ -33,12 +33,9 @@ void MessageHandler::textDocument_references(JsonReader &reader,
|
||||
ReplyOnce &reply) {
|
||||
ReferenceParam param;
|
||||
Reflect(reader, param);
|
||||
QueryFile *file = FindFile(param.textDocument.uri.GetPath());
|
||||
WorkingFile *wf = file ? wfiles->GetFile(file->def->path) : nullptr;
|
||||
if (!wf) {
|
||||
reply.NotReady(file);
|
||||
auto [file, wf] = FindOrFail(param.textDocument.uri.GetPath(), reply);
|
||||
if (!wf)
|
||||
return;
|
||||
}
|
||||
|
||||
for (auto &folder : param.folders)
|
||||
EnsureEndsInSlash(folder);
|
||||
|
@ -44,10 +44,8 @@ WorkspaceEdit BuildWorkspaceEdit(DB *db, WorkingFiles *wfiles, SymbolRef sym,
|
||||
} // namespace
|
||||
|
||||
void MessageHandler::textDocument_rename(RenameParam ¶m, ReplyOnce &reply) {
|
||||
QueryFile *file = FindFile(param.textDocument.uri.GetPath());
|
||||
WorkingFile *wf = file ? wfiles->GetFile(file->def->path) : nullptr;
|
||||
auto [file, wf] = FindOrFail(param.textDocument.uri.GetPath(), reply);
|
||||
if (!wf) {
|
||||
reply.NotReady(file);
|
||||
return;
|
||||
}
|
||||
|
||||
|
@ -140,12 +140,11 @@ public:
|
||||
void MessageHandler::textDocument_signatureHelp(
|
||||
TextDocumentPositionParam ¶m, ReplyOnce &reply) {
|
||||
static CompleteConsumerCache<SignatureHelp> cache;
|
||||
|
||||
std::string path = param.textDocument.uri.GetPath();
|
||||
Position begin_pos = param.position;
|
||||
std::string path = param.textDocument.uri.GetPath();
|
||||
WorkingFile *wf = wfiles->GetFile(path);
|
||||
if (!wf) {
|
||||
reply.NotReady(true);
|
||||
reply.NotOpened(path);
|
||||
return;
|
||||
}
|
||||
{
|
||||
|
@ -20,7 +20,6 @@
|
||||
#include <llvm/Support/Path.h>
|
||||
#include <llvm/Support/Process.h>
|
||||
#include <llvm/Support/Threading.h>
|
||||
using namespace llvm;
|
||||
|
||||
#include <chrono>
|
||||
#include <mutex>
|
||||
@ -29,6 +28,8 @@ using namespace llvm;
|
||||
#ifndef _WIN32
|
||||
#include <unistd.h>
|
||||
#endif
|
||||
using namespace llvm;
|
||||
namespace chrono = std::chrono;
|
||||
|
||||
namespace ccls {
|
||||
namespace {
|
||||
@ -515,8 +516,11 @@ void LaunchStdin() {
|
||||
if (method.empty())
|
||||
continue;
|
||||
bool should_exit = method == "exit";
|
||||
// g_config is not available before "initialize". Use 0 in that case.
|
||||
on_request->PushBack(
|
||||
{id, std::move(method), std::move(message), std::move(document)});
|
||||
{id, std::move(method), std::move(message), std::move(document),
|
||||
chrono::steady_clock::now() +
|
||||
chrono::milliseconds(g_config ? g_config->request.timeout : 0)});
|
||||
|
||||
if (should_exit)
|
||||
break;
|
||||
@ -578,11 +582,34 @@ void MainLoop() {
|
||||
handler.include_complete = &include_complete;
|
||||
|
||||
bool has_indexed = false;
|
||||
std::deque<InMessage> backlog;
|
||||
StringMap<std::deque<InMessage *>> path2backlog;
|
||||
while (true) {
|
||||
if (backlog.size()) {
|
||||
auto now = chrono::steady_clock::now();
|
||||
handler.overdue = true;
|
||||
while (backlog.size()) {
|
||||
if (backlog[0].backlog_path.size()) {
|
||||
if (now < backlog[0].deadline)
|
||||
break;
|
||||
handler.Run(backlog[0]);
|
||||
path2backlog[backlog[0].backlog_path].pop_front();
|
||||
}
|
||||
backlog.pop_front();
|
||||
}
|
||||
handler.overdue = false;
|
||||
}
|
||||
|
||||
std::vector<InMessage> messages = on_request->DequeueAll();
|
||||
bool did_work = messages.size();
|
||||
for (InMessage &message : messages)
|
||||
handler.Run(message);
|
||||
try {
|
||||
handler.Run(message);
|
||||
} catch (NotIndexed &ex) {
|
||||
backlog.push_back(std::move(message));
|
||||
backlog.back().backlog_path = ex.path;
|
||||
path2backlog[ex.path].push_back(&backlog.back());
|
||||
}
|
||||
|
||||
bool indexed = false;
|
||||
for (int i = 20; i--;) {
|
||||
@ -592,6 +619,16 @@ void MainLoop() {
|
||||
did_work = true;
|
||||
indexed = true;
|
||||
Main_OnIndexed(&db, &wfiles, &*update);
|
||||
if (update->files_def_update) {
|
||||
auto it = path2backlog.find(update->files_def_update->first.path);
|
||||
if (it != path2backlog.end()) {
|
||||
for (auto &message : it->second) {
|
||||
handler.Run(*message);
|
||||
message->backlog_path.clear();
|
||||
}
|
||||
path2backlog.erase(it);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (did_work) {
|
||||
@ -603,7 +640,10 @@ void MainLoop() {
|
||||
FreeUnusedMemory();
|
||||
has_indexed = false;
|
||||
}
|
||||
main_waiter->Wait(quit, on_indexed, on_request);
|
||||
if (backlog.empty())
|
||||
main_waiter->Wait(quit, on_indexed, on_request);
|
||||
else
|
||||
main_waiter->WaitUntil(backlog[0].deadline, on_indexed, on_request);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -6,6 +6,7 @@
|
||||
#include "utils.hh"
|
||||
|
||||
#include <atomic>
|
||||
#include <chrono>
|
||||
#include <condition_variable>
|
||||
#include <deque>
|
||||
#include <mutex>
|
||||
@ -64,6 +65,14 @@ struct MultiQueueWaiter {
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
template <typename... BaseThreadQueue>
|
||||
void WaitUntil(std::chrono::steady_clock::time_point t,
|
||||
BaseThreadQueue... queues) {
|
||||
MultiQueueLock<BaseThreadQueue...> l(queues...);
|
||||
if (!HasState({queues...}))
|
||||
cv.wait_until(l, t);
|
||||
}
|
||||
};
|
||||
|
||||
// A threadsafe-queue. http://stackoverflow.com/a/16075550
|
||||
|
Loading…
Reference in New Issue
Block a user