171 lines
5.0 KiB
C#
Raw Permalink Normal View History

2013-11-03 12:53:49 +02:00
#region License Information (GPL v3)
/*
ShareX - A program that allows you to take screenshots and share any file type
2025-01-08 03:46:27 +03:00
Copyright (c) 2007-2025 ShareX Team
2013-11-03 12:53:49 +02: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.Collections.Concurrent;
2013-11-03 12:53:49 +02:00
using System.Diagnostics;
using System.IO;
using System.Text;
2018-08-03 14:01:12 +03:00
using System.Threading.Tasks;
2013-11-03 12:53:49 +02:00
2014-12-10 22:25:20 +02:00
namespace ShareX.HelpersLib
2013-11-03 12:53:49 +02:00
{
public class Logger
{
public delegate void MessageAddedEventHandler(string message);
public event MessageAddedEventHandler MessageAdded;
2017-10-16 15:53:54 +03:00
public string MessageFormat { get; set; } = "{0:yyyy-MM-dd HH:mm:ss.fff} - {1}";
public bool AsyncWrite { get; set; } = true;
2015-11-22 22:28:04 +02:00
public bool DebugWrite { get; set; } = true;
2017-10-16 20:22:28 +03:00
public bool StringWrite { get; set; } = true;
2015-11-22 22:28:04 +02:00
public bool FileWrite { get; set; } = false;
2015-10-09 21:15:29 +03:00
public string LogFilePath { get; private set; }
2013-11-03 12:53:49 +02:00
private readonly object loggerLock = new object();
private ConcurrentQueue<string> messageQueue = new ConcurrentQueue<string>();
2017-10-16 20:22:28 +03:00
private StringBuilder sbMessages = new StringBuilder();
2015-10-09 21:15:29 +03:00
2015-10-10 00:12:10 +03:00
public Logger()
{
}
2015-11-22 22:28:04 +02:00
public Logger(string logFilePath)
2015-10-09 21:15:29 +03:00
{
if (!string.IsNullOrEmpty(logFilePath))
{
FileWrite = true;
LogFilePath = logFilePath;
FileHelpers.CreateDirectoryFromFilePath(LogFilePath);
}
2015-10-09 21:15:29 +03:00
}
2013-11-03 12:53:49 +02:00
protected void OnMessageAdded(string message)
{
2021-06-10 01:14:01 +03:00
MessageAdded?.Invoke(message);
2013-11-03 12:53:49 +02:00
}
public void ProcessMessageQueue()
2015-10-10 00:12:10 +03:00
{
lock (loggerLock)
{
2017-10-16 20:22:28 +03:00
while (messageQueue.TryDequeue(out string message))
2013-11-03 12:53:49 +02:00
{
if (DebugWrite)
{
2017-10-16 20:22:28 +03:00
Debug.Write(message);
}
2015-10-10 00:12:10 +03:00
2017-10-16 20:22:28 +03:00
if (StringWrite && sbMessages != null)
2015-10-09 21:15:29 +03:00
{
2017-10-16 20:22:28 +03:00
sbMessages.Append(message);
2015-10-09 21:15:29 +03:00
}
if (FileWrite && !string.IsNullOrEmpty(LogFilePath))
2015-11-22 22:28:04 +02:00
{
try
{
2017-10-16 20:22:28 +03:00
File.AppendAllText(LogFilePath, message, Encoding.UTF8);
}
catch (Exception e)
{
Debug.WriteLine(e);
}
2015-11-22 22:28:04 +02:00
}
2015-10-10 00:12:10 +03:00
OnMessageAdded(message);
}
2013-11-03 12:53:49 +02:00
}
}
2017-10-16 15:53:54 +03:00
2017-10-16 20:22:28 +03:00
public void Write(string message)
2017-10-16 15:53:54 +03:00
{
if (message != null)
{
message = string.Format(MessageFormat, DateTime.Now, message);
messageQueue.Enqueue(message);
2017-10-16 15:53:54 +03:00
if (AsyncWrite)
{
2018-08-03 14:01:12 +03:00
Task.Run(() => ProcessMessageQueue());
2017-10-16 15:53:54 +03:00
}
else
{
ProcessMessageQueue();
2017-10-16 15:53:54 +03:00
}
}
}
2013-11-03 12:53:49 +02:00
2017-10-16 20:22:28 +03:00
public void Write(string format, params object[] args)
{
Write(string.Format(format, args));
}
public void WriteLine(string message)
{
Write(message + Environment.NewLine);
}
2013-11-03 12:53:49 +02:00
public void WriteLine(string format, params object[] args)
{
WriteLine(string.Format(format, args));
}
public void WriteException(string exception, string message = "Exception")
{
2017-10-16 20:22:28 +03:00
WriteLine($"{message}:{Environment.NewLine}{exception}");
2013-11-03 12:53:49 +02:00
}
public void WriteException(Exception exception, string message = "Exception")
{
WriteException(exception.ToString(), message);
}
2015-10-09 21:15:29 +03:00
public void Clear()
2013-11-03 12:53:49 +02:00
{
lock (loggerLock)
{
2015-10-09 21:15:29 +03:00
if (sbMessages != null)
2013-11-03 12:53:49 +02:00
{
2015-10-09 21:15:29 +03:00
sbMessages.Clear();
2013-11-03 12:53:49 +02:00
}
}
}
public override string ToString()
{
lock (loggerLock)
{
if (sbMessages != null && sbMessages.Length > 0)
{
return sbMessages.ToString();
}
return null;
}
}
}
}