Merge pull request #2333 from joelmartinez/docs-classic-fix
[mono.git] / mcs / class / Microsoft.Build.Utilities / Microsoft.Build.Utilities / ConcurrentLoggingHelper.cs
1 //
2 // ConcurrentLoggingHelper.cs:
3 //
4 // Author:
5 //   Marek Sieradzki (marek.sieradzki@gmail.com)
6 //
7 // (C) 2005 Marek Sieradzki
8 //
9 // Permission is hereby granted, free of charge, to any person obtaining
10 // a copy of this software and associated documentation files (the
11 // "Software"), to deal in the Software without restriction, including
12 // without limitation the rights to use, copy, modify, merge, publish,
13 // distribute, sublicense, and/or sell copies of the Software, and to
14 // permit persons to whom the Software is furnished to do so, subject to
15 // the following conditions:
16 //
17 // The above copyright notice and this permission notice shall be
18 // included in all copies or substantial portions of the Software.
19 //
20 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
21 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
22 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
23 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
24 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
25 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
26 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
27
28
29 using System;
30 using System.IO;
31 using Microsoft.Build.Framework;
32
33 namespace Microsoft.Build.Utilities
34 {
35         public class ConcurrentLoggingHelper
36         {
37                 bool                    hasLoggedErrors;
38                 MessageImportance       messageImportance;
39                 StreamReader            messageStream;
40                 TaskLoggingHelper       taskLog;
41                 
42                 public ConcurrentLoggingHelper ()
43                         : this (null, null, MessageImportance.Normal)
44                 {
45                 }
46                 
47                 public ConcurrentLoggingHelper (TaskLoggingHelper taskLog,
48                                                 StreamReader messageStream,
49                                                 MessageImportance messageImportance)
50                 {
51                         this.taskLog = taskLog;
52                         this.messageStream = messageStream;
53                         this.messageImportance = messageImportance;
54                         this.hasLoggedErrors = false;
55                 }
56                 
57                 [MonoTODO]
58                 public void AbortLogging ()
59                 {
60                 }
61                 
62                 [MonoTODO]
63                 public void StartLogging ()
64                 {
65                 }
66                 
67                 [MonoTODO]
68                 public void StopLogging ()
69                 {
70                 }
71                 
72                 [MonoTODO]
73                 public bool StopLogging (TimeSpan timeout)
74                 {
75                         return true;
76                 }
77                 
78                 public bool HasLoggedErrors {
79                         get {
80                                 return hasLoggedErrors;
81                         }
82                 }
83                 
84                 public MessageImportance MessageImportance {
85                         get {
86                                 return messageImportance;
87                         }
88                         set {
89                                 messageImportance = value;
90                         }
91                 }
92                 
93                 public StreamReader MessageStream {
94                         get {
95                                 return messageStream;
96                         }
97                         set {
98                                 messageStream = value;
99                         }
100                 }
101                 
102                 public TaskLoggingHelper TaskLog {
103                         get {
104                                 return taskLog;
105                         }
106                         set {
107                                 taskLog = value;
108                         }
109                 }
110         }
111 }
112