wabbajack/Wabbajack.Compiler/CompilationSteps/IgnoreEndsWith.cs

26 lines
752 B
C#
Raw Normal View History

using System.Threading.Tasks;
2021-09-27 12:42:46 +00:00
using Wabbajack.DTOs;
using Wabbajack.DTOs.Directives;
using Wabbajack.Paths;
2021-10-23 16:51:17 +00:00
namespace Wabbajack.Compiler.CompilationSteps;
public class IgnoreFilename : ACompilationStep
{
2022-08-22 15:34:19 +00:00
private readonly string _postfix;
2021-10-23 16:51:17 +00:00
private readonly string _reason;
2021-10-23 16:51:17 +00:00
public IgnoreFilename(ACompiler compiler, RelativePath postfix) : base(compiler)
{
2022-08-22 15:34:19 +00:00
_postfix = postfix.FileName.ToString();
2021-10-23 16:51:17 +00:00
_reason = $"Ignored because path ends with {postfix}";
}
2021-10-23 16:51:17 +00:00
public override async ValueTask<Directive?> Run(RawSourceFile source)
{
2022-08-22 15:34:19 +00:00
if (!source.Path.EndsWith(_postfix)) return null;
2021-10-23 16:51:17 +00:00
var result = source.EvolveTo<IgnoredDirectly>();
result.Reason = _reason;
return result;
}
2021-10-23 16:51:17 +00:00
}