mirror of
https://bitbucket.org/anguist/ntpa
synced 2025-10-06 02:51:23 +00:00
179 lines
5.5 KiB
C#
179 lines
5.5 KiB
C#
//
|
|
// TextLog.cs
|
|
//
|
|
// Author:
|
|
// Carsten Sonne Larsen <cs@innolan.dk>
|
|
//
|
|
// Copyright (c) 2013 Carsten Sonne Larsen
|
|
//
|
|
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
// of this software and associated documentation files (the "Software"), to deal
|
|
// in the Software without restriction, including without limitation the rights
|
|
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
// copies of the Software, and to permit persons to whom the Software is
|
|
// furnished to do so, subject to the following conditions:
|
|
//
|
|
// The above copyright notice and this permission notice shall be included in
|
|
// all copies or substantial portions of the Software.
|
|
//
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
// THE SOFTWARE.
|
|
|
|
using System;
|
|
using System.IO;
|
|
using System.Text;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Ntp.Analyzer.Log
|
|
{
|
|
public sealed class TextLog : LogBase
|
|
{
|
|
internal TextLog(string file, Severity treshold, string timeFormat)
|
|
{
|
|
this.file = file;
|
|
this.treshold = treshold;
|
|
this.timeFormat = timeFormat;
|
|
initialized = false;
|
|
suspended = false;
|
|
}
|
|
|
|
internal TextLog(string file, Severity treshold)
|
|
: this(file, treshold, "yyyy-MM-dd HH:mm:ss")
|
|
{
|
|
}
|
|
|
|
private readonly List<String> cache = new List<String>();
|
|
private readonly string file;
|
|
private readonly Object locker = new Object();
|
|
private readonly string timeFormat;
|
|
private readonly Severity treshold;
|
|
private bool initialized;
|
|
private bool suspended;
|
|
private TextWriter writer;
|
|
|
|
public override void Suspend()
|
|
{
|
|
lock (locker) {
|
|
if (writer != null) {
|
|
writer.Close ();
|
|
writer.Dispose ();
|
|
writer = null;
|
|
}
|
|
initialized = false;
|
|
suspended = true;
|
|
}
|
|
}
|
|
|
|
public override void Resume()
|
|
{
|
|
lock (locker) {
|
|
suspended = false;
|
|
}
|
|
}
|
|
|
|
public override void Initialize()
|
|
{
|
|
lock (locker) {
|
|
if (!initialized && !suspended) {
|
|
writer = new StreamWriter (file, true, Encoding.ASCII);
|
|
initialized = true;
|
|
}
|
|
}
|
|
}
|
|
|
|
public override void WriteLine(string text, Severity severity)
|
|
{
|
|
if (!initialized)
|
|
Initialize();
|
|
|
|
lock (locker) {
|
|
if (initialized && !suspended && cache.Count != 0) {
|
|
foreach (string line in cache) {
|
|
writer.WriteLine (line);
|
|
}
|
|
writer.Flush ();
|
|
cache.Clear ();
|
|
}
|
|
}
|
|
|
|
if (severity < treshold)
|
|
return;
|
|
|
|
string pad = String.Empty;
|
|
string severityText;
|
|
|
|
switch (severity) {
|
|
case Severity.Error:
|
|
severityText = "ERROR";
|
|
break;
|
|
case Severity.Warn:
|
|
severityText = "WARN";
|
|
pad = " ";
|
|
break;
|
|
case Severity.Notice:
|
|
severityText = "NOTICE";
|
|
break;
|
|
case Severity.Info:
|
|
severityText = "INFO";
|
|
pad = " ";
|
|
break;
|
|
case Severity.Debug:
|
|
severityText = "DEBUG";
|
|
break;
|
|
case Severity.Trace:
|
|
severityText = "TRACE";
|
|
break;
|
|
default:
|
|
throw new ApplicationException ("Unknown severity level.");
|
|
}
|
|
|
|
DateTime now = DateTime.Now;
|
|
|
|
string entry = String.Concat(
|
|
now.ToString(timeFormat),
|
|
" [", severityText, "] ",
|
|
pad, text);
|
|
|
|
lock (locker) {
|
|
if (initialized) {
|
|
writer.WriteLine (entry);
|
|
writer.Flush ();
|
|
} else {
|
|
cache.Add (entry);
|
|
}
|
|
}
|
|
}
|
|
|
|
public override void WriteLine(Exception exception)
|
|
{
|
|
WriteLine(exception.Message, Severity.Error);
|
|
WriteLine(exception.StackTrace, Severity.Debug);
|
|
}
|
|
|
|
public override void WriteLine(Exception exception, Severity severity)
|
|
{
|
|
if (severity < treshold)
|
|
return;
|
|
|
|
WriteLine(exception.Message, severity);
|
|
WriteLine(exception.StackTrace, severity);
|
|
}
|
|
|
|
public override void Close()
|
|
{
|
|
lock (locker) {
|
|
if (writer != null) {
|
|
writer.Close ();
|
|
writer.Dispose ();
|
|
writer = null;
|
|
}
|
|
initialized = false;
|
|
}
|
|
}
|
|
}
|
|
} |