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

227 lines
8.5 KiB
C#
Raw Normal View History

using System;
2014-01-04 20:26:13 +08:00
using System.Collections.Generic;
2015-01-04 23:08:26 +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;
using System.Reflection;
using System.Threading;
2015-01-06 18:28:23 +08:00
using System.Windows;
using Wox.Infrastructure;
using Wox.Plugin.Program.ProgramSources;
using IWshRuntimeLibrary;
2014-01-04 20:26:13 +08:00
namespace Wox.Plugin.Program
2014-01-04 20:26:13 +08:00
{
2015-01-06 18:28:23 +08:00
public class Programs : ISettingProvider, IPlugin, IPluginI18n
2014-01-04 20:26:13 +08:00
{
private static object lockObject = new object();
private static List<Program> programs = new List<Program>();
private static List<IProgramSource> sources = new List<IProgramSource>();
private static Dictionary<string, Type> SourceTypes = new Dictionary<string, Type>() {
2014-03-21 04:31:42 +08:00
{"FileSystemProgramSource", typeof(FileSystemProgramSource)},
{"CommonStartMenuProgramSource", typeof(CommonStartMenuProgramSource)},
{"UserStartMenuProgramSource", typeof(UserStartMenuProgramSource)},
{"AppPathsProgramSource", typeof(AppPathsProgramSource)},
};
private PluginInitContext context;
public List<Result> Query(Query query)
2014-01-04 20:26:13 +08:00
{
var fuzzyMather = FuzzyMatcher.Create(query.Search);
List<Program> returnList = programs.Where(o => MatchProgram(o, fuzzyMather)).ToList();
2014-01-05 17:56:02 +08:00
returnList.ForEach(ScoreFilter);
2014-03-02 11:29:14 +08:00
returnList = returnList.OrderByDescending(o => o.Score).ToList();
2014-01-05 17:56:02 +08:00
return returnList.Select(c => new Result()
2014-01-04 20:26:13 +08:00
{
Title = c.Title,
SubTitle = c.ExecutePath,
2014-01-04 20:26:13 +08:00
IcoPath = c.IcoPath,
2014-08-10 16:50:35 +08:00
Score = c.Score,
Action = (e) =>
2014-01-04 20:26:13 +08:00
{
2014-07-21 19:48:17 +08:00
context.API.HideApp();
context.API.ShellRun(c.ExecutePath);
2014-02-28 23:21:01 +08:00
return true;
2014-10-24 13:09:51 +08:00
},
ContextMenu = new List<Result>()
{
new Result()
{
2014-10-24 16:48:14 +08:00
Title = "Run As Administrator",
2014-10-24 13:09:51 +08:00
Action = _ =>
{
context.API.HideApp();
context.API.ShellRun(c.ExecutePath,true);
return true;
},
IcoPath = "Images/cmd.png"
},
new Result()
{
Title = "Open Containing Folder",
Action = _ =>
{
context.API.HideApp();
String Path=c.ExecutePath;
//check if shortcut
if (Path.EndsWith(".lnk"))
{
//get location of shortcut
Path = ResolveShortcut(Path);
}
//get parent folder
Path=System.IO.Directory.GetParent(Path).FullName;
//open the folder
context.API.ShellRun("explorer.exe "+Path,false);
return true;
},
IcoPath = "Images/folder.png"
2014-10-24 13:09:51 +08:00
}
2014-01-04 20:26:13 +08:00
}
}).ToList();
}
static string ResolveShortcut(string filePath)
{
// IWshRuntimeLibrary is in the COM library "Windows Script Host Object Model"
IWshRuntimeLibrary.WshShell shell = new IWshRuntimeLibrary.WshShell();
IWshRuntimeLibrary.IWshShortcut shortcut = (IWshRuntimeLibrary.IWshShortcut)shell.CreateShortcut(filePath);
return shortcut.TargetPath;
}
private bool MatchProgram(Program program, FuzzyMatcher matcher)
2014-01-05 17:56:02 +08:00
{
2014-03-24 21:14:10 +08:00
if ((program.Score = matcher.Evaluate(program.Title).Score) > 0) return true;
if ((program.Score = matcher.Evaluate(program.PinyinTitle).Score) > 0) return true;
2014-08-10 16:50:35 +08:00
if (program.AbbrTitle != null && (program.Score = matcher.Evaluate(program.AbbrTitle).Score) > 0) return true;
2014-03-24 21:14:10 +08:00
if (program.ExecuteName != null && (program.Score = matcher.Evaluate(program.ExecuteName).Score) > 0) return true;
2014-01-05 17:56:02 +08:00
return false;
}
public void Init(PluginInitContext context)
2014-01-04 20:26:13 +08:00
{
this.context = context;
2015-02-02 23:28:40 +08:00
this.context.API.ResultItemDropEvent += API_ResultItemDropEvent;
2015-01-04 23:08:26 +08:00
using (new Timeit("Preload programs"))
{
programs = ProgramCacheStorage.Instance.Programs;
}
2015-01-06 18:28:23 +08:00
Debug.WriteLine(string.Format("Preload {0} programs from cache", programs.Count), "Wox");
2014-12-16 21:36:48 +08:00
using (new Timeit("Program Index"))
{
2014-12-16 21:36:48 +08:00
IndexPrograms();
}
}
2015-02-03 18:32:16 +08:00
void API_ResultItemDropEvent(Result result, IDataObject dropObject, DragEventArgs args)
2015-02-02 23:28:40 +08:00
{
2015-02-03 18:32:16 +08:00
args.Handled = true;
2015-02-02 23:28:40 +08:00
}
public static void IndexPrograms()
{
2014-12-16 21:36:48 +08:00
lock (lockObject)
{
2014-12-16 21:36:48 +08:00
List<ProgramSource> programSources = new List<ProgramSource>();
programSources.AddRange(LoadDeaultProgramSources());
if (ProgramStorage.Instance.ProgramSources != null &&
ProgramStorage.Instance.ProgramSources.Count(o => o.Enabled) > 0)
{
programSources.AddRange(ProgramStorage.Instance.ProgramSources.Where(o => o.Enabled));
2014-12-16 21:36:48 +08:00
}
2014-12-16 21:36:48 +08:00
sources.Clear();
programSources.ForEach(source =>
{
Type sourceClass;
if (SourceTypes.TryGetValue(source.Type, out sourceClass))
{
2014-12-16 21:36:48 +08:00
ConstructorInfo constructorInfo = sourceClass.GetConstructor(new[] { typeof(ProgramSource) });
if (constructorInfo != null)
{
2014-12-16 21:36:48 +08:00
IProgramSource programSource =
constructorInfo.Invoke(new object[] { source }) as IProgramSource;
sources.Add(programSource);
}
2014-12-16 21:36:48 +08:00
}
});
2014-01-04 20:26:13 +08:00
2014-12-16 21:36:48 +08:00
var tempPrograms = new List<Program>();
foreach (var source in sources)
{
var list = source.LoadPrograms();
list.ForEach(o =>
{
2014-12-16 21:36:48 +08:00
o.Source = source;
});
tempPrograms.AddRange(list);
}
2014-12-16 21:36:48 +08:00
// filter duplicate program
programs = tempPrograms.GroupBy(x => new { x.ExecutePath, x.ExecuteName })
2014-12-16 21:36:48 +08:00
.Select(g => g.First()).ToList();
ProgramCacheStorage.Instance.Programs = programs;
2014-12-16 21:36:48 +08:00
ProgramCacheStorage.Instance.Save();
2014-01-04 20:26:13 +08:00
}
}
2014-03-22 13:50:20 +08:00
/// <summary>
/// Load program sources that wox always provide
/// </summary>
private static List<ProgramSource> LoadDeaultProgramSources()
{
var list = new List<ProgramSource>();
list.Add(new ProgramSource()
{
BonusPoints = 0,
Enabled = true,
Type = "CommonStartMenuProgramSource"
});
list.Add(new ProgramSource()
{
BonusPoints = 0,
Enabled = true,
Type = "UserStartMenuProgramSource"
});
list.Add(new ProgramSource()
{
BonusPoints = -10,
Enabled = true,
Type = "AppPathsProgramSource"
});
return list;
2014-01-04 20:26:13 +08:00
}
2014-01-05 17:56:02 +08:00
private void ScoreFilter(Program p)
{
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;
2014-01-05 17:56:02 +08:00
}
#region ISettingProvider Members
public System.Windows.Controls.Control CreateSettingPanel()
{
2015-01-06 23:24:11 +08:00
return new ProgramSetting(context);
}
#endregion
2015-01-06 18:28:23 +08:00
public string GetLanguagesFolder()
{
return Path.Combine(Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location), "Languages");
}
2014-01-04 20:26:13 +08:00
}
}