Files
duplicati/Duplicati/Library/Crashlog/CrashlogHelper.cs
T
Kenneth SkovhedeandGitHub 9464caf622 Feature/update license 2025 (#5851)
* Fixed some minor whitespace issues

* Updated all copyright to 2025
2025-01-07 09:40:39 +01:00

166 lines
5.9 KiB
C#

// Copyright (C) 2025, The Duplicati Team
// https://duplicati.com, hello@duplicati.com
//
// 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.Threading.Tasks;
namespace Duplicati.Library.Crashlog;
#nullable enable
/// <summary>
/// Utility class to wrap a method in a try-catch block and log any exceptions to a file
/// </summary>
public static class CrashlogHelper
{
/// <summary>
/// The system temp path
/// </summary>
private static readonly string SystemTempPath
#if DEBUG
= Path.GetDirectoryName(System.Reflection.Assembly.GetEntryAssembly()?.Location) ?? System.IO.Path.GetTempPath();
#else
= System.IO.Path.GetTempPath();
#endif
/// <summary>
/// The default directory to write crashlogs to
/// </summary>
public static string DefaultLogDir { get; set; } = SystemTempPath;
/// <summary>
/// Event to subscribe to for unobserved task exceptions
/// </summary>
public static event Action<Exception>? OnUnobservedTaskException;
/// <summary>
/// Handler for unobserved task exceptions
/// </summary>
/// <param name="sender">Unused sender</param>
/// <param name="e">The exception event args</param>
private static void TaskSchedulerOnUnobservedTaskException(object? sender, UnobservedTaskExceptionEventArgs e)
{
try
{
OnUnobservedTaskException?.Invoke(e.Exception);
}
catch
{
}
}
/// <summary>
/// Wraps a method in a try-catch block and logs any exceptions to a file
/// </summary>
/// <typeparam name="T">The return type of the method</typeparam>
/// <param name="method">The method to wrap</param>
/// <param name="logdir">The directory to write the crashlog to</param>
/// <param name="applicationName">The name of the application to write to the crashlog</param>
/// <returns>The result of the method</returns>
public static T WrapWithCrashLog<T>(Func<T> method, string? logdir = null, string? applicationName = null)
{
try
{
TaskScheduler.UnobservedTaskException += TaskSchedulerOnUnobservedTaskException;
return method();
}
catch (Exception ex)
{
LogCrashException(ex, logdir, applicationName);
throw;
}
finally
{
TaskScheduler.UnobservedTaskException -= TaskSchedulerOnUnobservedTaskException;
}
}
/// <summary>
/// Wraps a method in a try-catch block and logs any exceptions to a file
/// </summary>
/// <typeparam name="T">The return type of the method</typeparam>
/// <param name="method">The method to wrap</param>
/// <param name="logdir">The directory to write the crashlog to</param>
/// <param name="applicationName">The name of the application to write to the crashlog</param>
/// <returns>The result of the method</returns>
public static async Task<T> WrapWithCrashLog<T>(Func<Task<T>> method, string? logdir = null, string? applicationName = null)
{
try
{
TaskScheduler.UnobservedTaskException += TaskSchedulerOnUnobservedTaskException;
return await method().ConfigureAwait(false);
}
catch (Exception ex)
{
LogCrashException(ex, logdir, applicationName);
throw;
}
finally
{
TaskScheduler.UnobservedTaskException -= TaskSchedulerOnUnobservedTaskException;
}
}
/// <summary>
/// Logs the exception to a file
/// </summary>
/// <param name="ex">The exception to log</param>
/// <param name="logdir">The directory to write the crashlog to</param>
/// <param name="applicationName">The name of the application to write to the crashlog</param>
public static void LogCrashException(Exception ex, string? logdir, string? applicationName)
{
try
{
Console.WriteLine("Crash! {0}{1}", Environment.NewLine, ex);
}
catch
{
}
try
{
if (string.IsNullOrWhiteSpace(logdir))
{
var def = DefaultLogDir;
logdir = string.IsNullOrWhiteSpace(def)
? SystemTempPath
: def;
}
applicationName = string.IsNullOrWhiteSpace(applicationName)
? System.Reflection.Assembly.GetEntryAssembly()?.GetName().Name ?? Guid.NewGuid().ToString()[..8]
: applicationName;
var report_file = System.IO.Path.Combine(logdir, $"{applicationName}-crashlog.txt");
System.IO.File.WriteAllText(report_file, ex.ToString());
}
catch (Exception writeex)
{
try
{
Console.WriteLine("Failed to write crashlog: {0}", writeex);
}
catch
{
}
}
}
}