forked from PowerShell/PowerShellEditorServices
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEditorServicesPSHost.cs
397 lines (357 loc) · 12.5 KB
/
EditorServicesPSHost.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
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
//
// 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.Session;
using Microsoft.PowerShell.EditorServices.Utility;
using System;
using System.Diagnostics.CodeAnalysis;
using System.Management.Automation;
using System.Management.Automation.Host;
using System.Management.Automation.Runspaces;
namespace Microsoft.PowerShell.EditorServices
{
/// <summary>
/// Provides an implementation of the PSHost class for the
/// ConsoleService and routes its calls to an IConsoleHost
/// implementation.
/// </summary>
public class EditorServicesPSHost : PSHost, IHostSupportsInteractiveSession
{
#region Private Fields
private ILogger Logger;
private HostDetails hostDetails;
private Guid instanceId = Guid.NewGuid();
private EditorServicesPSHostUserInterface hostUserInterface;
private IHostSupportsInteractiveSession hostSupportsInteractiveSession;
#endregion
#region Constructors
/// <summary>
/// Creates a new instance of the ConsoleServicePSHost class
/// with the given IConsoleHost implementation.
/// </summary>
/// <param name="powerShellContext">
/// An implementation of IHostSupportsInteractiveSession for runspace management.
/// </param>
/// <param name="hostDetails">
/// Provides details about the host application.
/// </param>
/// <param name="hostUserInterface">
/// The EditorServicesPSHostUserInterface implementation to use for this host.
/// </param>
/// <param name="logger">An ILogger implementation to use for this host.</param>
public EditorServicesPSHost(
PowerShellContext powerShellContext,
HostDetails hostDetails,
EditorServicesPSHostUserInterface hostUserInterface,
ILogger logger)
{
this.Logger = logger;
this.hostDetails = hostDetails;
this.hostUserInterface = hostUserInterface;
this.hostSupportsInteractiveSession = powerShellContext;
}
#endregion
#region PSHost Implementation
/// <summary>
///
/// </summary>
public override Guid InstanceId
{
get { return this.instanceId; }
}
/// <summary>
///
/// </summary>
public override string Name
{
get { return this.hostDetails.Name; }
}
/// <summary>
///
/// </summary>
public class ConsoleColorProxy
{
private EditorServicesPSHostUserInterface _hostUserInterface;
/// <summary>
///
/// </summary>
public ConsoleColorProxy(EditorServicesPSHostUserInterface hostUserInterface)
{
if (hostUserInterface == null) throw new ArgumentNullException("hostUserInterface");
_hostUserInterface = hostUserInterface;
}
/// <summary>
///
/// </summary>
public ConsoleColor ErrorForegroundColor
{
[SuppressMessage("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
get
{ return _hostUserInterface.ErrorForegroundColor; }
[SuppressMessage("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
set
{ _hostUserInterface.ErrorForegroundColor = value; }
}
/// <summary>
///
/// </summary>
public ConsoleColor ErrorBackgroundColor
{
[SuppressMessage("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
get
{ return _hostUserInterface.ErrorBackgroundColor; }
[SuppressMessage("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
set
{ _hostUserInterface.ErrorBackgroundColor = value; }
}
/// <summary>
///
/// </summary>
public ConsoleColor WarningForegroundColor
{
[SuppressMessage("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
get
{ return _hostUserInterface.WarningForegroundColor; }
[SuppressMessage("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
set
{ _hostUserInterface.WarningForegroundColor = value; }
}
/// <summary>
///
/// </summary>
public ConsoleColor WarningBackgroundColor
{
[SuppressMessage("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
get
{ return _hostUserInterface.WarningBackgroundColor; }
[SuppressMessage("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
set
{ _hostUserInterface.WarningBackgroundColor = value; }
}
/// <summary>
///
/// </summary>
public ConsoleColor DebugForegroundColor
{
[SuppressMessage("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
get
{ return _hostUserInterface.DebugForegroundColor; }
[SuppressMessage("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
set
{ _hostUserInterface.DebugForegroundColor = value; }
}
/// <summary>
///
/// </summary>
public ConsoleColor DebugBackgroundColor
{
[SuppressMessage("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
get
{ return _hostUserInterface.DebugBackgroundColor; }
[SuppressMessage("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
set
{ _hostUserInterface.DebugBackgroundColor = value; }
}
/// <summary>
///
/// </summary>
public ConsoleColor VerboseForegroundColor
{
[SuppressMessage("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
get
{ return _hostUserInterface.VerboseForegroundColor; }
[SuppressMessage("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
set
{ _hostUserInterface.VerboseForegroundColor = value; }
}
/// <summary>
///
/// </summary>
public ConsoleColor VerboseBackgroundColor
{
[SuppressMessage("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
get
{ return _hostUserInterface.VerboseBackgroundColor; }
[SuppressMessage("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
set
{ _hostUserInterface.VerboseBackgroundColor = value; }
}
/// <summary>
///
/// </summary>
public ConsoleColor ProgressForegroundColor
{
[SuppressMessage("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
get
{ return _hostUserInterface.ProgressForegroundColor; }
[SuppressMessage("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
set
{ _hostUserInterface.ProgressForegroundColor = value; }
}
/// <summary>
///
/// </summary>
public ConsoleColor ProgressBackgroundColor
{
[SuppressMessage("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
get
{ return _hostUserInterface.ProgressBackgroundColor; }
[SuppressMessage("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
set
{ _hostUserInterface.ProgressBackgroundColor = value; }
}
}
/// <summary>
/// Return the actual console host object so that the user can get at
/// the unproxied methods.
/// </summary>
public override PSObject PrivateData
{
get
{
if (hostUserInterface == null) return null;
return _consoleColorProxy ?? (_consoleColorProxy = PSObject.AsPSObject(new ConsoleColorProxy(hostUserInterface)));
}
}
private PSObject _consoleColorProxy;
/// <summary>
///
/// </summary>
public override Version Version
{
get { return this.hostDetails.Version; }
}
// TODO: Pull these from IConsoleHost
/// <summary>
///
/// </summary>
public override System.Globalization.CultureInfo CurrentCulture
{
get { return System.Globalization.CultureInfo.CurrentCulture; }
}
/// <summary>
///
/// </summary>
public override System.Globalization.CultureInfo CurrentUICulture
{
get { return System.Globalization.CultureInfo.CurrentUICulture; }
}
/// <summary>
///
/// </summary>
public override PSHostUserInterface UI
{
get { return this.hostUserInterface; }
}
/// <summary>
///
/// </summary>
public override void EnterNestedPrompt()
{
Logger.Write(LogLevel.Verbose, "EnterNestedPrompt() called.");
}
/// <summary>
///
/// </summary>
public override void ExitNestedPrompt()
{
Logger.Write(LogLevel.Verbose, "ExitNestedPrompt() called.");
}
/// <summary>
///
/// </summary>
public override void NotifyBeginApplication()
{
Logger.Write(LogLevel.Verbose, "NotifyBeginApplication() called.");
this.hostUserInterface.IsNativeApplicationRunning = true;
}
/// <summary>
///
/// </summary>
public override void NotifyEndApplication()
{
Logger.Write(LogLevel.Verbose, "NotifyEndApplication() called.");
this.hostUserInterface.IsNativeApplicationRunning = false;
}
/// <summary>
///
/// </summary>
/// <param name="exitCode"></param>
public override void SetShouldExit(int exitCode)
{
if (this.IsRunspacePushed)
{
this.PopRunspace();
}
}
#endregion
#region IHostSupportsInteractiveSession Implementation
/// <summary>
///
/// </summary>
/// <returns></returns>
public bool IsRunspacePushed
{
get
{
if (this.hostSupportsInteractiveSession != null)
{
return this.hostSupportsInteractiveSession.IsRunspacePushed;
}
else
{
throw new NotImplementedException();
}
}
}
/// <summary>
///
/// </summary>
/// <returns></returns>
public Runspace Runspace
{
get
{
if (this.hostSupportsInteractiveSession != null)
{
return this.hostSupportsInteractiveSession.Runspace;
}
else
{
throw new NotImplementedException();
}
}
}
/// <summary>
///
/// </summary>
/// <param name="runspace"></param>
public void PushRunspace(Runspace runspace)
{
if (this.hostSupportsInteractiveSession != null)
{
this.hostSupportsInteractiveSession.PushRunspace(runspace);
}
else
{
throw new NotImplementedException();
}
}
/// <summary>
///
/// </summary>
public void PopRunspace()
{
if (this.hostSupportsInteractiveSession != null)
{
this.hostSupportsInteractiveSession.PopRunspace();
}
else
{
throw new NotImplementedException();
}
}
#endregion
}
}