Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Core / System / Linq / Parallel / Utils / TraceHelpers.cs / 1305376 / TraceHelpers.cs
// ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== // =+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+ // // TraceHelpers.cs // //[....] // // Common routines used to trace information about execution, the state of things, etc. // // =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- using System; using System.Diagnostics; using System.Globalization; using System.IO; using System.Diagnostics.Contracts; namespace System.Linq.Parallel { internal static class TraceHelpers { #if PFXTRACE // If tracing is turned on, we create a new trace source. private static TraceSource s_traceSource = new TraceSource("PFX", SourceLevels.All); // Some constants used to set trace settings via environment variables. private const string s_traceDefaultEnableEnvironmentVariable = "PLINQ_TRACE_DEFAULT_ENABLE"; private const string s_traceOutputEnvironmentVariable = "PLINQ_TRACE_OUT"; private const string s_traceLevelEnvironmentVariable = "PLINQ_TRACE_LEVEL"; //---------------------------------------------------------------------------------------- // Clear the trace source's listeners so that, by default, all traces >NUL. // static TraceHelpers() { s_traceSource.Listeners.Clear(); // If trace output is requested in the environment, set it. string traceOutput = Environment.GetEnvironmentVariable(s_traceOutputEnvironmentVariable); if (traceOutput != null && !String.IsNullOrEmpty(traceOutput.Trim())) { s_traceSource.Listeners.Add(new TextWriterTraceListener( new StreamWriter(File.Open(traceOutput, FileMode.OpenOrCreate, FileAccess.ReadWrite)))); } string traceEnable = Environment.GetEnvironmentVariable(s_traceDefaultEnableEnvironmentVariable); if (traceEnable != null) { s_traceSource.Listeners.Add(new DefaultTraceListener()); } // If verbose tracing was requested, turn it on. string traceLevel = Environment.GetEnvironmentVariable(s_traceLevelEnvironmentVariable); if ("0".Equals(traceLevel)) { SetVerbose(); } } #endif //--------------------------------------------------------------------------------------- // Adds a listener to the PLINQ trace source, but only in PFXTRACE builds. // #if PFXTRACE [Conditional("PFXTRACE")] internal static void AddListener(TraceListener listener) { s_traceSource.Listeners.Add(listener); } #endif //--------------------------------------------------------------------------------------- // Turns on verbose output for all current listeners. This includes a ton of information, // like the call-stack, date-time, thread-ids, .... // [Conditional("PFXTRACE")] internal static void SetVerbose() { #if PFXTRACE foreach (TraceListener l in s_traceSource.Listeners) { l.TraceOutputOptions = TraceOptions.Callstack | TraceOptions.DateTime | TraceOptions.ThreadId; } #endif } //--------------------------------------------------------------------------------------- // Tracing helpers. These are all conditionally enabled for PFXTRACE builds only. // [Conditional("PFXTRACE")] internal static void TraceInfo(string msg, params object[] args) { #if PFXTRACE lock (s_traceSource) { s_traceSource.TraceEvent(TraceEventType.Information, 0, msg, args); } s_traceSource.Flush(); #endif } [Conditional("PFXTRACE")] internal static void TraceWarning(string msg, params object[] args) { #if PFXTRACE lock (s_traceSource) { s_traceSource.TraceEvent(TraceEventType.Warning, 0, msg, args); } s_traceSource.Flush(); #endif } [Conditional("PFXTRACE")] internal static void TraceError(string msg, params object[] args) { #if PFXTRACE lock (s_traceSource) { s_traceSource.TraceEvent(TraceEventType.Error, 0, msg, args); } s_traceSource.Flush(); #endif } internal static void NotYetImplemented() { NotYetImplemented(false, "NYI"); } internal static void NotYetImplemented(string message) { NotYetImplemented(false, "NYI: " + message); } internal static void NotYetImplemented(bool assertCondition, string message) { Contract.Assert(assertCondition, "NYI: " + message); if (!assertCondition) { throw new NotImplementedException(); } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== // =+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+ // // TraceHelpers.cs // //[....] // // Common routines used to trace information about execution, the state of things, etc. // // =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- using System; using System.Diagnostics; using System.Globalization; using System.IO; using System.Diagnostics.Contracts; namespace System.Linq.Parallel { internal static class TraceHelpers { #if PFXTRACE // If tracing is turned on, we create a new trace source. private static TraceSource s_traceSource = new TraceSource("PFX", SourceLevels.All); // Some constants used to set trace settings via environment variables. private const string s_traceDefaultEnableEnvironmentVariable = "PLINQ_TRACE_DEFAULT_ENABLE"; private const string s_traceOutputEnvironmentVariable = "PLINQ_TRACE_OUT"; private const string s_traceLevelEnvironmentVariable = "PLINQ_TRACE_LEVEL"; //---------------------------------------------------------------------------------------- // Clear the trace source's listeners so that, by default, all traces >NUL. // static TraceHelpers() { s_traceSource.Listeners.Clear(); // If trace output is requested in the environment, set it. string traceOutput = Environment.GetEnvironmentVariable(s_traceOutputEnvironmentVariable); if (traceOutput != null && !String.IsNullOrEmpty(traceOutput.Trim())) { s_traceSource.Listeners.Add(new TextWriterTraceListener( new StreamWriter(File.Open(traceOutput, FileMode.OpenOrCreate, FileAccess.ReadWrite)))); } string traceEnable = Environment.GetEnvironmentVariable(s_traceDefaultEnableEnvironmentVariable); if (traceEnable != null) { s_traceSource.Listeners.Add(new DefaultTraceListener()); } // If verbose tracing was requested, turn it on. string traceLevel = Environment.GetEnvironmentVariable(s_traceLevelEnvironmentVariable); if ("0".Equals(traceLevel)) { SetVerbose(); } } #endif //--------------------------------------------------------------------------------------- // Adds a listener to the PLINQ trace source, but only in PFXTRACE builds. // #if PFXTRACE [Conditional("PFXTRACE")] internal static void AddListener(TraceListener listener) { s_traceSource.Listeners.Add(listener); } #endif //--------------------------------------------------------------------------------------- // Turns on verbose output for all current listeners. This includes a ton of information, // like the call-stack, date-time, thread-ids, .... // [Conditional("PFXTRACE")] internal static void SetVerbose() { #if PFXTRACE foreach (TraceListener l in s_traceSource.Listeners) { l.TraceOutputOptions = TraceOptions.Callstack | TraceOptions.DateTime | TraceOptions.ThreadId; } #endif } //--------------------------------------------------------------------------------------- // Tracing helpers. These are all conditionally enabled for PFXTRACE builds only. // [Conditional("PFXTRACE")] internal static void TraceInfo(string msg, params object[] args) { #if PFXTRACE lock (s_traceSource) { s_traceSource.TraceEvent(TraceEventType.Information, 0, msg, args); } s_traceSource.Flush(); #endif } [Conditional("PFXTRACE")] internal static void TraceWarning(string msg, params object[] args) { #if PFXTRACE lock (s_traceSource) { s_traceSource.TraceEvent(TraceEventType.Warning, 0, msg, args); } s_traceSource.Flush(); #endif } [Conditional("PFXTRACE")] internal static void TraceError(string msg, params object[] args) { #if PFXTRACE lock (s_traceSource) { s_traceSource.TraceEvent(TraceEventType.Error, 0, msg, args); } s_traceSource.Flush(); #endif } internal static void NotYetImplemented() { NotYetImplemented(false, "NYI"); } internal static void NotYetImplemented(string message) { NotYetImplemented(false, "NYI: " + message); } internal static void NotYetImplemented(bool assertCondition, string message) { Contract.Assert(assertCondition, "NYI: " + message); if (!assertCondition) { throw new NotImplementedException(); } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- FastEncoderWindow.cs
- ProcessHostMapPath.cs
- XmlEncodedRawTextWriter.cs
- SchemaImporterExtension.cs
- RadioButtonList.cs
- CodeEntryPointMethod.cs
- ListBox.cs
- Span.cs
- FileDetails.cs
- DebugInfoGenerator.cs
- DesignerView.cs
- MenuItem.cs
- BamlTreeNode.cs
- RepeaterCommandEventArgs.cs
- SqlConnectionString.cs
- ScriptResourceHandler.cs
- SoapSchemaMember.cs
- XmlAutoDetectWriter.cs
- CallInfo.cs
- BezierSegment.cs
- FunctionImportElement.cs
- ExpressionBuilderCollection.cs
- HtmlTableRowCollection.cs
- NegotiateStream.cs
- NativeMethods.cs
- AutomationPatternInfo.cs
- ReferentialConstraint.cs
- SequenceDesigner.cs
- RunClient.cs
- DBDataPermissionAttribute.cs
- PeerInputChannel.cs
- SystemFonts.cs
- SpecialFolderEnumConverter.cs
- GraphicsState.cs
- EdmRelationshipNavigationPropertyAttribute.cs
- ComponentChangingEvent.cs
- XmlSchemaGroupRef.cs
- BoundField.cs
- WebServicesInteroperability.cs
- Hash.cs
- ExpressionEditorAttribute.cs
- LogicalTreeHelper.cs
- UnaryQueryOperator.cs
- WebProxyScriptElement.cs
- Subtree.cs
- ActivityScheduledQuery.cs
- UnauthorizedWebPart.cs
- SecurityState.cs
- EntityDataSourceWrapperCollection.cs
- Freezable.cs
- HiddenFieldDesigner.cs
- DispatcherExceptionFilterEventArgs.cs
- HttpResponseBase.cs
- BitmapScalingModeValidation.cs
- EventLogEntry.cs
- EntityType.cs
- Label.cs
- InputChannel.cs
- SendSecurityHeaderElementContainer.cs
- CompilerScope.cs
- TextAdaptor.cs
- StyleBamlTreeBuilder.cs
- ZipIOZip64EndOfCentralDirectoryLocatorBlock.cs
- PerformanceCountersElement.cs
- EncodingInfo.cs
- CompressEmulationStream.cs
- AnnotationComponentChooser.cs
- XmlToDatasetMap.cs
- storagemappingitemcollection.viewdictionary.cs
- WinFormsSpinner.cs
- ModelVisual3D.cs
- ResourcePool.cs
- OutputScope.cs
- BamlRecordWriter.cs
- CssStyleCollection.cs
- TableAdapterManagerHelper.cs
- CommonDialog.cs
- ConfigXmlCDataSection.cs
- HashSetEqualityComparer.cs
- CallSiteOps.cs
- CancelEventArgs.cs
- TagNameToTypeMapper.cs
- ManualResetEvent.cs
- ServiceEndpointCollection.cs
- MenuEventArgs.cs
- ClipboardData.cs
- StateItem.cs
- FrameworkEventSource.cs
- HtmlElementCollection.cs
- SoapIgnoreAttribute.cs
- ExpressionParser.cs
- X509Certificate2Collection.cs
- KeyEvent.cs
- DescendantQuery.cs
- MemoryStream.cs
- InputManager.cs
- MyContact.cs
- WebPartExportVerb.cs
- SelectionProviderWrapper.cs
- DragDeltaEventArgs.cs