| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581 | using System;using System.IO;using System.Linq;using System.Text;using System.Threading;using Renci.SshNet.Channels;using Renci.SshNet.Common;using Renci.SshNet.Messages;using Renci.SshNet.Messages.Connection;using Renci.SshNet.Messages.Transport;using System.Globalization;namespace Renci.SshNet{    /// <summary>    /// Represents SSH command that can be executed.    /// </summary>    public partial class SshCommand : IDisposable    {        private Session _session;        private ChannelSession _channel;        private CommandAsyncResult _asyncResult;        private AsyncCallback _callback;        private EventWaitHandle _sessionErrorOccuredWaitHandle = new AutoResetEvent(false);        private Exception _exception;        private bool _hasError;        private object _endExecuteLock = new object();        /// <summary>        /// Gets the command text.        /// </summary>        public string CommandText { get; private set; }        /// <summary>        /// Gets or sets the command timeout.        /// </summary>        /// <value>        /// The command timeout.        /// </value>        /// <example>        ///     <code source="..\..\Renci.SshNet.Tests\Classes\SshCommandTest.cs" region="Example SshCommand CreateCommand Execute CommandTimeout" language="C#" title="Specify command execution timeout" />        /// </example>        public TimeSpan CommandTimeout { get; set; }        /// <summary>        /// Gets the command exit status.        /// </summary>        /// <example>        ///     <code source="..\..\Renci.SshNet.Tests\Classes\SshCommandTest.cs" region="Example SshCommand RunCommand ExitStatus" language="C#" title="Get command execution exit status" />        /// </example>        public int ExitStatus { get; private set; }        /// <summary>        /// Gets the output stream.        /// </summary>        /// <example>        ///     <code source="..\..\Renci.SshNet.Tests\Classes\SshCommandTest.cs" region="Example SshCommand CreateCommand Execute OutputStream" language="C#" title="Use OutputStream to get command execution output" />        /// </example>        public Stream OutputStream { get; private set; }        /// <summary>        /// Gets the extended output stream.        /// </summary>        /// <example>        ///     <code source="..\..\Renci.SshNet.Tests\Classes\SshCommandTest.cs" region="Example SshCommand CreateCommand Execute ExtendedOutputStream" language="C#" title="Use ExtendedOutputStream to get command debug execution output" />        /// </example>        public Stream ExtendedOutputStream { get; private set; }        private StringBuilder _result;        /// <summary>        /// Gets the command execution result.        /// </summary>        /// <example>        ///     <code source="..\..\Renci.SshNet.Tests\Classes\SshCommandTest.cs" region="Example SshCommand RunCommand Result" language="C#" title="Running simple command" />        /// </example>        public string Result        {            get            {                if (this._result == null)                {                    this._result = new StringBuilder();                }                if (this.OutputStream != null && this.OutputStream.Length > 0)                {                    using (var sr = new StreamReader(this.OutputStream, this._session.ConnectionInfo.Encoding))                    {                        this._result.Append(sr.ReadToEnd());                    }                }                return this._result.ToString();            }        }        private StringBuilder _error;        /// <summary>        /// Gets the command execution error.        /// </summary>        /// <example>        ///     <code source="..\..\Renci.SshNet.Tests\Classes\SshCommandTest.cs" region="Example SshCommand CreateCommand Error" language="C#" title="Display command execution error" />        /// </example>        public string Error        {            get            {                if (this._hasError)                {                    if (this._error == null)                    {                        this._error = new StringBuilder();                    }                    if (this.ExtendedOutputStream != null && this.ExtendedOutputStream.Length > 0)                    {                        using (var sr = new StreamReader(this.ExtendedOutputStream, this._session.ConnectionInfo.Encoding))                        {                            this._error.Append(sr.ReadToEnd());                        }                    }                    return this._error.ToString();                }                else                    return string.Empty;            }        }        /// <summary>        /// Initializes a new instance of the <see cref="SshCommand"/> class.        /// </summary>        /// <param name="session">The session.</param>        /// <param name="commandText">The command text.</param>        /// <param name="encoding">The encoding.</param>        /// <exception cref="ArgumentNullException">Either <paramref name="session"/>, <paramref name="commandText"/> or <paramref name="encoding"/> is null.</exception>        internal SshCommand(Session session, string commandText)        {            if (session == null)                throw new ArgumentNullException("session");            if (commandText == null)                throw new ArgumentNullException("commandText");            this._session = session;            this.CommandText = commandText;            this.CommandTimeout = new TimeSpan(0, 0, 0, 0, -1);            this._session.Disconnected += Session_Disconnected;            this._session.ErrorOccured += Session_ErrorOccured;        }        /// <summary>        /// Begins an asynchronous command execution.        /// </summary>        /// <returns>        /// An <see cref="System.IAsyncResult" /> that represents the asynchronous command execution, which could still be pending.        /// </returns>        /// <example>        ///     <code source="..\..\Renci.SshNet.Tests\Classes\SshCommandTest.cs" region="Example SshCommand CreateCommand BeginExecute IsCompleted EndExecute" language="C#" title="Asynchronous Command Execution" />        /// </example>        /// <exception cref="System.InvalidOperationException">Asynchronous operation is already in progress.</exception>        /// <exception cref="SshException">Invalid operation.</exception>        /// <exception cref="System.ArgumentException">CommandText property is empty.</exception>        /// <exception cref="Renci.SshNet.Common.SshConnectionException">Client is not connected.</exception>        /// <exception cref="Renci.SshNet.Common.SshOperationTimeoutException">Operation has timed out.</exception>        /// <exception cref="InvalidOperationException">Asynchronous operation is already in progress.</exception>        /// <exception cref="ArgumentException">CommandText property is empty.</exception>        public IAsyncResult BeginExecute()        {            return this.BeginExecute(null, null);        }        /// <summary>        /// Begins an asynchronous command execution.        /// </summary>        /// <param name="callback">An optional asynchronous callback, to be called when the command execution is complete.</param>        /// <returns>        /// An <see cref="System.IAsyncResult" /> that represents the asynchronous command execution, which could still be pending.        /// </returns>        /// <exception cref="System.InvalidOperationException">Asynchronous operation is already in progress.</exception>        /// <exception cref="SshException">Invalid operation.</exception>        /// <exception cref="System.ArgumentException">CommandText property is empty.</exception>        /// <exception cref="Renci.SshNet.Common.SshConnectionException">Client is not connected.</exception>        /// <exception cref="Renci.SshNet.Common.SshOperationTimeoutException">Operation has timed out.</exception>        /// <exception cref="InvalidOperationException">Asynchronous operation is already in progress.</exception>        /// <exception cref="ArgumentException">CommandText property is empty.</exception>        public IAsyncResult BeginExecute(AsyncCallback callback)        {            return this.BeginExecute(callback, null);        }        /// <summary>        /// Begins an asynchronous command execution.        /// </summary>        /// <param name="callback">An optional asynchronous callback, to be called when the command execution is complete.</param>        /// <param name="state">A user-provided object that distinguishes this particular asynchronous read request from other requests.</param>        /// <returns>        /// An <see cref="System.IAsyncResult" /> that represents the asynchronous command execution, which could still be pending.        /// </returns>        /// <exception cref="System.InvalidOperationException">Asynchronous operation is already in progress.</exception>        /// <exception cref="SshException">Invalid operation.</exception>        /// <exception cref="System.ArgumentException">CommandText property is empty.</exception>        /// <exception cref="Renci.SshNet.Common.SshConnectionException">Client is not connected.</exception>        /// <exception cref="Renci.SshNet.Common.SshOperationTimeoutException">Operation has timed out.</exception>        /// <exception cref="InvalidOperationException">Asynchronous operation is already in progress.</exception>        /// <exception cref="ArgumentException">CommandText property is empty.</exception>        public IAsyncResult BeginExecute(AsyncCallback callback, object state)        {            //  Prevent from executing BeginExecute before calling EndExecute            if (this._asyncResult != null)            {                throw new InvalidOperationException("Asynchronous operation is already in progress.");            }            //  Create new AsyncResult object            this._asyncResult = new CommandAsyncResult(this)            {                AsyncWaitHandle = new ManualResetEvent(false),                IsCompleted = false,                AsyncState = state,            };            //  When command re-executed again, create a new channel            if (this._channel != null)            {                throw new SshException("Invalid operation.");            }            this.CreateChannel();            if (string.IsNullOrEmpty(this.CommandText))                throw new ArgumentException("CommandText property is empty.");            this._callback = callback;            this._channel.Open();            //  Send channel command request            this._channel.SendExecRequest(this.CommandText);            return _asyncResult;        }        /// <summary>        /// Begins an asynchronous command execution. 22        /// </summary>        /// <param name="commandText">The command text.</param>        /// <param name="callback">An optional asynchronous callback, to be called when the command execution is complete.</param>        /// <param name="state">A user-provided object that distinguishes this particular asynchronous read request from other requests.</param>        /// <returns>        /// An <see cref="System.IAsyncResult" /> that represents the asynchronous command execution, which could still be pending.        /// </returns>        /// <exception cref="Renci.SshNet.Common.SshConnectionException">Client is not connected.</exception>        /// <exception cref="Renci.SshNet.Common.SshOperationTimeoutException">Operation has timed out.</exception>        public IAsyncResult BeginExecute(string commandText, AsyncCallback callback, object state)        {            this.CommandText = commandText;            return BeginExecute(callback, state);        }        /// <summary>        /// Waits for the pending asynchronous command execution to complete.        /// </summary>        /// <param name="asyncResult">The reference to the pending asynchronous request to finish.</param>        /// <returns>Command execution result.</returns>        /// <example>        ///     <code source="..\..\Renci.SshNet.Tests\Classes\SshCommandTest.cs" region="Example SshCommand CreateCommand BeginExecute IsCompleted EndExecute" language="C#" title="Asynchronous Command Execution" />        /// </example>        /// <exception cref="System.ArgumentException">Either the IAsyncResult object did not come from the corresponding async method on this type, or EndExecute was called multiple times with the same IAsyncResult.</exception>        /// <exception cref="ArgumentException">Either the IAsyncResult object did not come from the corresponding async method on this type, or EndExecute was called multiple times with the same IAsyncResult.</exception>        public string EndExecute(IAsyncResult asyncResult)        {            if (this._asyncResult == asyncResult && this._asyncResult != null)            {                lock (this._endExecuteLock)                {                    if (this._asyncResult != null)                    {                        //  Make sure that operation completed if not wait for it to finish                        this.WaitHandle(this._asyncResult.AsyncWaitHandle);                        if (this._channel.IsOpen)                        {                            this._channel.SendEof();                            this._channel.Close();                        }                        this._channel = null;                        this._asyncResult = null;                        return this.Result;                    }                }            }            throw new ArgumentException("Either the IAsyncResult object did not come from the corresponding async method on this type, or EndExecute was called multiple times with the same IAsyncResult.");        }        /// <summary>        /// Executes command specified by <see cref="CommandText"/> property.        /// </summary>        /// <returns>Command execution result</returns>        /// <example>        ///     <code source="..\..\Renci.SshNet.Tests\Classes\SshCommandTest.cs" region="Example SshCommand CreateCommand Execute" language="C#" title="Simple command execution" />        ///     <code source="..\..\Renci.SshNet.Tests\Classes\SshCommandTest.cs" region="Example SshCommand CreateCommand Error" language="C#" title="Display command execution error" />        ///     <code source="..\..\Renci.SshNet.Tests\Classes\SshCommandTest.cs" region="Example SshCommand CreateCommand Execute CommandTimeout" language="C#" title="Specify command execution timeout" />        /// </example>        /// <exception cref="Renci.SshNet.Common.SshConnectionException">Client is not connected.</exception>        /// <exception cref="Renci.SshNet.Common.SshOperationTimeoutException">Operation has timed out.</exception>        public string Execute()        {            return this.EndExecute(this.BeginExecute(null, null));        }        /// <summary>        /// Cancels command execution in asynchronous scenarios.         /// </summary>        public void CancelAsync()        {            if (this._channel != null && this._channel.IsOpen && this._asyncResult != null)            {                this._channel.Close();            }        }        /// <summary>        /// Executes the specified command text.        /// </summary>        /// <param name="commandText">The command text.</param>        /// <returns>Command execution result</returns>        /// <exception cref="Renci.SshNet.Common.SshConnectionException">Client is not connected.</exception>        /// <exception cref="Renci.SshNet.Common.SshOperationTimeoutException">Operation has timed out.</exception>        public string Execute(string commandText)        {            this.CommandText = commandText;            return this.Execute();        }        private void CreateChannel()        {            this._channel = this._session.CreateChannel<ChannelSession>();            this._channel.DataReceived += Channel_DataReceived;            this._channel.ExtendedDataReceived += Channel_ExtendedDataReceived;            this._channel.RequestReceived += Channel_RequestReceived;            this._channel.Closed += Channel_Closed;            //  Dispose of streams if already exists            if (this.OutputStream != null)            {                this.OutputStream.Dispose();                this.OutputStream = null;            }            if (this.ExtendedOutputStream != null)            {                this.ExtendedOutputStream.Dispose();                this.ExtendedOutputStream = null;            }            //  Initialize output streams and StringBuilders            this.OutputStream = new PipeStream();            this.ExtendedOutputStream = new PipeStream();            this._result = null;            this._error = null;        }        private void Session_Disconnected(object sender, EventArgs e)        {            //  If objected is disposed or being disposed don't handle this event            if (this._isDisposed)                return;            this._exception = new SshConnectionException("An established connection was aborted by the software in your host machine.", DisconnectReason.ConnectionLost);            this._sessionErrorOccuredWaitHandle.Set();        }        private void Session_ErrorOccured(object sender, ExceptionEventArgs e)        {            //  If objected is disposed or being disposed don't handle this event            if (this._isDisposed)                return;            this._exception = e.Exception;            this._sessionErrorOccuredWaitHandle.Set();        }        private void Channel_Closed(object sender, Common.ChannelEventArgs e)        {            if (this.OutputStream != null)            {                this.OutputStream.Flush();            }            if (this.ExtendedOutputStream != null)            {                this.ExtendedOutputStream.Flush();            }            this._asyncResult.IsCompleted = true;            if (this._callback != null)            {                //  Execute callback on different thread                                this.ExecuteThread(() => { this._callback(this._asyncResult); });            }            ((EventWaitHandle)this._asyncResult.AsyncWaitHandle).Set();        }        private void Channel_RequestReceived(object sender, Common.ChannelRequestEventArgs e)        {            Message replyMessage = new ChannelFailureMessage(this._channel.LocalChannelNumber);            if (e.Info is ExitStatusRequestInfo)            {                ExitStatusRequestInfo exitStatusInfo = e.Info as ExitStatusRequestInfo;                this.ExitStatus = (int)exitStatusInfo.ExitStatus;                replyMessage = new ChannelSuccessMessage(this._channel.LocalChannelNumber);            }            if (e.Info.WantReply)            {                this._session.SendMessage(replyMessage);            }        }        private void Channel_ExtendedDataReceived(object sender, Common.ChannelDataEventArgs e)        {            if (this.ExtendedOutputStream != null)            {                this.ExtendedOutputStream.Write(e.Data, 0, e.Data.Length);                this.ExtendedOutputStream.Flush();            }            if (e.DataTypeCode == 1)            {                this._hasError = true;            }        }        private void Channel_DataReceived(object sender, Common.ChannelDataEventArgs e)        {            if (this.OutputStream != null)            {                this.OutputStream.Write(e.Data, 0, e.Data.Length);                this.OutputStream.Flush();            }            if (this._asyncResult != null)            {                lock (this._asyncResult)                {                    this._asyncResult.BytesReceived += e.Data.Length;                }            }        }        /// <exception cref="SshOperationTimeoutException">Command '{0}' has timed out.</exception>        /// <remarks>The actual command will be included in the exception message.</remarks>        private void WaitHandle(WaitHandle waitHandle)        {            var waitHandles = new WaitHandle[]                {                    this._sessionErrorOccuredWaitHandle,                    waitHandle,                };            switch (EventWaitHandle.WaitAny(waitHandles, this.CommandTimeout))            {                case 0:                    throw this._exception;                case System.Threading.WaitHandle.WaitTimeout:                    throw new SshOperationTimeoutException(string.Format(CultureInfo.CurrentCulture, "Command '{0}' has timed out.", this.CommandText));                default:                    break;            }        }        partial void ExecuteThread(Action action);        #region IDisposable Members        private bool _isDisposed = false;        /// <summary>        /// Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged ResourceMessages.        /// </summary>        public void Dispose()        {            Dispose(true);            GC.SuppressFinalize(this);        }        /// <summary>        /// Releases unmanaged and - optionally - managed resources        /// </summary>        /// <param name="disposing"><c>true</c> to release both managed and unmanaged resources; <c>false</c> to release only unmanaged ResourceMessages.</param>        protected virtual void Dispose(bool disposing)        {            // Check to see if Dispose has already been called.            if (!this._isDisposed)            {                // If disposing equals true, dispose all managed                // and unmanaged ResourceMessages.                if (disposing)                {                    this._session.Disconnected -= Session_Disconnected;                    this._session.ErrorOccured -= Session_ErrorOccured;                    // Dispose managed ResourceMessages.                    if (this.OutputStream != null)                    {                        this.OutputStream.Dispose();                        this.OutputStream = null;                    }                    // Dispose managed ResourceMessages.                    if (this.ExtendedOutputStream != null)                    {                        this.ExtendedOutputStream.Dispose();                        this.ExtendedOutputStream = null;                    }                    // Dispose managed ResourceMessages.                    if (this._sessionErrorOccuredWaitHandle != null)                    {                        this._sessionErrorOccuredWaitHandle.Dispose();                        this._sessionErrorOccuredWaitHandle = null;                    }                    // Dispose managed ResourceMessages.                    if (this._channel != null)                    {                        this._channel.DataReceived -= Channel_DataReceived;                        this._channel.ExtendedDataReceived -= Channel_ExtendedDataReceived;                        this._channel.RequestReceived -= Channel_RequestReceived;                        this._channel.Closed -= Channel_Closed;                        this._channel.Dispose();                        this._channel = null;                    }                }                // Note disposing has been done.                this._isDisposed = true;            }        }        /// <summary>        /// Releases unmanaged resources and performs other cleanup operations before the        /// <see cref="SshCommand"/> is reclaimed by garbage collection.        /// </summary>        ~SshCommand()        {            // Do not re-create Dispose clean-up code here.            // Calling Dispose(false) is optimal in terms of            // readability and maintainability.            Dispose(false);        }        #endregion    }}
 |