2024-05-06 23:47:15 +08:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
using System.Diagnostics;
|
|
|
|
|
using System.IO;
|
2024-07-03 22:00:35 +08:00
|
|
|
|
using System.Runtime.InteropServices;
|
2025-01-25 00:53:35 +08:00
|
|
|
|
using System.Threading;
|
2024-05-06 23:47:15 +08:00
|
|
|
|
using Community.PowerToys.Run.Plugin.Everything.Properties;
|
2025-01-25 00:53:35 +08:00
|
|
|
|
using Community.PowerToys.Run.Plugin.Everything.SearchHelper;
|
|
|
|
|
using NLog;
|
2024-05-06 23:47:15 +08:00
|
|
|
|
using Wox.Plugin;
|
2024-11-11 22:46:32 +08:00
|
|
|
|
using Wox.Plugin.Logger;
|
2024-05-06 23:47:15 +08:00
|
|
|
|
using static Community.PowerToys.Run.Plugin.Everything.Interop.NativeMethods;
|
2022-12-11 02:20:09 +08:00
|
|
|
|
|
2023-01-07 02:20:22 +08:00
|
|
|
|
namespace Community.PowerToys.Run.Plugin.Everything
|
|
|
|
|
{
|
2023-03-30 00:22:49 +08:00
|
|
|
|
internal sealed class Everything
|
2022-12-11 02:20:09 +08:00
|
|
|
|
{
|
2024-07-05 00:48:19 +08:00
|
|
|
|
private string exe = string.Empty;
|
2022-12-11 02:20:09 +08:00
|
|
|
|
internal Everything(Settings setting)
|
|
|
|
|
{
|
2024-07-03 22:00:35 +08:00
|
|
|
|
Everything_SetRequestFlags(Request.FILE_NAME | Request.PATH);
|
2024-05-25 21:11:41 +08:00
|
|
|
|
UpdateSettings(setting);
|
2023-10-04 10:13:24 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
internal void UpdateSettings(Settings setting)
|
|
|
|
|
{
|
|
|
|
|
Everything_SetSort(setting.Sort);
|
2022-12-11 02:20:09 +08:00
|
|
|
|
Everything_SetMax(setting.Max);
|
2023-10-04 10:13:24 +08:00
|
|
|
|
Everything_SetMatchPath(setting.MatchPath);
|
|
|
|
|
Everything_SetRegex(setting.RegEx);
|
2024-07-05 00:48:19 +08:00
|
|
|
|
if (!string.IsNullOrEmpty(setting.EverythingPath))
|
|
|
|
|
{
|
|
|
|
|
if (setting.EverythingPath != exe && Path.Exists(setting.EverythingPath))
|
|
|
|
|
exe = setting.EverythingPath;
|
|
|
|
|
}
|
|
|
|
|
else if (string.IsNullOrEmpty(exe))
|
|
|
|
|
{
|
|
|
|
|
exe = Path.Exists("C:\\Program Files\\Everything 1.5a\\Everything64.exe") ? "C:\\Program Files\\Everything 1.5a\\Everything64.exe" :
|
2024-11-11 22:46:32 +08:00
|
|
|
|
(Path.Exists("C:\\Program Files\\Everything\\Everything.exe") ? "C:\\Program Files\\Everything\\Everything.exe" :
|
|
|
|
|
(Path.Exists("C:\\Program Files (x86)\\Everything 1.5a\\Everything.exe") ? "C:\\Program Files (x86)\\Everything 1.5a\\Everything.exe" :
|
|
|
|
|
(Path.Exists("C:\\Program Files (x86)\\Everything\\Everything.exe") ? "C:\\Program Files (x86)\\Everything\\Everything.exe" : string.Empty)));
|
2024-07-05 00:48:19 +08:00
|
|
|
|
}
|
2022-12-11 02:20:09 +08:00
|
|
|
|
}
|
|
|
|
|
|
2025-01-25 00:53:35 +08:00
|
|
|
|
internal IEnumerable<Result> Query(string query, Settings setting, CancellationToken token)
|
2022-12-11 02:20:09 +08:00
|
|
|
|
{
|
2025-01-25 00:53:35 +08:00
|
|
|
|
if (setting.LoggingLevel <= LogLevel.Debug)
|
2024-05-25 21:11:41 +08:00
|
|
|
|
{
|
2025-01-25 00:53:35 +08:00
|
|
|
|
Log.Info(
|
|
|
|
|
$"EPT:\nNew Query: {query}\n" +
|
|
|
|
|
$"Prefix {setting.Prefix}\n" +
|
|
|
|
|
$"Sort {(int)setting.Sort}_{Everything_GetSort()}\n" +
|
|
|
|
|
$"Max {setting.Max}_{Everything_GetMax()}\n" +
|
|
|
|
|
$"Match Path {setting.MatchPath}_{Everything_GetMatchPath()}\n" +
|
|
|
|
|
$"Regex {setting.RegEx}_{Everything_GetRegex()}",
|
|
|
|
|
GetType());
|
2024-05-25 21:11:41 +08:00
|
|
|
|
}
|
|
|
|
|
|
2024-12-18 11:35:32 +08:00
|
|
|
|
string orgqry = query;
|
|
|
|
|
|
2024-07-03 22:00:35 +08:00
|
|
|
|
if (!string.IsNullOrEmpty(setting.Prefix))
|
|
|
|
|
query = setting.Prefix + query;
|
|
|
|
|
|
2024-01-11 00:33:19 +08:00
|
|
|
|
if (setting.EnvVar && orgqry.Contains('%'))
|
|
|
|
|
{
|
|
|
|
|
query = Environment.ExpandEnvironmentVariables(query).Replace(';', '|');
|
2025-01-25 00:53:35 +08:00
|
|
|
|
if (setting.LoggingLevel <= LogLevel.Debug)
|
|
|
|
|
Log.Info($"EPT:EnvVariable\n{query}", GetType());
|
2024-01-11 00:33:19 +08:00
|
|
|
|
}
|
|
|
|
|
|
2025-01-25 00:53:35 +08:00
|
|
|
|
if (setting.Is1_4 && orgqry.Contains(':'))
|
2022-12-11 02:20:09 +08:00
|
|
|
|
{
|
2024-01-13 11:24:37 +08:00
|
|
|
|
foreach (var kv in setting.Filters)
|
|
|
|
|
{
|
|
|
|
|
if (query.Contains(kv.Key, StringComparison.OrdinalIgnoreCase))
|
|
|
|
|
{
|
2025-01-25 00:53:35 +08:00
|
|
|
|
query = query.Replace(kv.Key, string.Empty).Trim() + $" {kv.Value}";
|
|
|
|
|
if (setting.LoggingLevel <= LogLevel.Debug)
|
|
|
|
|
Log.Info($"EPT: Contains Filter: {kv.Key}\n{query}", GetType());
|
2024-01-13 11:24:37 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
2022-12-11 02:20:09 +08:00
|
|
|
|
}
|
|
|
|
|
|
2025-01-25 00:53:35 +08:00
|
|
|
|
token.ThrowIfCancellationRequested();
|
2024-04-18 17:04:25 +08:00
|
|
|
|
Everything_SetSearchW(query);
|
2022-12-11 02:20:09 +08:00
|
|
|
|
if (!Everything_QueryW(true))
|
|
|
|
|
{
|
2025-01-25 00:53:35 +08:00
|
|
|
|
if (setting.LoggingLevel < LogLevel.Error)
|
|
|
|
|
Log.Warn($"EPT: Unable to Query ({Everything_GetLastError()})", GetType());
|
2022-12-11 02:20:09 +08:00
|
|
|
|
throw new Win32Exception("Unable to Query");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
uint resultCount = Everything_GetNumResults();
|
2025-01-25 00:53:35 +08:00
|
|
|
|
if (setting.LoggingLevel <= LogLevel.Debug)
|
|
|
|
|
Log.Info($"EPT: Results = {resultCount}", GetType());
|
2022-12-11 02:20:09 +08:00
|
|
|
|
|
2025-01-25 00:53:35 +08:00
|
|
|
|
token.ThrowIfCancellationRequested();
|
2024-07-20 19:27:04 +08:00
|
|
|
|
bool showMore = setting.ShowMore && !string.IsNullOrEmpty(exe) && resultCount == setting.Max;
|
2024-07-05 00:48:19 +08:00
|
|
|
|
if (showMore)
|
|
|
|
|
{
|
|
|
|
|
var more = new Result()
|
|
|
|
|
{
|
|
|
|
|
Title = Resources.more_results,
|
|
|
|
|
SubTitle = Resources.more_results_Subtitle,
|
|
|
|
|
IcoPath = "Images/Everything.light.png",
|
|
|
|
|
Action = e =>
|
|
|
|
|
{
|
|
|
|
|
using var process = new Process();
|
|
|
|
|
process.StartInfo.FileName = exe;
|
|
|
|
|
process.StartInfo.UseShellExecute = true;
|
2024-11-11 22:46:32 +08:00
|
|
|
|
process.StartInfo.Arguments = $@"-s ""{query.Replace("\"", "\"\"\"")}""";
|
2024-07-05 00:48:19 +08:00
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
process.Start();
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
catch (Win32Exception)
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
Score = int.MinValue,
|
|
|
|
|
QueryTextDisplay = orgqry,
|
|
|
|
|
};
|
|
|
|
|
yield return more;
|
|
|
|
|
}
|
|
|
|
|
|
2022-12-11 02:20:09 +08:00
|
|
|
|
for (uint i = 0; i < resultCount; i++)
|
|
|
|
|
{
|
2025-01-25 00:53:35 +08:00
|
|
|
|
token.ThrowIfCancellationRequested();
|
2024-07-03 22:00:35 +08:00
|
|
|
|
string name = Marshal.PtrToStringUni(Everything_GetResultFileNameW(i));
|
|
|
|
|
string path = Marshal.PtrToStringUni(Everything_GetResultPathW(i));
|
2025-01-25 00:53:35 +08:00
|
|
|
|
if (setting.LoggingLevel < LogLevel.Error && (name == null || path == null))
|
2024-11-11 22:46:32 +08:00
|
|
|
|
{
|
2025-01-25 00:53:35 +08:00
|
|
|
|
Log.Warn($"EPT: Result {i} is null for {name} and/or {path}, query: {query}", GetType());
|
2024-11-11 22:46:32 +08:00
|
|
|
|
continue;
|
|
|
|
|
}
|
2024-12-18 11:35:32 +08:00
|
|
|
|
|
2024-07-03 22:00:35 +08:00
|
|
|
|
string fullPath = Path.Combine(path, name);
|
2025-01-25 00:53:35 +08:00
|
|
|
|
|
2024-07-03 22:00:35 +08:00
|
|
|
|
bool isFolder = Everything_IsFolderResult(i);
|
|
|
|
|
if (isFolder)
|
|
|
|
|
path = fullPath;
|
2025-01-25 00:53:35 +08:00
|
|
|
|
|
|
|
|
|
if (setting.LoggingLevel <= LogLevel.Debug)
|
|
|
|
|
{
|
|
|
|
|
Log.Info(
|
|
|
|
|
$"=====EPT: RESULT #{i} =====\n" +
|
|
|
|
|
$"Folder : {isFolder}\n" +
|
|
|
|
|
$"File Path : ({path.Length}) {(setting.LoggingLevel == LogLevel.Trace ? path : string.Empty)}\n" +
|
|
|
|
|
$"File Name : ({name.Length}) {(setting.LoggingLevel == LogLevel.Trace ? name : string.Empty)}\n" +
|
|
|
|
|
$"Ext : {Path.GetExtension(fullPath)}",
|
|
|
|
|
GetType());
|
|
|
|
|
}
|
|
|
|
|
|
2022-12-11 02:20:09 +08:00
|
|
|
|
var r = new Result()
|
|
|
|
|
{
|
|
|
|
|
Title = name,
|
2022-12-11 16:23:48 +08:00
|
|
|
|
ToolTipData = new ToolTipData(name, fullPath),
|
2022-12-11 02:20:09 +08:00
|
|
|
|
SubTitle = Resources.plugin_name + ": " + fullPath,
|
|
|
|
|
|
|
|
|
|
IcoPath = isFolder ? "Images/folder.png" : (setting.Preview ?
|
2024-04-18 17:04:25 +08:00
|
|
|
|
fullPath : "Images/file.png"),
|
2022-12-11 02:20:09 +08:00
|
|
|
|
ContextData = new SearchResult()
|
|
|
|
|
{
|
|
|
|
|
Path = fullPath,
|
|
|
|
|
Title = name,
|
|
|
|
|
File = !isFolder,
|
|
|
|
|
},
|
|
|
|
|
Action = e =>
|
|
|
|
|
{
|
|
|
|
|
using var process = new Process();
|
|
|
|
|
process.StartInfo.FileName = fullPath;
|
|
|
|
|
process.StartInfo.WorkingDirectory = path;
|
|
|
|
|
process.StartInfo.UseShellExecute = true;
|
|
|
|
|
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
process.Start();
|
2025-01-25 00:53:35 +08:00
|
|
|
|
_ = Everything_IncRunCountFromFileNameW(fullPath);
|
2022-12-11 02:20:09 +08:00
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
catch (Win32Exception)
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
QueryTextDisplay = setting.QueryText ? (isFolder ? path : name) : orgqry,
|
|
|
|
|
};
|
|
|
|
|
yield return r;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|