File size: 21,323 Bytes
8c763fb | 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 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 | // Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
using System.Collections.Generic;
using System.Globalization;
using System.Management.Automation.Host;
using System.Management.Automation.Remoting;
using System.Management.Automation.Runspaces;
using Dbg = System.Management.Automation.Diagnostics;
#pragma warning disable 1634, 1691 // Stops compiler from warning about unknown warnings
namespace System.Management.Automation.Internal.Host
{
/// <summary>
/// Wraps PSHost instances to provide a shim layer
/// between InternalCommand and the host-supplied PSHost instance.
///
/// This class exists for the purpose of ensuring that an externally-supplied PSHost meets the minimum proper required
/// implementation, and also to provide a leverage point at which the monad engine can hook the interaction between the engine,
/// cmdlets, and that external host.
///
/// That leverage may be necessary to manage concurrent access between multiple pipelines sharing the same instance of
/// PSHost.
/// </summary>
internal class InternalHost : PSHost, IHostSupportsInteractiveSession
{
/// <summary>
/// There should only be one instance of InternalHost per runspace (i.e. per engine), and all engine use of the host
/// should be through that single instance. If we ever accidentally create more than one instance of InternalHost per
/// runspace, then some of the internal state checks that InternalHost makes, like checking the nestedPromptCounter, can
/// be messed up.
///
/// To ensure that this constraint is met, I wanted to make this class a singleton. However, Hitesh rightly pointed out
/// that a singleton would be appdomain-global, which would prevent having multiple runspaces per appdomain. So we will
/// just have to be careful not to create extra instances of InternalHost per runspace.
/// </summary>
internal InternalHost(PSHost externalHost, ExecutionContext executionContext)
{
Dbg.Assert(externalHost != null, "must supply an PSHost");
Dbg.Assert(externalHost is not InternalHost, "try to create an InternalHost from another InternalHost");
Dbg.Assert(executionContext != null, "must supply an ExecutionContext");
_externalHostRef = new ObjectRef<PSHost>(externalHost);
Context = executionContext;
PSHostUserInterface ui = externalHost.UI;
_internalUIRef = new ObjectRef<InternalHostUserInterface>(new InternalHostUserInterface(ui, this));
_zeroGuid = new Guid(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
_idResult = _zeroGuid;
}
/// <summary>
/// See base class.
/// </summary>
/// <value></value>
/// <exception cref="NotImplementedException">
/// when the external host's Name is null or empty.
/// </exception>
public override string Name
{
get
{
if (string.IsNullOrEmpty(_nameResult))
{
_nameResult = _externalHostRef.Value.Name;
#pragma warning disable 56503
if (string.IsNullOrEmpty(_nameResult))
{
throw PSTraceSource.NewNotImplementedException();
}
#pragma warning restore 56503
}
return _nameResult;
}
}
/// <summary>
/// See base class.
/// </summary>
/// <value></value>
/// <exception cref="NotImplementedException">
/// when the external host's Version is null.
/// </exception>
public override System.Version Version
{
get
{
if (_versionResult == null)
{
_versionResult = _externalHostRef.Value.Version;
#pragma warning disable 56503
if (_versionResult == null)
{
throw PSTraceSource.NewNotImplementedException();
}
#pragma warning restore 56503
}
return _versionResult;
}
}
/// <summary>
/// See base class.
/// </summary>
/// <value></value>
/// <exception cref="NotImplementedException">
/// when the external host's InstanceId is a zero Guid.
/// </exception>
public override System.Guid InstanceId
{
get
{
if (_idResult == _zeroGuid)
{
_idResult = _externalHostRef.Value.InstanceId;
#pragma warning disable 56503
if (_idResult == _zeroGuid)
{
throw PSTraceSource.NewNotImplementedException();
}
#pragma warning restore 56503
}
return _idResult;
}
}
/// <summary>
/// See base class.
/// </summary>
/// <value>
/// </value>
public override System.Management.Automation.Host.PSHostUserInterface UI
{
get
{
return _internalUIRef.Value;
}
}
/// <summary>
/// Interface to be used for interaction with internal
/// host UI. InternalHostUserInterface wraps the host UI
/// supplied during construction. Use this wrapper to access
/// functionality specific to InternalHost.
/// </summary>
internal InternalHostUserInterface InternalUI
{
get
{
return _internalUIRef.Value;
}
}
/// <summary>
/// See base class.
/// </summary>
/// <value>
/// </value>
/// <exception cref="NotImplementedException">
/// when the external host's CurrentCulture is null.
/// </exception>
public override System.Globalization.CultureInfo CurrentCulture
{
get
{
CultureInfo ci = _externalHostRef.Value.CurrentCulture ?? CultureInfo.InvariantCulture;
return ci;
}
}
/// <summary>
/// See base class.
/// </summary>
/// <value>
/// </value>
/// <exception cref="NotImplementedException">
/// If the external host's CurrentUICulture is null.
/// </exception>
public override CultureInfo CurrentUICulture
{
get
{
CultureInfo ci = _externalHostRef.Value.CurrentUICulture ?? CultureInfo.InstalledUICulture;
return ci;
}
}
/// <summary>
/// See base class.
/// </summary>
/// <param name="exitCode"></param>
public override void SetShouldExit(int exitCode)
{
_externalHostRef.Value.SetShouldExit(exitCode);
}
/// <summary>
/// See base class
/// <seealso cref="ExitNestedPrompt"/>
/// </summary>
public override void EnterNestedPrompt()
{
EnterNestedPrompt(null);
}
private struct PromptContextData
{
public object SavedCurrentlyExecutingCommandVarValue;
public object SavedPSBoundParametersVarValue;
public ExecutionContext.SavedContextData SavedContextData;
public RunspaceAvailability RunspaceAvailability;
public PSLanguageMode LanguageMode;
}
/// <summary>
/// Internal proxy for EnterNestedPrompt.
/// </summary>
/// <param name="callingCommand"></param>
internal void EnterNestedPrompt(InternalCommand callingCommand)
{
// Ensure we are in control of the pipeline
LocalRunspace localRunspace = null;
// This needs to be in a try / catch, since the LocalRunspace cast
// tries to verify that the host supports interactive sessions.
// Tests hosts do not.
try { localRunspace = this.Runspace as LocalRunspace; }
catch (PSNotImplementedException) { }
if (localRunspace != null)
{
Pipeline currentlyRunningPipeline = this.Runspace.GetCurrentlyRunningPipeline();
if ((currentlyRunningPipeline != null) &&
(currentlyRunningPipeline == localRunspace.PulsePipeline))
throw new InvalidOperationException();
}
// NTRAID#Windows OS Bugs-986407-2004/07/29 When kumarp has done the configuration work in the engine, it
// should include setting a bit that indicates that the initialization is complete, and code should be
// added here to throw an exception if this function is called before that bit is set.
if (NestedPromptCount < 0)
{
Dbg.Assert(false, "nested prompt counter should never be negative.");
throw PSTraceSource.NewInvalidOperationException(
InternalHostStrings.EnterExitNestedPromptOutOfSync);
}
// Increment our nesting counter. When we set the value of the variable, we will replace any existing variable
// of the same name. This is good, as any existing value is either 1) ours, and we have claim to replace it, or
// 2) is a squatter, and we have claim to clobber it.
++NestedPromptCount;
Context.SetVariable(SpecialVariables.NestedPromptCounterVarPath, NestedPromptCount);
// On entering a subshell, save and reset values of certain bits of session state
PromptContextData contextData = new PromptContextData();
contextData.SavedContextData = Context.SaveContextData();
contextData.SavedCurrentlyExecutingCommandVarValue = Context.GetVariableValue(SpecialVariables.CurrentlyExecutingCommandVarPath);
contextData.SavedPSBoundParametersVarValue = Context.GetVariableValue(SpecialVariables.PSBoundParametersVarPath);
contextData.RunspaceAvailability = this.Context.CurrentRunspace.RunspaceAvailability;
contextData.LanguageMode = Context.LanguageMode;
PSPropertyInfo commandInfoProperty = null;
PSPropertyInfo stackTraceProperty = null;
object oldCommandInfo = null;
object oldStackTrace = null;
if (callingCommand != null)
{
Dbg.Assert(callingCommand.Context == Context, "I expect that the contexts should match");
// Populate $CurrentlyExecutingCommand to facilitate debugging. One of the gotchas is that we are going to want
// to expose more and more debug info. We could just populate more and more local variables but that is probably
// a lousy approach as it pollutes the namespace. A better way to do it is to add NOTES to the variable value
// object.
PSObject newValue = PSObject.AsPSObject(callingCommand);
commandInfoProperty = newValue.Properties["CommandInfo"];
if (commandInfoProperty == null)
{
newValue.Properties.Add(new PSNoteProperty("CommandInfo", callingCommand.CommandInfo));
}
else
{
oldCommandInfo = commandInfoProperty.Value;
commandInfoProperty.Value = callingCommand.CommandInfo;
}
stackTraceProperty = newValue.Properties["StackTrace"];
if (stackTraceProperty == null)
{
newValue.Properties.Add(new PSNoteProperty("StackTrace", new System.Diagnostics.StackTrace()));
}
else
{
oldStackTrace = stackTraceProperty.Value;
stackTraceProperty.Value = new System.Diagnostics.StackTrace();
}
Context.SetVariable(SpecialVariables.CurrentlyExecutingCommandVarPath, newValue);
}
_contextStack.Push(contextData);
Dbg.Assert(_contextStack.Count == NestedPromptCount, "number of saved contexts should equal nesting count");
Context.PSDebugTraceStep = false;
Context.PSDebugTraceLevel = 0;
Context.ResetShellFunctionErrorOutputPipe();
// Lock down the language in the nested prompt
if (Context.HasRunspaceEverUsedConstrainedLanguageMode)
{
Context.LanguageMode = PSLanguageMode.ConstrainedLanguage;
}
this.Context.CurrentRunspace.UpdateRunspaceAvailability(RunspaceAvailability.AvailableForNestedCommand, true);
try
{
_externalHostRef.Value.EnterNestedPrompt();
}
catch
{
// So where things really go south is this path; which is possible for hosts (like our ConsoleHost)
// that don't return from EnterNestedPrompt immediately.
// EnterNestedPrompt() starts
// ExitNestedPrompt() called
// EnterNestedPrompt throws
ExitNestedPromptHelper();
throw;
}
finally
{
if (commandInfoProperty != null)
{
commandInfoProperty.Value = oldCommandInfo;
}
if (stackTraceProperty != null)
{
stackTraceProperty.Value = oldStackTrace;
}
}
Dbg.Assert(NestedPromptCount >= 0, "nestedPromptCounter should be greater than or equal to 0");
}
private void ExitNestedPromptHelper()
{
--NestedPromptCount;
Context.SetVariable(SpecialVariables.NestedPromptCounterVarPath, NestedPromptCount);
// restore the saved context
Dbg.Assert(_contextStack.Count > 0, "ExitNestedPrompt: called without any saved context");
if (_contextStack.Count > 0)
{
PromptContextData pcd = _contextStack.Pop();
pcd.SavedContextData.RestoreContextData(Context);
Context.LanguageMode = pcd.LanguageMode;
Context.SetVariable(SpecialVariables.CurrentlyExecutingCommandVarPath, pcd.SavedCurrentlyExecutingCommandVarValue);
Context.SetVariable(SpecialVariables.PSBoundParametersVarPath, pcd.SavedPSBoundParametersVarValue);
this.Context.CurrentRunspace.UpdateRunspaceAvailability(pcd.RunspaceAvailability, true);
}
Dbg.Assert(_contextStack.Count == NestedPromptCount, "number of saved contexts should equal nesting count");
}
/// <summary>
/// See base class
/// <seealso cref="EnterNestedPrompt()"/>
/// </summary>
public override void ExitNestedPrompt()
{
Dbg.Assert(NestedPromptCount >= 0, "nestedPromptCounter should be greater than or equal to 0");
if (NestedPromptCount == 0)
return;
try
{
_externalHostRef.Value.ExitNestedPrompt();
}
finally
{
ExitNestedPromptHelper();
}
ExitNestedPromptException enpe = new ExitNestedPromptException();
throw enpe;
}
/// <summary>
/// See base class.
/// </summary>
public override PSObject PrivateData
{
get
{
PSObject result = _externalHostRef.Value.PrivateData;
return result;
}
}
/// <summary>
/// See base class
/// <seealso cref="NotifyEndApplication"/>
/// </summary>
public override void NotifyBeginApplication()
{
_externalHostRef.Value.NotifyBeginApplication();
}
/// <summary>
/// Called by the engine to notify the host that the execution of a legacy command has completed.
/// <seealso cref="NotifyBeginApplication"/>
/// </summary>
public override void NotifyEndApplication()
{
_externalHostRef.Value.NotifyEndApplication();
}
/// <summary>
/// This property enables and disables the host debugger if debugging is supported.
/// </summary>
public override bool DebuggerEnabled { get; set; } = true;
/// <summary>
/// Gets the external host as an IHostSupportsInteractiveSession if it implements this interface;
/// throws an exception otherwise.
/// </summary>
private IHostSupportsInteractiveSession GetIHostSupportsInteractiveSession()
{
if (_externalHostRef.Value is not IHostSupportsInteractiveSession host)
{
throw new PSNotImplementedException();
}
return host;
}
/// <summary>
/// Called by the engine to notify the host that a runspace push has been requested.
/// </summary>
/// <seealso cref="PopRunspace"/>
public void PushRunspace(System.Management.Automation.Runspaces.Runspace runspace)
{
IHostSupportsInteractiveSession host = GetIHostSupportsInteractiveSession();
host.PushRunspace(runspace);
}
/// <summary>
/// Called by the engine to notify the host that a runspace pop has been requested.
/// </summary>
/// <seealso cref="PushRunspace"/>
public void PopRunspace()
{
IHostSupportsInteractiveSession host = GetIHostSupportsInteractiveSession();
host.PopRunspace();
}
/// <summary>
/// True if a runspace is pushed; false otherwise.
/// </summary>
public bool IsRunspacePushed
{
get
{
IHostSupportsInteractiveSession host = GetIHostSupportsInteractiveSession();
return host.IsRunspacePushed;
}
}
/// <summary>
/// Returns the current runspace associated with this host.
/// </summary>
public Runspace Runspace
{
get
{
IHostSupportsInteractiveSession host = GetIHostSupportsInteractiveSession();
return host.Runspace;
}
}
/// <summary>
/// Checks if the host is in a nested prompt.
/// </summary>
/// <returns>True, if host in nested prompt
/// false, otherwise.</returns>
internal bool HostInNestedPrompt()
{
if (NestedPromptCount > 0)
{
return true;
}
else
{
return false;
}
}
/// <summary>
/// Sets the reference to the external host and the internal UI to a temporary
/// new host and its UI. This exists so that if the PowerShell/Pipeline
/// object has a different host from the runspace it can set it's host during its
/// invocation, and then revert it after the invocation is completed.
/// </summary>
/// <seealso cref="RevertHostRef"/> and
internal void SetHostRef(PSHost psHost)
{
_externalHostRef.Override(psHost);
_internalUIRef.Override(new InternalHostUserInterface(psHost.UI, this));
}
/// <summary>
/// Reverts the temporary host set by SetHost. If no host was temporarily set, this has no effect.
/// </summary>
/// <seealso cref="SetHostRef"/> and
internal void RevertHostRef()
{
// nothing to revert if Host reference is not set.
if (!IsHostRefSet)
{
return;
}
_externalHostRef.Revert();
_internalUIRef.Revert();
}
/// <summary>
/// Returns true if the external host reference is temporarily set to another host, masking the original host.
/// </summary>
internal bool IsHostRefSet
{
get { return _externalHostRef.IsOverridden; }
}
internal ExecutionContext Context { get; }
internal PSHost ExternalHost
{
get
{
return _externalHostRef.Value;
}
}
internal int NestedPromptCount { get; private set; }
// Masked variables.
private readonly ObjectRef<PSHost> _externalHostRef;
private readonly ObjectRef<InternalHostUserInterface> _internalUIRef;
// Private variables.
private string _nameResult;
private Version _versionResult;
private Guid _idResult;
private readonly Stack<PromptContextData> _contextStack = new Stack<PromptContextData>();
private readonly Guid _zeroGuid;
}
}
|