mirror of
https://github.com/MaskRay/ccls.git
synced 2025-04-04 07:52:12 +00:00
60 lines
1.8 KiB
C++
60 lines
1.8 KiB
C++
/* 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.
|
|
==============================================================================*/
|
|
|
|
#pragma once
|
|
|
|
#include "serializer.h"
|
|
#include "utils.h"
|
|
|
|
#include <string>
|
|
|
|
using MethodType = const char *;
|
|
extern MethodType kMethodType_Unknown;
|
|
extern MethodType kMethodType_Exit;
|
|
extern MethodType kMethodType_TextDocumentPublishDiagnostics;
|
|
extern MethodType kMethodType_CclsPublishSkippedRanges;
|
|
extern MethodType kMethodType_CclsPublishSemanticHighlighting;
|
|
|
|
struct lsRequestId {
|
|
// The client can send the request id as an int or a string. We should output
|
|
// the same format we received.
|
|
enum Type { kNone, kInt, kString };
|
|
Type type = kNone;
|
|
|
|
int value = -1;
|
|
|
|
bool Valid() const { return type != kNone; }
|
|
};
|
|
void Reflect(Reader &visitor, lsRequestId &value);
|
|
void Reflect(Writer &visitor, lsRequestId &value);
|
|
|
|
struct InMessage {
|
|
virtual ~InMessage() = default;
|
|
|
|
virtual MethodType GetMethodType() const = 0;
|
|
virtual lsRequestId GetRequestId() const = 0;
|
|
};
|
|
|
|
struct RequestInMessage : public InMessage {
|
|
// number or string, actually no null
|
|
lsRequestId id;
|
|
lsRequestId GetRequestId() const override { return id; }
|
|
};
|
|
|
|
// NotificationInMessage does not have |id|.
|
|
struct NotificationInMessage : public InMessage {
|
|
lsRequestId GetRequestId() const override { return lsRequestId(); }
|
|
};
|