Mercurial > pub > ImplabNet
view Implab/Diagnostics/TextFileListener.cs @ 80:4f20870d0816 v2
added memory barriers
author | cin |
---|---|
date | Fri, 26 Sep 2014 03:32:34 +0400 |
parents | d9d794b61bb9 |
children | 4c0e5ef99986 |
line wrap: on
line source
using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Text; namespace Implab.Diagnostics { public class TextFileListener: TextListenerBase { readonly TextWriter m_textWriter; public TextFileListener(string fileName, bool global) : base(global) { m_textWriter = File.CreateText(fileName); m_textWriter.WriteLine("LOG {0}", DateTime.Now); Register(this); } protected override void WriteEntry(TraceContext context, EventText text, string channel) { var msg = new StringBuilder(); for (int i = 0; i < text.indent; i++) msg.Append(" "); msg.AppendFormat("[{0}]:{1}: {2}", context.ThreadId, channel, text.content); lock (m_textWriter) { if (!IsDisposed) { // тут гарантировано еще не освобожден m_textWriter m_textWriter.WriteLine(msg.ToString()); m_textWriter.Flush(); } } } protected override void Dispose(bool disposing) { base.Dispose(disposing); if (disposing) { // IsDisposed = true lock (m_textWriter) { Safe.Dispose(m_textWriter); } } } } }