ccls/src/messages/text_document_did_save.cc

68 lines
2.4 KiB
C++
Raw Normal View History

#include "cache_manager.h"
2017-12-29 16:29:47 +00:00
#include "clang_complete.h"
2017-12-06 03:32:33 +00:00
#include "message_handler.h"
2017-12-29 16:29:47 +00:00
#include "project.h"
#include "queue_manager.h"
2017-12-06 03:32:33 +00:00
#include <loguru/loguru.hpp>
namespace {
MethodType kMethodType = "textDocument/didSave";
2018-03-22 05:01:21 +00:00
struct In_TextDocumentDidSave : public NotificationInMessage {
MethodType GetMethodType() const override { return kMethodType; }
2017-12-06 04:39:44 +00:00
struct Params {
// The document that was saved.
lsTextDocumentIdentifier textDocument;
// Optional the content when saved. Depends on the includeText value
// when the save notifcation was requested.
// std::string text;
};
Params params;
};
MAKE_REFLECT_STRUCT(In_TextDocumentDidSave::Params, textDocument);
MAKE_REFLECT_STRUCT(In_TextDocumentDidSave, params);
REGISTER_IN_MESSAGE(In_TextDocumentDidSave);
struct Handler_TextDocumentDidSave
: BaseMessageHandler<In_TextDocumentDidSave> {
MethodType GetMethodType() const override { return kMethodType; }
2017-12-06 04:39:44 +00:00
void Run(In_TextDocumentDidSave* request) override {
2017-12-06 03:32:33 +00:00
std::string path = request->params.textDocument.uri.GetPath();
2017-12-07 01:00:19 +00:00
2017-12-06 03:32:33 +00:00
// Send out an index request, and copy the current buffer state so we
// can update the cached index contents when the index is done.
//
// We also do not index if there is already an index request or if
// the client requested indexing on didChange instead.
2017-12-06 03:32:33 +00:00
//
// TODO: Cancel outgoing index request. Might be tricky to make
// efficient since we have to cancel.
// - we could have an |atomic<int> active_cancellations| variable
// that all of the indexers check before accepting an index. if
// zero we don't slow down fast-path. if non-zero we acquire
// mutex and check to see if we should skip the current request.
// if so, ignore that index response.
// TODO: send as priority request
if (!config->enableIndexOnDidChange) {
2018-03-31 03:16:33 +00:00
std::optional<std::string> content = ReadContent(path);
if (!content) {
LOG_S(ERROR) << "Unable to read file content after saving " << path;
} else {
Project::Entry entry = project->FindCompilationEntryForFile(path);
QueueManager::instance()->index_request.PushBack(
Index_Request(entry.filename, entry.args, true /*is_interactive*/,
2018-04-01 00:49:32 +00:00
*content, ICacheManager::Make()),
true);
}
}
2017-12-06 03:32:33 +00:00
clang_complete->NotifySave(path);
}
};
REGISTER_MESSAGE_HANDLER(Handler_TextDocumentDidSave);
2017-12-07 01:00:19 +00:00
} // namespace