2019-10-31 02:24:42 +00:00
|
|
|
|
using System.Text.RegularExpressions;
|
2019-12-04 01:26:26 +00:00
|
|
|
|
using System.Threading.Tasks;
|
2021-09-27 12:42:46 +00:00
|
|
|
|
using Wabbajack.DTOs;
|
|
|
|
|
using Wabbajack.DTOs.Directives;
|
|
|
|
|
using Wabbajack.Paths.IO;
|
2019-10-30 12:29:06 +00:00
|
|
|
|
|
2021-10-23 16:51:17 +00:00
|
|
|
|
namespace Wabbajack.Compiler.CompilationSteps;
|
|
|
|
|
|
|
|
|
|
public class IncludeRegex : ACompilationStep
|
2019-10-30 12:29:06 +00:00
|
|
|
|
{
|
2021-10-23 16:51:17 +00:00
|
|
|
|
private readonly string _pattern;
|
|
|
|
|
private readonly Regex _regex;
|
2019-10-30 12:29:06 +00:00
|
|
|
|
|
2021-10-23 16:51:17 +00:00
|
|
|
|
public IncludeRegex(ACompiler compiler, string pattern) : base(compiler)
|
|
|
|
|
{
|
|
|
|
|
_pattern = pattern;
|
2022-09-20 02:56:03 +00:00
|
|
|
|
_regex = new Regex(pattern, RegexOptions.Compiled | RegexOptions.IgnoreCase);
|
2021-10-23 16:51:17 +00:00
|
|
|
|
}
|
2019-10-30 12:29:06 +00:00
|
|
|
|
|
2021-10-23 16:51:17 +00:00
|
|
|
|
public override async ValueTask<Directive?> Run(RawSourceFile source)
|
|
|
|
|
{
|
|
|
|
|
if (!_regex.IsMatch((string) source.Path)) return null;
|
2019-10-31 02:24:42 +00:00
|
|
|
|
|
2021-10-23 16:51:17 +00:00
|
|
|
|
var result = source.EvolveTo<InlineFile>();
|
|
|
|
|
result.SourceDataID = await _compiler.IncludeFile(await source.AbsolutePath.ReadAllBytesAsync());
|
|
|
|
|
return result;
|
2019-10-30 12:29:06 +00:00
|
|
|
|
}
|
2021-10-23 16:51:17 +00:00
|
|
|
|
}
|