// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. namespace System.Management.Automation { using System; using System.Collections; using System.Collections.ObjectModel; using System.Management.Automation.Runspaces; /// /// Defines a class which allows simple execution of commands from CLR languages. /// public class RunspaceInvoke : IDisposable { #region constructors /// /// Runspace on which commands are invoked. /// private Runspace _runspace; /// /// Create a RunspaceInvoke for invoking commands. This uses /// a runspace with default PSSnapins. /// public RunspaceInvoke() { _runspace = RunspaceFactory.CreateRunspace(); _runspace.Open(); if (Runspace.DefaultRunspace == null) { Runspace.DefaultRunspace = _runspace; } } /// /// Create RunspaceInvoke for invoking command in specified /// runspace. /// /// /// Runspace must be opened state public RunspaceInvoke(Runspace runspace) { if (runspace == null) { throw PSTraceSource.NewArgumentNullException("runspace"); } _runspace = runspace; if (Runspace.DefaultRunspace == null) { Runspace.DefaultRunspace = _runspace; } } #endregion constructors #region invoke /// /// Invoke the specified script. /// /// PowerShell script to invoke. /// Output of invocation. public Collection Invoke(string script) { return Invoke(script, null); } /// /// Invoke the specified script and passes specified input to the script. /// /// PowerShell script to invoke. /// Input to script. /// Output of invocation. public Collection Invoke(string script, IEnumerable input) { if (_disposed == true) { throw PSTraceSource.NewObjectDisposedException("runspace"); } if (script == null) { throw PSTraceSource.NewArgumentNullException("script"); } Pipeline p = _runspace.CreatePipeline(script); return p.Invoke(input); } /// /// Invoke the specified script and passes specified input to the script. /// /// PowerShell script to invoke. /// Input to script. /// This gets errors from script. /// Output of invocation. /// /// is the non-terminating error stream /// from the command. /// In this release, the objects read from this PipelineReader /// are PSObjects wrapping ErrorRecords. /// public Collection Invoke(string script, IEnumerable input, out IList errors) { if (_disposed == true) { throw PSTraceSource.NewObjectDisposedException("runspace"); } if (script == null) { throw PSTraceSource.NewArgumentNullException("script"); } Pipeline p = _runspace.CreatePipeline(script); Collection output = p.Invoke(input); // 2004/06/30-JonN was ReadAll() which was non-blocking errors = p.Error.NonBlockingRead(); return output; } #endregion invoke #region IDisposable Members /// /// Set to true when object is disposed. /// private bool _disposed; /// /// Dispose underlying Runspace. /// public void Dispose() { Dispose(true); GC.SuppressFinalize(this); } /// /// Protected dispose which can be overridden by derived classes. /// /// protected virtual void Dispose(bool disposing) { if (_disposed == false) { if (disposing) { _runspace.Close(); _runspace = null; } } _disposed = true; } #endregion IDisposable Members } }