forked from killswitch1111/powerguivsx
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathScriptDebugger.cs
More file actions
538 lines (474 loc) · 17.5 KB
/
Copy pathScriptDebugger.cs
File metadata and controls
538 lines (474 loc) · 17.5 KB
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
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
using System;
using System.Collections.Generic;
using System.Linq;
using System.Management.Automation;
using System.Management.Automation.Runspaces;
using System.Threading;
using System.Collections.ObjectModel;
using PowerShellTools.Common.ServiceManagement.DebuggingContract;
using Microsoft.VisualStudio.Shell;
using Microsoft.VisualStudio.Shell.Interop;
using DTE = EnvDTE;
using DTE80 = EnvDTE80;
using PowerShellTools.Common.Debugging;
using System.Runtime.InteropServices;
using System.Diagnostics;
using System.Windows.Forms;
using PowerShellTools.Common.Logging;
namespace PowerShellTools.DebugEngine
{
public class EventArgs<T> : EventArgs
{
public EventArgs(T value)
{
Value = value;
}
public T Value { get; private set; }
}
/// <summary>
/// This is the main debugger for PowerShell Tools for Visual Studio
/// </summary>
public partial class ScriptDebugger
{
private List<ScriptStackFrame> _callstack;
private readonly AutoResetEvent _stoppingCompleteEvent = new AutoResetEvent(false);
private static readonly ILog Log = LogManager.GetLogger(typeof(ScriptDebugger));
/// <summary>
/// Event is fired when a debugger is paused.
/// </summary>
public event EventHandler<EventArgs<ScriptLocation>> DebuggerPaused;
/// <summary>
/// Event is fired when the debugger has finished.
/// </summary>
public event EventHandler DebuggingFinished;
/// <summary>
/// Event is fired when the debugger has began.
/// </summary>
public event EventHandler DebuggingBegin;
/// <summary>
/// Event is fired when a terminating exception is thrown.
/// </summary>
public event EventHandler<EventArgs<PowerShellRunTerminatingException>> TerminatingException;
/// <summary>
/// The current set of variables for the current runspace.
/// </summary>
public IDictionary<string, Variable> Variables { get; private set; }
/// <summary>
/// The current call stack for the runspace.
/// </summary>
public IEnumerable<ScriptStackFrame> CallStack { get { return _callstack; } }
/// <summary>
/// The currently executing <see cref="ScriptProgramNode"/>
/// </summary>
public ScriptProgramNode CurrentExecutingNode { get; private set; }
/// <summary>
/// Indicate if debugger is ready for accepting command
/// </summary>
public bool IsDebuggingCommandReady { get; private set; }
/// <summary>
/// Indicate if there is on-going debugging, coz we should only allow one debugging session
/// </summary>
public bool IsDebugging { get; set; }
/// <summary>
/// Indicate if runspace is hosting remote session
/// </summary>
public bool RemoteSession { get; set; }
public BreakpointManager BreakpointManager { get; set; }
public string DebuggingCommand { get; set; }
#region Debugging service event handlers
/// <summary>
/// Debugger stopped handler
/// </summary>
/// <param name="e"></param>
public void DebuggerStop(DebuggerStoppedEventArgs e)
{
Log.InfoFormat("Debugger stopped");
try
{
if (e.OpenScript)
{
OpenFileInVS(e.ScriptFullPath);
}
RefreshScopedVariables();
RefreshCallStack();
if (!BreakpointManager.ProcessLineBreakpoints(e.ScriptFullPath, e.Line, e.Column))
{
if (DebuggerPaused != null)
{
var scriptLocation = new ScriptLocation(e.ScriptFullPath, e.Line, 0);
DebuggerPaused(this, new EventArgs<ScriptLocation>(scriptLocation));
}
}
}
catch (DebugEngineInternalException dbgEx)
{
Log.Debug(dbgEx.Message);
DebuggingService.SetDebuggerResumeAction(DebugEngineConstants.Debugger_Stop);
IsDebuggingCommandReady = false;
}
catch (Exception ex)
{
Log.Debug(ex.Message);
DebuggingService.SetDebuggerResumeAction(DebugEngineConstants.Debugger_Stop);
IsDebuggingCommandReady = false;
throw;
}
finally
{
Log.Debug("Waiting for debuggee to resume.");
IsDebuggingCommandReady = true;
RefreshPrompt();
}
}
/// <summary>
/// PS execution terminating excpetion handler
/// </summary>
/// <param name="ex"></param>
public void TerminateException(PowerShellRunTerminatingException ex)
{
if (TerminatingException != null)
{
// from editor debug run
TerminatingException(this, new EventArgs<PowerShellRunTerminatingException>(ex));
}
else
{
// from REPL execution
HostUi.VsOutputString(ex.Message);
}
}
/// <summary>
/// PSDebugger event finished handler
/// </summary>
public void DebuggerFinished()
{
IsDebuggingCommandReady = false;
if (DebuggingFinished != null)
{
DebuggingFinished(this, new EventArgs());
}
NativeMethods.SetForegroundWindow();
_stoppingCompleteEvent.Set();
}
public void DebuggerBegin()
{
if (DebuggingBegin != null)
{
DebuggingBegin(this, EventArgs.Empty);
}
}
private void ConnectionExceptionHandler(object sender, EventArgs e)
{
Log.Error("Connection to host service is broken, terminating debugging.");
DebuggerFinished();
}
#endregion
/// <summary>
/// Retrieve local scoped variable from debugger(in PSHost proc)
/// </summary>
private void RefreshScopedVariables()
{
try
{
Collection<Variable> vars = DebuggingService.GetScopedVariable();
Variables = new Dictionary<string, Variable>();
foreach (Variable v in vars)
{
Variables.Add(v.VarName, v);
}
}
catch (Exception ex)
{
Log.Error("Failed to refresh scoped variables.", ex);
throw;
}
}
/// <summary>
/// Retrieve callstack info from debugger(in PSHost proc)
/// </summary>
private void RefreshCallStack()
{
IEnumerable<CallStack> result = null;
try
{
if (IsDebugging)
{
result = DebuggingService.GetCallStack();
}
else
{
throw new DebugEngineInternalException();
}
_callstack = new List<ScriptStackFrame>();
if (result == null) return;
foreach (var psobj in result)
{
_callstack.Add(
new ScriptStackFrame(
CurrentExecutingNode,
psobj.ScriptFullPath,
psobj.FrameString,
psobj.StartLine,
psobj.EndLine,
psobj.StartColumn,
psobj.EndColumn));
}
}
catch (Exception ex)
{
Log.Error("Failed to refresh callstack", ex);
throw;
}
}
/// <summary>
/// Stops execution of the current script.
/// </summary>
public void Stop()
{
Log.Info("Stop");
try
{
_stoppingCompleteEvent.Reset();
DebuggingService.Stop();
IsDebuggingCommandReady = false;
_stoppingCompleteEvent.WaitOne();
Log.Info("Stop complete.");
}
catch (Exception ex)
{
//BUGBUG: Suppressing an exception that is thrown when stopping...
Log.Debug("Error while stopping script...", ex);
}
finally
{
DebuggerFinished();
}
}
/// <summary>
/// Stop over block.
/// </summary>
public void StepOver()
{
Log.Info("StepOver");
DebuggingService.SetDebuggerResumeAction(DebugEngineConstants.Debugger_StepOver);
IsDebuggingCommandReady = false;
}
/// <summary>
/// Step into block.
/// </summary>
public void StepInto()
{
Log.Info("StepInto");
DebuggingService.SetDebuggerResumeAction(DebugEngineConstants.Debugger_StepInto);
IsDebuggingCommandReady = false;
}
/// <summary>
/// Step out of block.
/// </summary>
public void StepOut()
{
Log.Info("StepOut");
DebuggingService.SetDebuggerResumeAction(DebugEngineConstants.Debugger_StepOut);
IsDebuggingCommandReady = false;
}
/// <summary>
/// Continue execution.
/// </summary>
public void Continue()
{
Log.Info("Continue");
DebuggingService.SetDebuggerResumeAction(DebugEngineConstants.Debugger_Continue);
IsDebuggingCommandReady = false;
}
/// <summary>
/// Execute the specified command line.
/// </summary>
/// <param name="commandLine">Command line to execute.</param>
public bool Execute(string commandLine)
{
Log.Info("Execute");
try
{
return ExecuteInternal(commandLine);
}
catch (Exception ex)
{
Log.Error("Failed to execute script", ex);
HostUi.VsOutputString(ex.Message);
return false;
}
finally
{
DebuggerFinished();
}
}
/// <summary>
/// Execute the specified command line
/// </summary>
/// <param name="commandLine">Command line to execute.</param>
public bool ExecuteInternal(string commandLine)
{
IsDebuggingCommandReady = false;
IntPtr hostProcessWindowHandle = NativeMethods.FindWindow(
null,
string.Format(
PowerShellTools.Common.Resources.HostProcessWindowTitleFormat,
Process.GetCurrentProcess().Id,
PowerShellTools.Common.Constants.PowerShellHostExeName));
NativeMethods.SetForegroundWindow(hostProcessWindowHandle);
return DebuggingService.Execute(commandLine);
}
/// <summary>
/// Execute the specified command line as debugging command.
/// </summary>
/// <param name="commandLine">Command line to execute.</param>
public void ExecuteDebuggingCommand(string commandLine)
{
Log.Info("Execute debugging command");
if (IsDebuggingCommandReady)
{
try
{
DebuggingService.ExecuteDebuggingCommandOutDefault(commandLine);
}
catch (Exception ex)
{
Log.Error("Failed to execute debugging command", ex);
}
}
}
/// <summary>
/// Execute the current program node.
/// </summary>
/// <remarks>
/// The node will either be a script file or script content; depending on the node
/// passed to this function.
/// </remarks>
/// <param name="node"></param>
public void Execute(ScriptProgramNode node)
{
CurrentExecutingNode = node;
if (node.IsAttachedProgram)
{
string result = string.Empty;
if (!node.IsRemoteProgram)
{
result = DebuggingService.AttachToRunspace(node.Process.ProcessId);
}
else
{
result = DebuggingService.AttachToRemoteRunspace(node.Process.ProcessId, node.Process.HostName);
}
if (!string.IsNullOrEmpty(result))
{
// if either of the attaches returns an error, let the user know
MessageBox.Show(result, Resources.AttachErrorTitle, MessageBoxButtons.OK, MessageBoxIcon.Error);
// see what state we are in post error, if not in a local state, we need to try and get there
DebugScenario postCleanupScenario = DebuggingService.GetDebugScenario();
// try as hard as we can to detach/cleanup the mess for the length of CleanupRetryTimeout
TimeSpan retryTimeSpan = TimeSpan.FromMilliseconds(DebugEngineConstants.CleanupRetryTimeout);
Stopwatch timeElapsed = Stopwatch.StartNew();
while (timeElapsed.Elapsed < retryTimeSpan && postCleanupScenario != DebugScenario.Local)
{
postCleanupScenario = DebuggingService.CleanupAttach();
}
// if our efforts to cleanup the mess were unsuccessful, inform the user
if (postCleanupScenario != DebugScenario.Local)
{
MessageBox.Show(Resources.CleanupErrorMessage, Resources.DetachErrorTitle, MessageBoxButtons.OK, MessageBoxIcon.Error);
}
RefreshPrompt();
DebuggerFinished();
}
}
else
{
string commandLine = node.FileName;
if (node.IsFile)
{
commandLine = String.Format(DebugEngineConstants.ExecutionCommandFormat, node.FileName, node.Arguments);
HostUi.VsOutputString(string.Format("{0}{1}{2}", GetPrompt(), node.FileName, Environment.NewLine));
}
Execute(commandLine);
}
}
public void SetVariable(string name, string value)
{
try
{
using (var pipeline = (_runspace.CreateNestedPipeline()))
{
var command = new Command("Set-Variable");
command.Parameters.Add("Name", name);
command.Parameters.Add("Value", value);
pipeline.Commands.Add(command);
pipeline.Invoke();
}
}
catch (Exception ex)
{
Log.Error("Failed to set variable.", ex);
}
}
public Variable GetVariable(string name)
{
if (name.StartsWith("$"))
{
name = name.Remove(0, 1);
}
if (Variables.ContainsKey(name))
{
var var = Variables[name];
return var;
}
return null;
}
public void SignalStoppingComplete()
{
_stoppingCompleteEvent.Set();
}
internal void OpenFileInVS(string fullName)
{
var dte2 = (DTE80.DTE2)Package.GetGlobalService(typeof(DTE.DTE));
if (dte2 != null)
{
try
{
if (!dte2.ItemOperations.IsFileOpen(fullName))
{
dte2.ItemOperations.OpenFile(fullName);
}
}
catch (Exception ex)
{
Log.Error(DebugScenarioUtilities.ScenarioToFileOpenErrorMsg(DebuggingService.GetDebugScenario()), ex);
HostUi.VsOutputString(ex.Message);
}
}
}
}
/// <summary>
/// Location within a script.
/// </summary>
public class ScriptLocation
{
/// <summary>
/// The full path to the file.
/// </summary>
public string File { get; set; }
/// <summary>
/// Line number within the file.
/// </summary>
public int Line { get; set; }
/// <summary>
/// Column within the file.
/// </summary>
public int Column { get; set; }
public ScriptLocation(string file, int line, int column)
{
File = file;
Line = line;
Column = column;
}
}
}