Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAtsushi Eno <atsushieno@gmail.com>2007-01-18 07:17:22 +0300
committerAtsushi Eno <atsushieno@gmail.com>2007-01-18 07:17:22 +0300
commite9156bb4b89d647f51b40777ef7f2efca3d6483b (patch)
tree265ccc0462bd6d9ea7fbc26d497667359074debc /mcs/class/System/System.Diagnostics/SourceSwitch.cs
parent153893ccb948f4e7b57e0b0718b3fc01e481e597 (diff)
2007-01-18 Atsushi Enomoto <atsushi@ximian.com>
* System.dll.sources: added new sources: TraceSource.cs, SourceLevels.cs, CorrelationManager.cs, TraceEventCache.cs, TraceEventType.cs and SourceSwitch.cs. * System_test.dll.sources: added new tests: TraceSourceTest.cs and SourceSwitchTest.cs. * Switch.cs : added missing .ctor(), Attributes, Value, GetSupportedAttributes() and OnValueChanged(). * DiagnosticsConfigurationHandler.cs : added some hacky handler for new "sources" element. Don't wrap another ConfigurationException. * TraceListener.cs : added missing trace methods. * TraceSource.cs, SourceLevels.cs, CorrelationManager.cs, TraceEventCache.cs, TraceEventType.cs, SourceSwitch.cs: added missing 2.0 stuff, mostly just stubs. * TraceSourceTest.cs, SourceSwitchTest.cs : new tests. * SwitchesTest.cs : added test for GetSupportedAttributes(). svn path=/trunk/mcs/; revision=71238
Diffstat (limited to 'mcs/class/System/System.Diagnostics/SourceSwitch.cs')
-rw-r--r--mcs/class/System/System.Diagnostics/SourceSwitch.cs87
1 files changed, 87 insertions, 0 deletions
diff --git a/mcs/class/System/System.Diagnostics/SourceSwitch.cs b/mcs/class/System/System.Diagnostics/SourceSwitch.cs
new file mode 100644
index 00000000000..10d31c4dcb0
--- /dev/null
+++ b/mcs/class/System/System.Diagnostics/SourceSwitch.cs
@@ -0,0 +1,87 @@
+//
+// SourceSwitch.cs
+//
+// Author:
+// Atsushi Enomoto <atsushi@ximian.com>
+//
+// Copyright (C) 2007 Novell, Inc.
+//
+
+//
+// Permission is hereby granted, free of charge, to any person obtaining
+// a copy of this software and associated documentation files (the
+// "Software"), to deal in the Software without restriction, including
+// without limitation the rights to use, copy, modify, merge, publish,
+// distribute, sublicense, and/or sell copies of the Software, and to
+// permit persons to whom the Software is furnished to do so, subject to
+// the following conditions:
+//
+// The above copyright notice and this permission notice shall be
+// included in all copies or substantial portions of the Software.
+//
+// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+//
+
+#if NET_2_0
+
+using System;
+
+namespace System.Diagnostics
+{
+ public class SourceSwitch : Switch
+ {
+ // FIXME: better explanation.
+ const string description = "Source switch.";
+
+ SourceLevels level;
+
+ public SourceSwitch (string displayName)
+ : this (displayName, String.Empty)
+ {
+ }
+
+ public SourceSwitch (string displayName, string defaultSwitchValue)
+ : base (displayName, description, defaultSwitchValue)
+ {
+ }
+
+ public SourceLevels Level {
+ get { return level; }
+ set { level = value; }
+ }
+
+ public bool ShouldTrace (TraceEventType eventType)
+ {
+ switch (eventType) {
+ case TraceEventType.Critical:
+ return (level & SourceLevels.Critical) != 0;
+ case TraceEventType.Error:
+ return (level & SourceLevels.Error) != 0;
+ case TraceEventType.Warning:
+ return (level & SourceLevels.Warning) != 0;
+ case TraceEventType.Information:
+ return (level & SourceLevels.Information) != 0;
+ case TraceEventType.Verbose:
+ return (level & SourceLevels.Verbose) != 0;
+ case TraceEventType.Start:
+ case TraceEventType.Stop:
+ case TraceEventType.Suspend:
+ case TraceEventType.Resume:
+ case TraceEventType.Transfer:
+ default:
+ return (level & SourceLevels.ActivityTracing) != 0;
+ }
+ }
+
+ protected override void OnValueChanged ()
+ {
+ }
+ }
+}
+#endif