1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258
|
#pragma once
#include "LibLsp/lsp/method_type.h"
#include <stdexcept>
#include "LibLsp/JsonRpc/message.h"
#include "LibLsp/lsp/lsDocumentUri.h"
#include "LibLsp/lsp/lsAny.h"
#include "LibLsp/lsp/extention/jdtls/searchSymbols.h"
/**
* Capabilities specific to `WorkspaceEdit`s
*/
//New in version 3.13: ResourceOperationKind and FailureHandlingKind and the client capability workspace.workspaceEdit.
//resourceOperations as well as workspace.workspaceEdit.failureHandling.
//The capabilities of a workspace edit has evolved over the time.
//Clients can describe their support using the following client capability :
struct lschangeAnnotationSupport
{
/**
* Whether the client groups edits with equal labels into tree nodes,
* for instance all edits labelled with "Changes in Strings" would
* be a tree node.
*/
optional<bool> groupsOnLabel;
MAKE_SWAP_METHOD(lschangeAnnotationSupport, groupsOnLabel)
};
MAKE_REFLECT_STRUCT(lschangeAnnotationSupport, groupsOnLabel)
struct WorkspaceEditCapabilities
{
/**
* The client supports versioned document changes in `WorkspaceEdit`s
*/
optional<bool> documentChanges;
/**
* The client supports resource changes
* in `WorkspaceEdit`s.
*
* @deprecated Since LSP introduces resource operations, use {link #resourceOperations}
*/
optional<bool> resourceChanges;
/**
* The resource operations the client supports. Clients should at least
* support 'create', 'rename' and 'delete' files and folders.
*
* @since 3.13.0
*/
optional<std::vector<std::string>> resourceOperations;
/**
* The failure handling strategy of a client if applying the workspace edit
* fails.
*
* See {@link FailureHandlingKind} for allowed values.
*/
optional<std::string> failureHandling;
/**
* Whether the client normalizes line endings to the client specific
* setting.
* If set to `true` the client will normalize line ending characters
* in a workspace edit to the client specific new line character(s).
*
* @since 3.16.0
*/
optional<bool> normalizesLineEndings;
;
/**
* Whether the client in general supports change annotations on text edits,
* create file, rename file and delete file changes.
*
* @since 3.16.0
*/
optional<lschangeAnnotationSupport> changeAnnotationSupport;
MAKE_SWAP_METHOD(
WorkspaceEditCapabilities, documentChanges, resourceChanges, resourceOperations, failureHandling,
normalizesLineEndings, changeAnnotationSupport
)
};
MAKE_REFLECT_STRUCT(
WorkspaceEditCapabilities, documentChanges, resourceChanges, resourceOperations, failureHandling,
normalizesLineEndings, changeAnnotationSupport
)
struct DynamicRegistrationCapabilities
{
// Did foo notification supports dynamic registration.
optional<bool> dynamicRegistration;
MAKE_SWAP_METHOD(DynamicRegistrationCapabilities, dynamicRegistration);
};
MAKE_REFLECT_STRUCT(DynamicRegistrationCapabilities, dynamicRegistration);
struct InlayHintLazyProperties
{
optional<std::vector<std::string>> properties;
MAKE_SWAP_METHOD(InlayHintLazyProperties, properties)
};
MAKE_REFLECT_STRUCT(InlayHintLazyProperties, properties)
struct InlayHintClientCapabilities
{
// Whether inlay hints support dynamic registration.
optional<bool> dynamicRegistration;
optional<InlayHintLazyProperties> resolveSupport;
MAKE_SWAP_METHOD(InlayHintClientCapabilities, dynamicRegistration, resolveSupport);
};
MAKE_REFLECT_STRUCT(InlayHintClientCapabilities, dynamicRegistration, resolveSupport)
// Workspace specific client capabilities.
struct SymbolKindCapabilities
{
optional<std::vector<lsSymbolKind>> valueSet;
MAKE_SWAP_METHOD(SymbolKindCapabilities, valueSet)
};
MAKE_REFLECT_STRUCT(SymbolKindCapabilities, valueSet)
struct SymbolCapabilities : public DynamicRegistrationCapabilities
{
/**
* Specific capabilities for the `SymbolKind` in the `workspace/symbol` request.
*/
optional<SymbolKindCapabilities> symbolKind;
MAKE_SWAP_METHOD(SymbolCapabilities, symbolKind, dynamicRegistration)
};
MAKE_REFLECT_STRUCT(SymbolCapabilities, symbolKind, dynamicRegistration)
struct lsFileOperations
{
/**
* Whether the client supports dynamic registration for file
* requests/notifications.
*/
optional<bool> dynamicRegistration;
/**
* The client has support for sending didCreateFiles notifications.
*/
optional<bool> didCreate;
/**
* The client has support for sending willCreateFiles requests.
*/
optional<bool> willCreate;
/**
* The client has support for sending didRenameFiles notifications.
*/
optional<bool> didRename;
/**
* The client has support for sending willRenameFiles requests.
*/
optional<bool> willRename;
/**
* The client has support for sending didDeleteFiles notifications.
*/
optional<bool> didDelete;
/**
* The client has support for sending willDeleteFiles requests.
*/
optional<bool> willDelete;
MAKE_SWAP_METHOD(
lsFileOperations, dynamicRegistration, didCreate, willCreate, didRename, willRename, didDelete, willDelete
)
};
MAKE_REFLECT_STRUCT(
lsFileOperations, dynamicRegistration, didCreate, willCreate, didRename, willRename, didDelete, willDelete
)
struct lsWorkspaceClientCapabilites
{
// The client supports applying batch edits to the workspace.
optional<bool> applyEdit;
// Capabilities specific to `WorkspaceEdit`s
optional<WorkspaceEditCapabilities> workspaceEdit;
// Capabilities specific to the `workspace/didChangeConfiguration`
// notification.
optional<DynamicRegistrationCapabilities> didChangeConfiguration;
// Capabilities specific to the `workspace/didChangeWatchedFiles`
// notification.
optional<DynamicRegistrationCapabilities> didChangeWatchedFiles;
// Capabilities specific to the `workspace/symbol` request.
optional<SymbolCapabilities> symbol;
// Capabilities specific to the `workspace/executeCommand` request.
optional<DynamicRegistrationCapabilities> executeCommand;
/**
* The client has support for workspace folders.
*
* Since 3.6.0
*/
optional<bool> workspaceFolders;
/**
* The client supports `workspace/configuration` requests.
*
* Since 3.6.0
*/
optional<bool> configuration;
/**
* Capabilities specific to the semantic token requests scoped to the
* workspace.
*
* @since 3.16.0
*/
optional<DynamicRegistrationCapabilities> semanticTokens;
/**
* Capabilities specific to the code lens requests scoped to the
* workspace.
*
* @since 3.16.0
*/
optional<DynamicRegistrationCapabilities> codeLens;
/**
* The client has support for file requests/notifications.
*
* @since 3.16.0
*/
optional<lsFileOperations> fileOperations;
MAKE_SWAP_METHOD(
lsWorkspaceClientCapabilites, applyEdit, workspaceEdit, didChangeConfiguration, didChangeWatchedFiles, symbol,
executeCommand, workspaceFolders, configuration, semanticTokens, codeLens, fileOperations
)
};
MAKE_REFLECT_STRUCT(
lsWorkspaceClientCapabilites, applyEdit, workspaceEdit, didChangeConfiguration, didChangeWatchedFiles, symbol,
executeCommand, workspaceFolders, configuration, semanticTokens, codeLens, fileOperations
)
|