wabbajack/Wabbajack.Compiler/CompilationSteps/IgnoreRegex.cs

28 lines
840 B
C#
Raw Normal View History

using System.Text.RegularExpressions;
using System.Threading.Tasks;
2021-09-27 12:42:46 +00:00
using Wabbajack.DTOs;
using Wabbajack.DTOs.Directives;
2021-10-23 16:51:17 +00:00
namespace Wabbajack.Compiler.CompilationSteps;
public class IgnoreRegex : ACompilationStep
{
2021-10-23 16:51:17 +00:00
private readonly string _pattern;
private readonly string _reason;
private readonly Regex _regex;
2021-10-23 16:51:17 +00:00
public IgnoreRegex(ACompiler compiler, string pattern) : base(compiler)
{
_pattern = pattern;
_reason = $"Ignored because path matches regex {pattern}";
_regex = new Regex(pattern, RegexOptions.Compiled);
}
2021-10-23 16:51:17 +00:00
public override async ValueTask<Directive?> Run(RawSourceFile source)
{
if (!_regex.IsMatch((string) source.Path)) return null;
var result = source.EvolveTo<IgnoredDirectly>();
result.Reason = _reason;
return result;
}
2021-10-23 16:51:17 +00:00
}