script-launcher/src/ScriptFinder.cs

50 lines
1.5 KiB
C#
Raw Normal View History

namespace ScriptLauncher;
2022-06-10 16:30:57 +02:00
internal readonly struct ScriptFinder
2022-06-10 16:30:57 +02:00
{
2024-10-25 11:04:07 +02:00
public IEnumerable<string> Extensions { get; }
2022-06-10 16:30:57 +02:00
public string RootDirectory { get; }
2024-10-25 11:04:07 +02:00
private int Depth { get; }
2022-06-10 16:30:57 +02:00
private readonly EnumerationOptions _options;
2024-10-25 11:04:07 +02:00
public ScriptFinder(IEnumerable<string> extensions, string directory, int depth)
2022-06-10 16:30:57 +02:00
{
2024-10-25 11:04:07 +02:00
Extensions = extensions.ToHashSet().Select(x => $".{x.TrimStart('.')}");
2022-06-10 16:30:57 +02:00
Depth = depth;
RootDirectory = directory;
_options = new EnumerationOptions
{
IgnoreInaccessible = true,
RecurseSubdirectories = Depth > 0,
MaxRecursionDepth = Depth,
};
}
private IEnumerable<FileInfo> GetScriptFilesWithExtension(string extension)
{
try
{
var filenames = Directory.GetFiles(RootDirectory, $"*{extension}", _options);
return filenames.Select(x => new FileInfo(x));
}
catch (UnauthorizedAccessException)
{
return Enumerable.Empty<FileInfo>();
}
}
public FileInfo[] GetScripts() =>
Extensions.Select(GetScriptFilesWithExtension).SelectMany(x => x).ToArray();
public IDictionary<DirectoryInfo, FileInfo[]> GetScriptsByDirectory() =>
Extensions
.Select(GetScriptFilesWithExtension)
.SelectMany(x => x)
.GroupBy(x => x.DirectoryName!)
.OrderBy(x => x.Key)
.ToDictionary(x => new DirectoryInfo(x.Key), x => x.ToArray());
2022-06-10 16:30:57 +02:00
}