|
@@ -1,8 +1,12 @@
|
|
using System;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Collections.Generic;
|
|
using System.Diagnostics;
|
|
using System.Diagnostics;
|
|
|
|
+using System.Threading.Tasks;
|
|
using System.Windows;
|
|
using System.Windows;
|
|
|
|
+using MediaBrowser.Common.Logging;
|
|
|
|
+using MediaBrowser.Common.UI;
|
|
using MediaBrowser.Controller;
|
|
using MediaBrowser.Controller;
|
|
|
|
+using MediaBrowser.Model.Progress;
|
|
using Microsoft.Shell;
|
|
using Microsoft.Shell;
|
|
|
|
|
|
namespace MediaBrowser.ServerApplication
|
|
namespace MediaBrowser.ServerApplication
|
|
@@ -21,12 +25,50 @@ namespace MediaBrowser.ServerApplication
|
|
{
|
|
{
|
|
var application = new App();
|
|
var application = new App();
|
|
application.InitializeComponent();
|
|
application.InitializeComponent();
|
|
|
|
+
|
|
application.Run();
|
|
application.Run();
|
|
|
|
+
|
|
// Allow single instance code to perform cleanup operations
|
|
// Allow single instance code to perform cleanup operations
|
|
SingleInstance<App>.Cleanup();
|
|
SingleInstance<App>.Cleanup();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ protected async override void OnStartup(StartupEventArgs e)
|
|
|
|
+ {
|
|
|
|
+ this.ShutdownMode = ShutdownMode.OnExplicitShutdown;
|
|
|
|
+
|
|
|
|
+ await LoadKernel();
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ private async Task LoadKernel()
|
|
|
|
+ {
|
|
|
|
+ Progress<TaskProgress> progress = new Progress<TaskProgress>();
|
|
|
|
+ Splash splash = new Splash(progress);
|
|
|
|
+
|
|
|
|
+ splash.Show();
|
|
|
|
+
|
|
|
|
+ try
|
|
|
|
+ {
|
|
|
|
+ DateTime now = DateTime.Now;
|
|
|
|
+
|
|
|
|
+ await new Kernel().Init(progress);
|
|
|
|
+
|
|
|
|
+ double seconds = (DateTime.Now - now).TotalSeconds;
|
|
|
|
+
|
|
|
|
+ Logger.LogInfo("Kernel.Init completed in {0} seconds.", seconds);
|
|
|
|
+ splash.Close();
|
|
|
|
+
|
|
|
|
+ this.ShutdownMode = System.Windows.ShutdownMode.OnLastWindowClose;
|
|
|
|
+ new MainWindow().ShowDialog();
|
|
|
|
+ }
|
|
|
|
+ catch (Exception ex)
|
|
|
|
+ {
|
|
|
|
+ MessageBox.Show("There was an error launching Media Browser Server: " + ex.Message);
|
|
|
|
+ splash.Close();
|
|
|
|
+ Shutdown(1);
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
#region ISingleInstanceApp Members
|
|
#region ISingleInstanceApp Members
|
|
public bool SignalExternalCommandLineArgs(IList<string> args)
|
|
public bool SignalExternalCommandLineArgs(IList<string> args)
|
|
{
|
|
{
|