mirror of
https://github.com/9ParsonsB/Pulsar.git
synced 2025-04-05 17:39:39 -04:00
* Consolidate plugin errors into single window. * Handle error aggregation and loggin inside error reporter. * Minor logging corrections. * Error popup tweaking
72 lines
2.7 KiB
C#
72 lines
2.7 KiB
C#
using System;
|
|
using Avalonia;
|
|
using Avalonia.ReactiveUI;
|
|
|
|
namespace Observatory
|
|
{
|
|
class ObservatoryCore
|
|
{
|
|
[STAThread]
|
|
static void Main(string[] args)
|
|
{
|
|
if (args.Length > 0 && System.IO.File.Exists(args[0]))
|
|
{
|
|
var fileInfo = new System.IO.FileInfo(args[0]);
|
|
if (fileInfo.Extension == ".eop" || fileInfo.Extension == ".zip")
|
|
System.IO.File.Copy(
|
|
fileInfo.FullName,
|
|
$"{AppDomain.CurrentDomain.BaseDirectory}{System.IO.Path.DirectorySeparatorChar}plugins{System.IO.Path.DirectorySeparatorChar}{fileInfo.Name}");
|
|
}
|
|
|
|
string version = System.Reflection.Assembly.GetEntryAssembly().GetName().Version.ToString();
|
|
try
|
|
{
|
|
if (Properties.Core.Default.CoreVersion != version)
|
|
{
|
|
Properties.Core.Default.Upgrade();
|
|
Properties.Core.Default.CoreVersion = version;
|
|
Properties.Core.Default.Save();
|
|
}
|
|
BuildAvaloniaApp().StartWithClassicDesktopLifetime(args);
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
LogError(ex, version);
|
|
}
|
|
}
|
|
|
|
internal static void LogError(Exception ex, string context)
|
|
{
|
|
var docPath = System.Environment.GetFolderPath(System.Environment.SpecialFolder.MyDocuments);
|
|
var errorMessage = new System.Text.StringBuilder();
|
|
var timestamp = DateTime.Now.ToString("G");
|
|
errorMessage
|
|
.AppendLine($"[{timestamp}] Error encountered in Elite Observatory {context}")
|
|
.AppendLine(FormatExceptionMessage(ex))
|
|
.AppendLine();
|
|
System.IO.File.AppendAllText(docPath + System.IO.Path.DirectorySeparatorChar + "ObservatoryCrashLog.txt", errorMessage.ToString());
|
|
}
|
|
|
|
static string FormatExceptionMessage(Exception ex, bool inner = false)
|
|
{
|
|
var errorMessage = new System.Text.StringBuilder();
|
|
errorMessage
|
|
.AppendLine($"{(inner ? "Inner e" : "E")}xception message: {ex.Message}")
|
|
.AppendLine($"Stack trace:")
|
|
.AppendLine(ex.StackTrace);
|
|
if (ex.InnerException != null)
|
|
errorMessage.AppendLine(FormatExceptionMessage(ex.InnerException, true));
|
|
|
|
return errorMessage.ToString();
|
|
}
|
|
|
|
public static AppBuilder BuildAvaloniaApp()
|
|
{
|
|
return AppBuilder.Configure<UI.MainApplication>()
|
|
.UsePlatformDetect()
|
|
.LogToTrace()
|
|
.UseReactiveUI();
|
|
}
|
|
}
|
|
}
|