wabbajack/Wabbajack.Compiler/CompilationSteps/IgnoreEndsWith.cs

26 lines
748 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
{
2021-10-23 16:51:17 +00:00
private readonly RelativePath _postfix;
private readonly string _reason;
2021-10-23 16:51:17 +00:00
public IgnoreFilename(ACompiler compiler, RelativePath postfix) : base(compiler)
{
_postfix = postfix;
_reason = $"Ignored because path ends with {postfix}";
}
2021-10-23 16:51:17 +00:00
public override async ValueTask<Directive?> Run(RawSourceFile source)
{
if (source.Path.FileName != _postfix.FileName) return null;
var result = source.EvolveTo<IgnoredDirectly>();
result.Reason = _reason;
return result;
}
2021-10-23 16:51:17 +00:00
}