mirror of
https://github.com/MaskRay/ccls.git
synced 2025-04-05 00:12:13 +00:00
33 lines
878 B
C++
33 lines
878 B
C++
// Copyright 2017-2018 ccls Authors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
#include "message_handler.h"
|
|
#include "pipeline.hh"
|
|
using namespace ccls;
|
|
|
|
namespace {
|
|
MethodType kMethodType = "shutdown";
|
|
|
|
struct In_Shutdown : public RequestInMessage {
|
|
MethodType GetMethodType() const override { return kMethodType; }
|
|
};
|
|
MAKE_REFLECT_STRUCT(In_Shutdown, id);
|
|
REGISTER_IN_MESSAGE(In_Shutdown);
|
|
|
|
struct Out_Shutdown : public lsOutMessage<Out_Shutdown> {
|
|
lsRequestId id;
|
|
JsonNull result;
|
|
};
|
|
MAKE_REFLECT_STRUCT(Out_Shutdown, jsonrpc, id, result);
|
|
|
|
struct Handler_Shutdown : BaseMessageHandler<In_Shutdown> {
|
|
MethodType GetMethodType() const override { return kMethodType; }
|
|
void Run(In_Shutdown *request) override {
|
|
Out_Shutdown out;
|
|
out.id = request->id;
|
|
pipeline::WriteStdout(kMethodType, out);
|
|
}
|
|
};
|
|
REGISTER_MESSAGE_HANDLER(Handler_Shutdown);
|
|
} // namespace
|