PowerToys/Plugins/Wox.Plugin.Program/Main.cs

188 lines
5.7 KiB
C#
Raw Normal View History

using System;
2014-01-04 20:26:13 +08:00
using System.Collections.Generic;
using System.ComponentModel;
using System.Diagnostics;
2014-01-04 20:26:13 +08:00
using System.Linq;
2016-11-30 09:07:48 +08:00
using System.Threading.Tasks;
2016-01-07 05:34:42 +08:00
using System.Windows.Controls;
2015-10-31 07:17:34 +08:00
using Wox.Infrastructure;
using Wox.Infrastructure.Logger;
using Wox.Infrastructure.Storage;
2016-08-20 08:17:28 +08:00
using Wox.Plugin.Program.Programs;
2019-09-08 20:16:47 +08:00
using Wox.Plugin.Program.Views;
using Stopwatch = Wox.Infrastructure.Stopwatch;
2014-01-04 20:26:13 +08:00
namespace Wox.Plugin.Program
2014-01-04 20:26:13 +08:00
{
2016-05-07 10:55:09 +08:00
public class Main : ISettingProvider, IPlugin, IPluginI18n, IContextMenu, ISavable
2014-01-04 20:26:13 +08:00
{
2017-01-13 09:21:00 +08:00
private static readonly object IndexLock = new object();
private static Win32[] _win32s;
private static UWP.Application[] _uwps;
private static PluginInitContext _context;
private static BinaryStorage<Win32[]> _win32Storage;
private static BinaryStorage<UWP.Application[]> _uwpStorage;
private static Settings _settings;
2016-04-27 05:45:31 +08:00
private readonly PluginJsonStorage<Settings> _settingsStorage;
2016-05-07 10:55:09 +08:00
public Main()
{
2016-04-27 05:45:31 +08:00
_settingsStorage = new PluginJsonStorage<Settings>();
_settings = _settingsStorage.Load();
2016-07-22 03:49:01 +08:00
var preloadcost = Stopwatch.Normal("|Wox.Plugin.Program.Main|Preload programs cost", () =>
2016-07-22 03:49:01 +08:00
{
2017-01-14 22:10:30 +08:00
_win32Storage = new BinaryStorage<Win32[]>("Win32");
_win32s = _win32Storage.TryLoad(new Win32[] { });
2017-01-14 22:10:30 +08:00
_uwpStorage = new BinaryStorage<UWP.Application[]>("UWP");
_uwps = _uwpStorage.TryLoad(new UWP.Application[] { });
2017-01-13 09:21:00 +08:00
});
2017-01-25 08:23:28 +08:00
Log.Info($"|Wox.Plugin.Program.Main|Number of preload win32 programs <{_win32s.Length}>");
2017-01-24 08:24:20 +08:00
Log.Info($"|Wox.Plugin.Program.Main|Number of preload uwps <{_uwps.Length}>");
//########DELETE
long win32indexcost = 0;
long uwpindexcost = 0;
var a = Task.Run(() =>
{
if (!_win32s.Any())
win32indexcost = Stopwatch.Normal("|Wox.Plugin.Program.Main|Win32Program index cost", IndexWin32Programs);
});
var b = Task.Run(() =>
2017-01-13 09:21:00 +08:00
{
if (!_uwps.Any())
uwpindexcost = Stopwatch.Normal("|Wox.Plugin.Program.Main|Win32Program index cost", IndexUWPPrograms);
2016-07-22 03:49:01 +08:00
});
Task.WaitAll(a, b);
//########DELETE
/*
* With roaming folder already
Preload programs cost <24ms>
Program index cost <3163ms>
no roaming yet (clean)
Preload programs cost <79ms>
Program index cost <2900ms>
*
*
*/
long totalindexcost = win32indexcost + uwpindexcost;
if (preloadcost > 70 || totalindexcost > 4000)
{
#if DEBUG
#else
throw e
#endif
}
//########DELETE
}
public void Save()
{
_settingsStorage.Save();
_win32Storage.Save(_win32s);
_uwpStorage.Save(_uwps);
}
public List<Result> Query(Query query)
2014-01-04 20:26:13 +08:00
{
2017-01-13 09:21:00 +08:00
lock (IndexLock)
{
var results1 = _win32s.AsParallel().Select(p => p.Result(query.Search, _context.API));
var results2 = _uwps.AsParallel().Select(p => p.Result(query.Search, _context.API));
var result = results1.Concat(results2).Where(r => r.Score > 0).ToList();
return result;
}
2014-01-04 20:26:13 +08:00
}
public void Init(PluginInitContext context)
2014-01-04 20:26:13 +08:00
{
_context = context;
}
public static void IndexWin32Programs()
{
lock (IndexLock)
2016-11-30 09:07:48 +08:00
{
_win32s = Win32.All(_settings);
}
}
public static void IndexUWPPrograms()
{
var windows10 = new Version(10, 0);
var support = Environment.OSVersion.Version.Major >= windows10.Major;
2017-01-13 09:21:00 +08:00
lock (IndexLock)
{
var allUWPs = support ? UWP.All() : new UWP.Application[] { };
_uwps = UWP.RetainApplications(allUWPs, _settings.ProgramSources, _settings.EnableProgramSourceOnly);
2017-01-13 09:21:00 +08:00
}
}
2014-03-22 13:50:20 +08:00
public static void IndexPrograms()
{
var t1 = Task.Run(() => { IndexWin32Programs(); });
var t2 = Task.Run(() => { IndexUWPPrograms(); });
Task.WaitAll(t1, t2);
2019-09-08 20:16:47 +08:00
}
2019-09-07 13:58:13 +08:00
2016-01-07 05:34:42 +08:00
public Control CreateSettingPanel()
{
2019-09-08 20:16:47 +08:00
return new ProgramSetting(_context, _settings, _win32s, _uwps);
}
2015-02-07 20:17:49 +08:00
public string GetTranslatedPluginTitle()
{
return _context.API.GetTranslation("wox_plugin_program_plugin_name");
2015-02-07 20:17:49 +08:00
}
public string GetTranslatedPluginDescription()
{
return _context.API.GetTranslation("wox_plugin_program_plugin_description");
2015-02-07 20:17:49 +08:00
}
public List<Result> LoadContextMenus(Result selectedResult)
{
var program = selectedResult.ContextData as IProgram;
if (program != null)
{
var menus = program.ContextMenus(_context.API);
return menus;
}
else
{
return new List<Result>();
}
}
public static bool StartProcess(ProcessStartInfo info)
{
bool hide;
try
{
Process.Start(info);
hide = true;
}
catch (Exception)
{
var name = "Plugin: Program";
var message = $"Can't start: {info.FileName}";
_context.API.ShowMsg(name, message, string.Empty);
hide = false;
}
return hide;
}
2014-01-04 20:26:13 +08:00
}
}