2018-08-21 05:27:52 +00:00
|
|
|
/* Copyright 2017-2018 ccls Authors
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
==============================================================================*/
|
|
|
|
|
2018-01-09 08:20:51 +00:00
|
|
|
#include "message_handler.h"
|
2018-05-28 00:50:02 +00:00
|
|
|
#include "pipeline.hh"
|
|
|
|
using namespace ccls;
|
2018-01-09 08:20:51 +00:00
|
|
|
|
|
|
|
namespace {
|
2018-03-22 04:05:25 +00:00
|
|
|
MethodType kMethodType = "shutdown";
|
|
|
|
|
2018-03-22 05:01:21 +00:00
|
|
|
struct In_Shutdown : public RequestInMessage {
|
2018-03-22 04:05:25 +00:00
|
|
|
MethodType GetMethodType() const override { return kMethodType; }
|
2018-01-09 08:20:51 +00:00
|
|
|
};
|
2018-03-22 04:05:25 +00:00
|
|
|
MAKE_REFLECT_STRUCT(In_Shutdown, id);
|
|
|
|
REGISTER_IN_MESSAGE(In_Shutdown);
|
2018-01-09 08:20:51 +00:00
|
|
|
|
2018-01-11 02:43:01 +00:00
|
|
|
struct Out_Shutdown : public lsOutMessage<Out_Shutdown> {
|
2018-04-16 19:36:02 +00:00
|
|
|
lsRequestId id;
|
|
|
|
JsonNull result;
|
2018-01-09 08:20:51 +00:00
|
|
|
};
|
|
|
|
MAKE_REFLECT_STRUCT(Out_Shutdown, jsonrpc, id, result);
|
|
|
|
|
2018-03-22 04:05:25 +00:00
|
|
|
struct Handler_Shutdown : BaseMessageHandler<In_Shutdown> {
|
|
|
|
MethodType GetMethodType() const override { return kMethodType; }
|
2018-08-09 17:08:14 +00:00
|
|
|
void Run(In_Shutdown *request) override {
|
2018-01-09 08:20:51 +00:00
|
|
|
Out_Shutdown out;
|
2018-01-13 19:39:06 +00:00
|
|
|
out.id = request->id;
|
2018-05-28 00:50:02 +00:00
|
|
|
pipeline::WriteStdout(kMethodType, out);
|
2018-01-09 08:20:51 +00:00
|
|
|
}
|
|
|
|
};
|
2018-03-22 04:05:25 +00:00
|
|
|
REGISTER_MESSAGE_HANDLER(Handler_Shutdown);
|
2018-08-09 17:08:14 +00:00
|
|
|
} // namespace
|