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;
|
2015-01-06 18:28:23 +08:00
|
|
|
|
using System.IO;
|
2014-01-04 20:26:13 +08:00
|
|
|
|
using System.Linq;
|
2014-08-10 22:22:54 +08:00
|
|
|
|
using System.Reflection;
|
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-01-06 14:45:08 +08:00
|
|
|
|
using Wox.Plugin.Program.ProgramSources;
|
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
|
|
|
|
{
|
2015-02-07 23:49:46 +08:00
|
|
|
|
public class Programs : ISettingProvider, IPlugin, IPluginI18n, IContextMenu
|
2014-01-04 20:26:13 +08:00
|
|
|
|
{
|
2014-08-10 22:22:54 +08:00
|
|
|
|
private static object lockObject = new object();
|
2016-04-23 06:03:32 +08:00
|
|
|
|
private static List<Program> _programs = new List<Program>();
|
|
|
|
|
private static List<IProgramSource> _sources = new List<IProgramSource>();
|
|
|
|
|
private static readonly Dictionary<string, Type> SourceTypes = new Dictionary<string, Type>
|
2016-01-07 05:34:42 +08:00
|
|
|
|
{
|
2014-03-21 04:31:42 +08:00
|
|
|
|
{"FileSystemProgramSource", typeof(FileSystemProgramSource)},
|
2014-03-19 04:05:27 +08:00
|
|
|
|
{"CommonStartMenuProgramSource", typeof(CommonStartMenuProgramSource)},
|
|
|
|
|
{"UserStartMenuProgramSource", typeof(UserStartMenuProgramSource)},
|
2016-01-07 05:34:42 +08:00
|
|
|
|
{"AppPathsProgramSource", typeof(AppPathsProgramSource)}
|
2014-03-19 04:05:27 +08:00
|
|
|
|
};
|
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-21 08:53:21 +08:00
|
|
|
|
private readonly PluginSettingsStorage<Settings> _settingsStorage;
|
|
|
|
|
|
|
|
|
|
public Programs()
|
|
|
|
|
{
|
|
|
|
|
_settingsStorage = new PluginSettingsStorage<Settings>();
|
|
|
|
|
_settings = _settingsStorage.Load();
|
|
|
|
|
_cacheStorage = new BinaryStorage<ProgramIndexCache>();
|
|
|
|
|
_cache = _cacheStorage.Load();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
~Programs()
|
|
|
|
|
{
|
|
|
|
|
_settingsStorage.Save();
|
|
|
|
|
_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
|
|
|
|
{
|
2015-11-08 01:32:58 +08:00
|
|
|
|
|
2015-01-26 17:46:55 +08:00
|
|
|
|
var fuzzyMather = FuzzyMatcher.Create(query.Search);
|
2016-04-23 06:03:32 +08:00
|
|
|
|
var results = _programs.AsParallel()
|
|
|
|
|
.Where(p => MatchProgram(p, fuzzyMather))
|
|
|
|
|
.Select(ScoreFilter)
|
|
|
|
|
.OrderByDescending(p => p.Score)
|
2016-01-07 05:34:42 +08:00
|
|
|
|
.Select(c => new Result
|
2015-11-11 14:20:52 +08:00
|
|
|
|
{
|
|
|
|
|
Title = c.Title,
|
|
|
|
|
SubTitle = c.ExecutePath,
|
|
|
|
|
IcoPath = c.IcoPath,
|
|
|
|
|
Score = c.Score,
|
|
|
|
|
ContextData = c,
|
2016-01-07 05:34:42 +08:00
|
|
|
|
Action = e =>
|
2015-11-11 14:20:52 +08:00
|
|
|
|
{
|
2016-03-27 09:49:05 +08:00
|
|
|
|
var hide = StartProcess(new ProcessStartInfo(c.ExecutePath));
|
|
|
|
|
return hide;
|
2015-11-11 14:20:52 +08:00
|
|
|
|
}
|
|
|
|
|
}).ToList();
|
|
|
|
|
return results;
|
2014-01-04 20:26:13 +08:00
|
|
|
|
}
|
|
|
|
|
|
2014-02-09 00:33:10 +08:00
|
|
|
|
private bool MatchProgram(Program program, FuzzyMatcher matcher)
|
2014-01-05 17:56:02 +08:00
|
|
|
|
{
|
2015-11-11 14:20:52 +08:00
|
|
|
|
var scores = new List<string> { program.Title, program.PinyinTitle, program.AbbrTitle, program.ExecuteName };
|
|
|
|
|
program.Score = scores.Select(s => matcher.Evaluate(s ?? string.Empty).Score).Max();
|
2016-01-02 14:59:06 +08:00
|
|
|
|
return program.Score > 0;
|
2014-01-05 17:56:02 +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 08:53:21 +08:00
|
|
|
|
_context = context;
|
2015-11-05 05:49:36 +08:00
|
|
|
|
Stopwatch.Debug("Preload programs", () =>
|
2015-01-04 23:08:26 +08:00
|
|
|
|
{
|
2016-04-23 06:03:32 +08:00
|
|
|
|
_programs = _cache.Programs;
|
2015-11-05 05:35:04 +08:00
|
|
|
|
});
|
2016-04-23 06:03:32 +08:00
|
|
|
|
Log.Info($"Preload {_programs.Count} programs from cache");
|
2016-04-21 08:53:21 +08:00
|
|
|
|
Stopwatch.Debug("Program Index", IndexPrograms);
|
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-04-23 06:03:32 +08:00
|
|
|
|
// todo why there is a lock??
|
2014-12-16 21:36:48 +08:00
|
|
|
|
lock (lockObject)
|
2014-03-19 04:05:27 +08:00
|
|
|
|
{
|
2016-04-23 06:03:32 +08:00
|
|
|
|
var sources = DefaultProgramSources();
|
2016-03-28 10:09:57 +08:00
|
|
|
|
if (_settings.ProgramSources != null &&
|
|
|
|
|
_settings.ProgramSources.Count(o => o.Enabled) > 0)
|
2014-08-10 22:22:54 +08:00
|
|
|
|
{
|
2016-04-23 06:03:32 +08:00
|
|
|
|
sources.AddRange(_settings.ProgramSources);
|
2014-12-16 21:36:48 +08:00
|
|
|
|
}
|
2016-04-23 06:03:32 +08:00
|
|
|
|
// happlebao todo: temp hack for program suffixes
|
|
|
|
|
sources.AsParallel().ForAll(s => { s.Suffixes = _settings.ProgramSuffixes; });
|
|
|
|
|
|
|
|
|
|
_sources = sources.AsParallel()
|
|
|
|
|
.Where(s => s.Enabled && SourceTypes.ContainsKey(s.Type))
|
|
|
|
|
.Select(s =>
|
|
|
|
|
{
|
|
|
|
|
var sourceClass = SourceTypes[s.Type];
|
|
|
|
|
var constructorInfo = sourceClass.GetConstructor(new[] { typeof(ProgramSource) });
|
|
|
|
|
var programSource = constructorInfo?.Invoke(new object[] { s }) as IProgramSource;
|
|
|
|
|
return programSource;
|
|
|
|
|
})
|
|
|
|
|
.Where(s => s != null).ToList();
|
|
|
|
|
|
|
|
|
|
_programs = _sources.AsParallel()
|
|
|
|
|
.SelectMany(s => s.LoadPrograms())
|
|
|
|
|
// filter duplicate program
|
|
|
|
|
.GroupBy(x => new { x.ExecutePath, x.ExecuteName })
|
|
|
|
|
.Select(g => g.First())
|
|
|
|
|
.ToList();
|
|
|
|
|
|
|
|
|
|
_cache.Programs = _programs;
|
2014-01-04 20:26:13 +08:00
|
|
|
|
}
|
2014-08-10 22:22:54 +08:00
|
|
|
|
}
|
2014-03-22 13:50:20 +08:00
|
|
|
|
|
2014-08-10 22:22:54 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Load program sources that wox always provide
|
|
|
|
|
/// </summary>
|
2016-04-23 06:03:32 +08:00
|
|
|
|
private static List<ProgramSource> DefaultProgramSources()
|
2014-08-10 22:22:54 +08:00
|
|
|
|
{
|
2016-04-23 06:03:32 +08:00
|
|
|
|
var list = new List<ProgramSource>
|
2014-08-10 22:22:54 +08:00
|
|
|
|
{
|
2016-04-23 06:03:32 +08:00
|
|
|
|
new ProgramSource
|
|
|
|
|
{
|
|
|
|
|
BonusPoints = 0,
|
|
|
|
|
Enabled = _settings.EnableStartMenuSource,
|
|
|
|
|
Type = "CommonStartMenuProgramSource"
|
|
|
|
|
},
|
|
|
|
|
new ProgramSource
|
|
|
|
|
{
|
|
|
|
|
BonusPoints = 0,
|
|
|
|
|
Enabled = _settings.EnableStartMenuSource,
|
|
|
|
|
Type = "UserStartMenuProgramSource"
|
|
|
|
|
},
|
|
|
|
|
new ProgramSource
|
|
|
|
|
{
|
|
|
|
|
BonusPoints = -10,
|
|
|
|
|
Enabled = _settings.EnableRegistrySource,
|
|
|
|
|
Type = "AppPathsProgramSource"
|
|
|
|
|
}
|
|
|
|
|
};
|
2014-08-10 22:22:54 +08:00
|
|
|
|
return list;
|
2014-01-04 20:26:13 +08:00
|
|
|
|
}
|
|
|
|
|
|
2015-11-11 14:20:52 +08:00
|
|
|
|
private Program ScoreFilter(Program p)
|
2014-01-05 17:56:02 +08:00
|
|
|
|
{
|
2014-03-19 02:06:51 +08:00
|
|
|
|
p.Score += p.Source.BonusPoints;
|
|
|
|
|
|
2014-01-05 17:56:02 +08:00
|
|
|
|
if (p.Title.Contains("启动") || p.Title.ToLower().Contains("start"))
|
2014-03-18 13:17:09 +08:00
|
|
|
|
p.Score += 10;
|
|
|
|
|
|
|
|
|
|
if (p.Title.Contains("帮助") || p.Title.ToLower().Contains("help") || p.Title.Contains("文档") || p.Title.ToLower().Contains("documentation"))
|
|
|
|
|
p.Score -= 10;
|
|
|
|
|
|
2014-01-05 17:56:02 +08:00
|
|
|
|
if (p.Title.Contains("卸载") || p.Title.ToLower().Contains("uninstall"))
|
2014-03-18 13:17:09 +08:00
|
|
|
|
p.Score -= 20;
|
2015-11-11 14:20:52 +08:00
|
|
|
|
return p;
|
2014-01-05 17:56:02 +08:00
|
|
|
|
}
|
2014-03-28 22:42:28 +08:00
|
|
|
|
|
2014-03-29 15:52:57 +08:00
|
|
|
|
#region ISettingProvider Members
|
|
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
2015-01-06 18:28:23 +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)
|
|
|
|
|
{
|
|
|
|
|
Program p = selectedResult.ContextData as Program;
|
2016-01-07 05:34:42 +08:00
|
|
|
|
List<Result> contextMenus = new List<Result>
|
2015-02-07 23:49:46 +08:00
|
|
|
|
{
|
2016-01-07 05:34:42 +08:00
|
|
|
|
new Result
|
2015-02-07 23:49:46 +08:00
|
|
|
|
{
|
2016-03-27 09:49:05 +08:00
|
|
|
|
Title = _context.API.GetTranslation("wox_plugin_program_run_as_administrator"),
|
2015-02-07 23:49:46 +08:00
|
|
|
|
Action = _ =>
|
|
|
|
|
{
|
2016-03-27 09:49:05 +08:00
|
|
|
|
var hide = StartProcess(new ProcessStartInfo
|
2016-01-04 07:18:51 +08:00
|
|
|
|
{
|
|
|
|
|
FileName = p.ExecutePath,
|
|
|
|
|
Verb = "runas"
|
|
|
|
|
});
|
2016-03-27 09:49:05 +08:00
|
|
|
|
return hide;
|
2015-02-07 23:49:46 +08:00
|
|
|
|
},
|
|
|
|
|
IcoPath = "Images/cmd.png"
|
|
|
|
|
},
|
2016-01-07 05:34:42 +08:00
|
|
|
|
new Result
|
2015-02-07 23:49:46 +08:00
|
|
|
|
{
|
2016-03-27 09:49:05 +08:00
|
|
|
|
Title = _context.API.GetTranslation("wox_plugin_program_open_containing_folder"),
|
2015-02-07 23:49:46 +08:00
|
|
|
|
Action = _ =>
|
|
|
|
|
{
|
|
|
|
|
//get parent folder
|
2016-01-04 07:18:51 +08:00
|
|
|
|
var folderPath = Directory.GetParent(p.ExecutePath).FullName;
|
2015-02-07 23:49:46 +08:00
|
|
|
|
//open the folder
|
2016-03-27 09:49:05 +08:00
|
|
|
|
var hide = StartProcess(new ProcessStartInfo(folderPath));
|
|
|
|
|
return hide;
|
2015-02-07 23:49:46 +08:00
|
|
|
|
},
|
|
|
|
|
IcoPath = "Images/folder.png"
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
return contextMenus;
|
|
|
|
|
}
|
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
|
|
|
|
}
|