Windows-powershell / PowerShell-master /src /System.Management.Automation /utils /StructuredTraceSource.cs
| // Copyright (c) Microsoft Corporation. | |
| // Licensed under the MIT License. | |
| using System.Collections.Generic; | |
| using System.Collections.Specialized; | |
| using System.Diagnostics; | |
| using System.Globalization; | |
| using System.IO; | |
| using System.Reflection; | |
| using System.Text; | |
| using System.Threading; | |
| namespace System.Management.Automation | |
| { | |
| /// <summary> | |
| /// These flags enable tracing based on the types of | |
| /// a tracing supplied. Each type of tracing will allow | |
| /// for one or more methods in the StructuredTraceSource class to become | |
| /// "enabled". | |
| /// </summary> | |
| [] | |
| public enum PSTraceSourceOptions | |
| { | |
| /// <summary> | |
| /// All tracing off. | |
| /// </summary> | |
| /// <!-- | |
| /// No tracing is enabled | |
| /// --> | |
| None = 0x00000000, | |
| /// <summary> | |
| /// Constructors will be traced. | |
| /// </summary> | |
| /// <!-- | |
| /// The TraceConstructor methods are enabled | |
| /// --> | |
| Constructor = 0x00000001, | |
| /// <summary> | |
| /// Dispose will be traced. | |
| /// </summary> | |
| /// <!-- | |
| /// The TraceDispose methods are enabled | |
| /// --> | |
| Dispose = 0x00000002, | |
| /// <summary> | |
| /// Finalize will be traced. | |
| /// </summary> | |
| /// <!-- | |
| /// The TraceFinalizer methods are enabled | |
| /// --> | |
| Finalizer = 0x00000004, | |
| /// <summary> | |
| /// Methods will be traced. | |
| /// </summary> | |
| /// <!-- | |
| /// The TraceMethod methods are enabled | |
| /// --> | |
| Method = 0x00000008, | |
| /// <summary> | |
| /// Properties will be traced. | |
| /// </summary> | |
| /// <!-- | |
| /// The TraceProperty methods are enabled | |
| /// --> | |
| Property = 0x00000010, | |
| /// <summary> | |
| /// Delegates will be traced. | |
| /// </summary> | |
| /// <!-- | |
| /// The TraceDelegate and TraceDelegateHandler methods are enabled | |
| /// --> | |
| Delegates = 0x00000020, | |
| /// <summary> | |
| /// Events will be traced. | |
| /// </summary> | |
| /// <!-- | |
| /// The TraceRaiseEvent and TraceEventHandler methods are enabled | |
| /// --> | |
| Events = 0x00000040, | |
| /// <summary> | |
| /// Exceptions will be traced. | |
| /// </summary> | |
| /// <!-- | |
| /// The TraceException method is enabled | |
| /// --> | |
| Exception = 0x00000080, | |
| /// <summary> | |
| /// Locks will be traced. | |
| /// </summary> | |
| /// <!-- | |
| /// The TraceLock methods are enabled | |
| /// --> | |
| Lock = 0x00000100, | |
| /// <summary> | |
| /// Errors will be traced. | |
| /// </summary> | |
| /// <!-- | |
| /// The TraceError methods are enabled | |
| /// --> | |
| Error = 0x00000200, | |
| /// <summary> | |
| /// Warnings will be traced. | |
| /// </summary> | |
| /// <!-- | |
| /// The TraceWarning methods are enabled | |
| /// --> | |
| Warning = 0x00000400, | |
| /// <summary> | |
| /// Verbose messages will be traced. | |
| /// </summary> | |
| Verbose = 0x00000800, | |
| /// <summary> | |
| /// WriteLines will be traced. | |
| /// </summary> | |
| /// <!-- | |
| /// The WriteLine methods are enabled | |
| /// --> | |
| WriteLine = 0x00001000, | |
| /// <summary> | |
| /// TraceScope calls will be traced. | |
| /// </summary> | |
| Scope = 0x00002000, | |
| /// <summary> | |
| /// Assertions will be traced. | |
| /// </summary> | |
| Assert = 0x00004000, | |
| /// <summary> | |
| /// A combination of flags that trace the execution flow. | |
| /// The methods associated with the flags; Constructor, Dispose, | |
| /// Finalizer, Method, Delegates, and Events will be enabled. | |
| /// </summary> | |
| ExecutionFlow = | |
| Constructor | | |
| Dispose | | |
| Finalizer | | |
| Method | | |
| Delegates | | |
| Events | | |
| Scope, | |
| /// <summary> | |
| /// A combination of flags that trace the data. | |
| /// The methods associated with the flags; Constructor, Dispose, | |
| /// Finalizer, Property, and WriteLine will be enabled. | |
| /// </summary> | |
| Data = | |
| Constructor | | |
| Dispose | | |
| Finalizer | | |
| Property | | |
| Verbose | | |
| WriteLine, | |
| /// <summary> | |
| /// A combination of flags that trace the errors. | |
| /// The methods associated with the flags; Error, | |
| /// and Exception will be enabled. | |
| /// </summary> | |
| Errors = | |
| Error | | |
| Exception, | |
| /// <summary> | |
| /// All combination of trace flags will be set. | |
| /// All methods for tracing will be enabled. | |
| /// </summary> | |
| All = | |
| Constructor | | |
| Dispose | | |
| Finalizer | | |
| Method | | |
| Property | | |
| Delegates | | |
| Events | | |
| Exception | | |
| Error | | |
| Warning | | |
| Verbose | | |
| Lock | | |
| WriteLine | | |
| Scope | | |
| Assert | |
| } | |
| /// <summary> | |
| /// An PSTraceSource is a representation of a System.Diagnostics.TraceSource instance | |
| /// that is used in the PowerShell components to produce trace output. | |
| /// </summary> | |
| /// <!-- | |
| /// The StructuredTraceSource class is derived from TraceSource to provide granular | |
| /// control over the tracing in a program. An instance of StructuredTraceSource | |
| /// is created for each category of tracing such that separate flags | |
| /// (filters) can be set. Each flag enables one or more method for tracing. | |
| /// | |
| /// For instance, the Exception flag will enable tracing on these methods: | |
| /// TraceException. | |
| /// </summary> | |
| /// <remarks> | |
| /// To get an instance of this class a user should define a static | |
| /// field of the type StructuredTraceSource, and assign the results of GetTracer() to it. | |
| /// If the category should be automatically put in the application config file the | |
| /// field should be decorated with the TraceSourceAttribute so that GenerateAppConfigFile.exe | |
| /// can find it through reflection. | |
| /// <example> | |
| /// <code> | |
| /// [TraceSourceAttribute("category", "description")] | |
| /// public static StructuredTraceSource tracer = GetTracer("category", "description", true); | |
| /// </code> | |
| /// </example> | |
| /// Other than initial creation of this class through the GetTracer method, | |
| /// this class should throw no exceptions. Any call to a StructuredTraceSource method | |
| /// that results in an exception being thrown will be ignored. | |
| /// --> | |
| public partial class PSTraceSource | |
| { | |
| /// <summary> | |
| /// Constructor that determines the name of the trace | |
| /// flag in the config file. | |
| /// </summary> | |
| /// <param name="fullName"> | |
| /// The full name for the trace category. This is different from the name parameter as | |
| /// it is not limited to 16 characters. | |
| /// </param> | |
| /// <param name="name"> | |
| /// The name of the category that this class | |
| /// will control the tracing for. This parameter must always be 16 characters to ensure | |
| /// proper formatting of the output. | |
| /// </param> | |
| /// <param name="description"> | |
| /// The description to describe what the category | |
| /// is used for. | |
| /// </param> | |
| /// <param name="traceHeaders"> | |
| /// If true, the line headers will be traced, if false, only the trace message will be traced. | |
| /// </param> | |
| internal PSTraceSource(string fullName, string name, string description, bool traceHeaders) | |
| { | |
| ArgumentException.ThrowIfNullOrEmpty(fullName); | |
| try | |
| { | |
| FullName = fullName; | |
| _name = name; | |
| // TODO: move this to startup json file instead of using env var | |
| string tracingEnvVar = Environment.GetEnvironmentVariable("MshEnableTrace"); | |
| if (string.Equals( | |
| tracingEnvVar, | |
| "True", | |
| StringComparison.OrdinalIgnoreCase)) | |
| { | |
| string options = this.TraceSource.Attributes["Options"]; | |
| if (options != null) | |
| { | |
| _flags = (PSTraceSourceOptions)Enum.Parse(typeof(PSTraceSourceOptions), options, true); | |
| } | |
| } | |
| ShowHeaders = traceHeaders; | |
| Description = description; | |
| } | |
| catch (System.Xml.XmlException) | |
| { | |
| // This exception occurs when the config | |
| // file is malformed. Just default to Off. | |
| _flags = PSTraceSourceOptions.None; | |
| } | |
| catch (System.Configuration.ConfigurationException) | |
| { | |
| // This exception occurs when the config | |
| // file is malformed. Just default to Off. | |
| _flags = PSTraceSourceOptions.None; | |
| } | |
| } | |
| private static bool globalTraceInitialized; | |
| /// <summary> | |
| /// Traces the app domain header with information about the execution | |
| /// time, the platform, etc. | |
| /// </summary> | |
| internal void TraceGlobalAppDomainHeader() | |
| { | |
| // Only trace the global header if it hasn't | |
| // already been traced | |
| if (globalTraceInitialized) | |
| { | |
| return; | |
| } | |
| // AppDomain | |
| OutputLine( | |
| PSTraceSourceOptions.All, | |
| "Initializing tracing for AppDomain: {0}", | |
| AppDomain.CurrentDomain.FriendlyName); | |
| // Current time | |
| OutputLine( | |
| PSTraceSourceOptions.All, | |
| "\tCurrent time: {0}", | |
| DateTime.Now.ToString()); | |
| // OS build | |
| OutputLine( | |
| PSTraceSourceOptions.All, | |
| "\tOS Build: {0}", | |
| Environment.OSVersion.ToString()); | |
| // .NET Framework version | |
| OutputLine( | |
| PSTraceSourceOptions.All, | |
| "\tFramework Build: {0}\n", | |
| Environment.Version.ToString()); | |
| // Mark that we have traced the global header | |
| globalTraceInitialized = true; | |
| } | |
| /// <summary> | |
| /// Outputs a header when a new StructuredTraceSource object is created. | |
| /// </summary> | |
| /// <param name="callingAssembly"> | |
| /// The assembly that created the instance of the StructuredTraceSource. | |
| /// </param> | |
| /// <remarks> | |
| /// A header will be output that contains information such as; | |
| /// the category and description of the new trace object, | |
| /// the assembly in which the new trace object | |
| /// will be stored. | |
| /// </remarks> | |
| internal void TracerObjectHeader( | |
| Assembly callingAssembly) | |
| { | |
| if (_flags == PSTraceSourceOptions.None) | |
| { | |
| return; | |
| } | |
| // Write the header for the new trace object | |
| OutputLine(PSTraceSourceOptions.All, "Creating tracer:"); | |
| // Category | |
| OutputLine( | |
| PSTraceSourceOptions.All, | |
| "\tCategory: {0}", | |
| this.Name); | |
| // Description | |
| OutputLine( | |
| PSTraceSourceOptions.All, | |
| "\tDescription: {0}", | |
| Description); | |
| if (callingAssembly != null) | |
| { | |
| // Assembly name | |
| OutputLine( | |
| PSTraceSourceOptions.All, | |
| "\tAssembly: {0}", | |
| callingAssembly.FullName); | |
| // Assembly location | |
| OutputLine( | |
| PSTraceSourceOptions.All, | |
| "\tAssembly Location: {0}", | |
| callingAssembly.Location); | |
| // Assembly File timestamp | |
| FileInfo assemblyFileInfo = | |
| new FileInfo(callingAssembly.Location); | |
| OutputLine( | |
| PSTraceSourceOptions.All, | |
| "\tAssembly File Timestamp: {0}", | |
| assemblyFileInfo.CreationTime.ToString()); | |
| } | |
| StringBuilder flagBuilder = new StringBuilder(); | |
| // Label | |
| flagBuilder.Append("\tFlags: "); | |
| flagBuilder.Append(_flags.ToString()); | |
| // Write out the flags | |
| OutputLine(PSTraceSourceOptions.All, flagBuilder.ToString()); | |
| } | |
| internal IDisposable TraceScope(string msg) | |
| { | |
| if (_flags.HasFlag(PSTraceSourceOptions.Scope)) | |
| { | |
| try | |
| { | |
| return new ScopeTracer(this, PSTraceSourceOptions.Scope, null, null, string.Empty, msg); | |
| } | |
| catch { } | |
| } | |
| return null; | |
| } | |
| internal IDisposable TraceScope(string format, object arg1) | |
| { | |
| if (_flags.HasFlag(PSTraceSourceOptions.Scope)) | |
| { | |
| try | |
| { | |
| return new ScopeTracer(this, PSTraceSourceOptions.Scope, null, null, string.Empty, format, arg1); | |
| } | |
| catch { } | |
| } | |
| return null; | |
| } | |
| internal IDisposable TraceScope(string format, object arg1, object arg2) | |
| { | |
| if (_flags.HasFlag(PSTraceSourceOptions.Scope)) | |
| { | |
| try | |
| { | |
| return new ScopeTracer(this, PSTraceSourceOptions.Scope, null, null, string.Empty, format, arg1, arg2); | |
| } | |
| catch { } | |
| } | |
| return null; | |
| } | |
| /// <summary> | |
| /// Traces the method name and indents the trace output. | |
| /// </summary> | |
| /// <param name="format"> | |
| /// The format string for additional arguments to be traced | |
| /// </param> | |
| /// <param name="args"> | |
| /// The additional arguments given to the format string | |
| /// </param> | |
| /// <returns> | |
| /// An object that supports IDisposable. The caller | |
| /// should dispose of the object when it goes out of | |
| /// scope. | |
| /// </returns> | |
| /// <remarks> | |
| /// <newpara/> | |
| /// <example> | |
| /// <code> | |
| /// public void MethodName(int count) | |
| /// { | |
| /// using (TraceMethod( | |
| /// "count={0:d}", | |
| /// count)) | |
| /// { | |
| /// // do something here... | |
| /// } | |
| /// } | |
| /// </code> | |
| /// </example> | |
| /// <newpara/> | |
| /// This will produce output similar to the following: | |
| /// <newpara/> | |
| /// Entering MethodName: count=4 | |
| /// other trace output indented | |
| /// Leaving MethodName | |
| /// </remarks> | |
| internal IDisposable TraceMethod( | |
| string format, | |
| params object[] args) | |
| { | |
| if (_flags.HasFlag(PSTraceSourceOptions.Method)) | |
| { | |
| try | |
| { | |
| // Get the name of the method that called this method | |
| // 1, signifies the caller of this method, whereas 2 | |
| // would signify the caller of that method. | |
| string methodName = GetCallingMethodNameAndParameters(1); | |
| // Create the method tracer object | |
| return (IDisposable)new ScopeTracer( | |
| this, | |
| PSTraceSourceOptions.Method, | |
| methodOutputFormatter, | |
| methodLeavingFormatter, | |
| methodName, | |
| format, | |
| args); | |
| } | |
| catch | |
| { | |
| // Eat all exceptions | |
| // Do not assert here because exceptions can be | |
| // raised while a thread is shutting down during | |
| // normal operation. | |
| } | |
| } | |
| return null; | |
| } | |
| /// <summary> | |
| /// Traces the entrance and exit from event handlers. | |
| /// </summary> | |
| /// <returns> | |
| /// An object that supports IDisposable. The caller | |
| /// should dispose of the object when it goes out of | |
| /// scope. | |
| /// </returns> | |
| internal IDisposable TraceEventHandlers() | |
| { | |
| if (_flags.HasFlag(PSTraceSourceOptions.Events)) | |
| { | |
| try | |
| { | |
| // Get the name of the method that called this method | |
| // 1, signifies the caller of this method, whereas 2 | |
| // would signify the caller of that method. | |
| string methodName = GetCallingMethodNameAndParameters(1); | |
| // Create the scope tracer object | |
| return (IDisposable)new ScopeTracer( | |
| this, | |
| PSTraceSourceOptions.Events, | |
| eventHandlerOutputFormatter, | |
| eventHandlerLeavingFormatter, | |
| methodName, | |
| string.Empty); | |
| } | |
| catch | |
| { | |
| // Eat all exceptions | |
| // Do not assert here because exceptions can be | |
| // raised while a thread is shutting down during | |
| // normal operation. | |
| } | |
| } | |
| return null; | |
| } | |
| /// <summary> | |
| /// Traces the entrance and exit from event handlers. | |
| /// </summary> | |
| /// <param name="format"> | |
| /// The format string for additional arguments to be traced | |
| /// </param> | |
| /// <param name="args"> | |
| /// The additional arguments given to the format string | |
| /// </param> | |
| /// <returns> | |
| /// An object that supports IDisposable. The caller | |
| /// should dispose of the object when it goes out of | |
| /// scope. | |
| /// </returns> | |
| internal IDisposable TraceEventHandlers( | |
| string format, | |
| params object[] args) | |
| { | |
| if (_flags.HasFlag(PSTraceSourceOptions.Events)) | |
| { | |
| try | |
| { | |
| // Get the name of the method that called this method | |
| // 1, signifies the caller of this method, whereas 2 | |
| // would signify the caller of that method. | |
| string methodName = GetCallingMethodNameAndParameters(1); | |
| // Create the scope tracer object | |
| return (IDisposable)new ScopeTracer( | |
| this, | |
| PSTraceSourceOptions.Events, | |
| eventHandlerOutputFormatter, | |
| eventHandlerLeavingFormatter, | |
| methodName, | |
| format, | |
| args); | |
| } | |
| catch | |
| { | |
| // Eat all exceptions | |
| // Do not assert here because exceptions can be | |
| // raised while a thread is shutting down during | |
| // normal operation. | |
| } | |
| } | |
| return null; | |
| } | |
| /// <summary> | |
| /// Traces the user specified lock name and indents the trace output. | |
| /// </summary> | |
| /// <returns> | |
| /// An object that supports IDisposable. The caller | |
| /// should dispose of the object when it goes out of | |
| /// scope. | |
| /// </returns> | |
| /// <remarks> | |
| /// <newpara/> | |
| /// <example> | |
| /// <code> | |
| /// public void MethodName() | |
| /// { | |
| /// lock (this) | |
| /// { | |
| /// using (TraceLock("my lock name")) | |
| /// { | |
| /// // do something here... | |
| /// } | |
| /// } | |
| /// } | |
| /// </code> | |
| /// </example> | |
| /// <newpara/> | |
| /// This will produce output similar to the following: | |
| /// <newpara/> | |
| /// Entering Lock: my lock name | |
| /// other trace output indented | |
| /// Leaving Lock: my lock name | |
| /// </remarks> | |
| internal IDisposable TraceLock(string lockName) | |
| { | |
| if (_flags.HasFlag(PSTraceSourceOptions.Lock)) | |
| { | |
| try | |
| { | |
| return (IDisposable)new ScopeTracer( | |
| this, | |
| PSTraceSourceOptions.Lock, | |
| lockEnterFormatter, | |
| lockLeavingFormatter, | |
| lockName); | |
| } | |
| catch | |
| { | |
| // Eat all exceptions | |
| // Do not assert here because exceptions can be | |
| // raised while a thread is shutting down during | |
| // normal operation. | |
| } | |
| } | |
| return null; | |
| } | |
| /// <summary> | |
| /// Call this before acquiring a lock. | |
| /// </summary> | |
| /// <param name="lockName"> | |
| /// User defined name given to the lock | |
| /// </param> | |
| internal void TraceLockAcquiring(string lockName) | |
| { | |
| if (_flags.HasFlag(PSTraceSourceOptions.Lock)) | |
| { | |
| TraceLockHelper( | |
| lockAcquiringFormatter, | |
| lockName); | |
| } | |
| } | |
| /// <summary> | |
| /// Call this after acquiring a lock. | |
| /// </summary> | |
| /// <param name="lockName"> | |
| /// User defined name given to the lock | |
| /// </param> | |
| /// <remarks> | |
| /// Use this only if the TraceLock that returns | |
| /// an IDisposable won't work in your situation. | |
| /// You will not get automatic indentation or | |
| /// release tracing of the lock. | |
| /// </remarks> | |
| internal void TraceLockAcquired(string lockName) | |
| { | |
| if (_flags.HasFlag(PSTraceSourceOptions.Lock)) | |
| { | |
| TraceLockHelper( | |
| lockEnterFormatter, | |
| lockName); | |
| } | |
| } | |
| /// <summary> | |
| /// Call this after releasing the lock, but only | |
| /// if you called TraceLockAcquired when you acquired | |
| /// the lock. | |
| /// </summary> | |
| /// <param name="lockName"> | |
| /// User defined name given to the lock | |
| /// </param> | |
| internal void TraceLockReleased(string lockName) | |
| { | |
| if (_flags.HasFlag(PSTraceSourceOptions.Lock)) | |
| { | |
| TraceLockHelper( | |
| lockLeavingFormatter, | |
| lockName); | |
| } | |
| } | |
| /// <summary> | |
| /// A helper to simplify tracing of the lock flags. | |
| /// </summary> | |
| /// <param name="formatter"> | |
| /// A format string for the output. | |
| /// </param> | |
| /// <param name="lockName"> | |
| /// User defined name for the lock | |
| /// </param> | |
| private void TraceLockHelper( | |
| string formatter, | |
| string lockName) | |
| { | |
| try | |
| { | |
| OutputLine( | |
| PSTraceSourceOptions.Lock, | |
| formatter, | |
| lockName); | |
| } | |
| catch | |
| { | |
| // Eat all exceptions | |
| // Do not assert here because exceptions can be | |
| // raised while a thread is shutting down during | |
| // normal operation. | |
| } | |
| } | |
| /// <summary> | |
| /// Traces the specified formatted output when PSTraceSourceOptions.Error | |
| /// is enabled. | |
| /// </summary> | |
| /// <param name="errorMessageFormat"> | |
| /// The format string containing the error message | |
| /// </param> | |
| /// <param name="args"> | |
| /// The arguments for the format string | |
| /// </param> | |
| internal void TraceError( | |
| string errorMessageFormat, | |
| params object[] args) | |
| { | |
| if (_flags.HasFlag(PSTraceSourceOptions.Error)) | |
| { | |
| FormatOutputLine( | |
| PSTraceSourceOptions.Error, | |
| errorFormatter, | |
| errorMessageFormat, | |
| args); | |
| } | |
| } | |
| /// <summary> | |
| /// Traces the specified formatted output when PSTraceSourceOptions.Warning | |
| /// is enabled. | |
| /// </summary> | |
| /// <param name="warningMessageFormat"> | |
| /// The format string containing the error message | |
| /// </param> | |
| /// <param name="args"> | |
| /// The arguments for the format string | |
| /// </param> | |
| internal void TraceWarning( | |
| string warningMessageFormat, | |
| params object[] args) | |
| { | |
| if (_flags.HasFlag(PSTraceSourceOptions.Warning)) | |
| { | |
| FormatOutputLine( | |
| PSTraceSourceOptions.Warning, | |
| warningFormatter, | |
| warningMessageFormat, | |
| args); | |
| } | |
| } | |
| /// <summary> | |
| /// Traces the specified formatted output when PSTraceSourceOptions.Verbose | |
| /// is enabled. | |
| /// </summary> | |
| /// <param name="verboseMessageFormat"> | |
| /// The format string containing the error message | |
| /// </param> | |
| /// <param name="args"> | |
| /// The arguments for the format string | |
| /// </param> | |
| internal void TraceVerbose( | |
| string verboseMessageFormat, | |
| params object[] args) | |
| { | |
| if (_flags.HasFlag(PSTraceSourceOptions.Verbose)) | |
| { | |
| FormatOutputLine( | |
| PSTraceSourceOptions.Verbose, | |
| verboseFormatter, | |
| verboseMessageFormat, | |
| args); | |
| } | |
| } | |
| /// <summary> | |
| /// Traces the formatted output when PSTraceSourceOptions.WriteLine is enabled. | |
| /// </summary> | |
| /// <param name="format"> | |
| /// The format string | |
| /// </param> | |
| internal void WriteLine(string format) | |
| { | |
| if (_flags.HasFlag(PSTraceSourceOptions.WriteLine)) | |
| { | |
| FormatOutputLine( | |
| PSTraceSourceOptions.WriteLine, | |
| writeLineFormatter, | |
| format, | |
| Array.Empty<object>()); | |
| } | |
| } | |
| /// <summary> | |
| /// Traces the formatted output when PSTraceSourceOptions.WriteLine is enabled. | |
| /// </summary> | |
| /// <param name="format">The format string.</param> | |
| /// <param name="arg1"></param> | |
| internal void WriteLine(string format, object arg1) | |
| { | |
| if (_flags.HasFlag(PSTraceSourceOptions.WriteLine)) | |
| { | |
| FormatOutputLine( | |
| PSTraceSourceOptions.WriteLine, | |
| writeLineFormatter, | |
| format, | |
| new object[] { arg1 }); | |
| } | |
| } | |
| internal void WriteLine(string format, bool arg1) | |
| { | |
| WriteLine(format, (object)arg1.ToString()); | |
| } | |
| internal void WriteLine(string format, byte arg1) | |
| { | |
| WriteLine(format, (object)arg1.ToString()); | |
| } | |
| internal void WriteLine(string format, char arg1) | |
| { | |
| WriteLine(format, (object)arg1.ToString()); | |
| } | |
| internal void WriteLine(string format, decimal arg1) | |
| { | |
| WriteLine(format, (object)arg1.ToString()); | |
| } | |
| internal void WriteLine(string format, double arg1) | |
| { | |
| WriteLine(format, (object)arg1.ToString()); | |
| } | |
| internal void WriteLine(string format, float arg1) | |
| { | |
| WriteLine(format, (object)arg1.ToString()); | |
| } | |
| internal void WriteLine(string format, int arg1) | |
| { | |
| WriteLine(format, (object)arg1.ToString()); | |
| } | |
| internal void WriteLine(string format, long arg1) | |
| { | |
| WriteLine(format, (object)arg1.ToString()); | |
| } | |
| internal void WriteLine(string format, uint arg1) | |
| { | |
| WriteLine(format, (object)arg1.ToString()); | |
| } | |
| internal void WriteLine(string format, ulong arg1) | |
| { | |
| WriteLine(format, (object)arg1.ToString()); | |
| } | |
| /// <summary> | |
| /// Traces the formatted output when PSTraceSourceOptions.WriteLine is enabled. | |
| /// </summary> | |
| /// <param name="format">The format string.</param> | |
| /// <param name="arg1"></param> | |
| /// <param name="arg2"></param> | |
| internal void WriteLine(string format, object arg1, object arg2) | |
| { | |
| if (_flags.HasFlag(PSTraceSourceOptions.WriteLine)) | |
| { | |
| FormatOutputLine( | |
| PSTraceSourceOptions.WriteLine, | |
| writeLineFormatter, | |
| format, | |
| new object[] { arg1, arg2 }); | |
| } | |
| } | |
| /// <summary> | |
| /// Traces the formatted output when PSTraceSourceOptions.WriteLine is enabled. | |
| /// </summary> | |
| /// <param name="format">The format string.</param> | |
| /// <param name="arg1"></param> | |
| /// <param name="arg2"></param> | |
| /// <param name="arg3"></param> | |
| internal void WriteLine(string format, object arg1, object arg2, object arg3) | |
| { | |
| if (_flags.HasFlag(PSTraceSourceOptions.WriteLine)) | |
| { | |
| FormatOutputLine( | |
| PSTraceSourceOptions.WriteLine, | |
| writeLineFormatter, | |
| format, | |
| new object[] { arg1, arg2, arg3 }); | |
| } | |
| } | |
| /// <summary> | |
| /// Traces the formatted output when PSTraceSourceOptions.WriteLine is enabled. | |
| /// </summary> | |
| /// <param name="format">The format string.</param> | |
| /// <param name="arg1"></param> | |
| /// <param name="arg2"></param> | |
| /// <param name="arg3"></param> | |
| /// <param name="arg4"></param> | |
| internal void WriteLine(string format, object arg1, object arg2, object arg3, object arg4) | |
| { | |
| if (_flags.HasFlag(PSTraceSourceOptions.WriteLine)) | |
| { | |
| FormatOutputLine( | |
| PSTraceSourceOptions.WriteLine, | |
| writeLineFormatter, | |
| format, | |
| new object[] { arg1, arg2, arg3, arg4 }); | |
| } | |
| } | |
| /// <summary> | |
| /// Traces the formatted output when PSTraceSourceOptions.WriteLine is enabled. | |
| /// </summary> | |
| /// <param name="format">The format string.</param> | |
| /// <param name="arg1"></param> | |
| /// <param name="arg2"></param> | |
| /// <param name="arg3"></param> | |
| /// <param name="arg4"></param> | |
| /// <param name="arg5"></param> | |
| internal void WriteLine(string format, object arg1, object arg2, object arg3, object arg4, object arg5) | |
| { | |
| if (_flags.HasFlag(PSTraceSourceOptions.WriteLine)) | |
| { | |
| FormatOutputLine( | |
| PSTraceSourceOptions.WriteLine, | |
| writeLineFormatter, | |
| format, | |
| new object[] { arg1, arg2, arg3, arg4, arg5 }); | |
| } | |
| } | |
| /// <summary> | |
| /// Traces the formatted output when PSTraceSourceOptions.WriteLine is enabled. | |
| /// </summary> | |
| /// <param name="format">The format string.</param> | |
| /// <param name="arg1"></param> | |
| /// <param name="arg2"></param> | |
| /// <param name="arg3"></param> | |
| /// <param name="arg4"></param> | |
| /// <param name="arg5"></param> | |
| /// <param name="arg6"></param> | |
| internal void WriteLine(string format, object arg1, object arg2, object arg3, object arg4, object arg5, object arg6) | |
| { | |
| if (_flags.HasFlag(PSTraceSourceOptions.WriteLine)) | |
| { | |
| FormatOutputLine( | |
| PSTraceSourceOptions.WriteLine, | |
| writeLineFormatter, | |
| format, | |
| new object[] { arg1, arg2, arg3, arg4, arg5, arg6 }); | |
| } | |
| } | |
| /// <summary> | |
| /// Traces the formatted output when PSTraceSourceOptions.WriteLine is enabled. | |
| /// </summary> | |
| /// <param name="arg"> | |
| /// The object to be output | |
| /// </param> | |
| internal void WriteLine(object arg) | |
| { | |
| if (_flags.HasFlag(PSTraceSourceOptions.WriteLine)) | |
| { | |
| WriteLine("{0}", arg == null ? "null" : arg.ToString()); | |
| } | |
| } | |
| /// <summary> | |
| /// Formats the specified text and then traces it. | |
| /// </summary> | |
| /// <param name="flag"> | |
| /// The flag that met the criteria to have this line traced. | |
| /// </param> | |
| /// <param name="classFormatter"> | |
| /// This is the trace class formatter. For instance, | |
| /// TraceError has a formatter like "ERROR: {0}". | |
| /// </param> | |
| /// <param name="format"> | |
| /// Additional format string. | |
| /// </param> | |
| /// <param name="args"> | |
| /// Arguments for the additional format string | |
| /// </param> | |
| private void FormatOutputLine( | |
| PSTraceSourceOptions flag, | |
| string classFormatter, | |
| string format, | |
| params object[] args) | |
| { | |
| try | |
| { | |
| // First format the class format string and the | |
| // user provided format string together | |
| StringBuilder output = new StringBuilder(); | |
| if (classFormatter != null) | |
| { | |
| output.Append(classFormatter); | |
| } | |
| if (format != null) | |
| { | |
| output.AppendFormat( | |
| CultureInfo.CurrentCulture, | |
| format, | |
| args); | |
| } | |
| // finally trace the output | |
| OutputLine(flag, output.ToString()); | |
| } | |
| catch | |
| { | |
| // Eat all exceptions | |
| // | |
| // Do not assert here because exceptions can be | |
| // raised while a thread is shutting down during | |
| // normal operation. | |
| } | |
| } | |
| /// <summary> | |
| /// Gets the method name of the method that called this one | |
| /// plus the skipFrames. | |
| /// </summary> | |
| /// <remarks> | |
| /// For instance, GetCallingMethodNameAndParameters(1) | |
| /// will return the method that called the method that is calling | |
| /// GetCallingMethodNameAndParameters. | |
| /// </remarks> | |
| /// <param name="skipFrames"> | |
| /// The number of frames to skip in the calling stack. | |
| /// </param> | |
| /// <returns> | |
| /// The name of the method on the stack. | |
| /// </returns> | |
| private static string GetCallingMethodNameAndParameters(int skipFrames) | |
| { | |
| StringBuilder methodAndParameters = null; | |
| try | |
| { | |
| // Use the stack to get the method and type information | |
| // for the calling method | |
| StackFrame stackFrame = new StackFrame(++skipFrames); | |
| MethodBase callingMethod = stackFrame.GetMethod(); | |
| Type declaringType = callingMethod.DeclaringType; | |
| // Append the class name and method name together | |
| methodAndParameters = new StringBuilder(); | |
| // Note: don't use the FullName for the declaringType | |
| // as it is usually way too long and makes the trace | |
| // output hard to read. | |
| methodAndParameters.AppendFormat( | |
| CultureInfo.CurrentCulture, | |
| "{0}.{1}(", | |
| declaringType.Name, | |
| callingMethod.Name); | |
| methodAndParameters.Append(')'); | |
| } | |
| catch | |
| { | |
| // Eat all exceptions | |
| // Do not assert here because exceptions can be | |
| // raised while a thread is shutting down during | |
| // normal operation. | |
| } | |
| return methodAndParameters.ToString(); | |
| } | |
| // The default formatter for TraceError | |
| private const string errorFormatter = | |
| "ERROR: "; | |
| // The default formatter for TraceWarning | |
| private const string warningFormatter = | |
| "Warning: "; | |
| // The default formatter for TraceVerbose | |
| private const string verboseFormatter = | |
| "Verbose: "; | |
| // The default formatter for WriteLine | |
| private const string writeLineFormatter = | |
| ""; | |
| // The default formatter for TraceConstructor | |
| private const string constructorOutputFormatter = | |
| "Enter Ctor {0}"; | |
| private const string constructorLeavingFormatter = | |
| "Leave Ctor {0}"; | |
| // The default formatter for TraceDispose | |
| private const string disposeOutputFormatter = | |
| "Enter Disposer {0}"; | |
| private const string disposeLeavingFormatter = | |
| "Leave Disposer {0}"; | |
| // The default formatter for TraceMethod | |
| private const string methodOutputFormatter = | |
| "Enter {0}:"; | |
| private const string methodLeavingFormatter = | |
| "Leave {0}"; | |
| // The default formatter for TraceProperty | |
| private const string propertyOutputFormatter = | |
| "Enter property {0}:"; | |
| private const string propertyLeavingFormatter = | |
| "Leave property {0}"; | |
| // The default formatter for TraceDelegateHandler | |
| private const string delegateHandlerOutputFormatter = | |
| "Enter delegate handler: {0}:"; | |
| private const string delegateHandlerLeavingFormatter = | |
| "Leave delegate handler: {0}"; | |
| // The default formatter for TraceEventHandlers | |
| private const string eventHandlerOutputFormatter = | |
| "Enter event handler: {0}:"; | |
| private const string eventHandlerLeavingFormatter = | |
| "Leave event handler: {0}"; | |
| // The default formatters for TraceException | |
| private const string exceptionOutputFormatter = | |
| "{0}: {1}\n{2}"; | |
| private const string innermostExceptionOutputFormatter = | |
| "Inner-most {0}: {1}\n{2}"; | |
| // The default formatters for TraceLock | |
| private const string lockEnterFormatter = | |
| "Enter Lock: {0}"; | |
| private const string lockLeavingFormatter = | |
| "Leave Lock: {0}"; | |
| private const string lockAcquiringFormatter = | |
| "Acquiring Lock: {0}"; | |
| private static StringBuilder GetLinePrefix(PSTraceSourceOptions flag) | |
| { | |
| StringBuilder prefixBuilder = new StringBuilder(); | |
| // Add the flag that caused this line to be traced | |
| prefixBuilder.AppendFormat( | |
| CultureInfo.CurrentCulture, | |
| " {0,-11} ", | |
| Enum.GetName(typeof(PSTraceSourceOptions), flag)); | |
| return prefixBuilder; | |
| } | |
| private static void AddTab(StringBuilder lineBuilder) | |
| { | |
| // The Trace.IndentSize does not change at all | |
| // through the running of the process so there | |
| // are no thread issues here. | |
| int indentSize = Trace.IndentSize; | |
| int threadIndentLevel = ThreadIndentLevel; | |
| lineBuilder.Append(System.Management.Automation.Internal.StringUtil.Padding(indentSize * threadIndentLevel)); | |
| } | |
| // used to find and blocks cyclic-loops in tracing. | |
| private bool _alreadyTracing = false; | |
| /// <summary> | |
| /// Composes a line of trace output and then writes it. | |
| /// </summary> | |
| /// <param name="flag"> | |
| /// The flag that caused the line to be traced. | |
| /// </param> | |
| /// <param name="format"> | |
| /// The string to write with format symbols if necessary. | |
| /// </param> | |
| /// <param name="arg"> | |
| /// Arguments to the format string. | |
| /// </param> | |
| /// <remarks> | |
| /// The line is composed by prefixing the process name, thread ID, | |
| /// and tick count. Then the indenting is added. Then the | |
| /// specified string is formatted. Finally the finished string | |
| /// is output using the Trace class. | |
| /// </remarks> | |
| internal void OutputLine( | |
| PSTraceSourceOptions flag, | |
| string format, | |
| string arg = null) | |
| { | |
| // if already tracing something for this current TraceSource, | |
| // dont trace again. This will block cyclic-loops from happening. | |
| if (_alreadyTracing) | |
| { | |
| return; | |
| } | |
| _alreadyTracing = true; | |
| try | |
| { | |
| Diagnostics.Assert( | |
| format != null, | |
| "The format string should not be null"); | |
| StringBuilder lineBuilder = new StringBuilder(); | |
| if (ShowHeaders) | |
| { | |
| // Get the line prefix string which includes things | |
| // like App name, clock tick, thread ID, etc. | |
| lineBuilder.Append(GetLinePrefix(flag)); | |
| } | |
| // Add the spaces for the indent | |
| AddTab(lineBuilder); | |
| if (arg != null) | |
| { | |
| lineBuilder.AppendFormat( | |
| CultureInfo.CurrentCulture, | |
| format, | |
| arg); | |
| } | |
| else | |
| { | |
| lineBuilder.Append(format); | |
| } | |
| this.TraceSource.TraceInformation(lineBuilder.ToString()); | |
| } | |
| finally | |
| { | |
| // reset tracing for the current trace source.. | |
| // so future traces can go through. | |
| _alreadyTracing = false; | |
| } | |
| } | |
| /// <summary> | |
| /// Property to access the indent level in thread local storage. | |
| /// </summary> | |
| internal static int ThreadIndentLevel | |
| { | |
| get | |
| { | |
| // The first time access the ThreadLocal instance, the default int value will be used | |
| // to initialize the instance. The default int value is 0. | |
| return s_localIndentLevel.Value; | |
| } | |
| set | |
| { | |
| if (value >= 0) | |
| { | |
| // Set the new indent level in thread local storage | |
| s_localIndentLevel.Value = value; | |
| } | |
| else | |
| { | |
| Diagnostics.Assert(value >= 0, "The indention value cannot be less than zero"); | |
| } | |
| } | |
| } | |
| /// <summary> | |
| /// Allocates some thread local storage to hold the indent level. | |
| /// </summary> | |
| private static readonly ThreadLocal<int> s_localIndentLevel = new ThreadLocal<int>(); | |
| /// <summary> | |
| /// Local storage for the trace switch flags. | |
| /// </summary> | |
| private PSTraceSourceOptions _flags = PSTraceSourceOptions.None; | |
| /// <summary> | |
| /// Gets or sets the description for this trace sources. | |
| /// </summary> | |
| public string Description { get; set; } = string.Empty; | |
| /// <summary> | |
| /// Determines if the line and switch headers should be shown. | |
| /// </summary> | |
| /// <value></value> | |
| internal bool ShowHeaders { get; set; } = true; | |
| /// <summary> | |
| /// Gets the full name of the trace source category. | |
| /// </summary> | |
| internal string FullName { get; } = string.Empty; | |
| private readonly string _name; | |
| /// <summary> | |
| /// Creates an instance of the TraceSource on demand. | |
| /// </summary> | |
| internal TraceSource TraceSource | |
| { | |
| get { return _traceSource ??= new MonadTraceSource(_name); } | |
| } | |
| private TraceSource _traceSource; | |
| /// <summary> | |
| /// Gets or sets the options for what will be traced. | |
| /// </summary> | |
| public PSTraceSourceOptions Options | |
| { | |
| get | |
| { | |
| return _flags; | |
| } | |
| set | |
| { | |
| _flags = value; | |
| this.TraceSource.Switch.Level = (SourceLevels)_flags; | |
| } | |
| } | |
| internal bool IsEnabled | |
| { | |
| get { return _flags != PSTraceSourceOptions.None; } | |
| } | |
| /// <summary> | |
| /// Gets the attributes of the TraceSource. | |
| /// </summary> | |
| public StringDictionary Attributes | |
| { | |
| get | |
| { | |
| return TraceSource.Attributes; | |
| } | |
| } | |
| /// <summary> | |
| /// Gets the listeners for the TraceSource. | |
| /// </summary> | |
| public TraceListenerCollection Listeners | |
| { | |
| get | |
| { | |
| return TraceSource.Listeners; | |
| } | |
| } | |
| /// <summary> | |
| /// Gets the TraceSource name (also known as category). | |
| /// </summary> | |
| /// <remarks> | |
| /// Note, this name is truncated to 16 characters due to limitations | |
| /// in the TraceSource class. | |
| /// </remarks> | |
| public string Name | |
| { | |
| get | |
| { | |
| return _name; | |
| } | |
| } | |
| /// <summary> | |
| /// Gets or sets the TraceSource's Switch. | |
| /// </summary> | |
| public SourceSwitch Switch | |
| { | |
| get | |
| { | |
| return TraceSource.Switch; | |
| } | |
| set | |
| { | |
| TraceSource.Switch = value; | |
| } | |
| } | |
| /// <summary> | |
| /// Storage for all the PSTraceSource instances. | |
| /// </summary> | |
| /// <value></value> | |
| internal static Dictionary<string, PSTraceSource> TraceCatalog { get; } = new Dictionary<string, PSTraceSource>(StringComparer.OrdinalIgnoreCase); | |
| /// <summary> | |
| /// Storage for trace source instances which have not been instantiated but for which | |
| /// the user has specified Options. | |
| /// | |
| /// If the PSTraceSource cannot be found in the TraceCatalog, the same name is used | |
| /// to look in this dictionary to see if the PSTraceSource has been pre-configured. | |
| /// </summary> | |
| internal static Dictionary<string, PSTraceSource> PreConfiguredTraceSource { get; } = new Dictionary<string, PSTraceSource>(StringComparer.OrdinalIgnoreCase); | |
| } | |
| /// <summary> | |
| /// A light-weight object to manage the indention of | |
| /// trace output for each thread. | |
| /// </summary> | |
| /// <remarks> | |
| /// An instance of this object is returned when any scoping | |
| /// Trace method (like TraceMethod, TraceProperty, etc.) | |
| /// is called. In the constructor to the object the indention | |
| /// level for the thread is incremented. | |
| /// The Dispose method will decrement the thread indent level. | |
| /// </remarks> | |
| internal class ScopeTracer : IDisposable | |
| { | |
| /// <summary> | |
| /// Constructor that traces the scope name | |
| /// and raises the indent level in thread | |
| /// local storage. | |
| /// </summary> | |
| /// <param name="tracer"> | |
| /// The trace object that is to be used for output | |
| /// </param> | |
| /// <param name="flag"> | |
| /// The PSTraceSourceOptions that is causing the scope object to | |
| /// be created. | |
| /// </param> | |
| /// <param name="scopeOutputFormatter"> | |
| /// This format string is used to determine the | |
| /// general output format for the scope. For instance, | |
| /// TraceMethod would probably provide a formatter similar | |
| /// to "Entering: {0}: {1}" where {0} is the name of the | |
| /// method and {1} is the additional formatted info provided. | |
| /// </param> | |
| /// <param name="leavingScopeFormatter"> | |
| /// The format string used to determine the general output | |
| /// format for the scope when the Dispose method is called. | |
| /// </param> | |
| /// <param name="scopeName"> | |
| /// The name of the scope that is being traced | |
| /// </param> | |
| internal ScopeTracer( | |
| PSTraceSource tracer, | |
| PSTraceSourceOptions flag, | |
| string scopeOutputFormatter, | |
| string leavingScopeFormatter, | |
| string scopeName) | |
| { | |
| _tracer = tracer; | |
| // Call the helper | |
| ScopeTracerHelper( | |
| flag, | |
| scopeOutputFormatter, | |
| leavingScopeFormatter, | |
| scopeName, | |
| string.Empty); | |
| } | |
| /// <summary> | |
| /// Constructor that traces the scope name | |
| /// and raises the indent level in thread | |
| /// local storage. | |
| /// </summary> | |
| /// <param name="tracer"> | |
| /// The trace object that is to be used for output | |
| /// </param> | |
| /// <param name="flag"> | |
| /// The PSTraceSourceOptions that is causing the scope object to | |
| /// be created. | |
| /// </param> | |
| /// <param name="scopeOutputFormatter"> | |
| /// This format string is used to determine the | |
| /// general output format for the scope. For instance, | |
| /// TraceMethod would probably provide a formatter similar | |
| /// to "Entering: {0}: {1}" where {0} is the name of the | |
| /// method and {1} is the additional formatted info provided. | |
| /// </param> | |
| /// <param name="leavingScopeFormatter"> | |
| /// The format string used to determine the general output | |
| /// format for the scope when the Dispose method is called. | |
| /// </param> | |
| /// <param name="scopeName"> | |
| /// The name of the scope that is being traced | |
| /// </param> | |
| /// <param name="format"> | |
| /// The format of any additional arguments which will be appended | |
| /// to the line of trace output | |
| /// </param> | |
| /// <param name="args"> | |
| /// Arguments to the format string. | |
| /// </param> | |
| internal ScopeTracer( | |
| PSTraceSource tracer, | |
| PSTraceSourceOptions flag, | |
| string scopeOutputFormatter, | |
| string leavingScopeFormatter, | |
| string scopeName, | |
| string format, | |
| params object[] args) | |
| { | |
| _tracer = tracer; | |
| // Call the helper | |
| if (format != null) | |
| { | |
| ScopeTracerHelper( | |
| flag, | |
| scopeOutputFormatter, | |
| leavingScopeFormatter, | |
| scopeName, | |
| format, | |
| args); | |
| } | |
| else | |
| { | |
| ScopeTracerHelper( | |
| flag, | |
| scopeOutputFormatter, | |
| leavingScopeFormatter, | |
| scopeName, | |
| string.Empty); | |
| } | |
| } | |
| /// <summary> | |
| /// Helper for the ScopeTracer constructor. | |
| /// </summary> | |
| /// <param name="flag"> | |
| /// The flag that caused this line of tracing to be traced. | |
| /// </param> | |
| /// <param name="scopeOutputFormatter"> | |
| /// This format string is used to determine the | |
| /// general output format for the scope. For instance, | |
| /// TraceMethod would probably provide a formatter similar | |
| /// to "Entering: {0}: {1}" where {0} is the name of the | |
| /// method and {1} is the additional formatted info provided. | |
| /// </param> | |
| /// <param name="leavingScopeFormatter"> | |
| /// The format string used to determine the general output | |
| /// format for the scope when the Dispose method is called. | |
| /// </param> | |
| /// <param name="scopeName"> | |
| /// The name of the scope being entered | |
| /// </param> | |
| /// <param name="format"> | |
| /// The format of any additional arguments which will be appended | |
| /// to the "Entering" line of trace output | |
| /// </param> | |
| /// <param name="args"> | |
| /// Arguments to the format string. | |
| /// </param> | |
| internal void ScopeTracerHelper( | |
| PSTraceSourceOptions flag, | |
| string scopeOutputFormatter, | |
| string leavingScopeFormatter, | |
| string scopeName, | |
| string format, | |
| params object[] args) | |
| { | |
| // Store the flags, scopeName, and the leavingScopeFormatter | |
| // so that it can be used in the Dispose method | |
| _flag = flag; | |
| _scopeName = scopeName; | |
| _leavingScopeFormatter = leavingScopeFormatter; | |
| // Format the string for output | |
| StringBuilder output = new StringBuilder(); | |
| if (!string.IsNullOrEmpty(scopeOutputFormatter)) | |
| { | |
| output.AppendFormat( | |
| CultureInfo.CurrentCulture, | |
| scopeOutputFormatter, | |
| _scopeName); | |
| } | |
| if (!string.IsNullOrEmpty(format)) | |
| { | |
| output.AppendFormat( | |
| CultureInfo.CurrentCulture, | |
| format, | |
| args); | |
| } | |
| // Now write the trace | |
| _tracer.OutputLine(_flag, output.ToString()); | |
| // Increment the current thread indent level | |
| PSTraceSource.ThreadIndentLevel++; | |
| } | |
| /// <summary> | |
| /// Decrements the indent level in thread local | |
| /// storage and then traces the scope name. | |
| /// </summary> | |
| public void Dispose() | |
| { | |
| // Decrement the indent level in thread local storage | |
| PSTraceSource.ThreadIndentLevel--; | |
| // Trace out the scope name | |
| if (!string.IsNullOrEmpty(_leavingScopeFormatter)) | |
| { | |
| _tracer.OutputLine(_flag, _leavingScopeFormatter, _scopeName); | |
| } | |
| GC.SuppressFinalize(this); | |
| } | |
| /// <summary> | |
| /// The trace object that is used for any output. | |
| /// </summary> | |
| private readonly PSTraceSource _tracer; | |
| /// <summary> | |
| /// The flag which caused this scope object to be created. | |
| /// </summary> | |
| private PSTraceSourceOptions _flag; | |
| /// <summary> | |
| /// Stores the scope name that is passed to the constructor. | |
| /// </summary> | |
| private string _scopeName; | |
| /// <summary> | |
| /// Stores the format string used when formatting output when | |
| /// leaving the scope. | |
| /// </summary> | |
| private string _leavingScopeFormatter; | |
| } | |
| /// <summary> | |
| /// This attribute is placed on the field of the PSTraceSource class | |
| /// in the class that is consuming the tracing methods defined in | |
| /// this file. It defines the trace category and description | |
| /// for that instance of PSTraceSource. | |
| /// </summary> | |
| /// <remarks> | |
| /// This attribute is only allowed on fields and there can only | |
| /// be one for each instance. Only one instance of this attribute | |
| /// should be used in any one class. | |
| /// In order for the attribute to be used to help in constructing | |
| /// the PSTraceSource object, reflection is used to find the field | |
| /// that the PSTraceSource object will be assigned to. This attribute | |
| /// declares the category and description for the PSTraceSource object | |
| /// in that field. Having multiple instances of this attribute on | |
| /// multiple fields in the same class will cause unexpected results. | |
| /// For instance, trace output for one category may actually be | |
| /// considered part of another category. | |
| /// </remarks> | |
| [ | |
| ] | |
| internal class TraceSourceAttribute : Attribute | |
| { | |
| /// <summary> | |
| /// Constructor for the TraceSourceAttribute class. | |
| /// </summary> | |
| /// <param name="category"> | |
| /// The name of the category for which the TraceSource instance | |
| /// will be used. | |
| /// </param> | |
| /// <param name="description"> | |
| /// A description for the category. | |
| /// </param> | |
| internal TraceSourceAttribute( | |
| string category, | |
| string description) | |
| { | |
| Category = category; | |
| Description = description; | |
| } | |
| /// <summary> | |
| /// The category to be used for the TraceSource. | |
| /// </summary> | |
| internal string Category { get; } | |
| /// <summary> | |
| /// The description for the category to be used for the TraceSource. | |
| /// </summary> | |
| internal string Description { get; set; } | |
| } | |
| /// <summary> | |
| /// This derived class of TraceSource is required so that we can tell | |
| /// the configuration infrastructure which attributes are supported in | |
| /// the XML app-config file for our trace source. | |
| /// </summary> | |
| internal class MonadTraceSource : TraceSource | |
| { | |
| internal MonadTraceSource(string name) | |
| : base(name) | |
| { | |
| } | |
| /// <summary> | |
| /// Tells the config infrastructure which attributes are supported | |
| /// for our TraceSource. | |
| /// </summary> | |
| /// <returns> | |
| /// A string array with the names of the attributes supported by our | |
| /// trace source. | |
| /// </returns> | |
| protected override string[] GetSupportedAttributes() | |
| { | |
| return new string[] { "Options" }; | |
| } | |
| } | |
| } | |