forked from acken/AutoTest.Net
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDebug.cs
More file actions
231 lines (198 loc) · 6.97 KB
/
Copy pathDebug.cs
File metadata and controls
231 lines (198 loc) · 6.97 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.IO;
using System.Reflection;
using AutoTest.Core.Messaging;
using AutoTest.Core.FileSystem;
namespace AutoTest.Core.DebugLog
{
public static class Debug
{
private static bool _isDisabled = true;
private static object _padLock = new object();
private static string _logFile = "debug.log";
private static void write(string text)
{
lock (_padLock)
{
var file = Path.Combine(PathParsing.GetRootDirectory(), _logFile);
using (var writer = getWriter(file))
{
writer.WriteLine(text);
}
if ((new FileInfo(file)).Length > 1024000)
{
File.Delete(string.Format("{0}.old", file));
File.Move(file, string.Format("{0}.old", file));
}
}
}
private static StreamWriter getWriter(string file)
{
if (File.Exists(file))
return new StreamWriter(file, true);
else
return new StreamWriter(file);
}
public static void EnableLogging()
{
_isDisabled = false;
}
public static void DisableLogging()
{
_isDisabled = true;
}
public static void InitialConfigurationFinished()
{
if (_isDisabled) return;
write("Initial configuration finished");
}
public static void InitializedCache()
{
if (_isDisabled) return;
write("Cache initialized");
}
public static void RegisteredAssembly(Assembly assembly)
{
if (_isDisabled) return;
write(string.Format("Registered assembly {0}", assembly.FullName));
}
public static void ShutingDownContainer()
{
if (_isDisabled) return;
write("Shuting down configuration");
}
public static void RawFileChangeDetected(string file)
{
if (_isDisabled) return;
write(string.Format("Directory watcher found a change in file: {0}", file));
}
public static void AboutToPublishFileChanges(int numberOfFiles)
{
if (_isDisabled) return;
write(string.Format("Directory watcher about to publish change for {0} files", numberOfFiles));
}
internal static void Publishing<T>()
{
if (_isDisabled) return;
write(string.Format("Publishing message of type {0}", typeof(T)));
}
internal static void WitholdingMessage(object message)
{
if (_isDisabled) return;
write(string.Format("Message bus witheld a message of type {0}", message.GetType()));
}
internal static void Blocking<T>()
{
if (_isDisabled) return;
write(string.Format("Message bus started blocking {0}", typeof(T)));
}
internal static void ConsumingFileChange(FileChangeMessage message)
{
if (_isDisabled) return;
var builder = new StringBuilder();
builder.AppendLine("Consuming file change for:");
foreach (var file in message.Files)
builder.AppendLine(string.Format(" {0}", file.FullName));
write(builder.ToString());
}
internal static void AboutToPublishProjectChanges(ProjectChangeMessage projectChange)
{
if (_isDisabled) return;
write(string.Format("File change consumer about to publish change for {0} files", projectChange.Files.Length));
}
internal static void ConsumingProjectChangeMessage(ProjectChangeMessage message)
{
if (_isDisabled) return;
var builder = new StringBuilder();
builder.AppendLine("Consuming project changes for:");
foreach (var file in message.Files)
builder.AppendLine(string.Format(" {0}", file.FullName));
write(builder.ToString());
}
internal static void PresenterRecievedRunStartedMessage()
{
if (_isDisabled) return;
write("Presenter received run start message");
}
internal static void PresenterRecievedRunFinishedMessage()
{
if (_isDisabled) return;
write("Presenter received run finished message");
}
internal static void PresenterRecievedBuildMessage()
{
if (_isDisabled) return;
write("Presenter received build message");
}
internal static void PresenterRecievedTestRunMessage()
{
if (_isDisabled) return;
write("Presenter received test run message");
}
internal static void PresenterRecievedRunInformationMessage()
{
if (_isDisabled) return;
write("Presenter received run information message");
}
internal static void PresenterRecievedInformationMessage()
{
if (_isDisabled) return;
write("Presenter received information message");
}
internal static void PresenterRecievedWarningMessage()
{
if (_isDisabled) return;
write("Presenter received warning message");
}
internal static void PresenterRecievedErrorMessage()
{
if (_isDisabled) return;
write("Presenter received error message");
}
public static void LaunchingEditor(string executable, string arguments)
{
if (_isDisabled) return;
write(string.Format("Launching {0} with {1}", executable, arguments));
}
public static void ConfigurationFileMissing()
{
write("The configuration file (AutoTest.config) is missing.");
}
public static void FailedToConfigure(Exception ex)
{
write("Failed to configure application");
writeException(ex);
}
public static void WriteMessage(string message)
{
if (_isDisabled) return;
write(message);
}
public static void WriteException(Exception ex)
{
if (_isDisabled) return;
writeException(ex);
}
public static void ConsumingAssemblyChangeMessage(AssemblyChangeMessage message)
{
if (_isDisabled) return;
var builder = new StringBuilder();
builder.AppendLine("Consuming assembly changes for:");
foreach (var file in message.Files)
builder.AppendLine(string.Format(" {0}", file.FullName));
write(builder.ToString());
}
public static void ChangedBuildProvider(string buildProvider)
{
if (_isDisabled) return;
write(string.Format("Build provider changed to '{0}'", buildProvider));
}
private static void writeException(Exception ex)
{
write(string.Format("{1}{0}{2}", Environment.NewLine, ex.Message, ex.StackTrace));
}
}
}