forked from PowerShell/vscode-powershell
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathExtensionCommands.ts
403 lines (322 loc) · 12.7 KB
/
ExtensionCommands.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
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
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
/*---------------------------------------------------------
* Copyright (C) Microsoft Corporation. All rights reserved.
*--------------------------------------------------------*/
import path = require('path');
import vscode = require('vscode');
import { IFeature } from '../feature';
import { LanguageClient, RequestType, NotificationType, Range, Position } from 'vscode-languageclient';
export interface ExtensionCommand {
name: string;
displayName: string;
}
export interface ExtensionCommandQuickPickItem extends vscode.QuickPickItem {
command: ExtensionCommand;
}
export namespace InvokeExtensionCommandRequest {
export const type: RequestType<InvokeExtensionCommandRequestArguments, void, void> =
{ get method() { return 'powerShell/invokeExtensionCommand'; } };
}
export interface EditorContext {
currentFilePath: string;
cursorPosition: Position;
selectionRange: Range;
}
export interface InvokeExtensionCommandRequestArguments {
name: string;
context: EditorContext;
}
export namespace ExtensionCommandAddedNotification {
export const type: NotificationType<ExtensionCommandAddedNotificationBody> =
{ get method() { return 'powerShell/extensionCommandAdded'; } };
}
export interface ExtensionCommandAddedNotificationBody {
name: string;
displayName: string;
}
// ---------- Editor Operations ----------
function asRange(value: vscode.Range): Range {
if (value === undefined) {
return undefined;
} else if (value === null) {
return null;
}
return { start: asPosition(value.start), end: asPosition(value.end) };
}
function asPosition(value: vscode.Position): Position {
if (value === undefined) {
return undefined;
} else if (value === null) {
return null;
}
return { line: value.line, character: value.character };
}
function asCodeRange(value: Range): vscode.Range {
if (value === undefined) {
return undefined;
} else if (value === null) {
return null;
}
return new vscode.Range(asCodePosition(value.start), asCodePosition(value.end));
}
function asCodePosition(value: Position): vscode.Position {
if (value === undefined) {
return undefined;
} else if (value === null) {
return null;
}
return new vscode.Position(value.line, value.character);
}
export namespace GetEditorContextRequest {
export const type: RequestType<GetEditorContextRequestArguments, EditorContext, void> =
{ get method() { return 'editor/getEditorContext'; } };
}
export interface GetEditorContextRequestArguments {
}
enum EditorOperationResponse {
Unsupported = 0,
Completed
}
export namespace InsertTextRequest {
export const type: RequestType<InsertTextRequestArguments, EditorOperationResponse, void> =
{ get method() { return 'editor/insertText'; } };
}
export interface InsertTextRequestArguments {
filePath: string;
insertText: string;
insertRange: Range
}
export namespace SetSelectionRequest {
export const type: RequestType<SetSelectionRequestArguments, EditorOperationResponse, void> =
{ get method() { return 'editor/setSelection'; } };
}
export interface SetSelectionRequestArguments {
selectionRange: Range
}
export namespace OpenFileRequest {
export const type: RequestType<string, EditorOperationResponse, void> =
{ get method() { return 'editor/openFile'; } };
}
export namespace CloseFileRequest {
export const type: RequestType<string, EditorOperationResponse, void> =
{ get method() { return 'editor/closeFile'; } };
}
export namespace ShowErrorMessageRequest {
export const type: RequestType<string, EditorOperationResponse, void> =
{ get method() { return 'editor/showErrorMessage'; } };
}
export namespace ShowWarningMessageRequest {
export const type: RequestType<string, EditorOperationResponse, void> =
{ get method() { return 'editor/showWarningMessage'; } };
}
export namespace ShowInformationMessageRequest {
export const type: RequestType<string, EditorOperationResponse, void> =
{ get method() { return 'editor/showInformationMessage'; } };
}
export namespace SetStatusBarMessageRequest {
export const type: RequestType<StatusBarMessageDetails, EditorOperationResponse, void> =
{ get method() { return 'editor/setStatusBarMessage'; } };
}
export interface StatusBarMessageDetails {
message: string;
timeout?: number;
}
export class ExtensionCommandsFeature implements IFeature {
private command: vscode.Disposable;
private languageClient: LanguageClient;
private extensionCommands: ExtensionCommand[] = [];
constructor() {
this.command = vscode.commands.registerCommand('PowerShell.ShowAdditionalCommands', () => {
if (this.languageClient === undefined) {
// TODO: Log error message
return;
}
var editor = vscode.window.activeTextEditor;
var start = editor.selection.start;
var end = editor.selection.end;
if (editor.selection.isEmpty) {
start = new vscode.Position(start.line, 0)
}
this.showExtensionCommands(this.languageClient);
});
}
public setLanguageClient(languageclient: LanguageClient) {
// Clear the current list of extension commands since they were
// only relevant to the previous session
this.extensionCommands = [];
this.languageClient = languageclient;
if (this.languageClient !== undefined) {
this.languageClient.onNotification(
ExtensionCommandAddedNotification.type,
command => this.addExtensionCommand(command));
this.languageClient.onRequest(
GetEditorContextRequest.type,
details => this.getEditorContext());
this.languageClient.onRequest(
InsertTextRequest.type,
details => this.insertText(details));
this.languageClient.onRequest(
SetSelectionRequest.type,
details => this.setSelection(details));
this.languageClient.onRequest(
OpenFileRequest.type,
filePath => this.openFile(filePath));
this.languageClient.onRequest(
CloseFileRequest.type,
filePath => this.closeFile(filePath));
this.languageClient.onRequest(
ShowInformationMessageRequest.type,
message => this.showInformationMessage(message));
this.languageClient.onRequest(
ShowErrorMessageRequest.type,
message => this.showErrorMessage(message));
this.languageClient.onRequest(
ShowWarningMessageRequest.type,
message => this.showWarningMessage(message));
this.languageClient.onRequest(
SetStatusBarMessageRequest.type,
messageDetails => this.setStatusBarMessage(messageDetails));
}
}
public dispose() {
this.command.dispose();
}
private addExtensionCommand(command: ExtensionCommandAddedNotificationBody) {
this.extensionCommands.push({
name: command.name,
displayName: command.displayName
});
this.extensionCommands.sort(
(a: ExtensionCommand, b: ExtensionCommand) =>
a.name.localeCompare(b.name));
}
private showExtensionCommands(client: LanguageClient) : Thenable<InvokeExtensionCommandRequestArguments> {
// If no extension commands are available, show a message
if (this.extensionCommands.length == 0) {
vscode.window.showInformationMessage(
"No extension commands have been loaded into the current session.");
return;
}
var quickPickItems =
this.extensionCommands.map<ExtensionCommandQuickPickItem>(command => {
return {
label: command.displayName,
description: command.name,
command: command
}
});
vscode.window
.showQuickPick(
quickPickItems,
{ placeHolder: "Select a command" })
.then(command => this.onCommandSelected(command, client));
}
private onCommandSelected(
chosenItem: ExtensionCommandQuickPickItem,
client: LanguageClient) {
if (chosenItem !== undefined) {
client.sendRequest(
InvokeExtensionCommandRequest.type,
{ name: chosenItem.command.name,
context: this.getEditorContext() });
}
}
private insertText(details: InsertTextRequestArguments): EditorOperationResponse {
var edit = new vscode.WorkspaceEdit();
edit.set(
vscode.Uri.parse(details.filePath),
[
new vscode.TextEdit(
new vscode.Range(
details.insertRange.start.line,
details.insertRange.start.character,
details.insertRange.end.line,
details.insertRange.end.character),
details.insertText)
]
);
vscode.workspace.applyEdit(edit);
return EditorOperationResponse.Completed;
}
private getEditorContext(): EditorContext {
return {
currentFilePath: vscode.window.activeTextEditor.document.fileName,
cursorPosition: asPosition(vscode.window.activeTextEditor.selection.active),
selectionRange:
asRange(
new vscode.Range(
vscode.window.activeTextEditor.selection.start,
vscode.window.activeTextEditor.selection.end))
}
}
private openFile(filePath: string): Thenable<EditorOperationResponse> {
// Make sure the file path is absolute
if (!path.win32.isAbsolute(filePath))
{
filePath = path.win32.resolve(
vscode.workspace.rootPath,
filePath);
}
var promise =
vscode.workspace.openTextDocument(filePath)
.then(doc => vscode.window.showTextDocument(doc))
.then(_ => EditorOperationResponse.Completed);
return promise;
}
private closeFile(filePath: string): Thenable<EditorOperationResponse> {
var promise: Thenable<EditorOperationResponse>;
// Make sure the file path is absolute
if (!path.win32.isAbsolute(filePath))
{
filePath = path.win32.resolve(
vscode.workspace.rootPath,
filePath);
}
// Normalize file path case for comparison
var normalizedFilePath = filePath.toLowerCase();
if (vscode.workspace.textDocuments.find(doc => doc.fileName.toLowerCase() == normalizedFilePath))
{
promise =
vscode.workspace.openTextDocument(filePath)
.then(doc => vscode.window.showTextDocument(doc))
.then(editor => vscode.commands.executeCommand("workbench.action.closeActiveEditor"))
.then(_ => EditorOperationResponse.Completed);
}
else
{
promise = Promise.resolve(EditorOperationResponse.Completed);
}
return promise;
}
private setSelection(details: SetSelectionRequestArguments): EditorOperationResponse {
vscode.window.activeTextEditor.selections = [
new vscode.Selection(
asCodePosition(details.selectionRange.start),
asCodePosition(details.selectionRange.end))
]
return EditorOperationResponse.Completed;
}
private showInformationMessage(message: string): Thenable<EditorOperationResponse> {
return vscode.window
.showInformationMessage(message)
.then(_ => EditorOperationResponse.Completed);
}
private showErrorMessage(message: string): Thenable<EditorOperationResponse> {
return vscode.window
.showErrorMessage(message)
.then(_ => EditorOperationResponse.Completed);
}
private showWarningMessage(message: string): Thenable<EditorOperationResponse> {
return vscode.window
.showWarningMessage(message)
.then(_ => EditorOperationResponse.Completed);
}
private setStatusBarMessage(messageDetails: StatusBarMessageDetails): EditorOperationResponse {
if (messageDetails.timeout) {
vscode.window.setStatusBarMessage(messageDetails.message, messageDetails.timeout);
}
else {
vscode.window.setStatusBarMessage(messageDetails.message);
}
return EditorOperationResponse.Completed;
}
}