merge -r 58060:58217
[mono.git] / mcs / class / corlib / System.Diagnostics / Debugger.cs
1 //
2 // System.Diagnostics.Debugger.cs
3 //
4 // Author:
5 //      John R. Hicks (angryjohn69@nc.rr.com)
6 //
7 // (C) 2001
8 //
9
10 //
11 // Copyright (C) 2004 Novell, Inc (http://www.novell.com)
12 //
13 // Permission is hereby granted, free of charge, to any person obtaining
14 // a copy of this software and associated documentation files (the
15 // "Software"), to deal in the Software without restriction, including
16 // without limitation the rights to use, copy, modify, merge, publish,
17 // distribute, sublicense, and/or sell copies of the Software, and to
18 // permit persons to whom the Software is furnished to do so, subject to
19 // the following conditions:
20 // 
21 // The above copyright notice and this permission notice shall be
22 // included in all copies or substantial portions of the Software.
23 // 
24 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
25 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
26 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
27 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
28 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
29 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
30 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
31 //
32 using System;
33
34 namespace System.Diagnostics
35 {
36         /// <summary>
37         /// Enables communication with a debugger.
38         /// </summary>
39         [MonoTODO]
40         public sealed class Debugger
41         {
42                 private static bool isAttached;
43                 
44                 /// <summary>
45                 /// Represents the default category of a message with a constant.
46                 /// </summary>
47                 public static readonly string DefaultCategory = "";
48                 
49                 /// <summary>
50                 /// Returns a Boolean indicating whether a debugger is attached to a process.
51                 /// </summary>
52                 /// <value>
53                 /// true if debugger is attached; otherwise, false.
54                 /// </value>
55                 public static bool IsAttached
56                 {
57                         get
58                         {
59                                 return isAttached;
60                         }
61                 }
62                 
63                 /// <summary>
64                 /// Causes a breakpoint to be signaled to an attached debugger.
65                 /// </summary>
66                 [MonoTODO]
67                 public static void Break()
68                 {
69                         throw new NotImplementedException();
70                 }
71                 
72                 /// <summary>
73                 /// Checks to see if logging is enabled by an attached debugger.
74                 /// </summary>
75                 [MonoTODO]
76                 public static bool IsLogging()
77                 {
78                         // Return false. DefaultTraceListener invokes this method, so throwing
79                         // a NotImplementedException wouldn't be appropriate.
80       return false;
81
82                 }
83                 
84                 /// <summary>
85                 /// Launches and attaches a debugger to the process.
86                 /// </summary>
87                 [MonoTODO]
88                 public static bool Launch()
89                 {
90                         throw new NotImplementedException();
91                 }
92                 
93                 /// <summary>
94                 /// Posts a message for the attached debugger.
95                 /// </summary>
96                 /// <param name="level">
97                 /// A description of the importance of this message
98                 /// </param>
99                 /// <param name="category">
100                 /// A string describing the category of this message.
101                 /// </param>
102                 /// <param name="message">
103                 /// A string representing the message to show.
104                 /// </param>
105                 [MonoTODO]
106                 public static void Log(int level, string category, string message)
107                 {
108                         // Do nothing. DefaultTraceListener invokes this method, so throwing
109                         // a NotImplementedException wouldn't be appropriate.
110                 }
111                 
112                 public Debugger()
113                 {
114                         isAttached = false;
115                 }
116         }
117 }