mirror of
https://github.com/MaskRay/ccls.git
synced 2024-11-26 17:41:58 +00:00
70 lines
1.7 KiB
C++
70 lines
1.7 KiB
C++
#pragma once
|
|
|
|
#include "utils.h"
|
|
#include "serializer.h"
|
|
|
|
#include <string>
|
|
|
|
enum class IpcId : int {
|
|
// Language server specific requests.
|
|
CancelRequest = 0,
|
|
Initialize,
|
|
Initialized,
|
|
Exit,
|
|
TextDocumentDidOpen,
|
|
TextDocumentDidChange,
|
|
TextDocumentDidClose,
|
|
TextDocumentDidSave,
|
|
TextDocumentPublishDiagnostics,
|
|
TextDocumentRename,
|
|
TextDocumentCompletion,
|
|
TextDocumentSignatureHelp,
|
|
TextDocumentDefinition,
|
|
TextDocumentDocumentHighlight,
|
|
TextDocumentHover,
|
|
TextDocumentReferences,
|
|
TextDocumentDocumentSymbol,
|
|
TextDocumentDocumentLink,
|
|
TextDocumentCodeAction,
|
|
TextDocumentCodeLens,
|
|
CodeLensResolve,
|
|
WorkspaceSymbol,
|
|
|
|
// Custom notifications
|
|
CqueryPublishInactiveRegions,
|
|
|
|
// Custom messages
|
|
CqueryFreshenIndex,
|
|
// Messages used in tree views.
|
|
CqueryTypeHierarchyTree,
|
|
CqueryCallTreeInitial,
|
|
CqueryCallTreeExpand,
|
|
// These are like DocumentReferences but show different types of data.
|
|
CqueryVars, // Show all variables of a type.
|
|
CqueryCallers, // Show all callers of a function.
|
|
CqueryBase, // Show base types/method.
|
|
CqueryDerived, // Show all derived types/methods.
|
|
|
|
// 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;
|
|
IpcId original_ipc_id;
|
|
};
|
|
MAKE_REFLECT_STRUCT(Ipc_Cout, content); |