2014-01-29 18:33:24 +08:00
|
|
|
|
using System;
|
2014-10-21 18:16:05 +08:00
|
|
|
|
using System.Collections.Generic;
|
2015-11-07 03:55:48 +08:00
|
|
|
|
using System.Diagnostics;
|
2016-01-07 06:18:27 +08:00
|
|
|
|
using System.IO;
|
2014-01-29 18:33:24 +08:00
|
|
|
|
using System.Linq;
|
2016-01-07 06:18:27 +08:00
|
|
|
|
using System.Reflection;
|
2015-11-02 21:43:19 +08:00
|
|
|
|
using System.Threading;
|
2015-10-31 07:17:34 +08:00
|
|
|
|
using System.Windows;
|
2014-10-21 18:16:05 +08:00
|
|
|
|
using Wox.CommandArgs;
|
2015-10-31 04:47:03 +08:00
|
|
|
|
using Wox.Core.Plugin;
|
2014-03-11 23:54:37 +08:00
|
|
|
|
using Wox.Helper;
|
2016-01-07 06:18:27 +08:00
|
|
|
|
using Wox.Infrastructure;
|
2016-02-18 19:35:17 +08:00
|
|
|
|
using Wox.Plugin;
|
|
|
|
|
using Wox.ViewModel;
|
2015-11-05 06:49:40 +08:00
|
|
|
|
using Stopwatch = Wox.Infrastructure.Stopwatch;
|
2014-01-29 18:33:24 +08:00
|
|
|
|
|
2016-01-07 06:18:27 +08:00
|
|
|
|
|
2014-10-21 18:16:05 +08:00
|
|
|
|
namespace Wox
|
|
|
|
|
{
|
|
|
|
|
public partial class App : Application, ISingleInstanceApp
|
|
|
|
|
{
|
|
|
|
|
private const string Unique = "Wox_Unique_Application_Mutex";
|
|
|
|
|
public static MainWindow Window { get; private set; }
|
|
|
|
|
|
2016-02-18 19:35:17 +08:00
|
|
|
|
public static IPublicAPI API { get; private set; }
|
|
|
|
|
|
2014-10-21 18:16:05 +08:00
|
|
|
|
[STAThread]
|
|
|
|
|
public static void Main()
|
|
|
|
|
{
|
|
|
|
|
if (SingleInstance<App>.InitializeAsFirstInstance(Unique))
|
|
|
|
|
{
|
|
|
|
|
var application = new App();
|
|
|
|
|
application.InitializeComponent();
|
|
|
|
|
application.Run();
|
|
|
|
|
SingleInstance<App>.Cleanup();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void OnStartup(StartupEventArgs e)
|
|
|
|
|
{
|
2015-11-05 05:49:36 +08:00
|
|
|
|
Stopwatch.Debug("Startup Time", () =>
|
2015-11-02 10:47:43 +08:00
|
|
|
|
{
|
|
|
|
|
base.OnStartup(e);
|
2016-01-07 06:18:27 +08:00
|
|
|
|
WoxDirectroy.Executable = Directory.GetParent(Assembly.GetExecutingAssembly().Location).ToString();
|
2015-11-07 03:55:48 +08:00
|
|
|
|
RegisterUnhandledException();
|
2015-11-04 09:10:54 +08:00
|
|
|
|
ThreadPool.QueueUserWorkItem(o => { ImageLoader.ImageLoader.PreloadImages(); });
|
2016-02-18 19:35:17 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
MainViewModel mainVM = new MainViewModel();
|
|
|
|
|
API = new PublicAPIInstance(mainVM);
|
2015-11-02 10:47:43 +08:00
|
|
|
|
Window = new MainWindow();
|
2016-02-18 19:35:17 +08:00
|
|
|
|
Window.DataContext = mainVM;
|
|
|
|
|
|
|
|
|
|
PluginManager.Init(API);
|
2015-11-02 10:47:43 +08:00
|
|
|
|
CommandArgsFactory.Execute(e.Args.ToList());
|
2015-11-05 05:35:04 +08:00
|
|
|
|
});
|
2014-10-21 18:16:05 +08:00
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
2015-11-11 08:33:33 +08:00
|
|
|
|
[Conditional("RELEASE")]
|
2015-11-07 03:55:48 +08:00
|
|
|
|
private void RegisterUnhandledException()
|
|
|
|
|
{
|
|
|
|
|
// let exception throw as normal is better for Debug
|
|
|
|
|
DispatcherUnhandledException += ErrorReporting.DispatcherUnhandledException;
|
|
|
|
|
AppDomain.CurrentDomain.UnhandledException += ErrorReporting.UnhandledExceptionHandle;
|
|
|
|
|
}
|
|
|
|
|
|
2015-11-29 11:28:47 +08:00
|
|
|
|
public void OnActivate(IList<string> args)
|
2014-10-21 18:16:05 +08:00
|
|
|
|
{
|
2015-11-26 10:04:44 +08:00
|
|
|
|
if (args.Count > 0 && args[0] == SingleInstance<App>.Restart)
|
|
|
|
|
{
|
2016-02-18 19:35:17 +08:00
|
|
|
|
API.CloseApp();
|
2015-11-26 10:04:44 +08:00
|
|
|
|
}
|
2015-11-29 11:28:47 +08:00
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
CommandArgsFactory.Execute(args);
|
|
|
|
|
}
|
2014-10-21 18:16:05 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
2014-01-29 18:33:24 +08:00
|
|
|
|
}
|