-
Notifications
You must be signed in to change notification settings - Fork 234
/
Copy pathLanguageServerEditorOperations.cs
224 lines (201 loc) · 7.4 KB
/
LanguageServerEditorOperations.cs
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
//
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
//
using Microsoft.PowerShell.EditorServices;
using Microsoft.PowerShell.EditorServices.Extensions;
using Microsoft.PowerShell.EditorServices.Protocol.LanguageServer;
using Microsoft.PowerShell.EditorServices.Protocol.MessageProtocol;
using System.Threading.Tasks;
namespace Microsoft.PowerShell.EditorServices.Protocol.Server
{
internal class LanguageServerEditorOperations : IEditorOperations
{
private const bool DefaultPreviewSetting = true;
private EditorSession editorSession;
private IMessageSender messageSender;
public LanguageServerEditorOperations(
EditorSession editorSession,
IMessageSender messageSender)
{
this.editorSession = editorSession;
this.messageSender = messageSender;
}
public async Task<EditorContext> GetEditorContextAsync()
{
ClientEditorContext clientContext =
await this.messageSender.SendRequestAsync(
GetEditorContextRequest.Type,
new GetEditorContextRequest(),
true);
return this.ConvertClientEditorContext(clientContext);
}
public async Task InsertTextAsync(string filePath, string text, BufferRange insertRange)
{
await this.messageSender.SendRequestAsync(
InsertTextRequest.Type,
new InsertTextRequest
{
FilePath = filePath,
InsertText = text,
InsertRange =
new Range
{
Start = new Position
{
Line = insertRange.Start.Line - 1,
Character = insertRange.Start.Column - 1
},
End = new Position
{
Line = insertRange.End.Line - 1,
Character = insertRange.End.Column - 1
}
}
}, false);
// TODO: Set the last param back to true!
}
public Task SetSelectionAsync(BufferRange selectionRange)
{
return this.messageSender.SendRequestAsync(
SetSelectionRequest.Type,
new SetSelectionRequest
{
SelectionRange =
new Range
{
Start = new Position
{
Line = selectionRange.Start.Line - 1,
Character = selectionRange.Start.Column - 1
},
End = new Position
{
Line = selectionRange.End.Line - 1,
Character = selectionRange.End.Column - 1
}
}
}, true);
}
public EditorContext ConvertClientEditorContext(
ClientEditorContext clientContext)
{
ScriptFile scriptFile = this.editorSession.Workspace.CreateScriptFileFromFileBuffer(
clientContext.CurrentFilePath,
clientContext.CurrentFileContent);
return
new EditorContext(
this,
scriptFile,
new BufferPosition(
clientContext.CursorPosition.Line + 1,
clientContext.CursorPosition.Character + 1),
new BufferRange(
clientContext.SelectionRange.Start.Line + 1,
clientContext.SelectionRange.Start.Character + 1,
clientContext.SelectionRange.End.Line + 1,
clientContext.SelectionRange.End.Character + 1),
clientContext.CurrentFileLanguage);
}
public Task NewFileAsync()
{
return
this.messageSender.SendRequestAsync(
NewFileRequest.Type,
null,
true);
}
public Task OpenFileAsync(string filePath)
{
return
this.messageSender.SendRequestAsync(
OpenFileRequest.Type,
new OpenFileDetails
{
FilePath = filePath,
Preview = DefaultPreviewSetting
},
true);
}
public Task OpenFileAsync(string filePath, bool preview)
{
return
this.messageSender.SendRequestAsync(
OpenFileRequest.Type,
new OpenFileDetails
{
FilePath = filePath,
Preview = preview
},
true);
}
public Task CloseFileAsync(string filePath)
{
return
this.messageSender.SendRequestAsync(
CloseFileRequest.Type,
filePath,
true);
}
public Task SaveFileAsync(string filePath)
{
return SaveFileAsync(filePath, null);
}
public Task SaveFileAsync(string currentPath, string newSavePath)
{
return
this.messageSender.SendRequestAsync(
SaveFileRequest.Type,
new SaveFileDetails
{
FilePath = currentPath,
NewPath = newSavePath
},
true);
}
public string GetWorkspacePath()
{
return this.editorSession.Workspace.WorkspacePath;
}
public string GetWorkspaceRelativePath(string filePath)
{
return this.editorSession.Workspace.GetRelativePath(filePath);
}
public Task ShowInformationMessageAsync(string message)
{
return
this.messageSender.SendRequestAsync(
ShowInformationMessageRequest.Type,
message,
true);
}
public Task ShowErrorMessageAsync(string message)
{
return
this.messageSender.SendRequestAsync(
ShowErrorMessageRequest.Type,
message,
true);
}
public Task ShowWarningMessageAsync(string message)
{
return
this.messageSender.SendRequestAsync(
ShowWarningMessageRequest.Type,
message,
true);
}
public Task SetStatusBarMessageAsync(string message, int? timeout)
{
return
this.messageSender.SendRequestAsync(
SetStatusBarMessageRequest.Type,
new StatusBarMessageDetails
{
Message = message,
Timeout = timeout
},
true);
}
}
}