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 09:49:05 +08:00
|
|
|
|
using System.ComponentModel;
|
2015-11-01 02:06:57 +08:00
|
|
|
|
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;
|
2015-11-08 01:32:58 +08:00
|
|
|
|
using Wox.Infrastructure.Logger;
|
2016-04-21 08:53:21 +08:00
|
|
|
|
using Wox.Infrastructure.Storage;
|
2016-08-20 08:17:28 +08:00
|
|
|
|
using Wox.Plugin.Program.Programs;
|
2015-11-05 05:49:36 +08: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 10:55:09 +08:00
|
|
|
|
public class Main : ISettingProvider, IPlugin, IPluginI18n, IContextMenu, ISavable
|
2014-01-04 20:26:13 +08:00
|
|
|
|
{
|
2016-08-21 00:08:16 +08:00
|
|
|
|
private static Win32[] _win32s = { };
|
2016-08-21 01:25:55 +08:00
|
|
|
|
private static UWP.Application[] _uwps = { };
|
2016-04-23 06:03:32 +08:00
|
|
|
|
|
2016-03-27 09:49:05 +08:00
|
|
|
|
private PluginInitContext _context;
|
2016-04-21 08:53:21 +08:00
|
|
|
|
|
|
|
|
|
private static ProgramIndexCache _cache;
|
|
|
|
|
private static BinaryStorage<ProgramIndexCache> _cacheStorage;
|
2016-04-23 06:03:32 +08:00
|
|
|
|
private static Settings _settings;
|
2016-04-27 05:45:31 +08:00
|
|
|
|
private readonly PluginJsonStorage<Settings> _settingsStorage;
|
2016-04-21 08:53:21 +08:00
|
|
|
|
|
2016-05-07 10:55:09 +08:00
|
|
|
|
public Main()
|
2016-04-21 08:53:21 +08:00
|
|
|
|
{
|
2016-04-27 05:45:31 +08:00
|
|
|
|
_settingsStorage = new PluginJsonStorage<Settings>();
|
2016-04-21 08:53:21 +08:00
|
|
|
|
_settings = _settingsStorage.Load();
|
2016-07-22 03:49:01 +08:00
|
|
|
|
|
|
|
|
|
Stopwatch.Debug("Preload programs", () =>
|
|
|
|
|
{
|
|
|
|
|
_cacheStorage = new BinaryStorage<ProgramIndexCache>();
|
|
|
|
|
_cache = _cacheStorage.Load();
|
2016-08-21 00:08:16 +08:00
|
|
|
|
_win32s = _cache.Programs;
|
2016-07-22 03:49:01 +08:00
|
|
|
|
});
|
2016-08-21 00:08:16 +08:00
|
|
|
|
Log.Info($"Preload {_win32s.Length} programs from cache");
|
2016-07-22 03:49:01 +08:00
|
|
|
|
Stopwatch.Debug("Program Index", IndexPrograms);
|
2016-04-21 08:53:21 +08:00
|
|
|
|
}
|
|
|
|
|
|
2016-05-03 05:37:01 +08:00
|
|
|
|
public void Save()
|
2016-04-21 08:53:21 +08:00
|
|
|
|
{
|
|
|
|
|
_settingsStorage.Save();
|
2016-08-21 00:08:16 +08:00
|
|
|
|
_cache.Programs = _win32s;
|
2016-04-21 08:53:21 +08:00
|
|
|
|
_cacheStorage.Save();
|
|
|
|
|
}
|
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
|
|
|
|
{
|
2016-08-21 00:08:16 +08:00
|
|
|
|
var results1 = _win32s.AsParallel()
|
2016-08-21 01:25:55 +08:00
|
|
|
|
.Where(p => Score(p, query.Search) > 0)
|
|
|
|
|
.Select(ResultFromWin32);
|
2016-08-19 10:00:52 +08:00
|
|
|
|
var results2 = _uwps.AsParallel()
|
2016-08-21 01:25:55 +08:00
|
|
|
|
.Where(app => Score(app, query.Search) > 0)
|
|
|
|
|
.Select(ResultFromUWP);
|
2016-08-18 08:16:40 +08:00
|
|
|
|
var result = results1.Concat(results2).ToList();
|
|
|
|
|
return result;
|
2014-01-04 20:26:13 +08:00
|
|
|
|
}
|
|
|
|
|
|
2016-08-21 01:25:55 +08:00
|
|
|
|
public Result ResultFromWin32(Win32 p)
|
2016-07-22 03:49:01 +08:00
|
|
|
|
{
|
|
|
|
|
var result = new Result
|
|
|
|
|
{
|
2016-08-21 00:08:16 +08:00
|
|
|
|
Title = p.FullName,
|
|
|
|
|
SubTitle = p.FullPath,
|
2016-07-22 03:49:01 +08:00
|
|
|
|
IcoPath = p.IcoPath,
|
|
|
|
|
Score = p.Score,
|
|
|
|
|
ContextData = p,
|
|
|
|
|
Action = e =>
|
|
|
|
|
{
|
|
|
|
|
var info = new ProcessStartInfo
|
|
|
|
|
{
|
2016-08-21 00:08:16 +08:00
|
|
|
|
FileName = p.FullPath,
|
|
|
|
|
WorkingDirectory = p.ParentDirectory
|
2016-07-22 03:49:01 +08:00
|
|
|
|
};
|
|
|
|
|
var hide = StartProcess(info);
|
|
|
|
|
return hide;
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
return result;
|
|
|
|
|
}
|
2016-08-21 01:25:55 +08:00
|
|
|
|
public Result ResultFromUWP(UWP.Application app)
|
2016-08-18 08:16:40 +08:00
|
|
|
|
{
|
|
|
|
|
var result = new Result
|
|
|
|
|
{
|
|
|
|
|
Title = app.DisplayName,
|
|
|
|
|
SubTitle = $"Windows Store app: {app.Description}",
|
|
|
|
|
Icon = app.Logo,
|
2016-08-21 01:25:55 +08:00
|
|
|
|
Score = app.Score,
|
2016-08-18 08:16:40 +08:00
|
|
|
|
ContextData = app,
|
|
|
|
|
Action = e =>
|
|
|
|
|
{
|
|
|
|
|
app.Launch();
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
2016-07-22 03:49:01 +08:00
|
|
|
|
|
2016-08-20 08:17:28 +08:00
|
|
|
|
private int Score(Win32 program, string query)
|
2014-01-05 17:56:02 +08:00
|
|
|
|
{
|
2016-08-21 00:08:16 +08:00
|
|
|
|
var score1 = StringMatcher.Score(program.FullName, query);
|
|
|
|
|
var score2 = StringMatcher.ScoreForPinyin(program.FullName, query);
|
2016-04-24 20:35:21 +08:00
|
|
|
|
var score3 = StringMatcher.Score(program.ExecutableName, query);
|
|
|
|
|
var score = new[] { score1, score2, score3 }.Max();
|
2016-04-24 07:37:25 +08:00
|
|
|
|
program.Score = score;
|
|
|
|
|
return score;
|
2014-01-05 17:56:02 +08:00
|
|
|
|
}
|
|
|
|
|
|
2016-08-21 01:25:55 +08:00
|
|
|
|
private int Score(UWP.Application app, string query)
|
2016-08-18 08:16:40 +08:00
|
|
|
|
{
|
2016-08-21 01:25:55 +08:00
|
|
|
|
var score1 = StringMatcher.Score(app.DisplayName, query);
|
|
|
|
|
var score2 = StringMatcher.ScoreForPinyin(app.DisplayName, query);
|
|
|
|
|
var score3 = StringMatcher.Score(app.Description, query);
|
2016-08-18 08:16:40 +08:00
|
|
|
|
var score = new[] { score1, score2, score3 }.Max();
|
|
|
|
|
app.Score = score;
|
|
|
|
|
return score;
|
|
|
|
|
}
|
|
|
|
|
|
2015-01-03 15:20:34 +08:00
|
|
|
|
public void Init(PluginInitContext context)
|
2014-01-04 20:26:13 +08:00
|
|
|
|
{
|
2016-04-21 08:53:21 +08: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
|
|
|
|
{
|
2016-08-21 00:08:16 +08:00
|
|
|
|
_win32s = Win32.All(_settings);
|
2016-08-20 08:17:28 +08:00
|
|
|
|
_uwps = UWP.All();
|
2014-08-10 22:22:54 +08:00
|
|
|
|
}
|
2014-03-22 13:50:20 +08:00
|
|
|
|
|
2016-01-07 05:34:42 +08:00
|
|
|
|
public Control CreateSettingPanel()
|
2014-03-29 15:52:57 +08:00
|
|
|
|
{
|
2016-03-28 10:09:57 +08: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 09:49:05 +08:00
|
|
|
|
return _context.API.GetTranslation("wox_plugin_program_plugin_name");
|
2015-02-07 20:17:49 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public string GetTranslatedPluginDescription()
|
|
|
|
|
{
|
2016-03-27 09:49:05 +08: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-20 08:17:28 +08:00
|
|
|
|
Win32 p = selectedResult.ContextData as Win32;
|
2016-08-18 08:16:40 +08:00
|
|
|
|
if (p != null)
|
2015-02-07 23:49:46 +08:00
|
|
|
|
{
|
2016-08-18 08:16:40 +08:00
|
|
|
|
List<Result> contextMenus = new List<Result>
|
2015-02-07 23:49:46 +08:00
|
|
|
|
{
|
2016-08-18 08:16:40 +08:00
|
|
|
|
new Result
|
2015-02-07 23:49:46 +08:00
|
|
|
|
{
|
2016-08-18 08:16:40 +08:00
|
|
|
|
Title = _context.API.GetTranslation("wox_plugin_program_run_as_administrator"),
|
|
|
|
|
Action = _ =>
|
2016-01-04 07:18:51 +08:00
|
|
|
|
{
|
2016-08-18 08:16:40 +08:00
|
|
|
|
var info = new ProcessStartInfo
|
|
|
|
|
{
|
2016-08-21 00:08:16 +08:00
|
|
|
|
FileName = p.FullPath,
|
|
|
|
|
WorkingDirectory = p.ParentDirectory,
|
2016-08-18 08:16:40 +08:00
|
|
|
|
Verb = "runas"
|
|
|
|
|
};
|
|
|
|
|
var hide = StartProcess(info);
|
|
|
|
|
return hide;
|
|
|
|
|
},
|
|
|
|
|
IcoPath = "Images/cmd.png"
|
2015-02-07 23:49:46 +08:00
|
|
|
|
},
|
2016-08-18 08:16:40 +08:00
|
|
|
|
new Result
|
2015-02-07 23:49:46 +08:00
|
|
|
|
{
|
2016-08-18 08:16:40 +08:00
|
|
|
|
Title = _context.API.GetTranslation("wox_plugin_program_open_containing_folder"),
|
|
|
|
|
Action = _ =>
|
|
|
|
|
{
|
2016-08-21 00:08:16 +08:00
|
|
|
|
var hide = StartProcess(new ProcessStartInfo(p.ParentDirectory));
|
2016-08-18 08:16:40 +08:00
|
|
|
|
return hide;
|
|
|
|
|
},
|
|
|
|
|
IcoPath = "Images/folder.png"
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
return contextMenus;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
return new List<Result>();
|
|
|
|
|
}
|
2015-02-07 23:49:46 +08:00
|
|
|
|
}
|
2016-03-27 09:49:05 +08:00
|
|
|
|
|
|
|
|
|
private bool StartProcess(ProcessStartInfo info)
|
|
|
|
|
{
|
|
|
|
|
bool hide;
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
Process.Start(info);
|
|
|
|
|
hide = true;
|
|
|
|
|
}
|
|
|
|
|
catch (Win32Exception)
|
|
|
|
|
{
|
|
|
|
|
var name = $"Plugin: {_context.CurrentPluginMetadata.Name}";
|
|
|
|
|
var message = "Can't open this file";
|
|
|
|
|
_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
|
|
|
|
}
|