kakoune/src/regex_impl.cc

484 lines
14 KiB
C++
Raw Normal View History

#include "regex_impl.hh"
#include "vector.hh"
#include "unit_tests.hh"
#include "string.hh"
#include "unicode.hh"
#include "exception.hh"
2017-09-17 12:15:43 +02:00
#include "array_view.hh"
namespace Kakoune
{
2017-09-17 12:15:43 +02:00
namespace RegexProgram
{
2017-09-17 12:15:43 +02:00
enum Op : char
{
Match,
Literal,
AnyChar,
Jump,
Split,
LineStart,
LineEnd,
WordBoundary,
NotWordBoundary,
};
2017-09-17 12:15:43 +02:00
using Offset = size_t;
}
namespace RegexCompiler
{
2017-09-17 12:15:43 +02:00
enum class Quantifier
{
One,
Optional,
RepeatZeroOrMore,
RepeatOneOrMore
};
2017-09-17 12:15:43 +02:00
enum class Op
{
Literal,
AnyChar,
Sequence,
Alternation,
LineStart,
LineEnd,
WordBoundary,
NotWordBoundary,
2017-09-17 12:15:43 +02:00
};
2017-09-17 12:15:43 +02:00
struct AstNode
{
Op op;
char value;
Quantifier quantifier;
Vector<std::unique_ptr<AstNode>> children;
};
using AstNodePtr = std::unique_ptr<AstNode>;
2017-09-17 12:15:43 +02:00
AstNodePtr make_ast_node(Op op, char value = 0,
Quantifier quantifier = Quantifier::One)
{
return AstNodePtr{new AstNode{op, value, quantifier, {}}};
}
2017-09-17 12:15:43 +02:00
template<typename Iterator>
struct Parser
{
static AstNodePtr parse(Iterator pos, Iterator end)
{
2017-09-17 12:15:43 +02:00
return disjunction(pos, end);
}
2017-09-17 12:15:43 +02:00
private:
static AstNodePtr disjunction(Iterator& pos, Iterator end)
{
2017-09-17 12:15:43 +02:00
AstNodePtr node = alternative(pos, end);
if (pos == end or *pos != '|')
return node;
AstNodePtr res = make_ast_node(Op::Alternation);
res->children.push_back(std::move(node));
res->children.push_back(disjunction(++pos, end));
2017-09-17 12:15:43 +02:00
return res;
}
2017-09-17 12:15:43 +02:00
static AstNodePtr alternative(Iterator& pos, Iterator end)
{
AstNodePtr res = make_ast_node(Op::Sequence);
while (auto node = term(pos, end))
res->children.push_back(std::move(node));
2017-09-17 12:15:43 +02:00
return res;
}
2017-09-17 12:15:43 +02:00
static AstNodePtr term(Iterator& pos, Iterator end)
{
if (auto node = assertion(pos, end))
return node;
if (auto node = atom(pos, end))
{
2017-09-17 12:15:43 +02:00
node->quantifier = quantifier(pos, end);
return node;
}
2017-09-17 12:15:43 +02:00
return nullptr;
}
2017-09-17 12:15:43 +02:00
static AstNodePtr assertion(Iterator& pos, Iterator end)
{
switch (*pos)
{
2017-09-17 12:15:43 +02:00
case '^': ++pos; return make_ast_node(Op::LineStart);
case '$': ++pos; return make_ast_node(Op::LineEnd);
case '\\':
if (pos+1 == end)
return nullptr;
switch (*(pos+1))
{
case 'b': pos += 2; return make_ast_node(Op::WordBoundary);
case 'B': pos += 2; return make_ast_node(Op::NotWordBoundary);
}
break;
/* TODO: \`, \', look ahead, look behind */
}
2017-09-17 12:15:43 +02:00
return nullptr;
}
2017-09-17 12:15:43 +02:00
static AstNodePtr atom(Iterator& pos, Iterator end)
{
const auto c = *pos;
switch (c)
{
2017-09-17 12:15:43 +02:00
case '.': ++pos; return make_ast_node(Op::AnyChar);
case '(':
{
2017-09-17 12:15:43 +02:00
++pos;
auto content = disjunction(pos, end);
if (pos == end or *pos != ')')
throw runtime_error{"Unclosed parenthesis"};
++pos;
return content;
}
2017-09-17 12:15:43 +02:00
default:
if (contains("^$.*+?()[]{}|", c))
return nullptr;
++pos;
return make_ast_node(Op::Literal, c);
}
2017-09-17 12:15:43 +02:00
}
2017-09-17 12:15:43 +02:00
static Quantifier quantifier(Iterator& pos, Iterator end)
{
switch (*pos)
{
2017-09-17 12:15:43 +02:00
case '*': ++pos; return Quantifier::RepeatZeroOrMore;
case '+': ++pos; return Quantifier::RepeatOneOrMore;
case '?': ++pos; return Quantifier::Optional;
default: return Quantifier::One;
}
2017-09-17 12:15:43 +02:00
}
};
2017-09-17 12:15:43 +02:00
RegexProgram::Offset compile_node(Vector<char>& program, const AstNodePtr& node)
{
RegexProgram::Offset pos = program.size();
auto allow_none = [](Quantifier quantifier) {
return quantifier == Quantifier::Optional or
quantifier == Quantifier::RepeatZeroOrMore;
};
auto is_repeat = [](Quantifier quantifier) {
return quantifier == Quantifier::RepeatZeroOrMore or
quantifier == Quantifier::RepeatOneOrMore;
};
auto alloc_offset = [](Vector<char>& instructions) {
2017-09-17 12:15:43 +02:00
auto pos = instructions.size();
instructions.resize(instructions.size() + sizeof(RegexProgram::Offset));
2017-09-17 12:15:43 +02:00
return pos;
};
auto get_offset = [](Vector<char>& instructions, RegexProgram::Offset base) -> RegexProgram::Offset& {
return *reinterpret_cast<RegexProgram::Offset*>(&instructions[base]);
2017-09-17 12:15:43 +02:00
};
RegexProgram::Offset optional_offset = -1;
if (allow_none(node->quantifier))
{
2017-09-17 12:15:43 +02:00
program.push_back(RegexProgram::Split);
optional_offset = alloc_offset(program);
2017-09-17 12:15:43 +02:00
}
2017-09-17 12:15:43 +02:00
Vector<RegexProgram::Offset> goto_end_offsets;
auto content_pos = program.size();
switch (node->op)
{
case Op::Literal:
program.push_back(RegexProgram::Literal);
program.push_back(node->value);
break;
case Op::AnyChar:
program.push_back(RegexProgram::AnyChar);
break;
case Op::Sequence:
for (auto& child : node->children)
compile_node(program, child);
break;
case Op::Alternation:
{
auto& children = node->children;
kak_assert(children.size() == 2);
2017-09-17 12:15:43 +02:00
program.push_back(RegexProgram::Split);
auto offset = alloc_offset(program);
compile_node(program, children[0]);
program.push_back(RegexProgram::Jump);
goto_end_offsets.push_back(alloc_offset(program));
auto right_pos = compile_node(program, children[1]);
get_offset(program, offset) = right_pos;
2017-09-17 12:15:43 +02:00
break;
}
2017-09-17 12:15:43 +02:00
case Op::LineStart:
program.push_back(RegexProgram::LineStart);
break;
case Op::LineEnd:
program.push_back(RegexProgram::LineEnd);
break;
case Op::WordBoundary:
program.push_back(RegexProgram::WordBoundary);
break;
case Op::NotWordBoundary:
program.push_back(RegexProgram::NotWordBoundary);
break;
2017-09-17 12:15:43 +02:00
}
2017-09-17 12:15:43 +02:00
for (auto& offset : goto_end_offsets)
get_offset(program, offset) = program.size();
2017-09-17 12:15:43 +02:00
if (is_repeat(node->quantifier))
{
program.push_back(RegexProgram::Split);
get_offset(program, alloc_offset(program)) = content_pos;
2017-09-17 12:15:43 +02:00
}
2017-09-17 12:15:43 +02:00
if (optional_offset != -1)
get_offset(program, optional_offset) = program.size();
2017-09-17 12:15:43 +02:00
return pos;
}
2017-09-17 12:15:43 +02:00
Vector<char> compile(const AstNodePtr& node)
{
Vector<char> res;
compile_node(res, node);
res.push_back(RegexProgram::Match);
return res;
}
template<typename Iterator>
Vector<char> compile(Iterator begin, Iterator end)
{
return compile(Parser<Iterator>::parse(begin, end));
}
}
2017-09-17 12:15:43 +02:00
namespace RegexProgram
{
2017-09-17 12:15:43 +02:00
void dump(ConstArrayView<char> program)
{
for (size_t pos = 0; pos < program.size(); )
{
printf("%4zd ", pos);
2017-09-17 12:15:43 +02:00
switch ((RegexProgram::Op)program[pos++])
{
case RegexProgram::Literal:
2017-09-17 12:15:43 +02:00
printf("literal %c\n", program[pos++]);
break;
case RegexProgram::AnyChar:
printf("any char\n");
break;
case RegexProgram::Jump:
2017-09-17 12:15:43 +02:00
printf("jump %zd\n", *reinterpret_cast<const RegexProgram::Offset*>(&program[pos]));
pos += sizeof(RegexProgram::Offset);
break;
case RegexProgram::Split:
{
printf("split %zd\n", *reinterpret_cast<const RegexProgram::Offset*>(&program[pos]));
pos += sizeof(RegexProgram::Offset);
break;
}
case RegexProgram::LineStart:
printf("line start\n");
break;
case RegexProgram::LineEnd:
printf("line end\n");
break;
case RegexProgram::WordBoundary:
printf("word boundary\n");
break;
case RegexProgram::NotWordBoundary:
printf("not word boundary\n");
break;
case RegexProgram::Match:
printf("match\n");
}
}
}
struct ThreadedExecutor
{
ThreadedExecutor(ConstArrayView<char> program) : m_program{program} {}
struct StepResult
{
enum Result { Consumed, Matched, Failed } result;
const char* next = nullptr;
};
StepResult step(const char* inst)
{
while (true)
{
char c = m_pos == m_subject.end() ? 0 : *m_pos;
const RegexProgram::Op op = (RegexProgram::Op)*inst++;
switch (op)
{
case RegexProgram::Literal:
if (*inst++ == c)
return { StepResult::Consumed, inst };
return { StepResult::Failed };
case RegexProgram::AnyChar:
return { StepResult::Consumed, inst };
case RegexProgram::Jump:
inst = m_program.begin() + *reinterpret_cast<const RegexProgram::Offset*>(inst);
// if instruction is already going to be executed, drop this thread
if (std::find(m_threads.begin(), m_threads.end(), inst) != m_threads.end())
return { StepResult::Failed };
break;
case RegexProgram::Split:
{
add_thread(*reinterpret_cast<const RegexProgram::Offset*>(inst));
inst += sizeof(RegexProgram::Offset);
break;
}
case RegexProgram::LineStart:
if (not is_line_start())
return { StepResult::Failed };
break;
case RegexProgram::LineEnd:
if (not is_line_end())
return { StepResult::Failed };
break;
case RegexProgram::WordBoundary:
if (not is_word_boundary())
return { StepResult::Failed };
break;
case RegexProgram::NotWordBoundary:
if (is_word_boundary())
return { StepResult::Failed };
break;
case RegexProgram::Match:
return { StepResult::Matched };
}
}
return { StepResult::Failed };
2017-09-17 12:15:43 +02:00
}
bool match(ConstArrayView<char> program, StringView data)
{
m_threads = Vector<const char*>{program.begin()};
m_subject = data;
m_pos = data.begin();
for (m_pos = m_subject.begin(); m_pos != m_subject.end(); ++m_pos)
{
for (int i = 0; i < m_threads.size(); ++i)
{
auto res = step(m_threads[i]);
m_threads[i] = res.next;
if (res.result == StepResult::Matched)
return true;
}
m_threads.erase(std::remove(m_threads.begin(), m_threads.end(), nullptr), m_threads.end());
if (m_threads.empty())
break;
}
// Step remaining threads to see if they match without consuming anything else
for (int i = 0; i < m_threads.size(); ++i)
{
if (step(m_threads[i]).result == StepResult::Matched)
2017-09-17 12:15:43 +02:00
return true;
}
return false;
}
void add_thread(RegexProgram::Offset pos)
{
const char* inst = m_program.begin() + pos;
if (std::find(m_threads.begin(), m_threads.end(), inst) == m_threads.end())
m_threads.push_back(inst);
}
bool is_line_start() const
{
return m_pos == m_subject.begin() or *(m_pos-1) == '\n';
}
bool is_line_end() const
{
return m_pos == m_subject.end() or *m_pos == '\n';
}
bool is_word_boundary() const
{
return m_pos == m_subject.begin() or
m_pos == m_subject.end() or
is_word(*(m_pos-1)) != is_word(*m_pos);
}
ConstArrayView<char> m_program;
Vector<const char*> m_threads;
StringView m_subject;
const char* m_pos;
};
2017-09-17 12:15:43 +02:00
}
auto test_regex = UnitTest{[]{
using Exec = RegexProgram::ThreadedExecutor;
2017-09-17 12:15:43 +02:00
{
StringView re = R"(a*b)";
2017-09-17 12:15:43 +02:00
auto program = RegexCompiler::compile(re.begin(), re.end());
RegexProgram::dump(program);
Exec exec{program};
kak_assert(exec.match(program, "b"));
kak_assert(exec.match(program, "ab"));
kak_assert(exec.match(program, "aaab"));
kak_assert(not exec.match(program, "acb"));
kak_assert(not exec.match(program, ""));
2017-09-17 12:15:43 +02:00
}
{
StringView re = R"(^a.*b$)";
auto program = RegexCompiler::compile(re.begin(), re.end());
RegexProgram::dump(program);
Exec exec{program};
kak_assert(exec.match(program, "afoob"));
kak_assert(exec.match(program, "ab"));
kak_assert(not exec.match(program, "bab"));
kak_assert(not exec.match(program, ""));
}
2017-09-17 12:15:43 +02:00
{
StringView re = R"(^(foo|qux|baz)+(bar)?baz$)";
2017-09-17 12:15:43 +02:00
auto program = RegexCompiler::compile(re.begin(), re.end());
RegexProgram::dump(program);
Exec exec{program};
kak_assert(exec.match(program, "fooquxbarbaz"));
kak_assert(not exec.match(program, "fooquxbarbaze"));
kak_assert(not exec.match(program, "quxbar"));
kak_assert(not exec.match(program, "blahblah"));
kak_assert(exec.match(program, "bazbaz"));
kak_assert(exec.match(program, "quxbaz"));
2017-09-17 12:15:43 +02:00
}
{
StringView re = R"(.*\b(foo|bar)\b.*)";
auto program = RegexCompiler::compile(re.begin(), re.end());
RegexProgram::dump(program);
Exec exec{program};
kak_assert(exec.match(program, "tchou foo baz"));
kak_assert(not exec.match(program, "tchoufoobaz"));
kak_assert(exec.match(program, "bar"));
kak_assert(not exec.match(program, "foobar"));
}
}};
}