ShareX/ShareX.HelpersLib/Logger.cs

147 lines
4.1 KiB
C#
Raw Normal View History

2013-11-03 23:53:49 +13:00
#region License Information (GPL v3)
/*
ShareX - A program that allows you to take screenshots and share any file type
2015-08-13 13:07:38 +12:00
Copyright (c) 2007-2015 ShareX Team
2013-11-03 23:53:49 +13:00
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
Optionally you can also view the license at <http://www.gnu.org/licenses/>.
*/
#endregion License Information (GPL v3)
using System;
using System.Diagnostics;
using System.IO;
using System.Text;
2014-12-11 09:25:20 +13:00
namespace ShareX.HelpersLib
2013-11-03 23:53:49 +13:00
{
public class Logger
{
public delegate void MessageAddedEventHandler(string message);
public event MessageAddedEventHandler MessageAdded;
2015-10-10 10:12:10 +13:00
public bool Async { get; set; }
2015-10-10 07:15:29 +13:00
public string LogFilePath { get; private set; }
2013-11-03 23:53:49 +13:00
private readonly object loggerLock = new object();
private StringBuilder sbMessages = new StringBuilder(4096);
2015-10-10 07:15:29 +13:00
2015-10-10 10:12:10 +13:00
public Logger()
{
Async = true;
}
public Logger(string logFilePath) : this()
2015-10-10 07:15:29 +13:00
{
LogFilePath = logFilePath;
Helpers.CreateDirectoryIfNotExist(LogFilePath);
}
2013-11-03 23:53:49 +13:00
protected void OnMessageAdded(string message)
{
if (MessageAdded != null)
{
MessageAdded(message);
}
}
public void WriteLine(string message = "")
{
2015-10-10 07:15:29 +13:00
if (!string.IsNullOrEmpty(message))
2013-11-03 23:53:49 +13:00
{
2015-10-10 10:12:10 +13:00
if (Async)
{
TaskEx.Run(() => WriteLineInternal(message));
}
else
{
WriteLineInternal(message);
}
}
}
private void WriteLineInternal(string message)
{
lock (loggerLock)
{
message = string.Format("{0:yyyy-MM-dd HH:mm:ss.fff} - {1}", DateTime.Now, message);
Debug.WriteLine(message);
if (sbMessages != null)
2013-11-03 23:53:49 +13:00
{
2015-10-10 10:12:10 +13:00
sbMessages.AppendLine(message);
}
try
{
if (!string.IsNullOrEmpty(LogFilePath))
2015-10-10 07:15:29 +13:00
{
File.AppendAllText(LogFilePath, message + Environment.NewLine, Encoding.UTF8);
2015-10-10 07:15:29 +13:00
}
2015-10-10 10:12:10 +13:00
}
catch (Exception e)
{
Debug.WriteLine(e);
}
OnMessageAdded(message);
2013-11-03 23:53:49 +13:00
}
}
public void WriteLine(string format, params object[] args)
{
WriteLine(string.Format(format, args));
}
public void WriteException(string exception, string message = "Exception")
{
WriteLine("{0}:{1}{2}", message, Environment.NewLine, exception);
}
public void WriteException(Exception exception, string message = "Exception")
{
WriteException(exception.ToString(), message);
}
2015-10-10 07:15:29 +13:00
public void Clear()
2013-11-03 23:53:49 +13:00
{
lock (loggerLock)
{
2015-10-10 07:15:29 +13:00
if (sbMessages != null)
2013-11-03 23:53:49 +13:00
{
2015-10-10 07:15:29 +13:00
sbMessages.Clear();
2013-11-03 23:53:49 +13:00
}
}
}
public override string ToString()
{
lock (loggerLock)
{
if (sbMessages != null && sbMessages.Length > 0)
{
return sbMessages.ToString();
}
return null;
}
}
}
}