2019-10-31 02:24:42 +00:00
|
|
|
|
using System.Text.RegularExpressions;
|
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);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override Directive Run(RawSourceFile source)
|
|
|
|
|
{
|
|
|
|
|
if (!_regex.IsMatch(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>();
|
|
|
|
|
result.SourceDataID = _compiler.IncludeFile(File.ReadAllBytes(source.AbsolutePath));
|
|
|
|
|
return result;
|
|
|
|
|
}
|
2019-10-31 02:24:42 +00:00
|
|
|
|
|
|
|
|
|
public override IState GetState()
|
|
|
|
|
{
|
|
|
|
|
return new State(_pattern);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[JsonObject("IncludeRegex")]
|
|
|
|
|
public class State : IState
|
|
|
|
|
{
|
|
|
|
|
public State()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public State(string pattern)
|
|
|
|
|
{
|
|
|
|
|
Pattern = pattern;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public string Pattern { get; set; }
|
|
|
|
|
|
2019-11-03 16:45:49 +00:00
|
|
|
|
public ICompilationStep CreateStep(ACompiler compiler)
|
2019-10-31 02:24:42 +00:00
|
|
|
|
{
|
|
|
|
|
return new IncludeRegex(compiler, Pattern);
|
|
|
|
|
}
|
|
|
|
|
}
|
2019-10-30 12:29:06 +00:00
|
|
|
|
}
|
2019-10-31 02:24:42 +00:00
|
|
|
|
}
|