Mercurial > pub > ImplabNet
annotate Implab/Diagnostics/TextFileListener.cs @ 43:7c2369f580b8
improved tracing, TextListenerBase can be bound to logical operation scope.
author | cin |
---|---|
date | Wed, 16 Apr 2014 10:12:56 +0400 |
parents | fe33f4e02ad5 |
children | e5ec543feee3 |
rev | line source |
---|---|
40 | 1 using System; |
2 using System.Collections.Generic; | |
3 using System.IO; | |
4 using System.Linq; | |
5 using System.Text; | |
6 | |
7 namespace Implab.Diagnostics { | |
8 public class TextFileListener: TextListenerBase { | |
9 readonly TextWriter m_textWriter; | |
10 | |
43
7c2369f580b8
improved tracing, TextListenerBase can be bound to logical operation scope.
cin
parents:
40
diff
changeset
|
11 public TextFileListener(string fileName) : base(true) { |
40 | 12 m_textWriter = File.CreateText(fileName); |
13 | |
14 m_textWriter.WriteLine("LOG {0}", DateTime.Now); | |
15 Register(this); | |
16 } | |
17 | |
18 protected override void WriteEntry(TraceContext context, EventText text) { | |
19 var msg = new StringBuilder(); | |
20 for (int i = 0; i < text.indent; i++) | |
21 msg.Append(" "); | |
22 msg.AppendFormat("[{0}]: {1}", context.ThreadId, text.content); | |
23 | |
24 lock (m_textWriter) { | |
25 if (!IsDisposed) { | |
26 m_textWriter.WriteLine(msg.ToString()); | |
27 m_textWriter.Flush(); | |
28 } | |
29 } | |
30 } | |
31 | |
32 | |
33 protected override void Dispose(bool disposing) { | |
34 base.Dispose(disposing); | |
35 if (disposing) { | |
36 lock (m_textWriter) { | |
37 Safe.Dispose(m_textWriter); | |
38 } | |
39 } | |
40 } | |
41 | |
42 | |
43 } | |
44 } |