File size: 16,996 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 | // Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
using System;
using System.Collections.ObjectModel;
using System.Diagnostics;
using System.IO;
using System.Management.Automation;
using System.Management.Automation.Internal;
using System.Management.Automation.Runspaces;
using System.Threading;
namespace Microsoft.PowerShell.Commands
{
/// <summary>
/// A cmdlet that traces the specified categories and flags for the duration of the
/// specified expression.
/// </summary>
[Cmdlet(VerbsDiagnostic.Trace, "Command", DefaultParameterSetName = "expressionSet", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2097136")]
public class TraceCommandCommand : TraceListenerCommandBase, IDisposable
{
#region Parameters
/// <summary>
/// This parameter specifies the current pipeline object.
/// </summary>
[Parameter(ValueFromPipeline = true)]
public PSObject InputObject { get; set; } = AutomationNull.Value;
/// <summary>
/// The TraceSource parameter determines which TraceSource categories the
/// operation will take place on.
/// </summary>
[Parameter(Position = 0, Mandatory = true)]
public string[] Name
{
get { return base.NameInternal; }
set { base.NameInternal = value; }
}
/// <summary>
/// The flags to be set on the TraceSource.
/// </summary>
/// <value></value>
[Parameter(Position = 2)]
public PSTraceSourceOptions Option
{
get
{
return base.OptionsInternal;
}
set
{
base.OptionsInternal = value;
}
}
/// <summary>
/// The parameter for the expression that should be traced.
/// </summary>
/// <value></value>
[Parameter(Position = 1, Mandatory = true, ParameterSetName = "expressionSet")]
public ScriptBlock Expression { get; set; }
/// <summary>
/// The parameter for the expression that should be traced.
/// </summary>
/// <value></value>
[Parameter(Position = 1, Mandatory = true, ParameterSetName = "commandSet")]
public string Command { get; set; }
/// <summary>
/// When set, this parameter is the arguments to pass to the command specified by
/// the -Command parameter.
/// </summary>
[Parameter(ParameterSetName = "commandSet", ValueFromRemainingArguments = true)]
[Alias("Args")]
public object[] ArgumentList { get; set; }
/// <summary>
/// The parameter which determines the options for output from the trace listeners.
/// </summary>
[Parameter]
public TraceOptions ListenerOption
{
get
{
return base.ListenerOptionsInternal;
}
set
{
base.ListenerOptionsInternal = value;
}
}
/// <summary>
/// Adds the file trace listener using the specified file.
/// </summary>
/// <value></value>
[Parameter]
[Alias("PSPath", "Path")]
public string FilePath
{
get { return base.FileListener; }
set { base.FileListener = value; }
}
/// <summary>
/// Force parameter to control read-only files.
/// </summary>
[Parameter]
public SwitchParameter Force
{
get { return base.ForceWrite; }
set { base.ForceWrite = value; }
}
/// <summary>
/// If this parameter is specified the Debugger trace listener will be added.
/// </summary>
/// <value></value>
[Parameter]
public SwitchParameter Debugger
{
get { return base.DebuggerListener; }
set { base.DebuggerListener = value; }
}
/// <summary>
/// If this parameter is specified the Msh Host trace listener will be added.
/// </summary>
/// <value></value>
[Parameter]
public SwitchParameter PSHost
{
get { return base.PSHostListener; }
set { base.PSHostListener = value; }
}
#endregion Parameters
#region Cmdlet code
private Collection<PSTraceSource> _matchingSources;
/// <summary>
/// Gets the PSTraceSource instances that match the names specified.
/// </summary>
protected override void BeginProcessing()
{
Collection<PSTraceSource> preconfiguredSources = null;
_matchingSources = ConfigureTraceSource(base.NameInternal, false, out preconfiguredSources);
TurnOnTracing(_matchingSources, false);
TurnOnTracing(preconfiguredSources, true);
// Now that tracing has been configured, move all the sources into a
// single collection
foreach (PSTraceSource preconfiguredSource in preconfiguredSources)
{
_matchingSources.Add(preconfiguredSource);
}
if (ParameterSetName == "commandSet")
{
// Create the CommandProcessor and add it to a pipeline
CommandProcessorBase commandProcessor =
this.Context.CommandDiscovery.LookupCommandProcessor(Command, CommandOrigin.Runspace, false);
// Add the parameters that were specified
ParameterBinderController.AddArgumentsToCommandProcessor(commandProcessor, ArgumentList);
_pipeline = new PipelineProcessor();
_pipeline.Add(commandProcessor);
// Hook up the success and error pipelines to this cmdlet's WriteObject and
// WriteError methods
_pipeline.ExternalErrorOutput = new TracePipelineWriter(this, true, _matchingSources);
_pipeline.ExternalSuccessOutput = new TracePipelineWriter(this, false, _matchingSources);
}
ResetTracing(_matchingSources);
}
/// <summary>
/// Executes the expression.
/// Note, this was taken from apply-expression.
/// </summary>
protected override void ProcessRecord()
{
TurnOnTracing(_matchingSources, false);
object result = null;
switch (ParameterSetName)
{
case "expressionSet":
result = RunExpression();
break;
case "commandSet":
result = StepCommand();
break;
}
ResetTracing(_matchingSources);
if (result == null)
{
return;
}
if (!LanguagePrimitives.IsNull(result))
{
WriteObject(result, true);
}
}
/// <summary>
/// Finishes running the command if specified and then sets the
/// tracing options and listeners back to their original values.
/// </summary>
protected override void EndProcessing()
{
if (_pipeline != null)
{
TurnOnTracing(_matchingSources, false);
Array results = _pipeline.SynchronousExecuteEnumerate(AutomationNull.Value);
ResetTracing(_matchingSources);
WriteObject(results, true);
}
this.Dispose();
}
/// <summary>
/// Ensures that the sub-pipeline we created gets stopped as well.
/// </summary>
protected override void StopProcessing() => _pipeline?.Stop();
#endregion Cmdlet code
private object RunExpression()
{
return Expression.DoInvokeReturnAsIs(
useLocalScope: false,
errorHandlingBehavior: ScriptBlock.ErrorHandlingBehavior.WriteToCurrentErrorPipe,
dollarUnder: InputObject,
input: new object[] { InputObject },
scriptThis: AutomationNull.Value,
args: Array.Empty<object>());
}
private object StepCommand()
{
if (InputObject != AutomationNull.Value)
{
_pipeline.Step(InputObject);
}
return null;
}
private PipelineProcessor _pipeline;
#region IDisposable
/// <summary>
/// Resets the TraceSource flags back to their original value and restores
/// the original TraceListeners.
/// </summary>
public void Dispose()
{
if (!_disposed)
{
_disposed = true;
// Reset the flags for the trace switch back to the original value
ResetTracing(_matchingSources);
ClearStoredState();
_matchingSources = null;
if (_pipeline != null)
{
_pipeline.Dispose();
_pipeline = null;
}
// If there are any file streams, close those as well.
if (this.FileStreams != null)
{
foreach (FileStream fileStream in this.FileStreams)
{
fileStream.Flush();
fileStream.Dispose();
}
}
GC.SuppressFinalize(this);
}
}
private bool _disposed;
#endregion IDisposable
}
/// <summary>
/// This class acts a pipe redirector for the sub-pipeline created by the Trace-Command
/// cmdlet. It gets attached to the sub-pipelines success or error pipeline and redirects
/// all objects written to these pipelines to trace-command pipeline.
/// </summary>
internal sealed class TracePipelineWriter : PipelineWriter
{
internal TracePipelineWriter(
TraceListenerCommandBase cmdlet,
bool writeError,
Collection<PSTraceSource> matchingSources)
{
ArgumentNullException.ThrowIfNull(cmdlet);
ArgumentNullException.ThrowIfNull(matchingSources);
_cmdlet = cmdlet;
_writeError = writeError;
_matchingSources = matchingSources;
}
/// <summary>
/// Get the wait handle signaled when buffer space is available in the underlying stream.
/// </summary>
public override WaitHandle WaitHandle
{
get { return null; }
}
/// <summary>
/// Check if the stream is open for further writes.
/// </summary>
/// <value>true if the underlying stream is open, otherwise; false.</value>
/// <remarks>
/// Attempting to write to the underlying stream if IsOpen is false throws
/// an <see cref="ObjectDisposedException"/>.
/// </remarks>
public override bool IsOpen
{
get
{
return _isOpen;
}
}
/// <summary>
/// Returns the number of objects in the underlying stream.
/// </summary>
public override int Count
{
get { return 0; }
}
/// <summary>
/// Get the capacity of the stream.
/// </summary>
/// <value>
/// The capacity of the stream.
/// </value>
/// <remarks>
/// The capacity is the number of objects that stream may contain at one time. Once this
/// limit is reached, attempts to write into the stream block until buffer space
/// becomes available.
/// </remarks>
public override int MaxCapacity
{
get { return int.MaxValue; }
}
/// <summary>
/// Close the stream.
/// </summary>
/// <remarks>
/// Causes subsequent calls to IsOpen to return false and calls to
/// a write operation to throw an ObjectDisposedException.
/// All calls to Close() after the first call are silently ignored.
/// </remarks>
/// <exception cref="ObjectDisposedException">
/// The stream is already disposed.
/// </exception>
public override void Close()
{
if (_isOpen)
{
Flush();
_isOpen = false;
}
}
/// <summary>
/// Flush the data from the stream. Closed streams may be flushed,
/// but disposed streams may not.
/// </summary>
/// <exception cref="ObjectDisposedException">
/// The underlying stream is disposed.
/// </exception>
public override void Flush()
{
}
/// <summary>
/// Write a single object into the underlying stream.
/// </summary>
/// <param name="obj">The object to add to the stream.</param>
/// <returns>
/// One, if the write was successful, otherwise;
/// zero if the stream was closed before the object could be written,
/// or if the object was AutomationNull.Value.
/// </returns>
/// <exception cref="ObjectDisposedException">
/// The underlying stream is closed.
/// </exception>
public override int Write(object obj)
{
_cmdlet.ResetTracing(_matchingSources);
if (_writeError)
{
ErrorRecord errorRecord = ConvertToErrorRecord(obj);
if (errorRecord != null)
{
_cmdlet.WriteError(errorRecord);
}
}
else
{
_cmdlet.WriteObject(obj);
}
_cmdlet.TurnOnTracing(_matchingSources, false);
return 1;
}
/// <summary>
/// Write objects to the underlying stream.
/// </summary>
/// <param name="obj">Object or enumeration to read from.</param>
/// <param name="enumerateCollection">
/// If enumerateCollection is true, and <paramref name="obj"/>
/// is an enumeration according to LanguagePrimitives.GetEnumerable,
/// the objects in the enumeration will be unrolled and
/// written separately. Otherwise, <paramref name="obj"/>
/// will be written as a single object.
/// </param>
/// <returns>The number of objects written.</returns>
/// <exception cref="ObjectDisposedException">
/// The underlying stream is closed.
/// </exception>
/// <exception cref="ArgumentException">
/// <paramref name="obj"/> contains AutomationNull.Value
/// </exception>
public override int Write(object obj, bool enumerateCollection)
{
_cmdlet.ResetTracing(_matchingSources);
int numWritten = 0;
if (_writeError)
{
if (enumerateCollection)
{
foreach (object o in LanguagePrimitives.GetEnumerable(obj))
{
ErrorRecord errorRecord = ConvertToErrorRecord(o);
if (errorRecord != null)
{
numWritten++;
_cmdlet.WriteError(errorRecord);
}
}
}
else
{
ErrorRecord errorRecord = ConvertToErrorRecord(obj);
if (errorRecord != null)
{
numWritten++;
_cmdlet.WriteError(errorRecord);
}
}
}
else
{
numWritten++;
_cmdlet.WriteObject(obj, enumerateCollection);
}
_cmdlet.TurnOnTracing(_matchingSources, false);
return numWritten;
}
private static ErrorRecord ConvertToErrorRecord(object obj)
{
ErrorRecord result = null;
if (obj is PSObject mshobj)
{
object baseObject = mshobj.BaseObject;
if (baseObject is not PSCustomObject)
{
obj = baseObject;
}
}
if (obj is ErrorRecord errorRecordResult)
{
result = errorRecordResult;
}
return result;
}
private readonly TraceListenerCommandBase _cmdlet;
private readonly bool _writeError;
private bool _isOpen = true;
private readonly Collection<PSTraceSource> _matchingSources = new();
}
}
|