mirror of
https://github.com/MaskRay/ccls.git
synced 2024-11-25 00:55:08 +00:00
39 lines
1.3 KiB
C++
39 lines
1.3 KiB
C++
#include "cache_manager.h"
|
|
#include "clang_complete.h"
|
|
#include "message_handler.h"
|
|
#include "project.h"
|
|
#include "working_files.h"
|
|
#include "queue_manager.h"
|
|
|
|
namespace {
|
|
MethodType kMethodType = "textDocument/didChange";
|
|
|
|
struct In_TextDocumentDidChange : public NotificationInMessage {
|
|
MethodType GetMethodType() const override { return kMethodType; }
|
|
lsTextDocumentDidChangeParams params;
|
|
};
|
|
|
|
MAKE_REFLECT_STRUCT(In_TextDocumentDidChange, params);
|
|
REGISTER_IN_MESSAGE(In_TextDocumentDidChange);
|
|
|
|
struct Handler_TextDocumentDidChange
|
|
: BaseMessageHandler<In_TextDocumentDidChange> {
|
|
MethodType GetMethodType() const override { return kMethodType; }
|
|
|
|
void Run(In_TextDocumentDidChange* request) override {
|
|
std::string path = request->params.textDocument.uri.GetPath();
|
|
working_files->OnChange(request->params);
|
|
if (g_config->index.onDidChange) {
|
|
Project::Entry entry = project->FindCompilationEntryForFile(path);
|
|
QueueManager::instance()->index_request.PushBack(
|
|
Index_Request(entry.filename, entry.args, true /*is_interactive*/),
|
|
true);
|
|
}
|
|
clang_complete->NotifyEdit(path);
|
|
clang_complete->DiagnosticsUpdate(
|
|
request->params.textDocument.AsTextDocumentIdentifier());
|
|
}
|
|
};
|
|
REGISTER_MESSAGE_HANDLER(Handler_TextDocumentDidChange);
|
|
} // namespace
|