using System; using System.Collections.Generic; using System.ComponentModel; using System.Diagnostics; using System.Linq; using System.Threading.Tasks; using System.Windows.Controls; using Wox.Infrastructure; using Wox.Infrastructure.Logger; using Wox.Infrastructure.Storage; using Wox.Plugin.Program.Programs; using Stopwatch = Wox.Infrastructure.Stopwatch; namespace Wox.Plugin.Program { public class Main : ISettingProvider, IPlugin, IPluginI18n, IContextMenu, ISavable, IReloadable { private static readonly object IndexLock = new object(); private static Win32[] _win32s; #if SDK private static UWP.Application[] _uwps; private static BinaryStorage _uwpStorage; #endif private static PluginInitContext _context; private static BinaryStorage _win32Storage; private static Settings _settings; private readonly PluginJsonStorage _settingsStorage; public Main() { _settingsStorage = new PluginJsonStorage(); _settings = _settingsStorage.Load(); Stopwatch.Normal("|Wox.Plugin.Program.Main|Preload programs cost", () => { _win32Storage = new BinaryStorage("Win32"); _win32s = _win32Storage.TryLoad(new Win32[] { }); #if SDK _uwpStorage = new BinaryStorage("UWP"); _uwps = _uwpStorage.TryLoad(new UWP.Application[] { }); #endif }); Log.Info($"|Wox.Plugin.Program.Main|Number of preload win32 programs <{_win32s.Length}>"); #if SDK Log.Info($"|Wox.Plugin.Program.Main|Number of preload uwps <{_uwps.Length}>"); #endif Task.Run(() => { Stopwatch.Normal("|Wox.Plugin.Program.Main|Program index cost", IndexPrograms); }); } public void Save() { _settingsStorage.Save(); _win32Storage.Save(_win32s); #if SDK _uwpStorage.Save(_uwps); #endif } public List Query(Query query) { lock (IndexLock) { var results1 = _win32s.AsParallel().Select(p => p.Result(query.Search, _context.API)); #if SDK var results2 = _uwps.AsParallel().Select(p => p.Result(query.Search, _context.API)); #endif var result = results1 #if SDK .Concat(results2) #endif .Where(r => r.Score > 0).ToList(); return result; } } public void Init(PluginInitContext context) { _context = context; } public static void IndexPrograms() { Win32[] w = { }; #if SDK UWP.Application[] u = { }; var t1 = Task.Run(() => { #endif w = Win32.All(_settings); #if SDK }); var t2 = Task.Run(() => { var windows10 = new Version(10, 0); var support = Environment.OSVersion.Version.Major >= windows10.Major; if (support) { u = UWP.All(); } else { u = new UWP.Application[] { }; } }); Task.WaitAll(t1, t2); #endif lock (IndexLock) { _win32s = w; #if SDK _uwps = u; #endif } } public Control CreateSettingPanel() { return new ProgramSetting(_context, _settings); } public string GetTranslatedPluginTitle() { return _context.API.GetTranslation("wox_plugin_program_plugin_name"); } public string GetTranslatedPluginDescription() { return _context.API.GetTranslation("wox_plugin_program_plugin_description"); } public List LoadContextMenus(Result selectedResult) { var program = selectedResult.ContextData as IProgram; if (program != null) { var menus = program.ContextMenus(_context.API); return menus; } else { return new List(); } } 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; } public void ReloadData() { IndexPrograms(); } } }