ccls/src/messages/shutdown.cc
Fangrui Song 37152da0fc Add std::monostate to represent null field and add Ipc::Shutdown
Fixes #265

// FIXME lsRequestId should be number | string | null (std::variant<std::monostate, double, string>
2018-01-09 00:23:00 -08:00

28 lines
756 B
C++

#include "message_handler.h"
#include "queue_manager.h"
namespace {
struct Ipc_Shutdown : public IpcMessage<Ipc_Shutdown> {
static const IpcId kIpcId = IpcId::Shutdown;
};
MAKE_REFLECT_EMPTY_STRUCT(Ipc_Shutdown);
REGISTER_IPC_MESSAGE(Ipc_Shutdown);
struct Out_Shutdown
: public lsOutMessage<Out_Shutdown> {
lsRequestId id;
std::monostate result;
};
MAKE_REFLECT_STRUCT(Out_Shutdown, jsonrpc, id, result);
struct ShutdownHandler : BaseMessageHandler<Ipc_Shutdown> {
void Run(Ipc_Shutdown* request) override {
Out_Shutdown out;
// FIXME lsRequestId should be number | string | null
out.id.id0 = 0;
QueueManager::WriteStdout(IpcId::TextDocumentDefinition, out);
}
};
REGISTER_MESSAGE_HANDLER(ShutdownHandler);
} // namespace