2015-01-05 22:41:17 +08:00
|
|
|
|
using System;
|
2014-01-04 20:26:13 +08:00
|
|
|
|
using System.Collections.Generic;
|
2016-03-27 02:49:05 +01:00
|
|
|
|
using System.ComponentModel;
|
2015-10-31 18:06:57 +00:00
|
|
|
|
using System.Diagnostics;
|
2014-01-04 20:26:13 +08:00
|
|
|
|
using System.Linq;
|
2016-11-30 01:07:48 +00:00
|
|
|
|
using System.Threading.Tasks;
|
2016-01-06 21:34:42 +00:00
|
|
|
|
using System.Windows.Controls;
|
2015-10-30 23:17:34 +00:00
|
|
|
|
using Wox.Infrastructure;
|
2015-11-07 17:32:58 +00:00
|
|
|
|
using Wox.Infrastructure.Logger;
|
2016-04-21 01:53:21 +01:00
|
|
|
|
using Wox.Infrastructure.Storage;
|
2016-08-20 01:17:28 +01:00
|
|
|
|
using Wox.Plugin.Program.Programs;
|
2015-11-04 21:49:36 +00:00
|
|
|
|
using Stopwatch = Wox.Infrastructure.Stopwatch;
|
2014-01-04 20:26:13 +08:00
|
|
|
|
|
2015-01-03 15:20:34 +08:00
|
|
|
|
namespace Wox.Plugin.Program
|
2014-01-04 20:26:13 +08:00
|
|
|
|
{
|
2016-05-07 03:55:09 +01:00
|
|
|
|
public class Main : ISettingProvider, IPlugin, IPluginI18n, IContextMenu, ISavable
|
2014-01-04 20:26:13 +08:00
|
|
|
|
{
|
2017-01-13 01:21:00 +00:00
|
|
|
|
private static readonly object IndexLock = new object();
|
2017-01-13 15:40:32 +00:00
|
|
|
|
private static Win32[] _win32s;
|
|
|
|
|
|
private static UWP.Application[] _uwps;
|
2016-04-22 23:03:32 +01:00
|
|
|
|
|
2016-08-22 02:21:22 +01:00
|
|
|
|
private static PluginInitContext _context;
|
2016-04-21 01:53:21 +01:00
|
|
|
|
|
2017-01-13 15:40:32 +00:00
|
|
|
|
private static BinaryStorage<Win32[]> _win32Storage;
|
|
|
|
|
|
private static BinaryStorage<UWP.Application[]> _uwpStorage;
|
2016-04-22 23:03:32 +01:00
|
|
|
|
private static Settings _settings;
|
2016-04-26 22:45:31 +01:00
|
|
|
|
private readonly PluginJsonStorage<Settings> _settingsStorage;
|
2016-04-21 01:53:21 +01:00
|
|
|
|
|
2016-05-07 03:55:09 +01:00
|
|
|
|
public Main()
|
2016-04-21 01:53:21 +01:00
|
|
|
|
{
|
2016-04-26 22:45:31 +01:00
|
|
|
|
_settingsStorage = new PluginJsonStorage<Settings>();
|
2016-04-21 01:53:21 +01:00
|
|
|
|
_settings = _settingsStorage.Load();
|
2016-07-21 20:49:01 +01:00
|
|
|
|
|
2016-11-30 00:31:31 +00:00
|
|
|
|
Stopwatch.Normal("Preload programs", () =>
|
2016-07-21 20:49:01 +01:00
|
|
|
|
{
|
2017-01-14 14:10:30 +00:00
|
|
|
|
_win32Storage = new BinaryStorage<Win32[]>("Win32");
|
2017-01-13 15:40:32 +00:00
|
|
|
|
_win32s = _win32Storage.TryLoad(new Win32[] { });
|
2017-01-14 14:10:30 +00:00
|
|
|
|
_uwpStorage = new BinaryStorage<UWP.Application[]>("UWP");
|
2017-01-13 15:40:32 +00:00
|
|
|
|
_uwps = _uwpStorage.TryLoad(new UWP.Application[] { });
|
2017-01-13 01:21:00 +00:00
|
|
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
Log.Info($"Preload {_win32s.Length} win32 programs from cache");
|
|
|
|
|
|
Log.Info($"Preload {_uwps.Length} uwps from cache");
|
|
|
|
|
|
Task.Run(() =>
|
|
|
|
|
|
{
|
|
|
|
|
|
Stopwatch.Normal("Program Index", IndexPrograms);
|
2016-07-21 20:49:01 +01:00
|
|
|
|
});
|
2016-04-21 01:53:21 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
2016-05-02 22:37:01 +01:00
|
|
|
|
public void Save()
|
2016-04-21 01:53:21 +01:00
|
|
|
|
{
|
|
|
|
|
|
_settingsStorage.Save();
|
2017-01-13 15:40:32 +00:00
|
|
|
|
_win32Storage.Save(_win32s);
|
|
|
|
|
|
_uwpStorage.Save(_uwps);
|
2016-04-21 01:53:21 +01:00
|
|
|
|
}
|
2014-01-06 21:25:24 +08:00
|
|
|
|
|
2015-01-03 15:20:34 +08:00
|
|
|
|
public List<Result> Query(Query query)
|
2014-01-04 20:26:13 +08:00
|
|
|
|
{
|
2017-01-13 01:21:00 +00: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
|
|
|
|
}
|
|
|
|
|
|
|
2015-01-03 15:20:34 +08:00
|
|
|
|
public void Init(PluginInitContext context)
|
2014-01-04 20:26:13 +08:00
|
|
|
|
{
|
2016-04-21 01:53:21 +01:00
|
|
|
|
_context = context;
|
2014-08-10 22:22:54 +08:00
|
|
|
|
}
|
2014-03-21 03:53:18 +08:00
|
|
|
|
|
2014-08-14 22:21:07 +08:00
|
|
|
|
public static void IndexPrograms()
|
2014-08-10 22:22:54 +08:00
|
|
|
|
{
|
2017-01-13 15:40:32 +00:00
|
|
|
|
Win32[] w = { };
|
|
|
|
|
|
UWP.Application[] u = { };
|
2016-11-30 01:07:48 +00:00
|
|
|
|
var t1 = Task.Run(() =>
|
|
|
|
|
|
{
|
2017-01-13 01:21:00 +00:00
|
|
|
|
w = Win32.All(_settings);
|
2016-11-30 01:07:48 +00:00
|
|
|
|
});
|
|
|
|
|
|
var t2 = Task.Run(() =>
|
|
|
|
|
|
{
|
2017-01-13 01:21:00 +00:00
|
|
|
|
u = UWP.All();
|
2016-11-30 01:07:48 +00:00
|
|
|
|
});
|
|
|
|
|
|
Task.WaitAll(t1, t2);
|
2017-01-12 20:47:29 +00:00
|
|
|
|
|
2017-01-13 01:21:00 +00:00
|
|
|
|
var characters = w.Select(p => p.Name)
|
|
|
|
|
|
.Concat(w.Select(p => p.Description))
|
|
|
|
|
|
.Concat(u.Select(p => p.DisplayName))
|
|
|
|
|
|
.Concat(u.Select(p => p.Description));
|
2017-01-12 20:47:29 +00:00
|
|
|
|
|
|
|
|
|
|
Parallel.ForEach(characters, c =>
|
|
|
|
|
|
{
|
|
|
|
|
|
if (!string.IsNullOrWhiteSpace(c) && Alphabet.ContainsChinese(c))
|
|
|
|
|
|
{
|
|
|
|
|
|
Alphabet.PinyinComination(c);
|
|
|
|
|
|
}
|
|
|
|
|
|
});
|
2017-01-13 01:21:00 +00:00
|
|
|
|
|
|
|
|
|
|
lock (IndexLock)
|
|
|
|
|
|
{
|
|
|
|
|
|
_win32s = w;
|
|
|
|
|
|
_uwps = u;
|
|
|
|
|
|
}
|
2014-08-10 22:22:54 +08:00
|
|
|
|
}
|
2014-03-22 13:50:20 +08:00
|
|
|
|
|
2016-01-06 21:34:42 +00:00
|
|
|
|
public Control CreateSettingPanel()
|
2014-03-29 15:52:57 +08:00
|
|
|
|
{
|
2016-03-28 03:09:57 +01:00
|
|
|
|
return new ProgramSetting(_context, _settings);
|
2014-03-29 15:52:57 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2015-02-07 20:17:49 +08:00
|
|
|
|
public string GetTranslatedPluginTitle()
|
|
|
|
|
|
{
|
2016-03-27 02:49:05 +01:00
|
|
|
|
return _context.API.GetTranslation("wox_plugin_program_plugin_name");
|
2015-02-07 20:17:49 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public string GetTranslatedPluginDescription()
|
|
|
|
|
|
{
|
2016-03-27 02:49:05 +01:00
|
|
|
|
return _context.API.GetTranslation("wox_plugin_program_plugin_description");
|
2015-02-07 20:17:49 +08:00
|
|
|
|
}
|
2015-02-07 23:49:46 +08:00
|
|
|
|
|
|
|
|
|
|
public List<Result> LoadContextMenus(Result selectedResult)
|
|
|
|
|
|
{
|
2016-08-22 02:21:22 +01:00
|
|
|
|
var program = selectedResult.ContextData as IProgram;
|
|
|
|
|
|
if (program != null)
|
2015-02-07 23:49:46 +08:00
|
|
|
|
{
|
2016-08-22 02:21:22 +01:00
|
|
|
|
var menus = program.ContextMenus(_context.API);
|
|
|
|
|
|
return menus;
|
2016-08-18 01:16:40 +01:00
|
|
|
|
}
|
|
|
|
|
|
else
|
|
|
|
|
|
{
|
|
|
|
|
|
return new List<Result>();
|
|
|
|
|
|
}
|
2015-02-07 23:49:46 +08:00
|
|
|
|
}
|
2016-03-27 02:49:05 +01:00
|
|
|
|
|
2016-08-22 02:21:22 +01:00
|
|
|
|
public static bool StartProcess(ProcessStartInfo info)
|
2016-03-27 02:49:05 +01:00
|
|
|
|
{
|
|
|
|
|
|
bool hide;
|
|
|
|
|
|
try
|
|
|
|
|
|
{
|
|
|
|
|
|
Process.Start(info);
|
|
|
|
|
|
hide = true;
|
|
|
|
|
|
}
|
2016-08-22 02:21:22 +01:00
|
|
|
|
catch (Exception)
|
2016-03-27 02:49:05 +01:00
|
|
|
|
{
|
2016-08-22 02:21:22 +01:00
|
|
|
|
var name = "Plugin: Program";
|
|
|
|
|
|
var message = $"Can't start: {info.FileName}";
|
2016-03-27 02:49:05 +01:00
|
|
|
|
_context.API.ShowMsg(name, message, string.Empty);
|
|
|
|
|
|
hide = false;
|
|
|
|
|
|
}
|
|
|
|
|
|
return hide;
|
|
|
|
|
|
}
|
2014-01-04 20:26:13 +08:00
|
|
|
|
}
|
2015-02-07 23:49:46 +08:00
|
|
|
|
}
|