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

115 lines
3.4 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-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;
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
{
private static Win32[] _win32s = { };
2016-08-21 01:25:55 +08:00
private static UWP.Application[] _uwps = { };
private static PluginInitContext _context;
private static ProgramIndexCache _cache;
private static BinaryStorage<ProgramIndexCache> _cacheStorage;
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
2016-11-30 08:31:31 +08:00
Stopwatch.Normal("Preload programs", () =>
2016-07-22 03:49:01 +08:00
{
_cacheStorage = new BinaryStorage<ProgramIndexCache>();
_cache = _cacheStorage.Load();
_win32s = _cache.Programs;
2016-07-22 03:49:01 +08:00
});
Log.Info($"Preload {_win32s.Length} programs from cache");
2016-11-30 08:31:31 +08:00
Stopwatch.Normal("Program Index", IndexPrograms);
}
public void Save()
{
_settingsStorage.Save();
_cache.Programs = _win32s;
_cacheStorage.Save();
}
public List<Result> Query(Query query)
2014-01-04 20:26:13 +08:00
{
2016-08-22 16:49:32 +08:00
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 IndexPrograms()
{
_win32s = Win32.All(_settings);
2016-08-20 08:17:28 +08:00
_uwps = UWP.All();
}
2014-03-22 13:50:20 +08:00
2016-01-07 05:34:42 +08:00
public Control CreateSettingPanel()
{
return new ProgramSetting(_context, _settings);
}
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
}
}