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

230 lines
8.6 KiB
C#
Raw Normal View History

using System;
2014-01-04 20:26:13 +08:00
using System.Collections.Generic;
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;
2015-01-06 18:28:23 +08:00
using System.Windows;
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;
2016-01-06 14:45:08 +08:00
using Wox.Plugin.Program.ProgramSources;
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
{
public class Programs : ISettingProvider, IPlugin, IPluginI18n, IContextMenu
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>();
2016-01-07 05:34:42 +08:00
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)},
2016-01-07 05:34:42 +08:00
{"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);
var results = programs.Where(p => MatchProgram(p, fuzzyMather)).
Select(ScoreFilter).
OrderByDescending(p => p.Score)
2016-01-07 05:34:42 +08:00
.Select(c => new Result
{
Title = c.Title,
SubTitle = c.ExecutePath,
IcoPath = c.IcoPath,
Score = c.Score,
ContextData = c,
2016-01-07 05:34:42 +08:00
Action = e =>
{
context.API.HideApp();
Process.Start(c.ExecutePath);
return true;
}
}).ToList();
return results;
2014-01-04 20:26:13 +08:00
}
private bool MatchProgram(Program program, FuzzyMatcher matcher)
2014-01-05 17:56:02 +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();
return program.Score > 0;
2014-01-05 17:56:02 +08:00
}
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;
Stopwatch.Debug("Preload programs", () =>
2015-01-04 23:08:26 +08:00
{
programs = ProgramCacheStorage.Instance.Programs;
});
Log.Info($"Preload {programs.Count} programs from cache");
Stopwatch.Debug("Program Index", IndexPrograms);
}
2015-02-04 23:16:41 +08:00
void API_ResultItemDropEvent(Result result, IDataObject dropObject, DragEventArgs e)
2015-02-02 23:28:40 +08:00
{
2015-02-04 23:16:41 +08:00
e.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);
2014-12-16 21:36:48 +08:00
}
2014-12-16 21:36:48 +08:00
sources.Clear();
foreach (var source in programSources.Where(o => o.Enabled))
2014-12-16 21:36:48 +08:00
{
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>();
2016-01-07 05:34:42 +08:00
list.Add(new ProgramSource
{
BonusPoints = 0,
Enabled = ProgramStorage.Instance.EnableStartMenuSource,
Type = "CommonStartMenuProgramSource"
});
2016-01-07 05:34:42 +08:00
list.Add(new ProgramSource
{
BonusPoints = 0,
Enabled = ProgramStorage.Instance.EnableStartMenuSource,
Type = "UserStartMenuProgramSource"
});
2016-01-07 05:34:42 +08:00
list.Add(new ProgramSource
{
BonusPoints = -10,
Enabled = ProgramStorage.Instance.EnableRegistrySource,
Type = "AppPathsProgramSource"
});
return list;
2014-01-04 20:26:13 +08:00
}
private Program ScoreFilter(Program p)
2014-01-05 17:56:02 +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;
return p;
2014-01-05 17:56:02 +08:00
}
#region ISettingProvider Members
2016-01-07 05:34:42 +08:00
public 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");
}
2015-02-07 20:17:49 +08:00
public string GetTranslatedPluginTitle()
{
return context.API.GetTranslation("wox_plugin_program_plugin_name");
}
public string GetTranslatedPluginDescription()
{
return context.API.GetTranslation("wox_plugin_program_plugin_description");
}
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>
{
2016-01-07 05:34:42 +08:00
new Result
{
Title = context.API.GetTranslation("wox_plugin_program_run_as_administrator"),
Action = _ =>
{
context.API.HideApp();
Process.Start( new ProcessStartInfo
{
FileName = p.ExecutePath,
Verb = "runas"
});
return true;
},
IcoPath = "Images/cmd.png"
},
2016-01-07 05:34:42 +08:00
new Result
{
Title = context.API.GetTranslation("wox_plugin_program_open_containing_folder"),
Action = _ =>
{
context.API.HideApp();
//get parent folder
var folderPath = Directory.GetParent(p.ExecutePath).FullName;
//open the folder
Process.Start(folderPath);
return true;
},
IcoPath = "Images/folder.png"
}
};
return contextMenus;
}
2014-01-04 20:26:13 +08:00
}
}