mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
29 lines
858 B
C#
29 lines
858 B
C#
using System.Text.RegularExpressions;
|
|
using System.Threading.Tasks;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace Wabbajack.Lib.CompilationSteps
|
|
{
|
|
public class IgnoreRegex : ACompilationStep
|
|
{
|
|
private readonly string _reason;
|
|
private readonly Regex _regex;
|
|
private readonly string _pattern;
|
|
|
|
public IgnoreRegex(ACompiler compiler, string pattern) : base(compiler)
|
|
{
|
|
_pattern = pattern;
|
|
_reason = $"Ignored because path matches regex {pattern}";
|
|
_regex = new Regex(pattern);
|
|
}
|
|
|
|
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;
|
|
}
|
|
}
|
|
}
|