2017-03-25 23:58:11 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "utils.h"
|
|
|
|
#include "serializer.h"
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
enum class IpcId : int {
|
|
|
|
// Language server specific requests.
|
|
|
|
CancelRequest = 0,
|
|
|
|
Initialize,
|
|
|
|
Initialized,
|
2017-05-03 06:45:10 +00:00
|
|
|
Exit,
|
2017-03-26 06:47:59 +00:00
|
|
|
TextDocumentDidOpen,
|
|
|
|
TextDocumentDidChange,
|
|
|
|
TextDocumentDidClose,
|
2017-04-10 00:08:54 +00:00
|
|
|
TextDocumentDidSave,
|
2017-04-14 08:21:03 +00:00
|
|
|
TextDocumentRename,
|
2017-03-26 06:47:59 +00:00
|
|
|
TextDocumentCompletion,
|
2017-04-03 02:21:21 +00:00
|
|
|
TextDocumentDefinition,
|
2017-04-14 06:43:50 +00:00
|
|
|
TextDocumentDocumentHighlight,
|
2017-04-14 05:18:02 +00:00
|
|
|
TextDocumentHover,
|
2017-04-10 05:34:06 +00:00
|
|
|
TextDocumentReferences,
|
2017-03-25 23:58:11 +00:00
|
|
|
TextDocumentDocumentSymbol,
|
|
|
|
TextDocumentCodeLens,
|
|
|
|
CodeLensResolve,
|
|
|
|
WorkspaceSymbol,
|
|
|
|
|
2017-04-21 04:50:31 +00:00
|
|
|
// Custom messages
|
|
|
|
CqueryFreshenIndex,
|
|
|
|
|
2017-03-25 23:58:11 +00:00
|
|
|
// Internal implementation detail.
|
|
|
|
Cout
|
|
|
|
};
|
|
|
|
MAKE_ENUM_HASHABLE(IpcId)
|
|
|
|
MAKE_REFLECT_TYPE_PROXY(IpcId, int)
|
|
|
|
const char* IpcIdToString(IpcId id);
|
|
|
|
|
|
|
|
struct BaseIpcMessage {
|
|
|
|
const IpcId method_id;
|
|
|
|
BaseIpcMessage(IpcId method_id);
|
|
|
|
};
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
struct IpcMessage : public BaseIpcMessage {
|
|
|
|
IpcMessage() : BaseIpcMessage(T::kIpcId) {}
|
|
|
|
};
|
|
|
|
|
|
|
|
struct Ipc_Cout : public IpcMessage<Ipc_Cout> {
|
|
|
|
static constexpr IpcId kIpcId = IpcId::Cout;
|
|
|
|
std::string content;
|
2017-04-21 07:46:51 +00:00
|
|
|
IpcId original_ipc_id;
|
2017-03-25 23:58:11 +00:00
|
|
|
};
|
|
|
|
MAKE_REFLECT_STRUCT(Ipc_Cout, content);
|