12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- using System;
- 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
- ShutdownMode = ShutdownMode.OnExplicitShutdown;
- LoadKernel();
- }
- private async void LoadKernel()
- {
- Kernel = InstantiateKernel();
- var progress = new Progress<TaskProgress>();
- var splash = new Splash(progress);
- splash.Show();
- try
- {
- DateTime now = DateTime.UtcNow;
- await Kernel.Init(progress);
- Logger.LogInfo("Kernel.Init completed in {0} seconds.", (DateTime.UtcNow - now).TotalSeconds);
- splash.Close();
- ShutdownMode = System.Windows.ShutdownMode.OnLastWindowClose;
- InstantiateMainWindow().ShowDialog();
- }
- catch (Exception ex)
- {
- if (Logger.LoggerInstance != null)
- {
- Logger.LogException(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();
- }
- }
- }
|