wabbajack/Wabbajack.Compiler/CompilationSteps/IncludeRegex.cs

30 lines
903 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;
using Wabbajack.Paths.IO;
2021-09-27 12:42:46 +00:00
namespace Wabbajack.Compiler.CompilationSteps
{
public class IncludeRegex : ACompilationStep
{
private readonly string _pattern;
private readonly Regex _regex;
public IncludeRegex(ACompiler compiler, string pattern) : base(compiler)
{
_pattern = pattern;
_regex = new Regex(pattern, RegexOptions.Compiled);
}
public override async ValueTask<Directive?> Run(RawSourceFile source)
{
2020-03-25 12:47:25 +00:00
if (!_regex.IsMatch((string)source.Path)) return null;
var result = source.EvolveTo<InlineFile>();
2020-03-25 12:47:25 +00:00
result.SourceDataID = await _compiler.IncludeFile(await source.AbsolutePath.ReadAllBytesAsync());
return result;
}
}
}