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