File size: 27,468 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 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 | // Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
using System.Collections;
using System.Collections.ObjectModel;
using System.Management.Automation.Internal;
using System.Runtime.Serialization;
using System.Threading;
using Dbg = System.Management.Automation.Diagnostics;
namespace System.Management.Automation.Runspaces
{
#region Exceptions
/// <summary>
/// Defines exception which is thrown when state of the pipeline is different
/// from expected state.
/// </summary>
public class InvalidPipelineStateException : SystemException
{
/// <summary>
/// Initializes a new instance of the InvalidPipelineStateException class.
/// </summary>
public InvalidPipelineStateException()
: base(StringUtil.Format(RunspaceStrings.InvalidPipelineStateStateGeneral))
{
}
/// <summary>
/// Initializes a new instance of the InvalidPipelineStateException class
/// with a specified error message.
/// </summary>
/// <param name="message">
/// The error message that explains the reason for the exception.
/// </param>
public InvalidPipelineStateException(string message)
: base(message)
{
}
/// <summary>
/// Initializes a new instance of the InvalidPipelineStateException class
/// with a specified error message and a reference to the inner exception that is the cause of this exception.
/// </summary>
/// <param name="message">
/// The error message that explains the reason for the exception.
/// </param>
/// <param name="innerException">
/// The exception that is the cause of the current exception.
/// </param>
public InvalidPipelineStateException(string message, Exception innerException)
: base(message, innerException)
{
}
/// <summary>
/// Initializes a new instance of the InvalidPipelineStateException and defines value of
/// CurrentState and ExpectedState.
/// </summary>
/// <param name="message">The error message that explains the reason for the exception.
/// </param>
/// <param name="currentState">Current state of pipeline.</param>
/// <param name="expectedState">Expected state of pipeline.</param>
internal InvalidPipelineStateException(string message, PipelineState currentState, PipelineState expectedState)
: base(message)
{
_expectedState = expectedState;
_currentState = currentState;
}
#region ISerializable Members
// 2005/04/20-JonN No need to implement GetObjectData
// if all fields are static or [NonSerialized]
/// <summary>
/// Initializes a new instance of the <see cref="InvalidPipelineStateException"/>
/// class with serialized data.
/// </summary>
/// <param name="info">
/// The <see cref="SerializationInfo"/> that holds the serialized object
/// data about the exception being thrown.
/// </param>
/// <param name="context">
/// The <see cref="StreamingContext"/> that contains contextual information
/// about the source or destination.
/// </param>
[Obsolete("Legacy serialization support is deprecated since .NET 8", DiagnosticId = "SYSLIB0051")]
private InvalidPipelineStateException(SerializationInfo info, StreamingContext context)
{
throw new NotSupportedException();
}
#endregion
/// <summary>
/// Gets CurrentState of the pipeline.
/// </summary>
public PipelineState CurrentState
{
get { return _currentState; }
}
/// <summary>
/// Gets ExpectedState of the pipeline.
/// </summary>
public PipelineState ExpectedState
{
get { return _expectedState; }
}
/// <summary>
/// State of pipeline when exception was thrown.
/// </summary>
[NonSerialized]
private readonly PipelineState _currentState = 0;
/// <summary>
/// States of the pipeline expected in method which throws this exception.
/// </summary>
[NonSerialized]
private readonly PipelineState _expectedState = 0;
}
#endregion Exceptions
#region PipelineState
/// <summary>
/// Enumerated type defining the state of the Pipeline.
/// </summary>
public enum PipelineState
{
/// <summary>
/// The pipeline has not been started.
/// </summary>
NotStarted = 0,
/// <summary>
/// The pipeline is executing.
/// </summary>
Running = 1,
/// <summary>
/// The pipeline is stoping execution.
/// </summary>
Stopping = 2,
/// <summary>
/// The pipeline is completed due to a stop request.
/// </summary>
Stopped = 3,
/// <summary>
/// The pipeline has completed.
/// </summary>
Completed = 4,
/// <summary>
/// The pipeline completed abnormally due to an error.
/// </summary>
Failed = 5,
/// <summary>
/// The pipeline is disconnected from remote running command.
/// </summary>
Disconnected = 6
}
/// <summary>
/// Type which has information about PipelineState and Exception
/// associated with PipelineState.
/// </summary>
public sealed class PipelineStateInfo
{
#region constructors
/// <summary>
/// Constructor for state changes not resulting from an error.
/// </summary>
/// <param name="state">Execution state.</param>
internal PipelineStateInfo(PipelineState state)
: this(state, null)
{
}
/// <summary>
/// Constructor for state changes with an optional error.
/// </summary>
/// <param name="state">The new state.</param>
/// <param name="reason">A non-null exception if the state change was
/// caused by an error,otherwise; null.
/// </param>
internal PipelineStateInfo(PipelineState state, Exception reason)
{
State = state;
Reason = reason;
}
/// <summary>
/// Copy constructor to support cloning.
/// </summary>
/// <param name="pipelineStateInfo">Source information.</param>
/// <throws>
/// ArgumentNullException when <paramref name="pipelineStateInfo"/> is null.
/// </throws>
internal PipelineStateInfo(PipelineStateInfo pipelineStateInfo)
{
Dbg.Assert(pipelineStateInfo != null, "caller should validate the parameter");
State = pipelineStateInfo.State;
Reason = pipelineStateInfo.Reason;
}
#endregion constructors
#region public_properties
/// <summary>
/// The state of the runspace.
/// </summary>
/// <remarks>
/// This value indicates the state of the pipeline after the change.
/// </remarks>
public PipelineState State { get; }
/// <summary>
/// The reason for the state change, if caused by an error.
/// </summary>
/// <remarks>
/// The value of this property is non-null if the state
/// changed due to an error. Otherwise, the value of this
/// property is null.
/// </remarks>
public Exception Reason { get; }
#endregion public_properties
/// <summary>
/// Clones this object.
/// </summary>
/// <returns>Cloned object.</returns>
internal PipelineStateInfo Clone()
{
return new PipelineStateInfo(this);
}
}
/// <summary>
/// Event arguments passed to PipelineStateEvent handlers
/// <see cref="Pipeline.StateChanged"/> event.
/// </summary>
public sealed class PipelineStateEventArgs : EventArgs
{
#region constructors
/// <summary>
/// Constructor PipelineStateEventArgs from PipelineStateInfo.
/// </summary>
/// <param name="pipelineStateInfo">The current state of the
/// pipeline.</param>
/// <throws>
/// ArgumentNullException when <paramref name="pipelineStateInfo"/> is null.
/// </throws>
internal PipelineStateEventArgs(PipelineStateInfo pipelineStateInfo)
{
Dbg.Assert(pipelineStateInfo != null, "caller should validate the parameter");
PipelineStateInfo = pipelineStateInfo;
}
#endregion constructors
#region public_properties
/// <summary>
/// Info about current state of pipeline.
/// </summary>
public PipelineStateInfo PipelineStateInfo { get; }
#endregion public_properties
}
#endregion ExecutionState
/// <summary>
/// Defines a class which can be used to invoke a pipeline of commands.
/// </summary>
public abstract class Pipeline : IDisposable
{
#region constructor
/// <summary>
/// Explicit default constructor.
/// </summary>
internal Pipeline(Runspace runspace)
: this(runspace, new CommandCollection())
{
}
/// <summary>
/// Constructor to initialize both Runspace and Command to invoke.
/// Caller should make sure that "command" is not null.
/// </summary>
/// <param name="runspace">
/// Runspace to use for the command invocation.
/// </param>
/// <param name="command">
/// command to Invoke.
/// Caller should make sure that "command" is not null.
/// </param>
internal Pipeline(Runspace runspace, CommandCollection command)
{
if (runspace == null)
{
PSTraceSource.NewArgumentNullException(nameof(runspace));
}
// This constructor is used only internally.
// Caller should make sure the input is valid
Dbg.Assert(command != null, "Command cannot be null");
InstanceId = runspace.GeneratePipelineId();
Commands = command;
// Reset the AMSI session so that it is re-initialized
// when the next script block is parsed.
AmsiUtils.CloseSession();
}
#endregion constructor
#region properties
/// <summary>
/// Gets the runspace this pipeline is created on.
/// </summary>
public abstract Runspace Runspace { get; }
/// <summary>
/// Gets the property which indicates if this pipeline is nested.
/// </summary>
public abstract bool IsNested { get; }
/// <summary>
/// Gets the property which indicates if this pipeline is a child pipeline.
///
/// IsChild flag makes it possible for the pipeline to differentiate between
/// a true v1 nested pipeline and the cmdlets calling cmdlets case. See bug
/// 211462.
/// </summary>
internal virtual bool IsChild
{
get { return false; }
set { }
}
/// <summary>
/// Gets input writer for this pipeline.
/// </summary>
/// <remarks>
/// When the caller calls Input.Write(), the caller writes to the
/// input of the pipeline. Thus, <paramref name="Input"/>
/// is a PipelineWriter or "thing which can be written to".
/// Note:Input must be closed after Pipeline.InvokeAsync for InvokeAsync to
/// finish.
/// </remarks>
public abstract PipelineWriter Input { get; }
/// <summary>
/// Gets the output reader for this pipeline.
/// </summary>
/// <remarks>
/// When the caller calls Output.Read(), the caller reads from the
/// output of the pipeline. Thus, <paramref name="Output"/>
/// is a PipelineReader or "thing which can be read from".
/// </remarks>
public abstract PipelineReader<PSObject> Output { get; }
/// <summary>
/// Gets the error output reader for this pipeline.
/// </summary>
/// <remarks>
/// When the caller calls Error.Read(), the caller reads from the
/// output of the pipeline. Thus, <paramref name="Error"/>
/// is a PipelineReader or "thing which can be read from".
///
/// This is the non-terminating error stream from the command.
/// In this release, the objects read from this PipelineReader
/// are PSObjects wrapping ErrorRecords.
/// </remarks>
public abstract PipelineReader<object> Error { get; }
/// <summary>
/// Gets Info about current state of the pipeline.
/// </summary>
/// <remarks>
/// This value indicates the state of the pipeline after the change.
/// </remarks>
public abstract PipelineStateInfo PipelineStateInfo { get; }
/// <summary>
/// True if pipeline execution encountered and error.
/// It will always be true if _reason is non-null
/// since an exception occurred. For other error types,
/// It has to be set manually.
/// </summary>
public virtual bool HadErrors
{
get { return _hadErrors; }
}
private bool _hadErrors;
internal void SetHadErrors(bool status)
{
_hadErrors = _hadErrors || status;
}
/// <summary>
/// Gets the unique identifier for this pipeline. This identifier is unique with in
/// the scope of Runspace.
/// </summary>
public long InstanceId { get; }
/// <summary>
/// Gets the collection of commands for this pipeline.
/// </summary>
public CommandCollection Commands { get; private set; }
/// <summary>
/// If this property is true, SessionState is updated for this
/// pipeline state.
/// </summary>
public bool SetPipelineSessionState { get; set; } = true;
/// <summary>
/// Settings for the pipeline invocation thread.
/// </summary>
internal PSInvocationSettings InvocationSettings { get; set; }
/// <summary>
/// If this flag is true, the commands in this Pipeline will redirect the global error output pipe
/// (ExecutionContext.ShellFunctionErrorOutputPipe) to the command's error output pipe.
///
/// When the global error output pipe is not set, $ErrorActionPreference is not checked and all
/// errors are treated as terminating errors.
///
/// On V1, the global error output pipe is redirected to the command's error output pipe only when
/// it has already been redirected. The command-line host achieves this redirection by merging the
/// error output into the output pipe so it checks $ErrorActionPreference all right. However, when
/// the Pipeline class is used programmatically the global error output pipe is not set and the first
/// error terminates the pipeline.
///
/// This flag is used to force the redirection. By default it is false to maintain compatibility with
/// V1, but the V2 hosting interface (PowerShell class) sets this flag to true to ensure the global
/// error output pipe is always set and $ErrorActionPreference is checked when invoking the Pipeline.
/// </summary>
internal bool RedirectShellErrorOutputPipe { get; set; } = false;
#endregion properties
#region events
/// <summary>
/// Event raised when Pipeline's state changes.
/// </summary>
public abstract event EventHandler<PipelineStateEventArgs> StateChanged;
#endregion events
#region methods
/// <summary>
/// Invoke the pipeline, synchronously, returning the results as an array of
/// objects.
/// </summary>
/// <remarks>If using synchronous invoke, do not close
/// input objectWriter. Synchronous invoke will always close the input
/// objectWriter.
/// </remarks>
/// <exception cref="InvalidOperationException">
/// No command is added to pipeline
/// </exception>
/// <exception cref="InvalidPipelineStateException">
/// PipelineState is not NotStarted.
/// </exception>
/// <exception cref="InvalidOperationException">
/// 1) A pipeline is already executing. Pipeline cannot execute
/// concurrently.
/// 2) Attempt is made to invoke a nested pipeline directly. Nested
/// pipeline must be invoked from a running pipeline.
/// </exception>
/// <exception cref="InvalidRunspaceStateException">
/// RunspaceState is not Open
/// </exception>
/// <exception cref="ObjectDisposedException">
/// Pipeline already disposed
/// </exception>
/// <exception cref="ScriptCallDepthException">
/// The script recursed too deeply into script functions.
/// There is a fixed limit on the depth of recursion.
/// </exception>
/// <exception cref="System.Security.SecurityException">
/// A CLR security violation occurred. Typically, this happens
/// because the current CLR permissions do not allow adequate
/// reflection access to a cmdlet assembly.
/// </exception>
/// <exception cref="RuntimeException">
/// Pipeline.Invoke can throw a variety of exceptions derived
/// from RuntimeException. The most likely of these exceptions
/// are listed below.
/// </exception>
/// <exception cref="ParameterBindingException">
/// One of more parameters or parameter values specified for
/// a cmdlet are not valid, or mandatory parameters for a cmdlet
/// were not specified.
/// </exception>
/// <exception cref="CmdletInvocationException">
/// A cmdlet generated a terminating error.
/// </exception>
/// <exception cref="CmdletProviderInvocationException">
/// A provider generated a terminating error.
/// </exception>
/// <exception cref="ActionPreferenceStopException">
/// The ActionPreference.Stop or ActionPreference.Inquire policy
/// triggered a terminating error.
/// </exception>
/// <exception cref="PipelineStoppedException">
/// The pipeline was terminated asynchronously.
/// </exception>
/// <exception cref="MetadataException">
/// If there is an error generating the metadata for dynamic parameters.
/// </exception>
public Collection<PSObject> Invoke()
{
return Invoke(null);
}
/// <summary>
/// Invoke the pipeline, synchronously, returning the results as an array of objects.
/// </summary>
/// <param name="input">an array of input objects to pass to the pipeline.
/// Array may be empty but may not be null</param>
/// <returns>An array of zero or more result objects.</returns>
/// <remarks>If using synchronous exectute, do not close
/// input objectWriter. Synchronous invoke will always close the input
/// objectWriter.
/// </remarks>
/// <exception cref="InvalidOperationException">
/// No command is added to pipeline
/// </exception>
/// <exception cref="InvalidPipelineStateException">
/// PipelineState is not NotStarted.
/// </exception>
/// <exception cref="InvalidOperationException">
/// 1) A pipeline is already executing. Pipeline cannot execute
/// concurrently.
/// 2) Attempt is made to invoke a nested pipeline directly. Nested
/// pipeline must be invoked from a running pipeline.
/// </exception>
/// <exception cref="InvalidRunspaceStateException">
/// RunspaceState is not Open
/// </exception>
/// <exception cref="ObjectDisposedException">
/// Pipeline already disposed
/// </exception>
/// <exception cref="ScriptCallDepthException">
/// The script recursed too deeply into script functions.
/// There is a fixed limit on the depth of recursion.
/// </exception>
/// <exception cref="System.Security.SecurityException">
/// A CLR security violation occurred. Typically, this happens
/// because the current CLR permissions do not allow adequate
/// reflection access to a cmdlet assembly.
/// </exception>
/// <exception cref="RuntimeException">
/// Pipeline.Invoke can throw a variety of exceptions derived
/// from RuntimeException. The most likely of these exceptions
/// are listed below.
/// </exception>
/// <exception cref="ParameterBindingException">
/// One of more parameters or parameter values specified for
/// a cmdlet are not valid, or mandatory parameters for a cmdlet
/// were not specified.
/// </exception>
/// <exception cref="CmdletInvocationException">
/// A cmdlet generated a terminating error.
/// </exception>
/// <exception cref="CmdletProviderInvocationException">
/// A provider generated a terminating error.
/// </exception>
/// <exception cref="ActionPreferenceStopException">
/// The ActionPreference.Stop or ActionPreference.Inquire policy
/// triggered a terminating error.
/// </exception>
/// <exception cref="PipelineStoppedException">
/// The pipeline was terminated asynchronously.
/// </exception>
/// <exception cref="MetadataException">
/// If there is an error generating the metadata for dynamic parameters.
/// </exception>
public abstract Collection<PSObject> Invoke(IEnumerable input);
/// <summary>
/// Invoke the pipeline asynchronously.
/// </summary>
/// <remarks>
/// 1) Results are returned through the <see cref="Pipeline.Output"/> reader.
/// 2) When pipeline is invoked using InvokeAsync, invocation doesn't
/// finish until Input to pipeline is closed. Caller of InvokeAsync must close
/// the input pipe after all input has been written to input pipe. Input pipe
/// is closed by calling Pipeline.Input.Close();
///
/// If you want this pipeline to execute as a standalone command
/// (that is, using command-line parameters only),
/// be sure to call Pipeline.Input.Close() before calling
/// InvokeAsync(). Otherwise, the command will be executed
/// as though it had external input. If you observe that the
/// command isn't doing anything, this may be the reason.
/// </remarks>
/// <exception cref="InvalidOperationException">
/// No command is added to pipeline
/// </exception>
/// <exception cref="InvalidPipelineStateException">
/// PipelineState is not NotStarted.
/// </exception>
/// <exception cref="InvalidOperationException">
/// 1) A pipeline is already executing. Pipeline cannot execute
/// concurrently.
/// 2) InvokeAsync is called on nested pipeline. Nested pipeline
/// cannot be executed Asynchronously.
/// </exception>
/// <exception cref="InvalidRunspaceStateException">
/// RunspaceState is not Open
/// </exception>
/// <exception cref="ObjectDisposedException">
/// Pipeline already disposed
/// </exception>
public abstract void InvokeAsync();
/// <summary>
/// Synchronous call to stop the running pipeline.
/// </summary>
public abstract void Stop();
/// <summary>
/// Asynchronous call to stop the running pipeline.
/// </summary>
public abstract void StopAsync();
/// <summary>
/// Creates a new <see cref="Pipeline"/> that is a copy of the current instance.
/// </summary>
/// <returns>A new <see cref="Pipeline"/> that is a copy of this instance.</returns>
public abstract Pipeline Copy();
/// <summary>
/// Connects synchronously to a running command on a remote server.
/// The pipeline object must be in the disconnected state.
/// </summary>
/// <returns>A collection of result objects.</returns>
public abstract Collection<PSObject> Connect();
/// <summary>
/// Connects asynchronously to a running command on a remote server.
/// </summary>
public abstract void ConnectAsync();
/// <summary>
/// Sets the command collection.
/// </summary>
/// <param name="commands">Command collection to set.</param>
/// <remarks>called by ClientRemotePipeline</remarks>
internal void SetCommandCollection(CommandCollection commands)
{
Commands = commands;
}
/// <summary>
/// Sets the history string to the one that is specified.
/// </summary>
/// <param name="historyString">History string to set.</param>
internal abstract void SetHistoryString(string historyString);
/// <summary>
/// Invokes a remote command and immediately disconnects if
/// transport layer supports it.
/// </summary>
internal abstract void InvokeAsyncAndDisconnect();
#endregion methods
#region Remote data drain/block methods
/// <summary>
/// Blocks data arriving from remote session.
/// </summary>
internal virtual void SuspendIncomingData()
{
throw new PSNotImplementedException();
}
/// <summary>
/// Resumes data arrive from remote session.
/// </summary>
internal virtual void ResumeIncomingData()
{
throw new PSNotImplementedException();
}
/// <summary>
/// Blocking call that waits until the current remote data
/// queue is empty.
/// </summary>
internal virtual void DrainIncomingData()
{
throw new PSNotImplementedException();
}
#endregion
#region IDisposable Members
/// <summary>
/// Disposes the pipeline. If pipeline is running, dispose first
/// stops the pipeline.
/// </summary>
public
void
Dispose()
{
Dispose(!IsChild);
GC.SuppressFinalize(this);
}
/// <summary>
/// Protected dispose which can be overridden by derived classes.
/// </summary>
/// <param name="disposing"></param>
protected virtual
void
Dispose(bool disposing)
{
}
#endregion IDisposable Members
}
}
|