Windows-powershell / PowerShell-master /src /System.Management.Automation /engine /hostifaces /InternalHost.cs
| // 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; | |
| 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; | |
| if (string.IsNullOrEmpty(_nameResult)) | |
| { | |
| throw PSTraceSource.NewNotImplementedException(); | |
| } | |
| } | |
| 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; | |
| if (_versionResult == null) | |
| { | |
| throw PSTraceSource.NewNotImplementedException(); | |
| } | |
| } | |
| 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; | |
| if (_idResult == _zeroGuid) | |
| { | |
| throw PSTraceSource.NewNotImplementedException(); | |
| } | |
| } | |
| 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; | |
| } | |
| } | |