2019-10-31 02:24:42 +00:00
|
|
|
|
using System.Text.RegularExpressions;
|
2019-12-04 01:26:26 +00:00
|
|
|
|
using System.Threading.Tasks;
|
2019-10-30 12:29:06 +00:00
|
|
|
|
using Alphaleonis.Win32.Filesystem;
|
2019-10-31 02:24:42 +00:00
|
|
|
|
using Newtonsoft.Json;
|
2019-10-30 12:29:06 +00:00
|
|
|
|
|
|
|
|
|
namespace Wabbajack.Lib.CompilationSteps
|
|
|
|
|
{
|
|
|
|
|
public class IncludeRegex : ACompilationStep
|
|
|
|
|
{
|
2019-10-31 02:24:42 +00:00
|
|
|
|
private readonly string _pattern;
|
2019-10-30 12:29:06 +00:00
|
|
|
|
private readonly Regex _regex;
|
|
|
|
|
|
2019-11-03 16:45:49 +00:00
|
|
|
|
public IncludeRegex(ACompiler compiler, string pattern) : base(compiler)
|
2019-10-30 12:29:06 +00:00
|
|
|
|
{
|
2019-10-31 02:24:42 +00:00
|
|
|
|
_pattern = pattern;
|
2019-10-30 12:29:06 +00:00
|
|
|
|
_regex = new Regex(pattern);
|
|
|
|
|
}
|
|
|
|
|
|
2020-04-09 18:14:05 +00:00
|
|
|
|
public override async ValueTask<Directive?> Run(RawSourceFile source)
|
2019-10-30 12:29:06 +00:00
|
|
|
|
{
|
2020-03-25 12:47:25 +00:00
|
|
|
|
if (!_regex.IsMatch((string)source.Path)) return null;
|
2019-10-31 02:24:42 +00:00
|
|
|
|
|
2019-10-30 12:29:06 +00:00
|
|
|
|
var result = source.EvolveTo<InlineFile>();
|
2020-03-25 12:47:25 +00:00
|
|
|
|
result.SourceDataID = await _compiler.IncludeFile(await source.AbsolutePath.ReadAllBytesAsync());
|
2019-10-30 12:29:06 +00:00
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
}
|
2019-12-04 01:26:26 +00:00
|
|
|
|
}
|