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
- FileDialog_Vista.cs
- EntityDataSourceStatementEditorForm.cs
- DesignerView.Commands.cs
- CompensableActivity.cs
- RbTree.cs
- CryptoApi.cs
- EncryptedKey.cs
- DrawingGroup.cs
- MouseEventArgs.cs
- InternalBase.cs
- DataServiceConfiguration.cs
- WorkingDirectoryEditor.cs
- OleDbConnectionFactory.cs
- BindingListCollectionView.cs
- Queue.cs
- XmlSchemaAny.cs
- GrammarBuilderRuleRef.cs
- _Semaphore.cs
- UnsafeNativeMethods.cs
- StructuralComparisons.cs
- SchemaTypeEmitter.cs
- FormsAuthenticationModule.cs
- WebBrowserContainer.cs
- UnionExpr.cs
- AnnotationResourceChangedEventArgs.cs
- ColorContext.cs
- CharConverter.cs
- GridSplitterAutomationPeer.cs
- SmiEventSink.cs
- PageCatalogPartDesigner.cs
- XmlExtensionFunction.cs
- SiteMapDataSourceView.cs
- TextRenderer.cs
- XsltException.cs
- xml.cs
- baseaxisquery.cs
- TCPClient.cs
- Vector3DCollectionValueSerializer.cs
- AnonymousIdentificationModule.cs
- HTMLTagNameToTypeMapper.cs
- StateWorkerRequest.cs
- ConnectionStringEditor.cs
- DbExpressionVisitor.cs
- DetailsView.cs
- AdornerPresentationContext.cs
- Grid.cs
- VisualStateManager.cs
- RequiredFieldValidator.cs
- ExceptionUtil.cs
- DataGridRowHeaderAutomationPeer.cs
- TypeUtils.cs
- MissingManifestResourceException.cs
- WindowsAltTab.cs
- ListBindableAttribute.cs
- DataViewSettingCollection.cs
- ToolStripItemCollection.cs
- __TransparentProxy.cs
- CngUIPolicy.cs
- DataGridViewTextBoxColumn.cs
- TrackingParameters.cs
- OutputCacheProfile.cs
- DropShadowEffect.cs
- SqlTypesSchemaImporter.cs
- Control.cs
- FontFamilyConverter.cs
- Single.cs
- HtmlLabelAdapter.cs
- InputLanguageEventArgs.cs
- SecurityPolicySection.cs
- DisposableCollectionWrapper.cs
- TreeViewImageIndexConverter.cs
- Internal.cs
- OutputCache.cs
- HelpProvider.cs
- ChildTable.cs
- XmlILAnnotation.cs
- EntityType.cs
- ReflectionTypeLoadException.cs
- DefaultTextStoreTextComposition.cs
- ProcessModelSection.cs
- WindowsListViewGroupHelper.cs
- DataGridViewSelectedColumnCollection.cs
- Point4DValueSerializer.cs
- GotoExpression.cs
- Int16AnimationBase.cs
- ComboBoxRenderer.cs
- SelectedDatesCollection.cs
- QuadraticBezierSegment.cs
- Debug.cs
- SqlXmlStorage.cs
- ExportOptions.cs
- VariableElement.cs
- CalendarDateRangeChangingEventArgs.cs
- PermissionListSet.cs
- XmlElementElement.cs
- OperationAbortedException.cs
- ReflectionUtil.cs
- AutoResizedEvent.cs
- MethodToken.cs
- ProcessInputEventArgs.cs