mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-14 11:39:16 +08:00
2e4a1680b9
1. Parallel linq 2. remove depth 3. fix #257
212 lines
6.8 KiB
C#
212 lines
6.8 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Diagnostics;
|
|
using System.Linq;
|
|
using System.Windows;
|
|
using System.Windows.Controls;
|
|
using Wox.Infrastructure;
|
|
using Wox.Infrastructure.Logger;
|
|
using Wox.Infrastructure.Storage;
|
|
using Wox.Plugin.Program.Programs;
|
|
using Stopwatch = Wox.Infrastructure.Stopwatch;
|
|
|
|
namespace Wox.Plugin.Program
|
|
{
|
|
public class Main : ISettingProvider, IPlugin, IPluginI18n, IContextMenu, ISavable
|
|
{
|
|
private static Win32[] _win32s = { };
|
|
private static UWP[] _uwps = { };
|
|
|
|
private PluginInitContext _context;
|
|
|
|
private static ProgramIndexCache _cache;
|
|
private static BinaryStorage<ProgramIndexCache> _cacheStorage;
|
|
private static Settings _settings;
|
|
private readonly PluginJsonStorage<Settings> _settingsStorage;
|
|
|
|
public Main()
|
|
{
|
|
_settingsStorage = new PluginJsonStorage<Settings>();
|
|
_settings = _settingsStorage.Load();
|
|
|
|
Stopwatch.Debug("Preload programs", () =>
|
|
{
|
|
_cacheStorage = new BinaryStorage<ProgramIndexCache>();
|
|
_cache = _cacheStorage.Load();
|
|
_win32s = _cache.Programs;
|
|
});
|
|
Log.Info($"Preload {_win32s.Length} programs from cache");
|
|
Stopwatch.Debug("Program Index", IndexPrograms);
|
|
}
|
|
|
|
public void Save()
|
|
{
|
|
_settingsStorage.Save();
|
|
_cache.Programs = _win32s;
|
|
_cacheStorage.Save();
|
|
}
|
|
|
|
public List<Result> Query(Query query)
|
|
{
|
|
var results1 = _win32s.AsParallel()
|
|
.Where(p => Score(p, query.Search) > 0)
|
|
.Select(ResultFromProgram);
|
|
|
|
var results2 = _uwps.AsParallel()
|
|
.Where(u => Score(u, query.Search) > 0)
|
|
.Select(ResultFromUWPApp);
|
|
var result = results1.Concat(results2).ToList();
|
|
|
|
return result;
|
|
}
|
|
|
|
public Result ResultFromProgram(Win32 p)
|
|
{
|
|
var result = new Result
|
|
{
|
|
Title = p.FullName,
|
|
SubTitle = p.FullPath,
|
|
IcoPath = p.IcoPath,
|
|
Score = p.Score,
|
|
ContextData = p,
|
|
Action = e =>
|
|
{
|
|
var info = new ProcessStartInfo
|
|
{
|
|
FileName = p.FullPath,
|
|
WorkingDirectory = p.ParentDirectory
|
|
};
|
|
var hide = StartProcess(info);
|
|
return hide;
|
|
}
|
|
};
|
|
return result;
|
|
}
|
|
public Result ResultFromUWPApp(UWP uwp)
|
|
{
|
|
var app = uwp.Apps[0];
|
|
var result = new Result
|
|
{
|
|
Title = app.DisplayName,
|
|
SubTitle = $"Windows Store app: {app.Description}",
|
|
Icon = app.Logo,
|
|
Score = uwp.Score,
|
|
ContextData = app,
|
|
Action = e =>
|
|
{
|
|
app.Launch();
|
|
return true;
|
|
}
|
|
};
|
|
return result;
|
|
}
|
|
|
|
|
|
private int Score(Win32 program, string query)
|
|
{
|
|
var score1 = StringMatcher.Score(program.FullName, query);
|
|
var score2 = StringMatcher.ScoreForPinyin(program.FullName, query);
|
|
var score3 = StringMatcher.Score(program.ExecutableName, query);
|
|
var score = new[] { score1, score2, score3 }.Max();
|
|
program.Score = score;
|
|
return score;
|
|
}
|
|
|
|
private int Score(UWP app, string query)
|
|
{
|
|
var score1 = StringMatcher.Score(app.Apps[0].DisplayName, query);
|
|
var score2 = StringMatcher.ScoreForPinyin(app.Apps[0].DisplayName, query);
|
|
var score3 = StringMatcher.Score(app.Apps[0].Description, query);
|
|
var score = new[] { score1, score2, score3 }.Max();
|
|
app.Score = score;
|
|
return score;
|
|
}
|
|
|
|
public void Init(PluginInitContext context)
|
|
{
|
|
_context = context;
|
|
}
|
|
|
|
public static void IndexPrograms()
|
|
{
|
|
_win32s = Win32.All(_settings);
|
|
_uwps = UWP.All();
|
|
}
|
|
|
|
public Control CreateSettingPanel()
|
|
{
|
|
return new ProgramSetting(_context, _settings);
|
|
}
|
|
|
|
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)
|
|
{
|
|
Win32 p = selectedResult.ContextData as Win32;
|
|
if (p != null)
|
|
{
|
|
List<Result> contextMenus = new List<Result>
|
|
{
|
|
new Result
|
|
{
|
|
Title = _context.API.GetTranslation("wox_plugin_program_run_as_administrator"),
|
|
Action = _ =>
|
|
{
|
|
var info = new ProcessStartInfo
|
|
{
|
|
FileName = p.FullPath,
|
|
WorkingDirectory = p.ParentDirectory,
|
|
Verb = "runas"
|
|
};
|
|
var hide = StartProcess(info);
|
|
return hide;
|
|
},
|
|
IcoPath = "Images/cmd.png"
|
|
},
|
|
new Result
|
|
{
|
|
Title = _context.API.GetTranslation("wox_plugin_program_open_containing_folder"),
|
|
Action = _ =>
|
|
{
|
|
var hide = StartProcess(new ProcessStartInfo(p.ParentDirectory));
|
|
return hide;
|
|
},
|
|
IcoPath = "Images/folder.png"
|
|
}
|
|
};
|
|
return contextMenus;
|
|
}
|
|
else
|
|
{
|
|
return new List<Result>();
|
|
}
|
|
}
|
|
|
|
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;
|
|
}
|
|
}
|
|
} |