mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 10:17:22 +01:00
130 lines
4.4 KiB
C#
130 lines
4.4 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
using Dalamud.Configuration;
|
|
using Dalamud.Configuration.Internal;
|
|
using Dalamud.Interface.Internal;
|
|
using Dalamud.Plugin.Internal;
|
|
using Dalamud.Plugin.Internal.Types;
|
|
using Dalamud.Utility;
|
|
using Newtonsoft.Json;
|
|
using Serilog;
|
|
|
|
namespace Dalamud.Support
|
|
{
|
|
/// <summary>
|
|
/// Class responsible for printing troubleshooting information to the log.
|
|
/// </summary>
|
|
public static class Troubleshooting
|
|
{
|
|
/// <summary>
|
|
/// Gets the most recent exception to occur.
|
|
/// </summary>
|
|
public static Exception? LastException { get; private set; }
|
|
|
|
/// <summary>
|
|
/// Log the last exception in a parseable format to serilog.
|
|
/// </summary>
|
|
/// <param name="exception">The exception to log.</param>
|
|
/// <param name="context">Additional context.</param>
|
|
public static void LogException(Exception exception, string context)
|
|
{
|
|
LastException = exception;
|
|
|
|
var fixedContext = context?.Split(new[] { '\r', '\n' }, StringSplitOptions.RemoveEmptyEntries).FirstOrDefault();
|
|
|
|
try
|
|
{
|
|
var payload = new ExceptionPayload
|
|
{
|
|
Context = fixedContext,
|
|
When = DateTime.Now,
|
|
Info = exception.ToString(),
|
|
};
|
|
|
|
var encodedPayload = Convert.ToBase64String(Encoding.UTF8.GetBytes(JsonConvert.SerializeObject(payload)));
|
|
Log.Information($"LASTEXCEPTION:{encodedPayload}");
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
Log.Error(ex, "Could not print exception.");
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Log troubleshooting information in a parseable format to Serilog.
|
|
/// </summary>
|
|
internal static void LogTroubleshooting()
|
|
{
|
|
var startInfo = Service<DalamudStartInfo>.Get();
|
|
var configuration = Service<DalamudConfiguration>.Get();
|
|
var interfaceManager = Service<InterfaceManager>.GetNullable();
|
|
var pluginManager = Service<PluginManager>.GetNullable();
|
|
|
|
try
|
|
{
|
|
var payload = new TroubleshootingPayload
|
|
{
|
|
LoadedPlugins = pluginManager?.InstalledPlugins?.Select(x => x.Manifest)?.OrderByDescending(x => x.InternalName).ToArray(),
|
|
DalamudVersion = Util.AssemblyVersion,
|
|
DalamudGitHash = Util.GetGitHash(),
|
|
GameVersion = startInfo.GameVersion.ToString(),
|
|
Language = startInfo.Language.ToString(),
|
|
BetaKey = configuration.DalamudBetaKey,
|
|
DoPluginTest = configuration.DoPluginTest,
|
|
LoadAllApiLevels = configuration.LoadAllApiLevels,
|
|
InterfaceLoaded = interfaceManager?.IsReady ?? false,
|
|
HasThirdRepo = configuration.ThirdRepoList is { Count: > 0 },
|
|
ForcedMinHook = EnvironmentConfiguration.DalamudForceMinHook,
|
|
};
|
|
|
|
var encodedPayload = Convert.ToBase64String(Encoding.UTF8.GetBytes(JsonConvert.SerializeObject(payload)));
|
|
Log.Information($"TROUBLESHOOTING:{encodedPayload}");
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
Log.Error(ex, "Could not print troubleshooting.");
|
|
}
|
|
}
|
|
|
|
private class ExceptionPayload
|
|
{
|
|
public DateTime When { get; set; }
|
|
|
|
public string Info { get; set; }
|
|
|
|
public string? Context { get; set; }
|
|
}
|
|
|
|
private class TroubleshootingPayload
|
|
{
|
|
public LocalPluginManifest[] LoadedPlugins { get; set; }
|
|
|
|
public string DalamudVersion { get; set; }
|
|
|
|
public string DalamudGitHash { get; set; }
|
|
|
|
public string GameVersion { get; set; }
|
|
|
|
public string Language { get; set; }
|
|
|
|
public bool DoDalamudTest => false;
|
|
|
|
public string? BetaKey { get; set; }
|
|
|
|
public bool DoPluginTest { get; set; }
|
|
|
|
public bool LoadAllApiLevels { get; set; }
|
|
|
|
public bool InterfaceLoaded { get; set; }
|
|
|
|
public bool ForcedMinHook { get; set; }
|
|
|
|
public List<ThirdPartyRepoSettings> ThirdRepo => new();
|
|
|
|
public bool HasThirdRepo { get; set; }
|
|
}
|
|
}
|
|
}
|