You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
67 lines
1.9 KiB
67 lines
1.9 KiB
using System;
|
|
using System.Threading.Tasks;
|
|
using System.Windows;
|
|
using MediaBrowser.Common.Kernel;
|
|
using MediaBrowser.Common.Logging;
|
|
using MediaBrowser.Model.Progress;
|
|
|
|
namespace MediaBrowser.Common.UI
|
|
{
|
|
/// <summary>
|
|
/// Serves as a base Application class for both the UI and Server apps.
|
|
/// </summary>
|
|
public abstract class BaseApplication : Application
|
|
{
|
|
private IKernel Kernel { get; set; }
|
|
|
|
protected abstract IKernel InstantiateKernel();
|
|
protected abstract Window InstantiateMainWindow();
|
|
|
|
protected override void OnStartup(StartupEventArgs e)
|
|
{
|
|
// Without this the app will shutdown after the splash screen closes
|
|
this.ShutdownMode = ShutdownMode.OnExplicitShutdown;
|
|
|
|
LoadKernel();
|
|
}
|
|
|
|
private async void LoadKernel()
|
|
{
|
|
Kernel = InstantiateKernel();
|
|
|
|
Progress<TaskProgress> progress = new Progress<TaskProgress>();
|
|
Splash splash = new Splash(progress);
|
|
|
|
splash.Show();
|
|
|
|
try
|
|
{
|
|
DateTime now = DateTime.Now;
|
|
|
|
await Kernel.Init(progress);
|
|
|
|
Logger.LogInfo("Kernel.Init completed in {0} seconds.", (DateTime.Now - now).TotalSeconds);
|
|
splash.Close();
|
|
|
|
this.ShutdownMode = System.Windows.ShutdownMode.OnLastWindowClose;
|
|
InstantiateMainWindow().ShowDialog();
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
MessageBox.Show("There was an error launching Media Browser: " + ex.Message);
|
|
splash.Close();
|
|
|
|
// Shutdown the app with an error code
|
|
Shutdown(1);
|
|
}
|
|
}
|
|
|
|
protected override void OnExit(ExitEventArgs e)
|
|
{
|
|
base.OnExit(e);
|
|
|
|
Kernel.Dispose();
|
|
}
|
|
}
|
|
}
|