2018-01-09 08:20:51 +00:00
|
|
|
#include "message_handler.h"
|
|
|
|
#include "queue_manager.h"
|
|
|
|
|
|
|
|
namespace {
|
2018-01-19 09:01:56 +00:00
|
|
|
struct Ipc_Shutdown : public RequestMessage<Ipc_Shutdown> {
|
2018-01-09 08:20:51 +00:00
|
|
|
static const IpcId kIpcId = IpcId::Shutdown;
|
|
|
|
};
|
2018-01-15 06:53:51 +00:00
|
|
|
MAKE_REFLECT_STRUCT(Ipc_Shutdown, id);
|
2018-01-09 08:20:51 +00:00
|
|
|
REGISTER_IPC_MESSAGE(Ipc_Shutdown);
|
|
|
|
|
2018-01-11 02:43:01 +00:00
|
|
|
struct Out_Shutdown : public lsOutMessage<Out_Shutdown> {
|
|
|
|
lsRequestId id; // defaults to std::monostate (null)
|
2018-01-10 06:34:58 +00:00
|
|
|
std::monostate result; // null
|
2018-01-09 08:20:51 +00:00
|
|
|
};
|
|
|
|
MAKE_REFLECT_STRUCT(Out_Shutdown, jsonrpc, id, result);
|
|
|
|
|
|
|
|
struct ShutdownHandler : BaseMessageHandler<Ipc_Shutdown> {
|
|
|
|
void Run(Ipc_Shutdown* request) override {
|
|
|
|
Out_Shutdown out;
|
2018-01-13 19:39:06 +00:00
|
|
|
out.id = request->id;
|
2018-01-09 08:20:51 +00:00
|
|
|
QueueManager::WriteStdout(IpcId::TextDocumentDefinition, out);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
REGISTER_MESSAGE_HANDLER(ShutdownHandler);
|
|
|
|
} // namespace
|