ccls/src/language_server_api.h

1302 lines
31 KiB
C
Raw Normal View History

2017-03-05 02:16:23 +00:00
#pragma once
2017-03-25 20:32:44 +00:00
#include "serializer.h"
#include "utils.h"
#include <optional.h>
#include <rapidjson/writer.h>
2017-03-25 21:57:06 +00:00
#include <algorithm>
2017-03-05 02:16:23 +00:00
#include <iostream>
2017-03-25 19:18:25 +00:00
#include <sstream>
2017-03-05 02:16:23 +00:00
#include <unordered_map>
#include <unordered_set>
using std::experimental::optional;
using std::experimental::nullopt;
2017-03-10 07:06:01 +00:00
/////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////
///////////////////////////// OUTGOING MESSAGES /////////////////////////////
/////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////
2017-03-25 21:57:06 +00:00
enum class IpcId : int {
2017-03-12 00:36:00 +00:00
// Language server specific requests.
CancelRequest = 0,
Initialize,
Initialized,
TextDocumentDocumentSymbol,
2017-03-15 07:14:44 +00:00
TextDocumentCodeLens,
CodeLensResolve,
2017-03-12 00:36:00 +00:00
WorkspaceSymbol,
2017-03-25 19:18:25 +00:00
// Internal implementation detail.
Quit,
IsAlive,
OpenProject,
Cout
2017-03-12 00:36:00 +00:00
};
MAKE_ENUM_HASHABLE(IpcId)
MAKE_REFLECT_TYPE_PROXY(IpcId, int)
const char* IpcIdToString(IpcId id);
2017-03-12 00:36:00 +00:00
struct lsRequestId {
2017-03-10 07:06:01 +00:00
optional<int> id0;
optional<std::string> id1;
};
void Reflect(Writer& visitor, lsRequestId& value);
void Reflect(Reader& visitor, lsRequestId& id);
2017-03-05 02:16:23 +00:00
2017-03-10 07:06:01 +00:00
/////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////
///////////////////////////// INCOMING MESSAGES /////////////////////////////
/////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////
2017-03-05 02:16:23 +00:00
2017-03-25 21:02:45 +00:00
struct BaseIpcMessage;
2017-03-05 02:16:23 +00:00
2017-03-10 07:06:01 +00:00
struct MessageRegistry {
static MessageRegistry* instance_;
static MessageRegistry* instance();
2017-03-05 02:16:23 +00:00
2017-03-25 21:02:45 +00:00
using Allocator = std::function<std::unique_ptr<BaseIpcMessage>(Reader& visitor)>;
2017-03-10 07:06:01 +00:00
std::unordered_map<std::string, Allocator> allocators;
2017-03-05 02:16:23 +00:00
2017-03-10 07:06:01 +00:00
template<typename T>
void Register() {
std::string method_name = IpcIdToString(T::kIpcId);
2017-03-25 19:18:25 +00:00
allocators[method_name] = [](Reader& visitor) {
auto result = MakeUnique<T>();
Reflect(visitor, *result);
return result;
2017-03-10 07:06:01 +00:00
};
2017-03-05 02:16:23 +00:00
}
std::unique_ptr<BaseIpcMessage> ReadMessageFromStdin();
std::unique_ptr<BaseIpcMessage> Parse(Reader& visitor);
2017-03-10 07:06:01 +00:00
};
2017-03-05 02:16:23 +00:00
2017-03-25 21:02:45 +00:00
struct BaseIpcMessage {
2017-03-25 21:57:06 +00:00
const IpcId method_id;
BaseIpcMessage(IpcId method_id);
2017-03-10 07:06:01 +00:00
};
2017-03-05 02:16:23 +00:00
2017-03-25 21:02:45 +00:00
template <typename T>
struct IpcMessage : public BaseIpcMessage {
2017-03-25 21:57:06 +00:00
IpcMessage() : BaseIpcMessage(T::kIpcId) {}
2017-03-10 07:06:01 +00:00
};
2017-03-05 02:16:23 +00:00
2017-03-25 21:45:49 +00:00
template<typename TDerived>
2017-03-25 20:40:04 +00:00
struct lsOutMessage {
2017-03-25 21:45:49 +00:00
// All derived types need to reflect on the |jsonrpc| member.
std::string jsonrpc = "2.0";
2017-03-24 07:59:47 +00:00
// Send the message to the language client by writing it to stdout.
2017-03-25 21:45:49 +00:00
void Write(std::ostream& out) {
2017-03-24 07:59:47 +00:00
rapidjson::StringBuffer output;
Writer writer(output);
2017-03-25 21:45:49 +00:00
auto that = static_cast<TDerived*>(this);
Reflect(writer, *that);
2017-03-24 07:59:47 +00:00
2017-03-25 19:18:25 +00:00
out << "Content-Length: " << output.GetSize();
2017-03-25 21:45:49 +00:00
out << (char)13 << char(10) << char(13) << char(10); // CRLFCRLF
2017-03-25 19:18:25 +00:00
out << output.GetString();
out.flush();
2017-03-24 07:59:47 +00:00
}
};
struct lsResponseError {
struct Data {
virtual void Write(Writer& writer) = 0;
};
enum class lsErrorCodes : int {
ParseError = -32700,
InvalidRequest = -32600,
MethodNotFound = -32601,
InvalidParams = -32602,
InternalError = -32603,
serverErrorStart = -32099,
serverErrorEnd = -32000,
ServerNotInitialized = -32002,
UnknownErrorCode = -32001
};
lsErrorCodes code;
// Short description.
std::string message;
std::unique_ptr<Data> data;
void Write(Writer& visitor);
2017-03-24 07:59:47 +00:00
};
2017-03-05 02:16:23 +00:00
2017-03-25 01:27:41 +00:00
2017-03-05 02:16:23 +00:00
2017-03-05 19:48:05 +00:00
2017-03-05 02:16:23 +00:00
2017-03-10 07:06:01 +00:00
/////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////
////////////////////////////// PRIMITIVE TYPES //////////////////////////////
/////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////
2017-03-05 02:16:23 +00:00
2017-03-10 07:06:01 +00:00
struct lsDocumentUri {
static lsDocumentUri FromPath(const std::string& path);
2017-03-11 08:07:32 +00:00
lsDocumentUri();
bool operator==(const lsDocumentUri& other) const;
void SetPath(const std::string& path);
std::string GetPath();
2017-03-05 02:16:23 +00:00
std::string raw_uri;
2017-03-10 07:06:01 +00:00
};
2017-03-16 07:36:49 +00:00
MAKE_HASHABLE(lsDocumentUri, t.raw_uri);
2017-03-05 02:16:23 +00:00
2017-03-10 07:06:01 +00:00
template<typename TVisitor>
void Reflect(TVisitor& visitor, lsDocumentUri& value) {
Reflect(visitor, value.raw_uri);
}
2017-03-05 02:16:23 +00:00
2017-03-10 07:06:01 +00:00
struct lsPosition {
lsPosition();
lsPosition(int line, int character);
bool operator==(const lsPosition& other) const;
2017-03-10 07:06:01 +00:00
// Note: these are 0-based.
int line = 0;
int character = 0;
};
2017-03-16 07:36:49 +00:00
MAKE_HASHABLE(lsPosition, t.line, t.character);
2017-03-10 07:06:01 +00:00
template<typename TVisitor>
void Reflect(TVisitor& visitor, lsPosition& value) {
REFLECT_MEMBER_START();
REFLECT_MEMBER(line);
REFLECT_MEMBER(character);
REFLECT_MEMBER_END();
}
2017-03-05 02:16:23 +00:00
2017-03-10 07:06:01 +00:00
struct lsRange {
lsRange();
lsRange(lsPosition position);
2017-03-15 07:14:44 +00:00
bool operator==(const lsRange& other) const;
2017-03-16 07:36:49 +00:00
lsPosition start;
lsPosition end;
2017-03-10 07:06:01 +00:00
};
2017-03-16 07:36:49 +00:00
MAKE_HASHABLE(lsRange, t.start, t.end);
2017-03-05 02:16:23 +00:00
2017-03-10 07:06:01 +00:00
template<typename TVisitor>
void Reflect(TVisitor& visitor, lsRange& value) {
REFLECT_MEMBER_START();
REFLECT_MEMBER(start);
REFLECT_MEMBER(end);
REFLECT_MEMBER_END();
}
2017-03-05 02:16:23 +00:00
2017-03-10 07:06:01 +00:00
struct lsLocation {
lsLocation();
lsLocation(lsDocumentUri uri, lsRange range);
2017-03-15 07:14:44 +00:00
bool operator==(const lsLocation& other) const;
2017-03-16 07:36:49 +00:00
lsDocumentUri uri;
lsRange range;
2017-03-10 07:06:01 +00:00
};
MAKE_HASHABLE(lsLocation, t.uri, t.range)
2017-03-10 07:06:01 +00:00
template<typename TVisitor>
void Reflect(TVisitor& visitor, lsLocation& value) {
REFLECT_MEMBER_START();
REFLECT_MEMBER(uri);
REFLECT_MEMBER(range);
REFLECT_MEMBER_END();
}
2017-03-05 02:16:23 +00:00
2017-03-10 07:06:01 +00:00
enum class lsSymbolKind : int {
File = 1,
Module = 2,
Namespace = 3,
Package = 4,
Class = 5,
Method = 6,
Property = 7,
Field = 8,
Constructor = 9,
Enum = 10,
Interface = 11,
Function = 12,
Variable = 13,
Constant = 14,
String = 15,
Number = 16,
Boolean = 17,
Array = 18
};
MAKE_REFLECT_TYPE_PROXY(lsSymbolKind, int)
2017-03-05 02:16:23 +00:00
2017-03-10 07:06:01 +00:00
struct lsSymbolInformation {
std::string name;
lsSymbolKind kind;
lsLocation location;
std::string containerName;
};
template<typename TVisitor>
void Reflect(TVisitor& visitor, lsSymbolInformation& value) {
REFLECT_MEMBER_START();
REFLECT_MEMBER(name);
REFLECT_MEMBER(kind);
REFLECT_MEMBER(location);
REFLECT_MEMBER(containerName);
REFLECT_MEMBER_END();
}
2017-03-05 02:16:23 +00:00
2017-03-15 07:14:44 +00:00
template<typename T>
2017-03-10 07:06:01 +00:00
struct lsCommand {
// Title of the command (ie, 'save')
std::string title;
// Actual command identifier.
std::string command;
2017-03-15 07:14:44 +00:00
// Arguments to run the command with.
T arguments;
2017-03-10 07:06:01 +00:00
};
2017-03-15 07:14:44 +00:00
template<typename TVisitor, typename T>
void Reflect(TVisitor& visitor, lsCommand<T>& value) {
2017-03-10 07:06:01 +00:00
REFLECT_MEMBER_START();
REFLECT_MEMBER(title);
REFLECT_MEMBER(command);
REFLECT_MEMBER(arguments);
REFLECT_MEMBER_END();
}
2017-03-05 02:16:23 +00:00
2017-03-15 07:14:44 +00:00
template<typename TData, typename TCommandArguments>
struct lsCodeLens {
// The range in which this code lens is valid. Should only span a single line.
lsRange range;
// The command this code lens represents.
optional<lsCommand<TCommandArguments>> command;
// A data entry field that is preserved on a code lens item between
// a code lens and a code lens resolve request.
TData data;
};
template<typename TVisitor, typename TData, typename TCommandArguments>
void Reflect(TVisitor& visitor, lsCodeLens<TData, TCommandArguments>& value) {
REFLECT_MEMBER_START();
REFLECT_MEMBER(range);
REFLECT_MEMBER(command);
REFLECT_MEMBER(data);
REFLECT_MEMBER_END();
}
2017-03-10 07:06:01 +00:00
// TODO: TextDocumentEdit
// TODO: WorkspaceEdit
2017-03-05 02:16:23 +00:00
2017-03-10 07:06:01 +00:00
struct lsTextDocumentIdentifier {
lsDocumentUri uri;
};
2017-03-05 02:16:23 +00:00
2017-03-10 07:06:01 +00:00
template<typename TVisitor>
void Reflect(TVisitor& visitor, lsTextDocumentIdentifier& value) {
REFLECT_MEMBER_START();
REFLECT_MEMBER(uri);
REFLECT_MEMBER_END();
}
2017-03-05 02:16:23 +00:00
2017-03-10 07:06:01 +00:00
// TODO: TextDocumentItem
// TODO: VersionedTextDocumentIdentifier
// TODO: TextDocumentPositionParams
// TODO: DocumentFilter
// TODO: DocumentSelector
2017-03-05 02:16:23 +00:00
2017-03-10 07:06:01 +00:00
/////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////
////////////////////////////// INITIALIZATION ///////////////////////////////
/////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////
2017-03-05 02:16:23 +00:00
2017-03-10 07:06:01 +00:00
// Workspace specific client capabilities.
struct lsWorkspaceClientCapabilites {
// The client supports applying batch edits to the workspace.
optional<bool> applyEdit;
2017-03-05 02:16:23 +00:00
2017-03-10 07:06:01 +00:00
struct lsWorkspaceEdit {
// The client supports versioned document changes in `WorkspaceEdit`s
optional<bool> documentChanges;
2017-03-05 02:16:23 +00:00
};
2017-03-10 07:06:01 +00:00
// Capabilities specific to `WorkspaceEdit`s
optional<lsWorkspaceEdit> workspaceEdit;
2017-03-05 02:16:23 +00:00
2017-03-10 07:06:01 +00:00
struct lsGenericDynamicReg {
// Did foo notification supports dynamic registration.
optional<bool> dynamicRegistration;
};
2017-03-05 02:16:23 +00:00
2017-03-09 06:27:42 +00:00
2017-03-10 07:06:01 +00:00
// Capabilities specific to the `workspace/didChangeConfiguration` notification.
optional<lsGenericDynamicReg> didChangeConfiguration;
2017-03-05 02:16:23 +00:00
2017-03-10 07:06:01 +00:00
// Capabilities specific to the `workspace/didChangeWatchedFiles` notification.
optional<lsGenericDynamicReg> didChangeWatchedFiles;
2017-03-05 02:16:23 +00:00
2017-03-10 07:06:01 +00:00
// Capabilities specific to the `workspace/symbol` request.
optional<lsGenericDynamicReg> symbol;
2017-03-05 02:16:23 +00:00
2017-03-10 07:06:01 +00:00
// Capabilities specific to the `workspace/executeCommand` request.
optional<lsGenericDynamicReg> executeCommand;
};
2017-03-05 02:16:23 +00:00
2017-03-10 07:06:01 +00:00
template<typename TVisitor>
void Reflect(TVisitor& visitor, lsWorkspaceClientCapabilites::lsWorkspaceEdit& value) {
REFLECT_MEMBER_START();
REFLECT_MEMBER(documentChanges);
REFLECT_MEMBER_END();
}
2017-03-05 02:16:23 +00:00
2017-03-10 07:06:01 +00:00
template<typename TVisitor>
void Reflect(TVisitor& visitor, lsWorkspaceClientCapabilites::lsGenericDynamicReg& value) {
REFLECT_MEMBER_START();
REFLECT_MEMBER(dynamicRegistration);
REFLECT_MEMBER_END();
}
2017-03-05 02:16:23 +00:00
2017-03-10 07:06:01 +00:00
template<typename TVisitor>
void Reflect(TVisitor& visitor, lsWorkspaceClientCapabilites& value) {
REFLECT_MEMBER_START();
REFLECT_MEMBER(applyEdit);
REFLECT_MEMBER(workspaceEdit);
REFLECT_MEMBER(didChangeConfiguration);
REFLECT_MEMBER(didChangeWatchedFiles);
REFLECT_MEMBER(symbol);
REFLECT_MEMBER(executeCommand);
REFLECT_MEMBER_END();
}
2017-03-05 02:16:23 +00:00
2017-03-10 07:06:01 +00:00
// Text document specific client capabilities.
struct lsTextDocumentClientCapabilities {
struct lsSynchronization {
// Whether text document synchronization supports dynamic registration.
optional<bool> dynamicRegistration;
2017-03-05 02:16:23 +00:00
2017-03-10 07:06:01 +00:00
// The client supports sending will save notifications.
optional<bool> willSave;
2017-03-05 02:16:23 +00:00
2017-03-10 07:06:01 +00:00
// The client supports sending a will save request and
// waits for a response providing text edits which will
// be applied to the document before it is saved.
optional<bool> willSaveWaitUntil;
2017-03-05 02:16:23 +00:00
2017-03-10 07:06:01 +00:00
// The client supports did save notifications.
optional<bool> didSave;
};
2017-03-05 02:16:23 +00:00
2017-03-10 07:06:01 +00:00
lsSynchronization synchronization;
2017-03-05 02:16:23 +00:00
2017-03-10 07:06:01 +00:00
struct lsCompletion {
// Whether completion supports dynamic registration.
optional<bool> dynamicRegistration;
2017-03-05 02:16:23 +00:00
2017-03-10 07:06:01 +00:00
struct lsCompletionItem {
// Client supports snippets as insert text.
//
// A snippet can define tab stops and placeholders with `$1`, `$2`
// and `${3:foo}`. `$0` defines the final tab stop, it defaults to
// the end of the snippet. Placeholders with equal identifiers are linked,
// that is typing in one will update others too.
optional<bool> snippetSupport;
};
2017-03-05 02:16:23 +00:00
2017-03-10 07:06:01 +00:00
// The client supports the following `CompletionItem` specific
// capabilities.
optional<lsCompletionItem> completionItem;
};
// Capabilities specific to the `textDocument/completion`
optional<lsCompletion> completion;
2017-03-05 02:16:23 +00:00
2017-03-10 07:06:01 +00:00
struct lsGenericDynamicReg {
// Whether foo supports dynamic registration.
optional<bool> dynamicRegistration;
};
2017-03-05 02:16:23 +00:00
2017-03-10 07:06:01 +00:00
// Capabilities specific to the `textDocument/hover`
optional<lsGenericDynamicReg> hover;
2017-03-05 02:16:23 +00:00
2017-03-10 07:06:01 +00:00
// Capabilities specific to the `textDocument/signatureHelp`
optional<lsGenericDynamicReg> signatureHelp;
2017-03-05 02:16:23 +00:00
2017-03-10 07:06:01 +00:00
// Capabilities specific to the `textDocument/references`
optional<lsGenericDynamicReg> references;
2017-03-05 02:16:23 +00:00
2017-03-10 07:06:01 +00:00
// Capabilities specific to the `textDocument/documentHighlight`
optional<lsGenericDynamicReg> documentHighlight;
2017-03-05 02:16:23 +00:00
2017-03-10 07:06:01 +00:00
// Capabilities specific to the `textDocument/documentSymbol`
optional<lsGenericDynamicReg> documentSymbol;
2017-03-05 02:16:23 +00:00
2017-03-10 07:06:01 +00:00
// Capabilities specific to the `textDocument/formatting`
optional<lsGenericDynamicReg> formatting;
2017-03-05 02:16:23 +00:00
2017-03-10 07:06:01 +00:00
// Capabilities specific to the `textDocument/rangeFormatting`
optional<lsGenericDynamicReg> rangeFormatting;
2017-03-05 02:16:23 +00:00
2017-03-10 07:06:01 +00:00
// Capabilities specific to the `textDocument/onTypeFormatting`
optional<lsGenericDynamicReg> onTypeFormatting;
2017-03-05 02:16:23 +00:00
2017-03-10 07:06:01 +00:00
// Capabilities specific to the `textDocument/definition`
optional<lsGenericDynamicReg> definition;
2017-03-05 02:16:23 +00:00
2017-03-10 07:06:01 +00:00
// Capabilities specific to the `textDocument/codeAction`
optional<lsGenericDynamicReg> codeAction;
2017-03-05 02:16:23 +00:00
2017-03-15 07:14:44 +00:00
struct CodeLensRegistrationOptions : public lsGenericDynamicReg {
// Code lens has a resolve provider as well.
bool resolveProvider;
};
2017-03-10 07:06:01 +00:00
// Capabilities specific to the `textDocument/codeLens`
2017-03-15 07:14:44 +00:00
optional<CodeLensRegistrationOptions> codeLens;
2017-03-05 02:16:23 +00:00
2017-03-10 07:06:01 +00:00
// Capabilities specific to the `textDocument/documentLink`
optional<lsGenericDynamicReg> documentLink;
2017-03-05 02:16:23 +00:00
2017-03-10 07:06:01 +00:00
// Capabilities specific to the `textDocument/rename`
optional<lsGenericDynamicReg> rename;
};
2017-03-05 02:16:23 +00:00
2017-03-10 07:06:01 +00:00
template<typename TVisitor>
void Reflect(TVisitor& visitor, lsTextDocumentClientCapabilities::lsSynchronization& value) {
REFLECT_MEMBER_START();
REFLECT_MEMBER(dynamicRegistration);
REFLECT_MEMBER(willSave);
REFLECT_MEMBER(willSaveWaitUntil);
REFLECT_MEMBER(didSave);
REFLECT_MEMBER_END();
}
2017-03-05 02:16:23 +00:00
2017-03-10 07:06:01 +00:00
template<typename TVisitor>
void Reflect(TVisitor& visitor, lsTextDocumentClientCapabilities::lsCompletion& value) {
REFLECT_MEMBER_START();
REFLECT_MEMBER(dynamicRegistration);
REFLECT_MEMBER(completionItem);
REFLECT_MEMBER_END();
}
2017-03-05 02:16:23 +00:00
2017-03-10 07:06:01 +00:00
template<typename TVisitor>
void Reflect(TVisitor& visitor, lsTextDocumentClientCapabilities::lsCompletion::lsCompletionItem& value) {
REFLECT_MEMBER_START();
REFLECT_MEMBER(snippetSupport);
REFLECT_MEMBER_END();
}
2017-03-05 02:16:23 +00:00
2017-03-10 07:06:01 +00:00
template<typename TVisitor>
void Reflect(TVisitor& visitor, lsTextDocumentClientCapabilities::lsGenericDynamicReg& value) {
REFLECT_MEMBER_START();
REFLECT_MEMBER(dynamicRegistration);
REFLECT_MEMBER_END();
}
2017-03-05 02:16:23 +00:00
2017-03-15 07:14:44 +00:00
template<typename TVisitor>
void Reflect(TVisitor& visitor, lsTextDocumentClientCapabilities::CodeLensRegistrationOptions& value) {
REFLECT_MEMBER_START();
REFLECT_MEMBER(dynamicRegistration);
REFLECT_MEMBER(resolveProvider);
REFLECT_MEMBER_END();
}
2017-03-10 07:06:01 +00:00
template<typename TVisitor>
void Reflect(TVisitor& visitor, lsTextDocumentClientCapabilities& value) {
REFLECT_MEMBER_START();
REFLECT_MEMBER(synchronization);
REFLECT_MEMBER(completion);
REFLECT_MEMBER(hover);
REFLECT_MEMBER(signatureHelp);
REFLECT_MEMBER(references);
REFLECT_MEMBER(documentHighlight);
REFLECT_MEMBER(documentSymbol);
REFLECT_MEMBER(formatting);
REFLECT_MEMBER(rangeFormatting);
REFLECT_MEMBER(onTypeFormatting);
REFLECT_MEMBER(definition);
REFLECT_MEMBER(codeAction);
REFLECT_MEMBER(codeLens);
REFLECT_MEMBER(documentLink);
REFLECT_MEMBER(rename);
REFLECT_MEMBER_END();
}
2017-03-05 02:16:23 +00:00
2017-03-10 07:06:01 +00:00
struct lsClientCapabilities {
// Workspace specific client capabilities.
optional<lsWorkspaceClientCapabilites> workspace;
2017-03-05 02:16:23 +00:00
2017-03-10 07:06:01 +00:00
// Text document specific client capabilities.
optional<lsTextDocumentClientCapabilities> textDocument;
2017-03-05 02:16:23 +00:00
2017-03-10 07:06:01 +00:00
/**
* Experimental client capabilities.
*/
// experimental?: any; // TODO
};
template<typename TVisitor>
void Reflect(TVisitor& visitor, lsClientCapabilities& value) {
REFLECT_MEMBER_START();
REFLECT_MEMBER(workspace);
REFLECT_MEMBER(textDocument);
REFLECT_MEMBER_END();
}
2017-03-05 02:16:23 +00:00
2017-03-10 07:06:01 +00:00
struct lsInitializeParams {
// The process Id of the parent process that started
// the server. Is null if the process has not been started by another process.
// If the parent process is not alive then the server should exit (see exit notification) its process.
optional<int> processId;
// The rootPath of the workspace. Is null
// if no folder is open.
//
// @deprecated in favour of rootUri.
optional<std::string> rootPath;
// The rootUri of the workspace. Is null if no
// folder is open. If both `rootPath` and `rootUri` are set
// `rootUri` wins.
optional<lsDocumentUri> rootUri;
// User provided initialization options.
// initializationOptions?: any; // TODO
// The capabilities provided by the client (editor or tool)
lsClientCapabilities capabilities;
enum class lsTrace {
// NOTE: serialized as a string, one of 'off' | 'messages' | 'verbose';
Off, // off
Messages, // messages
Verbose // verbose
2017-03-05 02:16:23 +00:00
};
2017-03-10 07:06:01 +00:00
// The initial trace setting. If omitted trace is disabled ('off').
lsTrace trace = lsTrace::Off;
};
void Reflect(Reader& reader, lsInitializeParams::lsTrace& value);
void Reflect(Writer& writer, lsInitializeParams::lsTrace& value);
2017-03-25 01:27:41 +00:00
2017-03-10 07:06:01 +00:00
template<typename TVisitor>
void Reflect(TVisitor& visitor, lsInitializeParams& value) {
REFLECT_MEMBER_START();
REFLECT_MEMBER(processId);
REFLECT_MEMBER(rootPath);
REFLECT_MEMBER(rootUri);
REFLECT_MEMBER(capabilities);
REFLECT_MEMBER(trace);
REFLECT_MEMBER_END();
}
2017-03-05 02:16:23 +00:00
2017-03-10 07:06:01 +00:00
struct lsInitializeError {
// Indicates whether the client should retry to send the
// initilize request after showing the message provided
// in the ResponseError.
bool retry;
};
template<typename TVisitor>
void Reflect(TVisitor& visitor, lsInitializeError& value) {
REFLECT_MEMBER_START();
REFLECT_MEMBER(retry);
REFLECT_MEMBER_END();
}
2017-03-05 02:16:23 +00:00
2017-03-10 07:06:01 +00:00
// Defines how the host (editor) should sync document changes to the language server.
enum class lsTextDocumentSyncKind {
// Documents should not be synced at all.
None = 0,
2017-03-05 02:16:23 +00:00
2017-03-10 07:06:01 +00:00
// Documents are synced by always sending the full content
// of the document.
Full = 1,
2017-03-05 02:16:23 +00:00
2017-03-10 07:06:01 +00:00
// Documents are synced by sending the full content on open.
// After that only incremental updates to the document are
// send.
Incremental = 2
};
MAKE_REFLECT_TYPE_PROXY(lsTextDocumentSyncKind, int)
2017-03-05 02:16:23 +00:00
2017-03-10 07:06:01 +00:00
// Completion options.
struct lsCompletionOptions {
// The server provides support to resolve additional
// information for a completion item.
bool resolveProvider = false;
// The characters that trigger completion automatically.
std::vector<std::string> triggerCharacters;
};
template<typename TVisitor>
void Reflect(TVisitor& visitor, lsCompletionOptions& value) {
REFLECT_MEMBER_START();
REFLECT_MEMBER(resolveProvider);
REFLECT_MEMBER(triggerCharacters);
REFLECT_MEMBER_END();
}
2017-03-05 02:16:23 +00:00
2017-03-10 07:06:01 +00:00
// Signature help options.
struct lsSignatureHelpOptions {
// The characters that trigger signature help automatically.
std::vector<std::string> triggerCharacters;
};
template<typename TVisitor>
void Reflect(TVisitor& visitor, lsSignatureHelpOptions& value) {
REFLECT_MEMBER_START();
REFLECT_MEMBER(triggerCharacters);
REFLECT_MEMBER_END();
}
2017-03-05 02:16:23 +00:00
2017-03-10 07:06:01 +00:00
// Code Lens options.
struct lsCodeLensOptions {
// Code lens has a resolve provider as well.
bool resolveProvider = false;
};
template<typename TVisitor>
void Reflect(TVisitor& visitor, lsCodeLensOptions& value) {
REFLECT_MEMBER_START();
REFLECT_MEMBER(resolveProvider);
REFLECT_MEMBER_END();
}
2017-03-05 02:16:23 +00:00
2017-03-10 07:06:01 +00:00
// Format document on type options
struct lsDocumentOnTypeFormattingOptions {
// A character on which formatting should be triggered, like `}`.
std::string firstTriggerCharacter;
// More trigger characters.
std::vector<std::string> moreTriggerCharacter;
};
template<typename TVisitor>
void Reflect(TVisitor& visitor, lsDocumentOnTypeFormattingOptions& value) {
REFLECT_MEMBER_START();
REFLECT_MEMBER(firstTriggerCharacter);
REFLECT_MEMBER(moreTriggerCharacter);
REFLECT_MEMBER_END();
}
2017-03-05 02:16:23 +00:00
2017-03-10 07:06:01 +00:00
// Document link options
struct lsDocumentLinkOptions {
// Document links have a resolve provider as well.
bool resolveProvider = false;
};
template<typename TVisitor>
void Reflect(TVisitor& visitor, lsDocumentLinkOptions& value) {
REFLECT_MEMBER_START();
REFLECT_MEMBER(resolveProvider);
REFLECT_MEMBER_END();
}
2017-03-05 02:16:23 +00:00
2017-03-10 07:06:01 +00:00
// Execute command options.
struct lsExecuteCommandOptions {
// The commands to be executed on the server
std::vector<std::string> commands;
};
template<typename TVisitor>
void Reflect(TVisitor& visitor, lsExecuteCommandOptions& value) {
REFLECT_MEMBER_START();
REFLECT_MEMBER(commands);
REFLECT_MEMBER_END();
}
2017-03-05 02:16:23 +00:00
2017-03-10 07:06:01 +00:00
// Save options.
struct lsSaveOptions {
// The client is supposed to include the content on save.
bool includeText = false;
};
template<typename TVisitor>
void Reflect(TVisitor& visitor, lsSaveOptions& value) {
REFLECT_MEMBER_START();
REFLECT_MEMBER(includeText);
REFLECT_MEMBER_END();
}
2017-03-05 02:16:23 +00:00
2017-03-10 07:06:01 +00:00
struct lsTextDocumentSyncOptions {
// Open and close notifications are sent to the server.
bool openClose = false;
// Change notificatins are sent to the server. See TextDocumentSyncKind.None, TextDocumentSyncKind.Full
// and TextDocumentSyncKindIncremental.
optional<lsTextDocumentSyncKind> change;
// Will save notifications are sent to the server.
bool willSave = false;
// Will save wait until requests are sent to the server.
bool willSaveWaitUntil = false;
// Save notifications are sent to the server.
optional<lsSaveOptions> save;
};
template<typename TVisitor>
void Reflect(TVisitor& visitor, lsTextDocumentSyncOptions& value) {
REFLECT_MEMBER_START();
REFLECT_MEMBER(openClose);
REFLECT_MEMBER(change);
REFLECT_MEMBER(willSave);
REFLECT_MEMBER(willSaveWaitUntil);
REFLECT_MEMBER(save);
REFLECT_MEMBER_END();
}
2017-03-05 02:16:23 +00:00
2017-03-10 07:06:01 +00:00
struct lsServerCapabilities {
// Defines how text documents are synced. Is either a detailed structure defining each notification or
// for backwards compatibility the TextDocumentSyncKind number.
optional<lsTextDocumentSyncOptions> textDocumentSync;
// The server provides hover support.
bool hoverProvider = false;
// The server provides completion support.
optional<lsCompletionOptions> completionProvider;
// The server provides signature help support.
optional<lsSignatureHelpOptions> signatureHelpProvider;
// The server provides goto definition support.
bool definitionProvider = false;
// The server provides find references support.
bool referencesProvider = false;
// The server provides document highlight support.
bool documentHighlightProvider = false;
// The server provides document symbol support.
bool documentSymbolProvider = false;
// The server provides workspace symbol support.
bool workspaceSymbolProvider = false;
// The server provides code actions.
bool codeActionProvider = false;
// The server provides code lens.
optional<lsCodeLensOptions> codeLensProvider;
// The server provides document formatting.
bool documentFormattingProvider = false;
// The server provides document range formatting.
bool documentRangeFormattingProvider = false;
// The server provides document formatting on typing.
optional<lsDocumentOnTypeFormattingOptions> documentOnTypeFormattingProvider;
// The server provides rename support.
bool renameProvider = false;
// The server provides document link support.
optional<lsDocumentLinkOptions> documentLinkProvider;
// The server provides execute command support.
optional<lsExecuteCommandOptions> executeCommandProvider;
};
template<typename TVisitor>
void Reflect(TVisitor& visitor, lsServerCapabilities& value) {
REFLECT_MEMBER_START();
REFLECT_MEMBER(textDocumentSync);
REFLECT_MEMBER(hoverProvider);
REFLECT_MEMBER(completionProvider);
REFLECT_MEMBER(signatureHelpProvider);
REFLECT_MEMBER(definitionProvider);
REFLECT_MEMBER(referencesProvider);
REFLECT_MEMBER(documentHighlightProvider);
REFLECT_MEMBER(documentSymbolProvider);
REFLECT_MEMBER(workspaceSymbolProvider);
REFLECT_MEMBER(codeActionProvider);
REFLECT_MEMBER(codeLensProvider);
REFLECT_MEMBER(documentFormattingProvider);
REFLECT_MEMBER(documentRangeFormattingProvider);
REFLECT_MEMBER(documentOnTypeFormattingProvider);
REFLECT_MEMBER(renameProvider);
REFLECT_MEMBER(documentLinkProvider);
REFLECT_MEMBER(executeCommandProvider);
REFLECT_MEMBER_END();
}
2017-03-05 02:16:23 +00:00
2017-03-10 07:06:01 +00:00
struct lsInitializeResult {
// The capabilities the language server provides.
lsServerCapabilities capabilities;
};
2017-03-05 02:16:23 +00:00
2017-03-10 07:06:01 +00:00
template<typename TVisitor>
void Reflect(TVisitor& visitor, lsInitializeResult& value) {
REFLECT_MEMBER_START();
REFLECT_MEMBER(capabilities);
REFLECT_MEMBER_END();
}
2017-03-05 02:16:23 +00:00
2017-03-25 21:57:06 +00:00
struct Ipc_InitializeRequest : public IpcMessage<Ipc_InitializeRequest> {
const static IpcId kIpcId = IpcId::Initialize;
2017-03-25 19:18:25 +00:00
lsRequestId id;
2017-03-10 07:06:01 +00:00
lsInitializeParams params;
};
2017-03-25 01:27:41 +00:00
template<typename TVisitor>
2017-03-25 21:02:45 +00:00
void Reflect(TVisitor& visitor, Ipc_InitializeRequest& value) {
2017-03-25 01:27:41 +00:00
REFLECT_MEMBER_START();
REFLECT_MEMBER(id);
REFLECT_MEMBER(params);
REFLECT_MEMBER_END();
}
2017-03-25 21:45:49 +00:00
struct Out_InitializeResponse : public lsOutMessage<Out_InitializeResponse> {
lsRequestId id;
2017-03-10 07:06:01 +00:00
lsInitializeResult result;
};
2017-03-25 21:45:49 +00:00
template<typename TVisitor>
void Reflect(TVisitor& visitor, Out_InitializeResponse& value) {
REFLECT_MEMBER_START();
REFLECT_MEMBER(jsonrpc);
REFLECT_MEMBER(id);
REFLECT_MEMBER(result);
REFLECT_MEMBER_END();
}
2017-03-05 02:16:23 +00:00
2017-03-25 21:57:06 +00:00
struct Ipc_InitializedNotification : public IpcMessage<Ipc_InitializedNotification> {
const static IpcId kIpcId = IpcId::Initialized;
2017-03-25 20:40:04 +00:00
lsRequestId id;
2017-03-10 07:06:01 +00:00
};
2017-03-25 01:27:41 +00:00
template<typename TVisitor>
2017-03-25 21:02:45 +00:00
void Reflect(TVisitor& visitor, Ipc_InitializedNotification& value) {
2017-03-25 01:27:41 +00:00
REFLECT_MEMBER_START();
REFLECT_MEMBER(id);
REFLECT_MEMBER_END();
}
2017-03-05 02:16:23 +00:00
2017-03-25 21:45:49 +00:00
// Cancel an existing request.
2017-03-25 21:02:45 +00:00
struct Ipc_CancelRequest : public IpcMessage<Ipc_CancelRequest> {
2017-03-25 21:57:06 +00:00
static const IpcId kIpcId = IpcId::CancelRequest;
lsRequestId id;
2017-03-25 21:02:45 +00:00
};
template<typename TVisitor>
void Reflect(TVisitor& visitor, Ipc_CancelRequest& value) {
REFLECT_MEMBER_START();
REFLECT_MEMBER(id);
REFLECT_MEMBER_END();
}
2017-03-05 02:16:23 +00:00
2017-03-25 21:45:49 +00:00
// List symbols in a document.
2017-03-10 07:06:01 +00:00
struct lsDocumentSymbolParams {
lsTextDocumentIdentifier textDocument;
};
template<typename TVisitor>
void Reflect(TVisitor& visitor, lsDocumentSymbolParams& value) {
REFLECT_MEMBER_START();
REFLECT_MEMBER(textDocument);
REFLECT_MEMBER_END();
}
2017-03-25 21:57:06 +00:00
struct Ipc_TextDocumentDocumentSymbol : public IpcMessage<Ipc_TextDocumentDocumentSymbol> {
const static IpcId kIpcId = IpcId::TextDocumentDocumentSymbol;
2017-03-05 02:16:23 +00:00
lsRequestId id;
2017-03-10 07:06:01 +00:00
lsDocumentSymbolParams params;
};
2017-03-24 07:59:47 +00:00
template<typename TVisitor>
2017-03-25 21:02:45 +00:00
void Reflect(TVisitor& visitor, Ipc_TextDocumentDocumentSymbol& value) {
2017-03-25 01:27:41 +00:00
REFLECT_MEMBER_START();
REFLECT_MEMBER(id);
REFLECT_MEMBER(params);
REFLECT_MEMBER_END();
2017-03-24 07:59:47 +00:00
}
2017-03-25 21:57:06 +00:00
struct Out_TextDocumentDocumentSymbol : public lsOutMessage<Out_TextDocumentDocumentSymbol> {
lsRequestId id;
2017-03-10 07:06:01 +00:00
std::vector<lsSymbolInformation> result;
};
2017-03-25 21:45:49 +00:00
template<typename TVisitor>
void Reflect(TVisitor& visitor, Out_TextDocumentDocumentSymbol& value) {
REFLECT_MEMBER_START();
REFLECT_MEMBER(jsonrpc);
REFLECT_MEMBER(id);
REFLECT_MEMBER(result);
REFLECT_MEMBER_END();
}
2017-03-05 02:16:23 +00:00
2017-03-25 21:45:49 +00:00
// List code lens in a document.
2017-03-15 07:14:44 +00:00
struct lsDocumentCodeLensParams {
lsTextDocumentIdentifier textDocument;
};
template<typename TVisitor>
void Reflect(TVisitor& visitor, lsDocumentCodeLensParams& value) {
REFLECT_MEMBER_START();
REFLECT_MEMBER(textDocument);
REFLECT_MEMBER_END();
}
struct lsCodeLensUserData {};
template<typename TVisitor>
void Reflect(TVisitor& visitor, lsCodeLensUserData& value) {
REFLECT_MEMBER_START();
REFLECT_MEMBER_END();
}
struct lsCodeLensCommandArguments {
lsDocumentUri uri;
lsPosition position;
std::vector<lsLocation> locations;
};
void Reflect(Writer& visitor, lsCodeLensCommandArguments& value);
void Reflect(Reader& visitor, lsCodeLensCommandArguments& value);
2017-03-15 07:14:44 +00:00
using TCodeLens = lsCodeLens<lsCodeLensUserData, lsCodeLensCommandArguments>;
2017-03-25 21:57:06 +00:00
struct Ipc_TextDocumentCodeLens : public IpcMessage<Ipc_TextDocumentCodeLens> {
const static IpcId kIpcId = IpcId::TextDocumentCodeLens;
lsRequestId id;
2017-03-15 07:14:44 +00:00
lsDocumentCodeLensParams params;
};
2017-03-25 01:27:41 +00:00
template<typename TVisitor>
2017-03-25 21:02:45 +00:00
void Reflect(TVisitor& visitor, Ipc_TextDocumentCodeLens& value) {
2017-03-25 01:27:41 +00:00
REFLECT_MEMBER_START();
REFLECT_MEMBER(id);
REFLECT_MEMBER(params);
REFLECT_MEMBER_END();
}
2017-03-25 21:45:49 +00:00
struct Out_TextDocumentCodeLens : public lsOutMessage<Out_TextDocumentCodeLens> {
lsRequestId id;
2017-03-15 07:14:44 +00:00
std::vector<lsCodeLens<lsCodeLensUserData, lsCodeLensCommandArguments>> result;
};
2017-03-25 21:45:49 +00:00
template<typename TVisitor>
void Reflect(TVisitor& visitor, Out_TextDocumentCodeLens& value) {
REFLECT_MEMBER_START();
REFLECT_MEMBER(jsonrpc);
REFLECT_MEMBER(id);
REFLECT_MEMBER(result);
REFLECT_MEMBER_END();
}
2017-03-25 21:57:06 +00:00
struct Ipc_CodeLensResolve : public IpcMessage<Ipc_CodeLensResolve> {
const static IpcId kIpcId = IpcId::CodeLensResolve;
2017-03-15 07:14:44 +00:00
lsRequestId id;
2017-03-15 07:14:44 +00:00
TCodeLens params;
};
2017-03-25 01:27:41 +00:00
template<typename TVisitor>
2017-03-25 21:02:45 +00:00
void Reflect(TVisitor& visitor, Ipc_CodeLensResolve& value) {
2017-03-25 01:27:41 +00:00
REFLECT_MEMBER_START();
REFLECT_MEMBER(id);
REFLECT_MEMBER(params);
REFLECT_MEMBER_END();
}
2017-03-25 21:45:49 +00:00
struct Out_CodeLensResolve : public lsOutMessage<Out_CodeLensResolve> {
lsRequestId id;
2017-03-15 07:14:44 +00:00
TCodeLens result;
};
2017-03-25 21:45:49 +00:00
template<typename TVisitor>
void Reflect(TVisitor& visitor, Out_CodeLensResolve& value) {
REFLECT_MEMBER_START();
REFLECT_MEMBER(jsonrpc);
REFLECT_MEMBER(id);
REFLECT_MEMBER(result);
REFLECT_MEMBER_END();
}
2017-03-15 07:14:44 +00:00
2017-03-25 21:45:49 +00:00
// Search for symbols in the workspace.
2017-03-10 07:06:01 +00:00
struct lsWorkspaceSymbolParams {
std::string query;
};
template<typename TVisitor>
void Reflect(TVisitor& visitor, lsWorkspaceSymbolParams& value) {
REFLECT_MEMBER_START();
REFLECT_MEMBER(query);
REFLECT_MEMBER_END();
}
2017-03-25 21:57:06 +00:00
struct Ipc_WorkspaceSymbol : public IpcMessage<Ipc_WorkspaceSymbol > {
const static IpcId kIpcId = IpcId::WorkspaceSymbol;
lsRequestId id;
2017-03-10 07:06:01 +00:00
lsWorkspaceSymbolParams params;
};
2017-03-25 01:27:41 +00:00
template<typename TVisitor>
2017-03-25 21:02:45 +00:00
void Reflect(TVisitor& visitor, Ipc_WorkspaceSymbol& value) {
2017-03-25 01:27:41 +00:00
REFLECT_MEMBER_START();
REFLECT_MEMBER(id);
REFLECT_MEMBER(params);
REFLECT_MEMBER_END();
}
2017-03-25 21:45:49 +00:00
struct Out_WorkspaceSymbol : public lsOutMessage<Out_WorkspaceSymbol> {
lsRequestId id;
2017-03-10 07:06:01 +00:00
std::vector<lsSymbolInformation> result;
};
2017-03-25 21:45:49 +00:00
template<typename TVisitor>
void Reflect(TVisitor& visitor, Out_WorkspaceSymbol& value) {
REFLECT_MEMBER_START();
REFLECT_MEMBER(jsonrpc);
REFLECT_MEMBER(id);
REFLECT_MEMBER(result);
REFLECT_MEMBER_END();
}
2017-03-06 08:48:51 +00:00
2017-03-25 21:45:49 +00:00
// Show a message to the user.
2017-03-10 07:06:01 +00:00
enum class lsMessageType : int {
Error = 1,
Warning = 2,
Info = 3,
Log = 4
};
MAKE_REFLECT_TYPE_PROXY(lsMessageType, int)
2017-03-25 21:45:49 +00:00
struct Out_ShowLogMessageParams {
2017-03-10 07:06:01 +00:00
lsMessageType type = lsMessageType::Error;
std::string message;
};
2017-03-25 21:45:49 +00:00
template<typename TVisitor>
void Reflect(TVisitor& visitor, Out_ShowLogMessageParams& value) {
REFLECT_MEMBER_START();
REFLECT_MEMBER(type);
REFLECT_MEMBER(message);
REFLECT_MEMBER_END();
}
struct Out_ShowLogMessage : public lsOutMessage<Out_ShowLogMessage> {
enum class DisplayType {
Show, Log
};
DisplayType display_type = DisplayType::Show;
std::string method();
2017-03-25 21:45:49 +00:00
Out_ShowLogMessageParams params;
2017-03-10 07:06:01 +00:00
};
2017-03-25 21:45:49 +00:00
template<typename TVisitor>
void Reflect(TVisitor& visitor, Out_ShowLogMessage& value) {
REFLECT_MEMBER_START();
REFLECT_MEMBER(jsonrpc);
REFLECT_MEMBER2("method", value.method());
REFLECT_MEMBER(params);
REFLECT_MEMBER_END();
}