-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathlsp.ts
166 lines (162 loc) · 7.06 KB
/
lsp.ts
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
/*!
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0
*/
import {
CompletionItem,
CompletionList,
CompletionParams,
ConfigurationOptions,
DidChangeConfigurationParams,
DidChangeTextDocumentParams,
DidChangeWorkspaceFoldersParams,
DidCloseTextDocumentParams,
DidOpenTextDocumentParams,
DocumentFormattingParams,
ExecuteCommandParams,
GetConfigurationFromServerParams,
Hover,
HoverParams,
InitializeError,
InitializeParams,
InitializedParams,
InlineCompletionItem,
InlineCompletionItemWithReferences,
InlineCompletionList,
InlineCompletionListWithReferences,
InlineCompletionParams,
LogInlineCompletionSessionResultsParams,
NotificationHandler,
ProgressToken,
ProgressType,
PublishDiagnosticsParams,
ChatOptions,
RequestHandler,
ServerCapabilities,
TextEdit,
SemanticTokensParams,
SemanticTokens,
SignatureHelp,
SignatureHelpParams,
ShowMessageParams,
ShowMessageRequestParams,
MessageActionItem,
ShowDocumentParams,
ShowDocumentResult,
LSPAny,
ApplyWorkspaceEditParams,
ApplyWorkspaceEditResult,
DidSaveTextDocumentParams,
DeleteFilesParams,
CreateFilesParams,
RenameFilesParams,
DidChangeDependencyPathsParams,
UpdateConfigurationParams,
InlineCompletionWithReferencesParams,
OpenFileDiffParams,
SelectWorkspaceItemParams,
SelectWorkspaceItemResult,
} from '../protocol'
// Re-export whole surface of LSP protocol used in Runtimes.
// This is needed for LSP features as we pass messages down.
export * from '../protocol/lsp'
export { GetConfigurationFromServerParams, UpdateConfigurationParams } from '../protocol'
export type PartialServerCapabilities<T = any> = Pick<
ServerCapabilities<T>,
| 'completionProvider'
| 'hoverProvider'
| 'executeCommandProvider'
| 'semanticTokensProvider'
| 'signatureHelpProvider'
| 'workspace'
>
export type PartialInitializeResult<T = any> = {
/**
* Information about the server respresented by @type {Server}.
* serverInfo is used to differentiate servers internally in the system and is not exposed to a client.
*/
serverInfo?: {
/**
* The name is expect to be unique per server. It also has to be persistent/durable
* across sessions and versions of application.
*/
name: string
}
capabilities: PartialServerCapabilities<T>
awsServerCapabilities?: {
chatOptions?: ChatOptions
configurationProvider?: ConfigurationOptions
}
}
// Using `RequestHandler` here from `vscode-languageserver-protocol` which doesn't support partial progress.
// If we want to support partial progress, we'll need to use `ServerRequestHandler` from `vscode-languageserver` instead.
// but if we can avoid exposing multiple different `vscode-languageserver-*` packages and package versions to
// implementors that would prevent potentially very hard to debug type mismatch errors (even on minor versions).
export type Lsp = {
/**
* Lsp#addInitializer allows servers to register handlers for the initilaze LSP request.
* The handlers respond with PartialInitializeResult which includes a subset of InitializeResult's properties
* as not all original properties are expected to be defined by servers.
* Then the runtime will use the regiestered handlers and merge their responses when responding to initialize LSP request.
*
*/
addInitializer: (handler: RequestHandler<InitializeParams, PartialInitializeResult, InitializeError>) => void
onInitialized: (handler: NotificationHandler<InitializedParams>) => void
getClientInitializeParams: () => InitializeParams | undefined
onInlineCompletion: (
handler: RequestHandler<
InlineCompletionParams,
InlineCompletionItem[] | InlineCompletionList | undefined | null,
void
>
) => void
onCompletion: (
handler: RequestHandler<CompletionParams, CompletionItem[] | CompletionList | undefined | null, void>
) => void
didChangeConfiguration: (handler: NotificationHandler<DidChangeConfigurationParams>) => void
onDidFormatDocument: (
handler: RequestHandler<DocumentFormattingParams, TextEdit[] | undefined | null, never>
) => void
onDidOpenTextDocument: (handler: NotificationHandler<DidOpenTextDocumentParams>) => void
onDidChangeTextDocument: (handler: NotificationHandler<DidChangeTextDocumentParams>) => void
onDidCloseTextDocument: (handler: NotificationHandler<DidCloseTextDocumentParams>) => void
onDidSaveTextDocument: (handler: NotificationHandler<DidSaveTextDocumentParams>) => void
publishDiagnostics: (params: PublishDiagnosticsParams) => Promise<void>
sendProgress: <P>(type: ProgressType<P>, token: ProgressToken, value: P) => Promise<void>
onHover: (handler: RequestHandler<HoverParams, Hover | null | undefined, void>) => void
onExecuteCommand: (handler: RequestHandler<ExecuteCommandParams, any | undefined | null, void>) => void
onSemanticTokens: (handler: RequestHandler<SemanticTokensParams, SemanticTokens | null, void>) => void
onSignatureHelp: (handler: RequestHandler<SignatureHelpParams, SignatureHelp | null | undefined, void>) => void
workspace: {
getConfiguration: (section: string) => Promise<any>
onDidChangeWorkspaceFolders: (handler: NotificationHandler<DidChangeWorkspaceFoldersParams>) => void
applyWorkspaceEdit: (params: ApplyWorkspaceEditParams) => Promise<ApplyWorkspaceEditResult>
onDidCreateFiles: (handler: NotificationHandler<CreateFilesParams>) => void
onDidDeleteFiles: (handler: NotificationHandler<DeleteFilesParams>) => void
onDidRenameFiles: (handler: NotificationHandler<RenameFilesParams>) => void
onUpdateConfiguration: (handler: RequestHandler<UpdateConfigurationParams, void, void>) => void
selectWorkspaceItem: (
handler: RequestHandler<SelectWorkspaceItemParams, SelectWorkspaceItemResult | undefined | null, void>
) => void
openFileDiff: (params: OpenFileDiffParams) => void
}
window: {
showMessage: (params: ShowMessageParams) => Promise<void>
showMessageRequest: (params: ShowMessageRequestParams) => Promise<MessageActionItem | null>
showDocument: (params: ShowDocumentParams) => Promise<ShowDocumentResult>
}
extensions: {
onInlineCompletionWithReferences: (
handler: RequestHandler<
InlineCompletionWithReferencesParams,
InlineCompletionItemWithReferences[] | InlineCompletionListWithReferences | undefined | null,
void
>
) => void
onLogInlineCompletionSessionResults: (
handler: NotificationHandler<LogInlineCompletionSessionResultsParams>
) => void
onGetConfigurationFromServer: (handler: RequestHandler<GetConfigurationFromServerParams, LSPAny, void>) => void
onDidChangeDependencyPaths: (handler: NotificationHandler<DidChangeDependencyPathsParams>) => void
}
}