mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-13 19:19:23 +08:00
99006465e6
- use Task instead of QueueUserWorkItem - add CancellationTokenSource when updating result panel and executing query for all plugins
83 lines
2.7 KiB
C#
83 lines
2.7 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Diagnostics;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using System.Reflection;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
using System.Windows;
|
|
using Wox.CommandArgs;
|
|
using Wox.Core.Plugin;
|
|
using Wox.Helper;
|
|
using Wox.Infrastructure;
|
|
using Wox.ViewModel;
|
|
using Stopwatch = Wox.Infrastructure.Stopwatch;
|
|
|
|
namespace Wox
|
|
{
|
|
public partial class App : Application, ISingleInstanceApp
|
|
{
|
|
private const string Unique = "Wox_Unique_Application_Mutex";
|
|
public static MainWindow Window { get; private set; }
|
|
public static ImageLoader.ImageLoader ImageLoader;
|
|
public static PublicAPIInstance API { get; private set; }
|
|
|
|
[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)
|
|
{
|
|
Stopwatch.Debug("Startup Time", () =>
|
|
{
|
|
base.OnStartup(e);
|
|
WoxDirectroy.Executable = Directory.GetParent(Assembly.GetExecutingAssembly().Location).ToString();
|
|
RegisterUnhandledException();
|
|
|
|
ImageLoader = new ImageLoader.ImageLoader();
|
|
Task.Factory.StartNew(ImageLoader.PreloadImages);
|
|
PluginManager.Initialize();
|
|
|
|
MainViewModel mainVM = new MainViewModel();
|
|
API = new PublicAPIInstance(mainVM, mainVM._settings);
|
|
PluginManager.InitializePlugins(API);
|
|
|
|
mainVM._settings.UpdatePluginSettings();
|
|
|
|
Window = new MainWindow(mainVM._settings, mainVM);
|
|
NotifyIconManager notifyIconManager = new NotifyIconManager(API);
|
|
CommandArgsFactory.Execute(e.Args.ToList());
|
|
});
|
|
}
|
|
|
|
[Conditional("RELEASE")]
|
|
private void RegisterUnhandledException()
|
|
{
|
|
// let exception throw as normal is better for Debug
|
|
DispatcherUnhandledException += ErrorReporting.DispatcherUnhandledException;
|
|
AppDomain.CurrentDomain.UnhandledException += ErrorReporting.UnhandledExceptionHandle;
|
|
}
|
|
|
|
public void OnActivate(IList<string> args)
|
|
{
|
|
if (args.Count > 0 && args[0] == SingleInstance<App>.Restart)
|
|
{
|
|
API.CloseApp();
|
|
}
|
|
else
|
|
{
|
|
CommandArgsFactory.Execute(args);
|
|
}
|
|
}
|
|
}
|
|
}
|