2017-09-17 10:50:53 +02:00
|
|
|
#include "regex_impl.hh"
|
2017-10-07 04:43:21 +02:00
|
|
|
|
|
|
|
#include "exception.hh"
|
2017-09-17 10:50:53 +02:00
|
|
|
#include "string.hh"
|
2017-09-18 04:56:14 +02:00
|
|
|
#include "unicode.hh"
|
2017-10-07 04:43:21 +02:00
|
|
|
#include "unit_tests.hh"
|
2017-09-25 15:24:24 +02:00
|
|
|
#include "utf8.hh"
|
|
|
|
#include "utf8_iterator.hh"
|
2017-10-09 08:37:43 +02:00
|
|
|
#include "string_utils.hh"
|
2017-10-07 04:43:21 +02:00
|
|
|
#include "vector.hh"
|
2017-09-26 09:44:30 +02:00
|
|
|
|
2017-10-14 10:50:49 +02:00
|
|
|
#include <cstring>
|
|
|
|
|
2017-09-17 10:50:53 +02:00
|
|
|
namespace Kakoune
|
|
|
|
{
|
|
|
|
|
2017-10-21 04:04:08 +02:00
|
|
|
constexpr Codepoint CompiledRegex::StartChars::other;
|
|
|
|
|
2017-09-26 16:04:47 +02:00
|
|
|
struct ParsedRegex
|
2017-09-17 10:50:53 +02:00
|
|
|
{
|
2017-10-09 15:04:28 +02:00
|
|
|
enum Op : char
|
2017-09-19 10:44:58 +02:00
|
|
|
{
|
|
|
|
Literal,
|
|
|
|
AnyChar,
|
2017-09-26 11:03:12 +02:00
|
|
|
Matcher,
|
2017-09-26 16:04:47 +02:00
|
|
|
Sequence,
|
|
|
|
Alternation,
|
2017-09-19 10:44:58 +02:00
|
|
|
LineStart,
|
|
|
|
LineEnd,
|
|
|
|
WordBoundary,
|
|
|
|
NotWordBoundary,
|
|
|
|
SubjectBegin,
|
|
|
|
SubjectEnd,
|
2017-09-26 17:01:06 +02:00
|
|
|
ResetStart,
|
2017-09-28 14:43:45 +02:00
|
|
|
LookAhead,
|
|
|
|
NegativeLookAhead,
|
2017-10-04 17:00:19 +02:00
|
|
|
LookBehind,
|
2017-09-28 14:43:45 +02:00
|
|
|
NegativeLookBehind,
|
2017-09-19 10:44:58 +02:00
|
|
|
};
|
2017-09-17 10:50:53 +02:00
|
|
|
|
2017-09-26 16:04:47 +02:00
|
|
|
struct Quantifier
|
|
|
|
{
|
2017-10-09 15:04:28 +02:00
|
|
|
enum Type : char
|
2017-09-26 16:04:47 +02:00
|
|
|
{
|
|
|
|
One,
|
|
|
|
Optional,
|
|
|
|
RepeatZeroOrMore,
|
|
|
|
RepeatOneOrMore,
|
|
|
|
RepeatMinMax,
|
|
|
|
};
|
|
|
|
Type type = One;
|
2017-09-28 11:50:04 +02:00
|
|
|
bool greedy = true;
|
2017-10-23 09:51:24 +02:00
|
|
|
int16_t min = -1, max = -1;
|
2017-09-17 10:50:53 +02:00
|
|
|
|
2017-09-26 16:04:47 +02:00
|
|
|
bool allows_none() const
|
|
|
|
{
|
|
|
|
return type == Quantifier::Optional or
|
|
|
|
type == Quantifier::RepeatZeroOrMore or
|
|
|
|
(type == Quantifier::RepeatMinMax and min <= 0);
|
|
|
|
}
|
2017-09-19 11:26:24 +02:00
|
|
|
|
2017-09-26 16:04:47 +02:00
|
|
|
bool allows_infinite_repeat() const
|
|
|
|
{
|
|
|
|
return type == Quantifier::RepeatZeroOrMore or
|
|
|
|
type == Quantifier::RepeatOneOrMore or
|
2017-10-23 09:51:24 +02:00
|
|
|
(type == Quantifier::RepeatMinMax and max < 0);
|
2017-09-26 16:04:47 +02:00
|
|
|
};
|
2017-09-18 11:22:11 +02:00
|
|
|
};
|
|
|
|
|
2017-10-23 09:45:43 +02:00
|
|
|
struct Node;
|
|
|
|
using NodeIndex = uint16_t;
|
2017-10-09 15:04:28 +02:00
|
|
|
|
2017-10-23 09:45:43 +02:00
|
|
|
struct Node
|
2017-09-18 11:22:11 +02:00
|
|
|
{
|
2017-09-26 16:04:47 +02:00
|
|
|
Op op;
|
2017-10-09 15:04:28 +02:00
|
|
|
bool ignore_case;
|
2017-10-23 09:45:43 +02:00
|
|
|
NodeIndex children_end;
|
2017-09-26 16:04:47 +02:00
|
|
|
Codepoint value;
|
|
|
|
Quantifier quantifier;
|
2017-09-18 11:22:11 +02:00
|
|
|
};
|
2017-09-17 10:50:53 +02:00
|
|
|
|
2017-10-23 09:45:43 +02:00
|
|
|
Vector<Node, MemoryDomain::Regex> nodes;
|
2017-10-15 03:23:57 +02:00
|
|
|
Vector<std::function<bool (Codepoint)>, MemoryDomain::Regex> matchers;
|
2017-10-23 09:51:24 +02:00
|
|
|
size_t capture_count;
|
2017-09-23 09:18:21 +02:00
|
|
|
};
|
|
|
|
|
2017-10-23 09:35:43 +02:00
|
|
|
namespace
|
|
|
|
{
|
|
|
|
template<typename Func>
|
2017-10-23 09:45:43 +02:00
|
|
|
bool for_each_child(const ParsedRegex& parsed_regex, ParsedRegex::NodeIndex index, Func&& func)
|
2017-10-23 09:35:43 +02:00
|
|
|
{
|
|
|
|
const auto end = parsed_regex.nodes[index].children_end;
|
|
|
|
for (auto child = index+1; child != end;
|
|
|
|
child = parsed_regex.nodes[child].children_end)
|
|
|
|
{
|
|
|
|
if (func(child) == false)
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
template<typename Func>
|
2017-10-23 09:45:43 +02:00
|
|
|
bool for_each_child_reverse(const ParsedRegex& parsed_regex, ParsedRegex::NodeIndex index, Func&& func)
|
2017-10-23 09:35:43 +02:00
|
|
|
{
|
2017-10-23 09:45:43 +02:00
|
|
|
auto find_last_child = [&](ParsedRegex::NodeIndex begin, ParsedRegex::NodeIndex end) {
|
2017-10-23 09:35:43 +02:00
|
|
|
while (parsed_regex.nodes[begin].children_end != end)
|
|
|
|
begin = parsed_regex.nodes[begin].children_end;
|
|
|
|
return begin;
|
|
|
|
};
|
|
|
|
const auto first_child = index+1;
|
|
|
|
auto end = parsed_regex.nodes[index].children_end;
|
|
|
|
while (end != first_child)
|
|
|
|
{
|
|
|
|
auto child = find_last_child(first_child, end);
|
|
|
|
if (func(child) == false)
|
|
|
|
return false;
|
|
|
|
end = child;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-23 09:18:21 +02:00
|
|
|
// Recursive descent parser based on naming used in the ECMAScript
|
2017-09-19 04:57:02 +02:00
|
|
|
// standard, although the syntax is not fully compatible.
|
2017-09-26 15:38:56 +02:00
|
|
|
struct RegexParser
|
2017-09-17 12:15:43 +02:00
|
|
|
{
|
2017-09-26 15:38:56 +02:00
|
|
|
RegexParser(StringView re)
|
|
|
|
: m_regex{re}, m_pos{re.begin(), re}
|
2017-09-17 10:50:53 +02:00
|
|
|
{
|
2017-09-26 15:38:56 +02:00
|
|
|
m_parsed_regex.capture_count = 1;
|
2017-10-23 09:45:43 +02:00
|
|
|
NodeIndex root = disjunction(0);
|
2017-10-23 09:35:43 +02:00
|
|
|
kak_assert(root == 0);
|
2017-09-17 10:50:53 +02:00
|
|
|
}
|
|
|
|
|
2017-09-26 15:38:56 +02:00
|
|
|
ParsedRegex get_parsed_regex() { return std::move(m_parsed_regex); }
|
|
|
|
|
2017-09-26 16:04:47 +02:00
|
|
|
static ParsedRegex parse(StringView re) { return RegexParser{re}.get_parsed_regex(); }
|
|
|
|
|
2017-09-17 12:15:43 +02:00
|
|
|
private:
|
2017-09-26 09:44:30 +02:00
|
|
|
struct InvalidPolicy
|
|
|
|
{
|
2017-10-09 08:04:14 +02:00
|
|
|
Codepoint operator()(Codepoint cp) { throw regex_error{"Invalid utf8 in regex"}; }
|
2017-09-26 09:44:30 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
using Iterator = utf8::iterator<const char*, Codepoint, int, InvalidPolicy>;
|
2017-10-23 09:45:43 +02:00
|
|
|
using NodeIndex = ParsedRegex::NodeIndex;
|
2017-09-26 09:44:30 +02:00
|
|
|
|
2017-10-23 09:45:43 +02:00
|
|
|
NodeIndex disjunction(unsigned capture = -1)
|
2017-09-17 10:50:53 +02:00
|
|
|
{
|
2017-10-23 09:45:43 +02:00
|
|
|
NodeIndex index = new_node(ParsedRegex::Alternation);
|
2017-10-23 09:35:43 +02:00
|
|
|
get_node(index).value = capture;
|
|
|
|
while (true)
|
2017-10-09 15:04:28 +02:00
|
|
|
{
|
2017-10-23 09:35:43 +02:00
|
|
|
alternative();
|
|
|
|
if (at_end() or *m_pos != '|')
|
|
|
|
break;
|
2017-10-09 15:04:28 +02:00
|
|
|
++m_pos;
|
|
|
|
}
|
2017-10-23 09:35:43 +02:00
|
|
|
get_node(index).children_end = m_parsed_regex.nodes.size();
|
|
|
|
|
|
|
|
return index;
|
2017-09-17 12:15:43 +02:00
|
|
|
}
|
2017-09-17 10:50:53 +02:00
|
|
|
|
2017-10-23 09:45:43 +02:00
|
|
|
NodeIndex alternative(ParsedRegex::Op op = ParsedRegex::Sequence)
|
2017-09-17 12:15:43 +02:00
|
|
|
{
|
2017-10-23 09:45:43 +02:00
|
|
|
NodeIndex index = new_node(op);
|
2017-10-23 09:35:43 +02:00
|
|
|
while (auto t = term())
|
|
|
|
{}
|
|
|
|
get_node(index).children_end = m_parsed_regex.nodes.size();
|
|
|
|
|
|
|
|
return index;
|
2017-09-17 12:15:43 +02:00
|
|
|
}
|
2017-09-17 10:50:53 +02:00
|
|
|
|
2017-10-23 09:45:43 +02:00
|
|
|
Optional<NodeIndex> term()
|
2017-09-17 12:15:43 +02:00
|
|
|
{
|
2017-10-13 07:09:33 +02:00
|
|
|
while (modifiers()) // read all modifiers
|
2017-10-13 04:44:24 +02:00
|
|
|
{}
|
2017-09-26 15:38:56 +02:00
|
|
|
if (auto node = assertion())
|
2017-09-17 12:15:43 +02:00
|
|
|
return node;
|
2017-09-26 15:38:56 +02:00
|
|
|
if (auto node = atom())
|
2017-09-17 10:50:53 +02:00
|
|
|
{
|
2017-10-23 09:35:43 +02:00
|
|
|
get_node(*node).quantifier = quantifier();
|
2017-09-17 12:15:43 +02:00
|
|
|
return node;
|
2017-09-17 10:50:53 +02:00
|
|
|
}
|
2017-10-23 09:35:43 +02:00
|
|
|
return {};
|
2017-09-17 12:15:43 +02:00
|
|
|
}
|
2017-09-17 10:50:53 +02:00
|
|
|
|
2017-10-23 05:22:07 +02:00
|
|
|
bool accept(StringView expected)
|
2017-10-13 04:44:24 +02:00
|
|
|
{
|
2017-11-25 11:13:27 +01:00
|
|
|
auto it = m_pos.base();
|
|
|
|
for (auto expected_it = expected.begin(); expected_it != expected.end(); ++expected_it)
|
2017-10-13 04:44:24 +02:00
|
|
|
{
|
|
|
|
if (it == m_regex.end() or *it++ != *expected_it)
|
|
|
|
return false;
|
|
|
|
}
|
2017-11-25 11:13:27 +01:00
|
|
|
m_pos = Iterator{it, m_regex};
|
2017-10-13 04:44:24 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2017-10-13 07:09:33 +02:00
|
|
|
bool modifiers()
|
2017-10-13 04:44:24 +02:00
|
|
|
{
|
2017-10-23 05:22:07 +02:00
|
|
|
if (accept("(?i)"))
|
2017-10-13 04:44:24 +02:00
|
|
|
{
|
|
|
|
m_ignore_case = true;
|
|
|
|
return true;
|
|
|
|
}
|
2017-10-23 05:22:07 +02:00
|
|
|
if (accept("(?I)"))
|
2017-10-13 04:44:24 +02:00
|
|
|
{
|
|
|
|
m_ignore_case = false;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-10-23 09:45:43 +02:00
|
|
|
Optional<NodeIndex> assertion()
|
2017-09-17 12:15:43 +02:00
|
|
|
{
|
2017-09-26 15:38:56 +02:00
|
|
|
if (at_end())
|
2017-10-23 09:35:43 +02:00
|
|
|
return {};
|
2017-09-25 15:24:24 +02:00
|
|
|
|
2017-09-26 15:38:56 +02:00
|
|
|
switch (*m_pos)
|
2017-09-17 10:50:53 +02:00
|
|
|
{
|
2017-09-26 16:04:47 +02:00
|
|
|
case '^': ++m_pos; return new_node(ParsedRegex::LineStart);
|
|
|
|
case '$': ++m_pos; return new_node(ParsedRegex::LineEnd);
|
2017-09-18 04:56:14 +02:00
|
|
|
case '\\':
|
2017-09-26 15:38:56 +02:00
|
|
|
if (m_pos+1 == m_regex.end())
|
2017-10-23 09:35:43 +02:00
|
|
|
return {};
|
2017-09-26 15:38:56 +02:00
|
|
|
switch (*(m_pos+1))
|
2017-09-18 04:56:14 +02:00
|
|
|
{
|
2017-09-26 16:04:47 +02:00
|
|
|
case 'b': m_pos += 2; return new_node(ParsedRegex::WordBoundary);
|
|
|
|
case 'B': m_pos += 2; return new_node(ParsedRegex::NotWordBoundary);
|
2017-09-29 04:39:59 +02:00
|
|
|
case 'A': m_pos += 2; return new_node(ParsedRegex::SubjectBegin);
|
|
|
|
case 'z': m_pos += 2; return new_node(ParsedRegex::SubjectEnd);
|
2017-09-26 17:01:06 +02:00
|
|
|
case 'K': m_pos += 2; return new_node(ParsedRegex::ResetStart);
|
2017-09-18 04:56:14 +02:00
|
|
|
}
|
|
|
|
break;
|
2017-10-13 04:44:24 +02:00
|
|
|
case '(':
|
|
|
|
{
|
|
|
|
Optional<ParsedRegex::Op> lookaround_op;
|
|
|
|
constexpr struct { StringView prefix; ParsedRegex::Op op; } lookarounds[] = {
|
|
|
|
{ "(?=", ParsedRegex::LookAhead },
|
|
|
|
{ "(?!", ParsedRegex::NegativeLookAhead },
|
|
|
|
{ "(?<=", ParsedRegex::LookBehind },
|
|
|
|
{ "(?<!", ParsedRegex::NegativeLookBehind }
|
|
|
|
};
|
|
|
|
for (auto& lookaround : lookarounds)
|
|
|
|
{
|
2017-10-23 05:22:07 +02:00
|
|
|
if (accept(lookaround.prefix))
|
2017-10-13 04:44:24 +02:00
|
|
|
{
|
|
|
|
lookaround_op = lookaround.op;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (not lookaround_op)
|
2017-10-23 09:35:43 +02:00
|
|
|
return {};
|
2017-10-13 04:44:24 +02:00
|
|
|
|
2017-10-23 09:45:43 +02:00
|
|
|
NodeIndex lookaround = alternative(*lookaround_op);
|
2017-10-13 04:44:24 +02:00
|
|
|
if (at_end() or *m_pos++ != ')')
|
|
|
|
parse_error("unclosed parenthesis");
|
|
|
|
|
|
|
|
validate_lookaround(lookaround);
|
|
|
|
return lookaround;
|
|
|
|
}
|
2017-09-17 10:50:53 +02:00
|
|
|
}
|
2017-10-23 09:35:43 +02:00
|
|
|
return {};
|
2017-09-17 12:15:43 +02:00
|
|
|
}
|
2017-09-17 10:50:53 +02:00
|
|
|
|
2017-10-23 09:45:43 +02:00
|
|
|
Optional<NodeIndex> atom()
|
2017-09-17 12:15:43 +02:00
|
|
|
{
|
2017-09-26 15:38:56 +02:00
|
|
|
if (at_end())
|
2017-10-23 09:35:43 +02:00
|
|
|
return {};
|
2017-09-25 15:24:24 +02:00
|
|
|
|
2017-09-26 15:38:56 +02:00
|
|
|
const Codepoint cp = *m_pos;
|
2017-09-25 15:24:24 +02:00
|
|
|
switch (cp)
|
2017-09-17 10:50:53 +02:00
|
|
|
{
|
2017-09-26 16:04:47 +02:00
|
|
|
case '.': ++m_pos; return new_node(ParsedRegex::AnyChar);
|
2017-09-17 12:15:43 +02:00
|
|
|
case '(':
|
2017-09-17 10:50:53 +02:00
|
|
|
{
|
2017-10-13 04:44:24 +02:00
|
|
|
++m_pos;
|
2017-10-23 05:22:07 +02:00
|
|
|
const bool capture = not accept("?:");
|
2017-10-23 09:45:43 +02:00
|
|
|
NodeIndex content = disjunction(capture ? m_parsed_regex.capture_count++ : -1);
|
2017-10-13 04:44:24 +02:00
|
|
|
if (at_end() or *m_pos++ != ')')
|
2017-09-26 15:38:56 +02:00
|
|
|
parse_error("unclosed parenthesis");
|
2017-09-17 12:15:43 +02:00
|
|
|
return content;
|
2017-09-17 10:50:53 +02:00
|
|
|
}
|
2017-09-23 09:18:21 +02:00
|
|
|
case '\\':
|
2017-09-26 15:38:56 +02:00
|
|
|
++m_pos;
|
|
|
|
return atom_escape();
|
2017-09-23 09:18:21 +02:00
|
|
|
case '[':
|
2017-09-26 15:38:56 +02:00
|
|
|
++m_pos;
|
|
|
|
return character_class();
|
2017-09-26 16:42:54 +02:00
|
|
|
case '|': case ')':
|
2017-10-23 09:35:43 +02:00
|
|
|
return {};
|
2017-09-17 12:15:43 +02:00
|
|
|
default:
|
2017-09-26 16:42:54 +02:00
|
|
|
if (contains("^$.*+?[]{}", cp))
|
|
|
|
parse_error(format("unexpected '{}'", cp));
|
2017-09-26 15:38:56 +02:00
|
|
|
++m_pos;
|
2017-09-26 16:04:47 +02:00
|
|
|
return new_node(ParsedRegex::Literal, cp);
|
2017-09-17 10:50:53 +02:00
|
|
|
}
|
2017-09-17 12:15:43 +02:00
|
|
|
}
|
2017-09-17 10:50:53 +02:00
|
|
|
|
2017-10-23 09:45:43 +02:00
|
|
|
NodeIndex atom_escape()
|
2017-09-23 09:18:21 +02:00
|
|
|
{
|
2017-09-26 15:38:56 +02:00
|
|
|
const Codepoint cp = *m_pos++;
|
2017-09-23 09:18:21 +02:00
|
|
|
|
2017-09-26 16:51:05 +02:00
|
|
|
if (cp == 'Q')
|
|
|
|
{
|
|
|
|
auto escaped_sequence = new_node(ParsedRegex::Sequence);
|
|
|
|
constexpr StringView end_mark{"\\E"};
|
2017-10-23 09:35:43 +02:00
|
|
|
|
2017-09-26 16:51:05 +02:00
|
|
|
auto quote_end = std::search(m_pos.base(), m_regex.end(), end_mark.begin(), end_mark.end());
|
|
|
|
while (m_pos != quote_end)
|
2017-10-23 09:35:43 +02:00
|
|
|
new_node(ParsedRegex::Literal, *m_pos++);
|
|
|
|
get_node(escaped_sequence).children_end = m_parsed_regex.nodes.size();
|
|
|
|
|
2017-09-26 16:51:05 +02:00
|
|
|
if (quote_end != m_regex.end())
|
|
|
|
m_pos += 2;
|
|
|
|
|
|
|
|
return escaped_sequence;
|
|
|
|
}
|
|
|
|
|
2017-09-26 15:04:41 +02:00
|
|
|
// CharacterClassEscape
|
2017-10-06 13:51:41 +02:00
|
|
|
auto class_it = find_if(character_class_escapes,
|
|
|
|
[cp = to_lower(cp)](auto& c) { return c.cp == cp; });
|
|
|
|
if (class_it != std::end(character_class_escapes))
|
2017-09-26 15:04:41 +02:00
|
|
|
{
|
2017-10-06 13:51:41 +02:00
|
|
|
auto matcher_id = m_parsed_regex.matchers.size();
|
|
|
|
m_parsed_regex.matchers.push_back(
|
|
|
|
[ctype = class_it->ctype ? wctype(class_it->ctype) : (wctype_t)0,
|
|
|
|
chars = class_it->additional_chars, neg = is_upper(cp)] (Codepoint cp) {
|
|
|
|
return ((ctype != 0 and iswctype(cp, ctype)) or contains(chars, cp)) != neg;
|
|
|
|
});
|
|
|
|
return new_node(ParsedRegex::Matcher, matcher_id);
|
2017-09-26 15:04:41 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// CharacterEscape
|
2017-09-23 09:18:21 +02:00
|
|
|
for (auto& control : control_escapes)
|
|
|
|
{
|
2017-09-25 15:24:24 +02:00
|
|
|
if (control.name == cp)
|
2017-09-26 16:04:47 +02:00
|
|
|
return new_node(ParsedRegex::Literal, control.value);
|
2017-09-23 09:18:21 +02:00
|
|
|
}
|
|
|
|
|
2017-10-20 06:08:24 +02:00
|
|
|
auto read_hex = [this](size_t count)
|
|
|
|
{
|
|
|
|
Codepoint res = 0;
|
|
|
|
for (int i = 0; i < count; ++i)
|
|
|
|
{
|
|
|
|
if (at_end())
|
|
|
|
parse_error("unterminated hex sequence");
|
|
|
|
Codepoint digit = *m_pos++;
|
|
|
|
Codepoint digit_value;
|
|
|
|
if ('0' <= digit and digit <= '9')
|
|
|
|
digit_value = digit - '0';
|
|
|
|
else if ('a' <= digit and digit <= 'f')
|
|
|
|
digit_value = 0xa + digit - 'a';
|
|
|
|
else if ('A' <= digit and digit <= 'F')
|
|
|
|
digit_value = 0xa + digit - 'A';
|
|
|
|
else
|
|
|
|
parse_error(format("invalid hex digit '{}'", digit));
|
|
|
|
|
|
|
|
res = res * 16 + digit_value;
|
|
|
|
}
|
|
|
|
return res;
|
|
|
|
};
|
|
|
|
|
|
|
|
if (cp == '0')
|
|
|
|
return new_node(ParsedRegex::Literal, '\0');
|
|
|
|
else if (cp == 'c')
|
|
|
|
{
|
|
|
|
if (at_end())
|
|
|
|
parse_error("unterminated control escape");
|
|
|
|
Codepoint ctrl = *m_pos++;
|
|
|
|
if (('a' <= ctrl and ctrl <= 'z') or ('A' <= ctrl and ctrl <= 'Z'))
|
|
|
|
return new_node(ParsedRegex::Literal, ctrl % 32);
|
|
|
|
parse_error(format("Invalid control escape character '{}'", ctrl));
|
|
|
|
}
|
|
|
|
else if (cp == 'x')
|
|
|
|
return new_node(ParsedRegex::Literal, read_hex(2));
|
|
|
|
else if (cp == 'u')
|
|
|
|
return new_node(ParsedRegex::Literal, read_hex(4));
|
2017-09-23 09:18:21 +02:00
|
|
|
|
2017-09-25 15:24:24 +02:00
|
|
|
if (contains("^$\\.*+?()[]{}|", cp)) // SyntaxCharacter
|
2017-09-26 16:04:47 +02:00
|
|
|
return new_node(ParsedRegex::Literal, cp);
|
2017-09-28 14:43:45 +02:00
|
|
|
parse_error(format("unknown atom escape '{}'", cp));
|
2017-09-23 09:18:21 +02:00
|
|
|
}
|
|
|
|
|
2017-10-14 16:10:56 +02:00
|
|
|
struct CharRange { Codepoint min, max; };
|
|
|
|
|
2017-10-15 03:23:57 +02:00
|
|
|
void normalize_ranges(Vector<CharRange, MemoryDomain::Regex>& ranges)
|
2017-10-14 16:10:56 +02:00
|
|
|
{
|
|
|
|
if (ranges.empty())
|
|
|
|
return;
|
|
|
|
|
|
|
|
// Sort ranges so that we can use binary search
|
|
|
|
std::sort(ranges.begin(), ranges.end(),
|
|
|
|
[](auto& lhs, auto& rhs) { return lhs.min < rhs.min; });
|
|
|
|
|
|
|
|
// merge overlapping ranges
|
|
|
|
auto pos = ranges.begin();
|
|
|
|
for (auto next = pos+1; next != ranges.end(); ++next)
|
|
|
|
{
|
|
|
|
if (pos->max + 1 >= next->min)
|
|
|
|
{
|
|
|
|
if (next->max > pos->max)
|
|
|
|
pos->max = next->max;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
*++pos = *next;
|
|
|
|
}
|
|
|
|
ranges.erase(pos+1, ranges.end());
|
|
|
|
}
|
|
|
|
|
2017-10-23 09:45:43 +02:00
|
|
|
NodeIndex character_class()
|
2017-09-23 09:18:21 +02:00
|
|
|
{
|
2017-09-26 15:38:56 +02:00
|
|
|
const bool negative = m_pos != m_regex.end() and *m_pos == '^';
|
2017-09-23 09:18:21 +02:00
|
|
|
if (negative)
|
2017-09-26 15:38:56 +02:00
|
|
|
++m_pos;
|
2017-09-23 09:18:21 +02:00
|
|
|
|
2017-10-15 03:23:57 +02:00
|
|
|
Vector<CharRange, MemoryDomain::Regex> ranges;
|
|
|
|
Vector<Codepoint, MemoryDomain::Regex> excluded;
|
|
|
|
Vector<std::pair<wctype_t, bool>, MemoryDomain::Regex> ctypes;
|
2017-09-26 15:38:56 +02:00
|
|
|
while (m_pos != m_regex.end() and *m_pos != ']')
|
2017-09-23 09:18:21 +02:00
|
|
|
{
|
2017-10-02 07:49:08 +02:00
|
|
|
auto cp = *m_pos++;
|
2017-09-25 15:24:24 +02:00
|
|
|
if (cp == '-')
|
2017-09-23 09:18:21 +02:00
|
|
|
{
|
2017-09-26 11:03:12 +02:00
|
|
|
ranges.push_back({ '-', '-' });
|
2017-09-23 09:18:21 +02:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2017-09-26 15:38:56 +02:00
|
|
|
if (at_end())
|
2017-09-23 09:18:21 +02:00
|
|
|
break;
|
|
|
|
|
2017-09-26 15:04:41 +02:00
|
|
|
if (cp == '\\')
|
|
|
|
{
|
|
|
|
auto it = find_if(character_class_escapes,
|
2017-10-06 13:51:41 +02:00
|
|
|
[cp = to_lower(*m_pos)](auto& t) { return t.cp == cp; });
|
2017-09-26 15:04:41 +02:00
|
|
|
if (it != std::end(character_class_escapes))
|
|
|
|
{
|
2017-10-06 13:51:41 +02:00
|
|
|
auto negative = is_upper(*m_pos);
|
2017-09-27 08:04:05 +02:00
|
|
|
if (it->ctype)
|
2017-10-06 13:51:41 +02:00
|
|
|
ctypes.push_back({wctype(it->ctype), not negative});
|
|
|
|
for (auto& c : it->additional_chars)
|
2017-09-27 08:04:05 +02:00
|
|
|
{
|
2017-10-06 13:51:41 +02:00
|
|
|
if (negative)
|
2017-09-27 08:04:05 +02:00
|
|
|
excluded.push_back((Codepoint)c);
|
|
|
|
else
|
|
|
|
ranges.push_back({(Codepoint)c, (Codepoint)c});
|
|
|
|
}
|
2017-09-26 15:38:56 +02:00
|
|
|
++m_pos;
|
2017-09-26 15:04:41 +02:00
|
|
|
continue;
|
|
|
|
}
|
2017-10-02 07:49:08 +02:00
|
|
|
else // its just an escaped character
|
|
|
|
{
|
2017-10-07 15:24:05 +02:00
|
|
|
cp = *m_pos++;
|
|
|
|
for (auto& control : control_escapes)
|
|
|
|
{
|
|
|
|
if (control.name == cp)
|
|
|
|
{
|
|
|
|
cp = control.value;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2017-10-02 07:49:08 +02:00
|
|
|
}
|
2017-09-26 15:04:41 +02:00
|
|
|
}
|
|
|
|
|
2017-09-26 11:03:12 +02:00
|
|
|
CharRange range = { cp, cp };
|
2017-09-26 15:38:56 +02:00
|
|
|
if (*m_pos == '-')
|
2017-09-23 09:18:21 +02:00
|
|
|
{
|
2017-09-26 15:38:56 +02:00
|
|
|
if (++m_pos == m_regex.end())
|
2017-09-23 09:18:21 +02:00
|
|
|
break;
|
2017-09-26 16:37:21 +02:00
|
|
|
if (*m_pos != ']')
|
|
|
|
{
|
|
|
|
range.max = *m_pos++;
|
|
|
|
if (range.min > range.max)
|
|
|
|
parse_error("invalid range specified");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ranges.push_back(range);
|
|
|
|
range = { '-', '-' };
|
|
|
|
}
|
2017-09-23 09:18:21 +02:00
|
|
|
}
|
|
|
|
ranges.push_back(range);
|
|
|
|
}
|
2017-09-26 15:38:56 +02:00
|
|
|
if (at_end())
|
|
|
|
parse_error("unclosed character class");
|
|
|
|
++m_pos;
|
2017-09-23 09:18:21 +02:00
|
|
|
|
2017-09-29 05:22:09 +02:00
|
|
|
if (m_ignore_case)
|
|
|
|
{
|
|
|
|
for (auto& range : ranges)
|
|
|
|
{
|
2017-11-12 17:27:41 +01:00
|
|
|
range.min = to_lower(range.min);
|
2017-09-29 05:22:09 +02:00
|
|
|
range.max = to_lower(range.max);
|
|
|
|
}
|
|
|
|
for (auto& cp : excluded)
|
|
|
|
cp = to_lower(cp);
|
|
|
|
}
|
|
|
|
|
2017-10-14 16:10:56 +02:00
|
|
|
normalize_ranges(ranges);
|
|
|
|
|
2017-10-05 03:36:40 +02:00
|
|
|
// Optimize the relatively common case of using a character class to
|
|
|
|
// escape a character, such as [*]
|
|
|
|
if (ctypes.empty() and excluded.empty() and not negative and
|
|
|
|
ranges.size() == 1 and ranges.front().min == ranges.front().max)
|
|
|
|
return new_node(ParsedRegex::Literal, ranges.front().min);
|
|
|
|
|
2017-09-26 15:04:41 +02:00
|
|
|
auto matcher = [ranges = std::move(ranges),
|
2017-09-27 08:04:05 +02:00
|
|
|
ctypes = std::move(ctypes),
|
2017-09-29 05:22:09 +02:00
|
|
|
excluded = std::move(excluded),
|
|
|
|
negative, ignore_case = m_ignore_case] (Codepoint cp) {
|
|
|
|
if (ignore_case)
|
|
|
|
cp = to_lower(cp);
|
|
|
|
|
2017-10-14 16:10:56 +02:00
|
|
|
auto it = std::lower_bound(ranges.begin(), ranges.end(), cp,
|
|
|
|
[](auto& range, Codepoint cp)
|
|
|
|
{ return range.max < cp; });
|
|
|
|
|
|
|
|
auto found = (it != ranges.end() and it->min <= cp) or
|
|
|
|
contains_that(ctypes, [cp](auto& c) {
|
2017-09-26 15:04:41 +02:00
|
|
|
return (bool)iswctype(cp, c.first) == c.second;
|
2017-09-27 08:04:05 +02:00
|
|
|
}) or (not excluded.empty() and not contains(excluded, cp));
|
2017-09-26 11:03:12 +02:00
|
|
|
return negative ? not found : found;
|
|
|
|
};
|
|
|
|
|
2017-09-26 15:38:56 +02:00
|
|
|
auto matcher_id = m_parsed_regex.matchers.size();
|
|
|
|
m_parsed_regex.matchers.push_back(std::move(matcher));
|
2017-09-23 09:18:21 +02:00
|
|
|
|
2017-09-26 16:04:47 +02:00
|
|
|
return new_node(ParsedRegex::Matcher, matcher_id);
|
2017-09-23 09:18:21 +02:00
|
|
|
}
|
|
|
|
|
2017-09-26 16:04:47 +02:00
|
|
|
ParsedRegex::Quantifier quantifier()
|
2017-09-17 12:15:43 +02:00
|
|
|
{
|
2017-09-26 15:38:56 +02:00
|
|
|
if (at_end())
|
2017-09-26 16:04:47 +02:00
|
|
|
return {ParsedRegex::Quantifier::One};
|
2017-09-25 15:24:24 +02:00
|
|
|
|
2017-10-11 13:28:22 +02:00
|
|
|
constexpr int max_repeat = 1000;
|
2017-10-20 06:08:24 +02:00
|
|
|
auto read_bound = [max_repeat, this](auto& pos, auto begin, auto end) {
|
2017-10-23 09:51:24 +02:00
|
|
|
int16_t res = 0;
|
2017-09-18 11:22:11 +02:00
|
|
|
for (; pos != end; ++pos)
|
|
|
|
{
|
2017-09-25 15:24:24 +02:00
|
|
|
const auto cp = *pos;
|
|
|
|
if (cp < '0' or cp > '9')
|
2017-10-23 09:51:24 +02:00
|
|
|
return pos == begin ? (int16_t)-1 : res;
|
2017-09-25 15:24:24 +02:00
|
|
|
res = res * 10 + cp - '0';
|
2017-10-11 13:28:22 +02:00
|
|
|
if (res > max_repeat)
|
|
|
|
parse_error(format("Explicit quantifier is too big, maximum is {}", max_repeat));
|
2017-09-18 11:22:11 +02:00
|
|
|
}
|
|
|
|
return res;
|
|
|
|
};
|
|
|
|
|
2017-09-28 11:50:04 +02:00
|
|
|
auto check_greedy = [&]() {
|
|
|
|
if (at_end() or *m_pos != '?')
|
|
|
|
return true;
|
|
|
|
++m_pos;
|
|
|
|
return false;
|
|
|
|
};
|
|
|
|
|
2017-09-26 15:38:56 +02:00
|
|
|
switch (*m_pos)
|
2017-09-17 10:50:53 +02:00
|
|
|
{
|
2017-09-28 11:50:04 +02:00
|
|
|
case '*': ++m_pos; return {ParsedRegex::Quantifier::RepeatZeroOrMore, check_greedy()};
|
|
|
|
case '+': ++m_pos; return {ParsedRegex::Quantifier::RepeatOneOrMore, check_greedy()};
|
|
|
|
case '?': ++m_pos; return {ParsedRegex::Quantifier::Optional, check_greedy()};
|
2017-09-18 11:22:11 +02:00
|
|
|
case '{':
|
|
|
|
{
|
2017-09-26 15:38:56 +02:00
|
|
|
auto it = m_pos+1;
|
2017-10-23 09:51:24 +02:00
|
|
|
const int16_t min = read_bound(it, it, m_regex.end());
|
|
|
|
int16_t max = min;
|
2017-09-18 11:22:11 +02:00
|
|
|
if (*it == ',')
|
|
|
|
{
|
|
|
|
++it;
|
2017-10-20 06:08:24 +02:00
|
|
|
max = read_bound(it, it, m_regex.end());
|
2017-09-18 11:22:11 +02:00
|
|
|
}
|
|
|
|
if (*it++ != '}')
|
2017-09-26 15:38:56 +02:00
|
|
|
parse_error("expected closing bracket");
|
|
|
|
m_pos = it;
|
2017-10-02 09:35:21 +02:00
|
|
|
return {ParsedRegex::Quantifier::RepeatMinMax, check_greedy(), min, max};
|
2017-09-18 11:22:11 +02:00
|
|
|
}
|
2017-09-26 16:04:47 +02:00
|
|
|
default: return {ParsedRegex::Quantifier::One};
|
2017-09-17 10:50:53 +02:00
|
|
|
}
|
2017-09-17 12:15:43 +02:00
|
|
|
}
|
2017-09-26 15:04:41 +02:00
|
|
|
|
2017-10-23 09:45:43 +02:00
|
|
|
NodeIndex new_node(ParsedRegex::Op op, Codepoint value = -1,
|
2017-10-23 09:35:43 +02:00
|
|
|
ParsedRegex::Quantifier quantifier = {ParsedRegex::Quantifier::One})
|
2017-09-26 16:04:47 +02:00
|
|
|
{
|
2017-10-23 09:35:43 +02:00
|
|
|
constexpr auto max_nodes = std::numeric_limits<uint16_t>::max();
|
2017-10-23 09:45:43 +02:00
|
|
|
const NodeIndex res = m_parsed_regex.nodes.size();
|
2017-10-23 09:35:43 +02:00
|
|
|
if (res == max_nodes)
|
|
|
|
parse_error(format("regex parsed to more than {} ast nodes", max_nodes));
|
2017-10-23 09:45:43 +02:00
|
|
|
const NodeIndex next = res+1;
|
2017-10-23 09:35:43 +02:00
|
|
|
m_parsed_regex.nodes.push_back({op, m_ignore_case, next, value, quantifier});
|
|
|
|
return res;
|
2017-09-26 16:04:47 +02:00
|
|
|
}
|
|
|
|
|
2017-09-26 15:38:56 +02:00
|
|
|
bool at_end() const { return m_pos == m_regex.end(); }
|
|
|
|
|
2017-10-23 09:45:43 +02:00
|
|
|
ParsedRegex::Node& get_node(NodeIndex index)
|
2017-10-23 09:35:43 +02:00
|
|
|
{
|
|
|
|
return m_parsed_regex.nodes[index];
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-09-26 15:38:56 +02:00
|
|
|
[[gnu::noreturn]]
|
2017-10-13 04:44:24 +02:00
|
|
|
void parse_error(StringView error) const
|
2017-09-26 15:38:56 +02:00
|
|
|
{
|
2017-10-09 08:04:14 +02:00
|
|
|
throw regex_error(format("regex parse error: {} at '{}<<<HERE>>>{}'", error,
|
|
|
|
StringView{m_regex.begin(), m_pos.base()},
|
|
|
|
StringView{m_pos.base(), m_regex.end()}));
|
2017-09-26 15:38:56 +02:00
|
|
|
}
|
|
|
|
|
2017-10-23 09:45:43 +02:00
|
|
|
void validate_lookaround(NodeIndex index)
|
2017-09-28 14:43:45 +02:00
|
|
|
{
|
2017-10-23 09:45:43 +02:00
|
|
|
for_each_child(m_parsed_regex, index, [this](NodeIndex child_index) {
|
2017-10-23 09:35:43 +02:00
|
|
|
auto& child = get_node(child_index);
|
|
|
|
if (child.op != ParsedRegex::Literal and child.op != ParsedRegex::Matcher and
|
|
|
|
child.op != ParsedRegex::AnyChar)
|
2017-10-09 05:12:42 +02:00
|
|
|
parse_error("Lookaround can only contain literals, any chars or character classes");
|
2017-10-23 09:35:43 +02:00
|
|
|
if (child.quantifier.type != ParsedRegex::Quantifier::One)
|
2017-10-09 05:12:42 +02:00
|
|
|
parse_error("Quantifiers cannot be used in lookarounds");
|
2017-10-23 09:35:43 +02:00
|
|
|
return true;
|
|
|
|
});
|
2017-09-28 14:43:45 +02:00
|
|
|
}
|
|
|
|
|
2017-09-26 15:38:56 +02:00
|
|
|
ParsedRegex m_parsed_regex;
|
|
|
|
StringView m_regex;
|
|
|
|
Iterator m_pos;
|
2017-09-29 05:22:09 +02:00
|
|
|
bool m_ignore_case = false;
|
2017-09-26 15:38:56 +02:00
|
|
|
|
2017-10-09 12:38:34 +02:00
|
|
|
static constexpr struct CharacterClassEscape {
|
2017-09-26 15:04:41 +02:00
|
|
|
Codepoint cp;
|
|
|
|
const char* ctype;
|
|
|
|
StringView additional_chars;
|
|
|
|
bool neg;
|
2017-10-09 12:38:34 +02:00
|
|
|
} character_class_escapes[] = {
|
|
|
|
{ 'd', "digit", "", false },
|
|
|
|
{ 'w', "alnum", "_", false },
|
|
|
|
{ 's', "space", "", false },
|
|
|
|
{ 'h', nullptr, " \t", false },
|
2017-09-26 15:04:41 +02:00
|
|
|
};
|
2017-10-07 15:24:05 +02:00
|
|
|
|
2017-10-09 12:38:34 +02:00
|
|
|
static constexpr struct ControlEscape {
|
|
|
|
Codepoint name;
|
|
|
|
Codepoint value;
|
|
|
|
} control_escapes[] = {
|
|
|
|
{ 'f', '\f' },
|
|
|
|
{ 'n', '\n' },
|
|
|
|
{ 'r', '\r' },
|
|
|
|
{ 't', '\t' },
|
|
|
|
{ 'v', '\v' }
|
|
|
|
};
|
2017-09-17 12:15:43 +02:00
|
|
|
};
|
2017-09-17 10:50:53 +02:00
|
|
|
|
2017-10-09 12:38:34 +02:00
|
|
|
constexpr RegexParser::CharacterClassEscape RegexParser::character_class_escapes[];
|
|
|
|
constexpr RegexParser::ControlEscape RegexParser::control_escapes[];
|
2017-10-07 15:24:05 +02:00
|
|
|
|
2017-09-26 16:04:47 +02:00
|
|
|
struct RegexCompiler
|
2017-09-25 15:24:24 +02:00
|
|
|
{
|
2017-10-09 08:04:14 +02:00
|
|
|
RegexCompiler(const ParsedRegex& parsed_regex, RegexCompileFlags flags, MatchDirection direction)
|
|
|
|
: m_parsed_regex{parsed_regex}, m_flags(flags), m_forward{direction == MatchDirection::Forward}
|
2017-09-26 16:04:47 +02:00
|
|
|
{
|
2017-10-20 09:17:02 +02:00
|
|
|
write_search_prefix();
|
2017-10-23 09:35:43 +02:00
|
|
|
compile_node(0);
|
2017-10-07 12:51:32 +02:00
|
|
|
push_inst(CompiledRegex::Match);
|
2017-09-26 16:04:47 +02:00
|
|
|
m_program.matchers = m_parsed_regex.matchers;
|
|
|
|
m_program.save_count = m_parsed_regex.capture_count * 2;
|
2017-10-07 06:46:27 +02:00
|
|
|
m_program.direction = direction;
|
2017-10-06 07:40:27 +02:00
|
|
|
m_program.start_chars = compute_start_chars();
|
2017-09-26 16:04:47 +02:00
|
|
|
}
|
2017-09-25 15:24:24 +02:00
|
|
|
|
2017-09-26 16:04:47 +02:00
|
|
|
CompiledRegex get_compiled_regex() { return std::move(m_program); }
|
2017-09-23 09:18:21 +02:00
|
|
|
|
2017-10-07 04:57:24 +02:00
|
|
|
private:
|
2017-09-17 10:50:53 +02:00
|
|
|
|
2017-10-23 09:45:43 +02:00
|
|
|
uint32_t compile_node_inner(ParsedRegex::NodeIndex index)
|
2017-09-26 16:04:47 +02:00
|
|
|
{
|
2017-10-23 09:35:43 +02:00
|
|
|
auto& node = get_node(index);
|
|
|
|
|
|
|
|
const uint32_t start_pos = (uint32_t)m_program.instructions.size();
|
|
|
|
const bool ignore_case = node.ignore_case;
|
2017-09-26 16:04:47 +02:00
|
|
|
|
2017-10-23 09:35:43 +02:00
|
|
|
const bool save = (node.op == ParsedRegex::Alternation or node.op == ParsedRegex::Sequence) and
|
|
|
|
(node.value == 0 or (node.value != -1 and not (m_flags & RegexCompileFlags::NoSubs)));
|
2017-10-21 04:30:35 +02:00
|
|
|
if (save)
|
2017-10-23 09:35:43 +02:00
|
|
|
push_inst(CompiledRegex::Save, node.value * 2 + (m_forward ? 0 : 1));
|
2017-09-17 12:15:43 +02:00
|
|
|
|
2017-10-07 12:51:32 +02:00
|
|
|
Vector<uint32_t> goto_inner_end_offsets;
|
2017-10-23 09:35:43 +02:00
|
|
|
switch (node.op)
|
2017-09-26 16:04:47 +02:00
|
|
|
{
|
|
|
|
case ParsedRegex::Literal:
|
2017-10-10 05:21:21 +02:00
|
|
|
if (ignore_case)
|
2017-10-23 09:35:43 +02:00
|
|
|
push_inst(CompiledRegex::Literal_IgnoreCase, to_lower(node.value));
|
2017-10-07 12:51:32 +02:00
|
|
|
else
|
2017-10-23 09:35:43 +02:00
|
|
|
push_inst(CompiledRegex::Literal, node.value);
|
2017-09-26 16:04:47 +02:00
|
|
|
break;
|
|
|
|
case ParsedRegex::AnyChar:
|
2017-10-07 12:51:32 +02:00
|
|
|
push_inst(CompiledRegex::AnyChar);
|
2017-09-26 16:04:47 +02:00
|
|
|
break;
|
|
|
|
case ParsedRegex::Matcher:
|
2017-10-23 09:35:43 +02:00
|
|
|
push_inst(CompiledRegex::Matcher, node.value);
|
2017-10-07 12:51:32 +02:00
|
|
|
break;
|
2017-09-26 16:04:47 +02:00
|
|
|
case ParsedRegex::Sequence:
|
2017-10-07 06:46:27 +02:00
|
|
|
{
|
|
|
|
if (m_forward)
|
2017-10-23 09:45:43 +02:00
|
|
|
for_each_child(m_parsed_regex, index, [this](ParsedRegex::NodeIndex child) {
|
2017-10-23 09:35:43 +02:00
|
|
|
compile_node(child); return true;
|
|
|
|
});
|
2017-10-07 06:46:27 +02:00
|
|
|
else
|
2017-10-23 09:45:43 +02:00
|
|
|
for_each_child_reverse(m_parsed_regex, index, [this](ParsedRegex::NodeIndex child) {
|
2017-10-23 09:35:43 +02:00
|
|
|
compile_node(child); return true;
|
|
|
|
});
|
2017-09-26 16:04:47 +02:00
|
|
|
break;
|
2017-10-07 06:46:27 +02:00
|
|
|
}
|
2017-09-26 16:04:47 +02:00
|
|
|
case ParsedRegex::Alternation:
|
|
|
|
{
|
2017-10-23 09:35:43 +02:00
|
|
|
auto split_pos = m_program.instructions.size();
|
2017-10-23 09:45:43 +02:00
|
|
|
for_each_child(m_parsed_regex, index, [this, index](ParsedRegex::NodeIndex child) {
|
2017-10-23 09:35:43 +02:00
|
|
|
if (child != index+1)
|
|
|
|
push_inst(CompiledRegex::Split_PrioritizeParent);
|
|
|
|
return true;
|
|
|
|
});
|
2017-09-17 13:08:10 +02:00
|
|
|
|
2017-10-23 09:35:43 +02:00
|
|
|
for_each_child(m_parsed_regex, index,
|
2017-10-23 09:45:43 +02:00
|
|
|
[&, end = node.children_end](ParsedRegex::NodeIndex child) {
|
2017-10-23 09:35:43 +02:00
|
|
|
auto node = compile_node(child);
|
|
|
|
if (child != index+1)
|
|
|
|
m_program.instructions[split_pos++].param = node;
|
|
|
|
if (get_node(child).children_end != end)
|
2017-10-09 15:04:28 +02:00
|
|
|
{
|
|
|
|
auto jump = push_inst(CompiledRegex::Jump);
|
|
|
|
goto_inner_end_offsets.push_back(jump);
|
|
|
|
}
|
2017-10-23 09:35:43 +02:00
|
|
|
return true;
|
|
|
|
});
|
2017-09-26 16:04:47 +02:00
|
|
|
break;
|
|
|
|
}
|
2017-09-28 14:43:45 +02:00
|
|
|
case ParsedRegex::LookAhead:
|
2017-10-10 05:21:21 +02:00
|
|
|
push_inst(m_forward ? (ignore_case ? CompiledRegex::LookAhead_IgnoreCase
|
|
|
|
: CompiledRegex::LookAhead)
|
|
|
|
: (ignore_case ? CompiledRegex::LookBehind_IgnoreCase
|
|
|
|
: CompiledRegex::LookBehind),
|
2017-10-23 09:35:43 +02:00
|
|
|
push_lookaround(index, false, ignore_case));
|
2017-09-28 14:43:45 +02:00
|
|
|
break;
|
|
|
|
case ParsedRegex::NegativeLookAhead:
|
2017-10-10 05:21:21 +02:00
|
|
|
push_inst(m_forward ? (ignore_case ? CompiledRegex::NegativeLookAhead_IgnoreCase
|
|
|
|
: CompiledRegex::NegativeLookAhead)
|
|
|
|
: (ignore_case ? CompiledRegex::NegativeLookBehind_IgnoreCase
|
|
|
|
: CompiledRegex::NegativeLookBehind),
|
2017-10-23 09:35:43 +02:00
|
|
|
push_lookaround(index, false, ignore_case));
|
2017-09-28 14:43:45 +02:00
|
|
|
break;
|
2017-10-04 17:00:19 +02:00
|
|
|
case ParsedRegex::LookBehind:
|
2017-10-10 05:21:21 +02:00
|
|
|
push_inst(m_forward ? (ignore_case ? CompiledRegex::LookBehind_IgnoreCase
|
|
|
|
: CompiledRegex::LookBehind)
|
|
|
|
: (ignore_case ? CompiledRegex::LookAhead_IgnoreCase
|
|
|
|
: CompiledRegex::LookAhead),
|
2017-10-23 09:35:43 +02:00
|
|
|
push_lookaround(index, true, ignore_case));
|
2017-10-04 17:00:19 +02:00
|
|
|
break;
|
2017-09-28 14:43:45 +02:00
|
|
|
case ParsedRegex::NegativeLookBehind:
|
2017-10-10 05:21:21 +02:00
|
|
|
push_inst(m_forward ? (ignore_case ? CompiledRegex::NegativeLookBehind_IgnoreCase
|
|
|
|
: CompiledRegex::NegativeLookBehind)
|
|
|
|
: (ignore_case ? CompiledRegex::NegativeLookAhead_IgnoreCase
|
|
|
|
: CompiledRegex::NegativeLookAhead),
|
2017-10-23 09:35:43 +02:00
|
|
|
push_lookaround(index, true, ignore_case));
|
2017-09-28 14:43:45 +02:00
|
|
|
break;
|
2017-09-26 16:04:47 +02:00
|
|
|
case ParsedRegex::LineStart:
|
2017-10-07 12:51:32 +02:00
|
|
|
push_inst(m_forward ? CompiledRegex::LineStart
|
|
|
|
: CompiledRegex::LineEnd);
|
2017-09-26 16:04:47 +02:00
|
|
|
break;
|
|
|
|
case ParsedRegex::LineEnd:
|
2017-10-07 12:51:32 +02:00
|
|
|
push_inst(m_forward ? CompiledRegex::LineEnd
|
|
|
|
: CompiledRegex::LineStart);
|
2017-09-26 16:04:47 +02:00
|
|
|
break;
|
|
|
|
case ParsedRegex::WordBoundary:
|
2017-10-07 12:51:32 +02:00
|
|
|
push_inst(CompiledRegex::WordBoundary);
|
2017-09-26 16:04:47 +02:00
|
|
|
break;
|
|
|
|
case ParsedRegex::NotWordBoundary:
|
2017-10-07 12:51:32 +02:00
|
|
|
push_inst(CompiledRegex::NotWordBoundary);
|
2017-09-26 16:04:47 +02:00
|
|
|
break;
|
|
|
|
case ParsedRegex::SubjectBegin:
|
2017-10-07 12:51:32 +02:00
|
|
|
push_inst(m_forward ? CompiledRegex::SubjectBegin
|
|
|
|
: CompiledRegex::SubjectEnd);
|
2017-09-26 16:04:47 +02:00
|
|
|
break;
|
|
|
|
case ParsedRegex::SubjectEnd:
|
2017-10-07 12:51:32 +02:00
|
|
|
push_inst(m_forward ? CompiledRegex::SubjectEnd
|
|
|
|
: CompiledRegex::SubjectBegin);
|
2017-09-26 16:04:47 +02:00
|
|
|
break;
|
2017-09-26 17:01:06 +02:00
|
|
|
case ParsedRegex::ResetStart:
|
2017-10-07 12:51:32 +02:00
|
|
|
push_inst(CompiledRegex::Save, 0);
|
2017-09-26 17:01:06 +02:00
|
|
|
break;
|
2017-09-17 10:50:53 +02:00
|
|
|
}
|
|
|
|
|
2017-09-26 16:04:47 +02:00
|
|
|
for (auto& offset : goto_inner_end_offsets)
|
2017-10-07 12:51:32 +02:00
|
|
|
m_program.instructions[offset].param = m_program.instructions.size();
|
2017-09-17 10:50:53 +02:00
|
|
|
|
2017-10-21 04:30:35 +02:00
|
|
|
if (save)
|
2017-10-23 09:35:43 +02:00
|
|
|
push_inst(CompiledRegex::Save, node.value * 2 + (m_forward ? 1 : 0));
|
2017-09-26 16:04:47 +02:00
|
|
|
|
|
|
|
return start_pos;
|
2017-09-19 09:56:21 +02:00
|
|
|
}
|
|
|
|
|
2017-10-23 09:45:43 +02:00
|
|
|
uint32_t compile_node(ParsedRegex::NodeIndex index)
|
2017-09-26 16:04:47 +02:00
|
|
|
{
|
2017-10-23 09:35:43 +02:00
|
|
|
auto& node = get_node(index);
|
|
|
|
|
|
|
|
const uint32_t start_pos = (uint32_t)m_program.instructions.size();
|
2017-10-07 12:51:32 +02:00
|
|
|
Vector<uint32_t> goto_ends;
|
2017-09-18 11:22:11 +02:00
|
|
|
|
2017-10-23 09:35:43 +02:00
|
|
|
auto& quantifier = node.quantifier;
|
2017-09-28 11:50:04 +02:00
|
|
|
|
2017-10-07 06:46:27 +02:00
|
|
|
// TODO reverse, invert the way we write optional quantifiers ?
|
|
|
|
|
2017-09-28 11:50:04 +02:00
|
|
|
if (quantifier.allows_none())
|
2017-09-26 16:04:47 +02:00
|
|
|
{
|
2017-10-07 12:51:32 +02:00
|
|
|
auto split_pos = push_inst(quantifier.greedy ? CompiledRegex::Split_PrioritizeParent
|
|
|
|
: CompiledRegex::Split_PrioritizeChild);
|
|
|
|
goto_ends.push_back(split_pos);
|
2017-09-26 16:04:47 +02:00
|
|
|
}
|
2017-09-18 11:22:11 +02:00
|
|
|
|
2017-10-23 09:35:43 +02:00
|
|
|
auto inner_pos = compile_node_inner(index);
|
2017-09-26 16:04:47 +02:00
|
|
|
// Write the node multiple times when we have a min count quantifier
|
2017-09-28 11:50:04 +02:00
|
|
|
for (int i = 1; i < quantifier.min; ++i)
|
2017-10-23 09:35:43 +02:00
|
|
|
inner_pos = compile_node_inner(index);
|
2017-09-18 11:22:11 +02:00
|
|
|
|
2017-09-28 11:50:04 +02:00
|
|
|
if (quantifier.allows_infinite_repeat())
|
2017-10-07 12:51:32 +02:00
|
|
|
push_inst(quantifier.greedy ? CompiledRegex::Split_PrioritizeChild
|
|
|
|
: CompiledRegex::Split_PrioritizeParent,
|
|
|
|
inner_pos);
|
|
|
|
|
2017-09-26 16:04:47 +02:00
|
|
|
// Write the node as an optional match for the min -> max counts
|
2017-10-23 09:51:24 +02:00
|
|
|
else for (int i = std::max((int16_t)1, quantifier.min); // STILL UGLY !
|
2017-09-28 11:50:04 +02:00
|
|
|
i < quantifier.max; ++i)
|
2017-09-26 16:04:47 +02:00
|
|
|
{
|
2017-10-07 12:51:32 +02:00
|
|
|
auto split_pos = push_inst(quantifier.greedy ? CompiledRegex::Split_PrioritizeParent
|
|
|
|
: CompiledRegex::Split_PrioritizeChild);
|
|
|
|
goto_ends.push_back(split_pos);
|
2017-10-23 09:35:43 +02:00
|
|
|
compile_node_inner(index);
|
2017-09-26 16:04:47 +02:00
|
|
|
}
|
2017-09-18 11:22:11 +02:00
|
|
|
|
2017-10-07 12:51:32 +02:00
|
|
|
for (auto offset : goto_ends)
|
|
|
|
m_program.instructions[offset].param = m_program.instructions.size();
|
2017-09-26 16:04:47 +02:00
|
|
|
|
2017-10-23 09:35:43 +02:00
|
|
|
return start_pos;
|
2017-09-26 16:04:47 +02:00
|
|
|
}
|
2017-09-17 10:50:53 +02:00
|
|
|
|
2017-10-20 09:17:02 +02:00
|
|
|
// Add an set of instruction prefix used in the search use case
|
|
|
|
void write_search_prefix()
|
|
|
|
{
|
|
|
|
kak_assert(m_program.instructions.empty());
|
|
|
|
push_inst(CompiledRegex::Split_PrioritizeChild, CompiledRegex::search_prefix_size);
|
|
|
|
push_inst(CompiledRegex::FindNextStart);
|
|
|
|
push_inst(CompiledRegex::Split_PrioritizeParent, 1);
|
|
|
|
kak_assert(m_program.instructions.size() == CompiledRegex::search_prefix_size);
|
|
|
|
}
|
|
|
|
|
2017-10-07 12:51:32 +02:00
|
|
|
uint32_t push_inst(CompiledRegex::Op op, uint32_t param = 0)
|
2017-09-26 16:04:47 +02:00
|
|
|
{
|
2017-10-16 13:36:06 +02:00
|
|
|
constexpr auto max_instructions = std::numeric_limits<uint16_t>::max();
|
2017-10-07 12:51:32 +02:00
|
|
|
uint32_t res = m_program.instructions.size();
|
2017-10-16 13:36:06 +02:00
|
|
|
if (res > max_instructions)
|
|
|
|
throw regex_error(format("regex compiled to more than {} instructions", max_instructions));
|
2017-10-15 03:34:49 +02:00
|
|
|
m_program.instructions.push_back({ op, false, 0, param });
|
2017-10-07 12:51:32 +02:00
|
|
|
return res;
|
2017-09-26 16:04:47 +02:00
|
|
|
}
|
2017-09-19 10:44:58 +02:00
|
|
|
|
2017-10-23 09:45:43 +02:00
|
|
|
uint32_t push_lookaround(ParsedRegex::NodeIndex index, bool reversed, bool ignore_case)
|
2017-09-28 14:43:45 +02:00
|
|
|
{
|
2017-10-07 12:51:32 +02:00
|
|
|
uint32_t res = m_program.lookarounds.size();
|
2017-10-23 09:45:43 +02:00
|
|
|
auto write_matcher = [this, ignore_case](ParsedRegex::NodeIndex child) {
|
2017-10-23 09:35:43 +02:00
|
|
|
auto& character = get_node(child);
|
|
|
|
if (character.op == ParsedRegex::Literal)
|
|
|
|
m_program.lookarounds.push_back(ignore_case ? to_lower(character.value)
|
|
|
|
: character.value);
|
|
|
|
else if (character.op == ParsedRegex::AnyChar)
|
2017-10-09 05:12:42 +02:00
|
|
|
m_program.lookarounds.push_back(0xF000);
|
2017-10-23 09:35:43 +02:00
|
|
|
else if (character.op == ParsedRegex::Matcher)
|
|
|
|
m_program.lookarounds.push_back(0xF0001 + character.value);
|
2017-10-09 05:12:42 +02:00
|
|
|
else
|
|
|
|
kak_assert(false);
|
2017-10-23 09:35:43 +02:00
|
|
|
return true;
|
2017-10-09 05:12:42 +02:00
|
|
|
};
|
|
|
|
|
2017-09-28 14:43:45 +02:00
|
|
|
if (reversed)
|
2017-10-23 09:35:43 +02:00
|
|
|
for_each_child_reverse(m_parsed_regex, index, write_matcher);
|
2017-09-28 14:43:45 +02:00
|
|
|
else
|
2017-10-23 09:35:43 +02:00
|
|
|
for_each_child(m_parsed_regex, index, write_matcher);
|
2017-10-07 12:51:32 +02:00
|
|
|
|
|
|
|
m_program.lookarounds.push_back((Codepoint)-1);
|
|
|
|
return res;
|
2017-09-28 14:43:45 +02:00
|
|
|
}
|
|
|
|
|
2017-10-06 07:40:27 +02:00
|
|
|
// Fills accepted and rejected according to which chars can start the given node,
|
|
|
|
// returns true if the node did not consume the char, hence a following node in
|
|
|
|
// sequence would be still relevant for the parent node start chars computation.
|
2017-10-23 09:45:43 +02:00
|
|
|
bool compute_start_chars(ParsedRegex::NodeIndex index,
|
2017-10-20 05:49:19 +02:00
|
|
|
CompiledRegex::StartChars& start_chars) const
|
2017-10-06 07:40:27 +02:00
|
|
|
{
|
2017-10-23 09:35:43 +02:00
|
|
|
auto& node = get_node(index);
|
|
|
|
switch (node.op)
|
2017-10-06 07:40:27 +02:00
|
|
|
{
|
|
|
|
case ParsedRegex::Literal:
|
2017-10-23 09:35:43 +02:00
|
|
|
if (node.value < CompiledRegex::StartChars::count)
|
2017-10-13 04:58:09 +02:00
|
|
|
{
|
2017-10-23 09:35:43 +02:00
|
|
|
if (node.ignore_case)
|
2017-10-13 04:58:09 +02:00
|
|
|
{
|
2017-10-23 09:35:43 +02:00
|
|
|
start_chars.map[to_lower(node.value)] = true;
|
|
|
|
start_chars.map[to_upper(node.value)] = true;
|
2017-10-13 04:58:09 +02:00
|
|
|
}
|
|
|
|
else
|
2017-10-23 09:35:43 +02:00
|
|
|
start_chars.map[node.value] = true;
|
2017-10-13 04:58:09 +02:00
|
|
|
}
|
2017-10-20 12:26:33 +02:00
|
|
|
else
|
2017-10-21 04:04:08 +02:00
|
|
|
start_chars.map[CompiledRegex::StartChars::other] = true;
|
2017-10-23 09:35:43 +02:00
|
|
|
return node.quantifier.allows_none();
|
2017-10-06 07:40:27 +02:00
|
|
|
case ParsedRegex::AnyChar:
|
2017-10-20 05:49:19 +02:00
|
|
|
for (auto& b : start_chars.map)
|
2017-10-06 07:40:27 +02:00
|
|
|
b = true;
|
2017-10-21 04:04:08 +02:00
|
|
|
start_chars.map[CompiledRegex::StartChars::other] = true;
|
2017-10-23 09:35:43 +02:00
|
|
|
return node.quantifier.allows_none();
|
2017-10-06 07:40:27 +02:00
|
|
|
case ParsedRegex::Matcher:
|
2017-10-21 04:04:08 +02:00
|
|
|
for (Codepoint c = 0; c < CompiledRegex::StartChars::count; ++c)
|
2017-10-23 09:35:43 +02:00
|
|
|
if (m_program.matchers[node.value](c))
|
2017-10-20 05:49:19 +02:00
|
|
|
start_chars.map[c] = true;
|
2017-10-21 04:04:08 +02:00
|
|
|
start_chars.map[CompiledRegex::StartChars::other] = true; // stay safe
|
2017-10-23 09:35:43 +02:00
|
|
|
return node.quantifier.allows_none();
|
2017-10-06 07:40:27 +02:00
|
|
|
case ParsedRegex::Sequence:
|
|
|
|
{
|
2017-10-23 09:35:43 +02:00
|
|
|
bool did_not_consume = false;
|
|
|
|
auto does_not_consume = [&, this](auto child) {
|
|
|
|
return this->compute_start_chars(child, start_chars);
|
2017-10-07 06:46:27 +02:00
|
|
|
};
|
|
|
|
if (m_forward)
|
2017-10-23 09:35:43 +02:00
|
|
|
did_not_consume = for_each_child(m_parsed_regex, index, does_not_consume);
|
2017-10-07 06:46:27 +02:00
|
|
|
else
|
2017-10-23 09:35:43 +02:00
|
|
|
did_not_consume = for_each_child_reverse(m_parsed_regex, index, does_not_consume);
|
2017-10-07 06:46:27 +02:00
|
|
|
|
2017-10-23 09:35:43 +02:00
|
|
|
return did_not_consume or node.quantifier.allows_none();
|
2017-10-06 07:40:27 +02:00
|
|
|
}
|
|
|
|
case ParsedRegex::Alternation:
|
|
|
|
{
|
2017-10-23 09:35:43 +02:00
|
|
|
bool all_consumed = not node.quantifier.allows_none();
|
2017-10-23 09:45:43 +02:00
|
|
|
for_each_child(m_parsed_regex, index, [&](ParsedRegex::NodeIndex child) {
|
2017-10-20 05:49:19 +02:00
|
|
|
if (compute_start_chars(child, start_chars))
|
2017-10-06 07:40:27 +02:00
|
|
|
all_consumed = false;
|
2017-10-23 09:35:43 +02:00
|
|
|
return true;
|
|
|
|
});
|
2017-10-06 07:40:27 +02:00
|
|
|
return not all_consumed;
|
|
|
|
}
|
|
|
|
case ParsedRegex::LineStart:
|
|
|
|
case ParsedRegex::LineEnd:
|
|
|
|
case ParsedRegex::WordBoundary:
|
|
|
|
case ParsedRegex::NotWordBoundary:
|
|
|
|
case ParsedRegex::SubjectBegin:
|
|
|
|
case ParsedRegex::SubjectEnd:
|
|
|
|
case ParsedRegex::ResetStart:
|
|
|
|
case ParsedRegex::LookAhead:
|
|
|
|
case ParsedRegex::LookBehind:
|
2017-10-09 12:19:36 +02:00
|
|
|
case ParsedRegex::NegativeLookAhead:
|
2017-10-06 07:40:27 +02:00
|
|
|
case ParsedRegex::NegativeLookBehind:
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-10-09 15:04:28 +02:00
|
|
|
[[gnu::noinline]]
|
2017-10-06 07:40:27 +02:00
|
|
|
std::unique_ptr<CompiledRegex::StartChars> compute_start_chars() const
|
|
|
|
{
|
2017-10-20 05:49:19 +02:00
|
|
|
CompiledRegex::StartChars start_chars{};
|
2017-10-23 09:35:43 +02:00
|
|
|
if (compute_start_chars(0, start_chars))
|
2017-10-06 07:40:27 +02:00
|
|
|
return nullptr;
|
|
|
|
|
2017-10-20 05:49:19 +02:00
|
|
|
if (not contains(start_chars.map, false))
|
2017-10-08 06:22:52 +02:00
|
|
|
return nullptr;
|
|
|
|
|
2017-10-20 05:49:19 +02:00
|
|
|
return std::make_unique<CompiledRegex::StartChars>(start_chars);
|
2017-10-06 07:40:27 +02:00
|
|
|
}
|
|
|
|
|
2017-10-23 09:45:43 +02:00
|
|
|
const ParsedRegex::Node& get_node(ParsedRegex::NodeIndex index) const
|
2017-10-23 09:35:43 +02:00
|
|
|
{
|
|
|
|
return m_parsed_regex.nodes[index];
|
|
|
|
}
|
|
|
|
|
2017-09-26 16:04:47 +02:00
|
|
|
CompiledRegex m_program;
|
2017-10-09 08:04:14 +02:00
|
|
|
RegexCompileFlags m_flags;
|
2017-09-26 16:04:47 +02:00
|
|
|
const ParsedRegex& m_parsed_regex;
|
2017-10-07 06:46:27 +02:00
|
|
|
const bool m_forward;
|
2017-09-26 16:04:47 +02:00
|
|
|
};
|
2017-09-17 10:50:53 +02:00
|
|
|
|
2017-09-26 16:31:18 +02:00
|
|
|
void dump_regex(const CompiledRegex& program)
|
2017-09-17 10:50:53 +02:00
|
|
|
{
|
2017-10-09 13:29:45 +02:00
|
|
|
int count = 0;
|
2017-10-07 12:51:32 +02:00
|
|
|
for (auto& inst : program.instructions)
|
2017-09-17 10:50:53 +02:00
|
|
|
{
|
2017-10-09 13:29:45 +02:00
|
|
|
printf(" %03d ", count++);
|
2017-10-07 12:51:32 +02:00
|
|
|
switch (inst.op)
|
2017-09-17 10:50:53 +02:00
|
|
|
{
|
2017-09-19 10:44:58 +02:00
|
|
|
case CompiledRegex::Literal:
|
2017-10-07 12:51:32 +02:00
|
|
|
printf("literal %lc\n", inst.param);
|
2017-09-17 10:50:53 +02:00
|
|
|
break;
|
2017-10-10 05:21:21 +02:00
|
|
|
case CompiledRegex::Literal_IgnoreCase:
|
2017-10-07 12:51:32 +02:00
|
|
|
printf("literal (ignore case) %lc\n", inst.param);
|
2017-09-29 05:22:09 +02:00
|
|
|
break;
|
2017-09-19 10:44:58 +02:00
|
|
|
case CompiledRegex::AnyChar:
|
2017-09-17 10:50:53 +02:00
|
|
|
printf("any char\n");
|
|
|
|
break;
|
2017-09-19 10:44:58 +02:00
|
|
|
case CompiledRegex::Jump:
|
2017-10-07 12:51:32 +02:00
|
|
|
printf("jump %u\n", inst.param);
|
2017-09-17 10:50:53 +02:00
|
|
|
break;
|
2017-09-24 16:14:35 +02:00
|
|
|
case CompiledRegex::Split_PrioritizeParent:
|
|
|
|
case CompiledRegex::Split_PrioritizeChild:
|
2017-09-17 10:50:53 +02:00
|
|
|
{
|
2017-09-24 16:14:35 +02:00
|
|
|
printf("split (prioritize %s) %u\n",
|
2017-10-07 12:51:32 +02:00
|
|
|
inst.op == CompiledRegex::Split_PrioritizeParent ? "parent" : "child",
|
|
|
|
inst.param);
|
2017-09-17 10:50:53 +02:00
|
|
|
break;
|
|
|
|
}
|
2017-09-19 10:44:58 +02:00
|
|
|
case CompiledRegex::Save:
|
2017-10-07 12:51:32 +02:00
|
|
|
printf("save %d\n", inst.param);
|
2017-09-19 09:56:21 +02:00
|
|
|
break;
|
2017-09-26 11:03:12 +02:00
|
|
|
case CompiledRegex::Matcher:
|
2017-10-07 12:51:32 +02:00
|
|
|
printf("matcher %d\n", inst.param);
|
2017-09-23 09:18:21 +02:00
|
|
|
break;
|
2017-09-19 10:44:58 +02:00
|
|
|
case CompiledRegex::LineStart:
|
2017-09-17 10:50:53 +02:00
|
|
|
printf("line start\n");
|
|
|
|
break;
|
2017-09-19 10:44:58 +02:00
|
|
|
case CompiledRegex::LineEnd:
|
2017-09-17 10:50:53 +02:00
|
|
|
printf("line end\n");
|
|
|
|
break;
|
2017-09-19 10:44:58 +02:00
|
|
|
case CompiledRegex::WordBoundary:
|
2017-09-18 04:56:14 +02:00
|
|
|
printf("word boundary\n");
|
|
|
|
break;
|
2017-09-19 10:44:58 +02:00
|
|
|
case CompiledRegex::NotWordBoundary:
|
2017-09-18 04:56:14 +02:00
|
|
|
printf("not word boundary\n");
|
|
|
|
break;
|
2017-09-19 10:44:58 +02:00
|
|
|
case CompiledRegex::SubjectBegin:
|
2017-09-18 05:47:10 +02:00
|
|
|
printf("subject begin\n");
|
|
|
|
break;
|
2017-09-19 10:44:58 +02:00
|
|
|
case CompiledRegex::SubjectEnd:
|
2017-09-18 05:47:10 +02:00
|
|
|
printf("subject end\n");
|
|
|
|
break;
|
2017-09-28 14:43:45 +02:00
|
|
|
case CompiledRegex::LookAhead:
|
|
|
|
case CompiledRegex::NegativeLookAhead:
|
|
|
|
case CompiledRegex::LookBehind:
|
|
|
|
case CompiledRegex::NegativeLookBehind:
|
2017-10-10 05:21:21 +02:00
|
|
|
case CompiledRegex::LookAhead_IgnoreCase:
|
|
|
|
case CompiledRegex::NegativeLookAhead_IgnoreCase:
|
|
|
|
case CompiledRegex::LookBehind_IgnoreCase:
|
|
|
|
case CompiledRegex::NegativeLookBehind_IgnoreCase:
|
2017-09-28 14:43:45 +02:00
|
|
|
{
|
|
|
|
const char* name = nullptr;
|
2017-10-07 12:51:32 +02:00
|
|
|
if (inst.op == CompiledRegex::LookAhead)
|
2017-09-28 14:43:45 +02:00
|
|
|
name = "look ahead";
|
2017-10-07 12:51:32 +02:00
|
|
|
if (inst.op == CompiledRegex::NegativeLookAhead)
|
2017-09-28 14:43:45 +02:00
|
|
|
name = "negative look ahead";
|
2017-10-07 12:51:32 +02:00
|
|
|
if (inst.op == CompiledRegex::LookBehind)
|
2017-09-28 14:43:45 +02:00
|
|
|
name = "look behind";
|
2017-10-07 12:51:32 +02:00
|
|
|
if (inst.op == CompiledRegex::NegativeLookBehind)
|
2017-09-28 14:43:45 +02:00
|
|
|
name = "negative look behind";
|
|
|
|
|
2017-10-10 05:21:21 +02:00
|
|
|
if (inst.op == CompiledRegex::LookAhead_IgnoreCase)
|
|
|
|
name = "look ahead (ignore case)";
|
|
|
|
if (inst.op == CompiledRegex::NegativeLookAhead_IgnoreCase)
|
|
|
|
name = "negative look ahead (ignore case)";
|
|
|
|
if (inst.op == CompiledRegex::LookBehind_IgnoreCase)
|
|
|
|
name = "look behind (ignore case)";
|
|
|
|
if (inst.op == CompiledRegex::NegativeLookBehind_IgnoreCase)
|
|
|
|
name = "negative look behind (ignore case)";
|
|
|
|
|
2017-10-07 12:51:32 +02:00
|
|
|
String str;
|
|
|
|
for (auto it = program.lookarounds.begin() + inst.param; *it != -1; ++it)
|
|
|
|
utf8::dump(std::back_inserter(str), *it);
|
|
|
|
printf("%s (%s)\n", name, str.c_str());
|
2017-09-28 14:43:45 +02:00
|
|
|
break;
|
|
|
|
}
|
2017-10-20 09:17:02 +02:00
|
|
|
case CompiledRegex::FindNextStart:
|
|
|
|
printf("find next start\n");
|
2017-10-20 12:14:57 +02:00
|
|
|
break;
|
2017-09-19 10:44:58 +02:00
|
|
|
case CompiledRegex::Match:
|
2017-09-17 10:50:53 +02:00
|
|
|
printf("match\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-10-09 08:04:14 +02:00
|
|
|
CompiledRegex compile_regex(StringView re, RegexCompileFlags flags, MatchDirection direction)
|
2017-09-26 09:44:30 +02:00
|
|
|
{
|
2017-10-09 08:04:14 +02:00
|
|
|
return RegexCompiler{RegexParser::parse(re), flags, direction}.get_compiled_regex();
|
2017-09-26 09:44:30 +02:00
|
|
|
}
|
|
|
|
|
2017-10-07 06:46:27 +02:00
|
|
|
namespace
|
|
|
|
{
|
|
|
|
template<MatchDirection dir = MatchDirection::Forward>
|
|
|
|
struct TestVM : CompiledRegex, ThreadedRegexVM<const char*, dir>
|
|
|
|
{
|
|
|
|
using VMType = ThreadedRegexVM<const char*, dir>;
|
|
|
|
|
|
|
|
TestVM(StringView re, bool dump = false)
|
2017-10-09 08:04:14 +02:00
|
|
|
: CompiledRegex{compile_regex(re, RegexCompileFlags::None, dir)},
|
2017-10-07 06:46:27 +02:00
|
|
|
VMType{(const CompiledRegex&)*this}
|
|
|
|
{ if (dump) dump_regex(*this); }
|
|
|
|
|
|
|
|
bool exec(StringView re, RegexExecFlags flags = RegexExecFlags::AnyMatch)
|
2017-09-17 12:15:43 +02:00
|
|
|
{
|
2017-10-07 06:46:27 +02:00
|
|
|
return VMType::exec(re.begin(), re.end(), flags);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
2017-09-26 16:16:35 +02:00
|
|
|
|
2017-10-07 06:46:27 +02:00
|
|
|
auto test_regex = UnitTest{[]{
|
2017-09-26 16:16:35 +02:00
|
|
|
{
|
2017-10-07 06:46:27 +02:00
|
|
|
TestVM<> vm{R"(a*b)"};
|
2017-09-19 11:26:24 +02:00
|
|
|
kak_assert(vm.exec("b"));
|
|
|
|
kak_assert(vm.exec("ab"));
|
|
|
|
kak_assert(vm.exec("aaab"));
|
|
|
|
kak_assert(not vm.exec("acb"));
|
2017-09-24 16:23:02 +02:00
|
|
|
kak_assert(not vm.exec("abc"));
|
2017-09-19 11:26:24 +02:00
|
|
|
kak_assert(not vm.exec(""));
|
2017-09-17 12:15:43 +02:00
|
|
|
}
|
2017-09-17 13:12:46 +02:00
|
|
|
|
|
|
|
{
|
2017-10-07 06:46:27 +02:00
|
|
|
TestVM<> vm{R"(^a.*b$)"};
|
2017-09-19 11:26:24 +02:00
|
|
|
kak_assert(vm.exec("afoob"));
|
|
|
|
kak_assert(vm.exec("ab"));
|
|
|
|
kak_assert(not vm.exec("bab"));
|
|
|
|
kak_assert(not vm.exec(""));
|
2017-09-17 13:12:46 +02:00
|
|
|
}
|
|
|
|
|
2017-09-17 12:15:43 +02:00
|
|
|
{
|
2017-10-07 06:46:27 +02:00
|
|
|
TestVM<> vm{R"(^(foo|qux|baz)+(bar)?baz$)"};
|
2017-09-19 11:26:24 +02:00
|
|
|
kak_assert(vm.exec("fooquxbarbaz"));
|
2017-10-06 13:30:46 +02:00
|
|
|
kak_assert(StringView{vm.captures()[2], vm.captures()[3]} == "qux");
|
2017-09-19 11:26:24 +02:00
|
|
|
kak_assert(not vm.exec("fooquxbarbaze"));
|
|
|
|
kak_assert(not vm.exec("quxbar"));
|
|
|
|
kak_assert(not vm.exec("blahblah"));
|
|
|
|
kak_assert(vm.exec("bazbaz"));
|
|
|
|
kak_assert(vm.exec("quxbaz"));
|
2017-09-17 12:15:43 +02:00
|
|
|
}
|
2017-09-18 04:56:14 +02:00
|
|
|
|
|
|
|
{
|
2017-10-07 06:46:27 +02:00
|
|
|
TestVM<> vm{R"(.*\b(foo|bar)\b.*)"};
|
2017-09-19 11:26:24 +02:00
|
|
|
kak_assert(vm.exec("qux foo baz"));
|
2017-10-06 13:30:46 +02:00
|
|
|
kak_assert(StringView{vm.captures()[2], vm.captures()[3]} == "foo");
|
2017-09-19 11:26:24 +02:00
|
|
|
kak_assert(not vm.exec("quxfoobaz"));
|
|
|
|
kak_assert(vm.exec("bar"));
|
|
|
|
kak_assert(not vm.exec("foobar"));
|
2017-09-18 04:56:14 +02:00
|
|
|
}
|
2017-09-26 16:16:35 +02:00
|
|
|
|
2017-09-18 05:47:10 +02:00
|
|
|
{
|
2017-10-07 06:46:27 +02:00
|
|
|
TestVM<> vm{R"((foo|bar))"};
|
2017-09-19 11:26:24 +02:00
|
|
|
kak_assert(vm.exec("foo"));
|
|
|
|
kak_assert(vm.exec("bar"));
|
|
|
|
kak_assert(not vm.exec("foobar"));
|
2017-09-18 05:47:10 +02:00
|
|
|
}
|
2017-09-18 11:22:11 +02:00
|
|
|
|
|
|
|
{
|
2017-10-07 06:46:27 +02:00
|
|
|
TestVM<> vm{R"(a{3,5}b)"};
|
2017-09-19 11:26:24 +02:00
|
|
|
kak_assert(not vm.exec("aab"));
|
|
|
|
kak_assert(vm.exec("aaab"));
|
|
|
|
kak_assert(not vm.exec("aaaaaab"));
|
|
|
|
kak_assert(vm.exec("aaaaab"));
|
2017-09-18 11:22:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
{
|
2017-10-07 06:46:27 +02:00
|
|
|
TestVM<> vm{R"(a{3}b)"};
|
2017-09-26 13:44:01 +02:00
|
|
|
kak_assert(not vm.exec("aab"));
|
|
|
|
kak_assert(vm.exec("aaab"));
|
|
|
|
kak_assert(not vm.exec("aaaab"));
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
2017-10-07 06:46:27 +02:00
|
|
|
TestVM<> vm{R"(a{3,}b)"};
|
2017-09-19 11:26:24 +02:00
|
|
|
kak_assert(not vm.exec("aab"));
|
|
|
|
kak_assert(vm.exec("aaab"));
|
|
|
|
kak_assert(vm.exec("aaaaab"));
|
2017-09-18 11:22:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
{
|
2017-10-07 06:46:27 +02:00
|
|
|
TestVM<> vm{R"(a{,3}b)"};
|
2017-09-19 11:26:24 +02:00
|
|
|
kak_assert(vm.exec("b"));
|
|
|
|
kak_assert(vm.exec("ab"));
|
|
|
|
kak_assert(vm.exec("aaab"));
|
|
|
|
kak_assert(not vm.exec("aaaab"));
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
2017-10-07 06:46:27 +02:00
|
|
|
TestVM<> vm{R"(f.*a(.*o))"};
|
2017-10-06 16:28:49 +02:00
|
|
|
kak_assert(vm.exec("blahfoobarfoobaz", RegexExecFlags::Search));
|
2017-10-06 13:30:46 +02:00
|
|
|
kak_assert(StringView{vm.captures()[0], vm.captures()[1]} == "foobarfoo");
|
|
|
|
kak_assert(StringView{vm.captures()[2], vm.captures()[3]} == "rfoo");
|
2017-10-06 16:28:49 +02:00
|
|
|
kak_assert(vm.exec("mais que fais la police", RegexExecFlags::Search));
|
2017-10-06 13:30:46 +02:00
|
|
|
kak_assert(StringView{vm.captures()[0], vm.captures()[1]} == "fais la po");
|
|
|
|
kak_assert(StringView{vm.captures()[2], vm.captures()[3]} == " po");
|
2017-09-18 11:22:11 +02:00
|
|
|
}
|
2017-09-23 09:18:21 +02:00
|
|
|
|
|
|
|
{
|
2017-10-07 06:46:27 +02:00
|
|
|
TestVM<> vm{R"([àb-dX-Z-]{3,5})"};
|
2017-09-26 16:37:21 +02:00
|
|
|
kak_assert(vm.exec("cà-Y"));
|
2017-09-25 15:24:24 +02:00
|
|
|
kak_assert(not vm.exec("àeY"));
|
|
|
|
kak_assert(vm.exec("dcbàX"));
|
2017-09-23 09:18:21 +02:00
|
|
|
kak_assert(not vm.exec("efg"));
|
|
|
|
}
|
2017-09-26 15:04:41 +02:00
|
|
|
|
2017-10-02 09:35:21 +02:00
|
|
|
{
|
2017-10-07 06:46:27 +02:00
|
|
|
TestVM<> vm{R"((a{3,5})a+)"};
|
2017-10-06 16:28:49 +02:00
|
|
|
kak_assert(vm.exec("aaaaaa", RegexExecFlags::None));
|
2017-10-06 13:30:46 +02:00
|
|
|
kak_assert(StringView{vm.captures()[2], vm.captures()[3]} == "aaaaa");
|
2017-10-02 09:35:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
{
|
2017-10-07 06:46:27 +02:00
|
|
|
TestVM<> vm{R"((a{3,5}?)a+)"};
|
2017-10-06 16:28:49 +02:00
|
|
|
kak_assert(vm.exec("aaaaaa", RegexExecFlags::None));
|
2017-10-06 13:30:46 +02:00
|
|
|
kak_assert(StringView{vm.captures()[2], vm.captures()[3]} == "aaa");
|
2017-10-02 09:35:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
{
|
2017-10-07 06:46:27 +02:00
|
|
|
TestVM<> vm{R"((a{3,5}?)a)"};
|
2017-10-02 09:35:21 +02:00
|
|
|
kak_assert(vm.exec("aaaa"));
|
|
|
|
}
|
|
|
|
|
2017-09-26 15:04:41 +02:00
|
|
|
{
|
2017-10-07 06:46:27 +02:00
|
|
|
TestVM<> vm{R"(\d{3})"};
|
2017-09-26 15:04:41 +02:00
|
|
|
kak_assert(vm.exec("123"));
|
|
|
|
kak_assert(not vm.exec("1x3"));
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
2017-10-07 06:46:27 +02:00
|
|
|
TestVM<> vm{R"([-\d]+)"};
|
2017-09-26 15:04:41 +02:00
|
|
|
kak_assert(vm.exec("123-456"));
|
|
|
|
kak_assert(not vm.exec("123_456"));
|
|
|
|
}
|
2017-09-26 16:51:05 +02:00
|
|
|
|
2017-09-27 08:04:05 +02:00
|
|
|
{
|
2017-10-07 06:46:27 +02:00
|
|
|
TestVM<> vm{R"([ \H]+)"};
|
2017-09-27 08:04:05 +02:00
|
|
|
kak_assert(vm.exec("abc "));
|
|
|
|
kak_assert(not vm.exec("a \t"));
|
|
|
|
}
|
|
|
|
|
2017-09-26 16:51:05 +02:00
|
|
|
{
|
2017-10-07 06:46:27 +02:00
|
|
|
TestVM<> vm{R"(\Q{}[]*+?\Ea+)"};
|
2017-09-26 16:51:05 +02:00
|
|
|
kak_assert(vm.exec("{}[]*+?aa"));
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
2017-10-07 06:46:27 +02:00
|
|
|
TestVM<> vm{R"(\Q...)"};
|
2017-09-26 16:51:05 +02:00
|
|
|
kak_assert(vm.exec("..."));
|
|
|
|
kak_assert(not vm.exec("bla"));
|
|
|
|
}
|
2017-09-26 17:01:06 +02:00
|
|
|
|
|
|
|
{
|
2017-10-07 06:46:27 +02:00
|
|
|
TestVM<> vm{R"(foo\Kbar)"};
|
2017-10-06 16:28:49 +02:00
|
|
|
kak_assert(vm.exec("foobar", RegexExecFlags::None));
|
2017-10-06 13:30:46 +02:00
|
|
|
kak_assert(StringView{vm.captures()[0], vm.captures()[1]} == "bar");
|
2017-10-06 16:28:49 +02:00
|
|
|
kak_assert(not vm.exec("bar", RegexExecFlags::None));
|
2017-09-26 17:01:06 +02:00
|
|
|
}
|
2017-09-28 11:50:04 +02:00
|
|
|
|
|
|
|
{
|
2017-10-07 06:46:27 +02:00
|
|
|
TestVM<> vm{R"((fo+?).*)"};
|
2017-10-06 16:28:49 +02:00
|
|
|
kak_assert(vm.exec("foooo", RegexExecFlags::None));
|
2017-10-06 13:30:46 +02:00
|
|
|
kak_assert(StringView{vm.captures()[2], vm.captures()[3]} == "fo");
|
2017-09-28 11:50:04 +02:00
|
|
|
}
|
2017-09-28 14:43:45 +02:00
|
|
|
|
|
|
|
{
|
2017-10-07 06:46:27 +02:00
|
|
|
TestVM<> vm{R"((?=foo).)"};
|
2017-10-06 16:28:49 +02:00
|
|
|
kak_assert(vm.exec("barfoo", RegexExecFlags::Search));
|
2017-10-06 13:30:46 +02:00
|
|
|
kak_assert(StringView{vm.captures()[0], vm.captures()[1]} == "f");
|
2017-09-28 14:43:45 +02:00
|
|
|
}
|
|
|
|
|
2017-10-08 03:22:24 +02:00
|
|
|
{
|
|
|
|
TestVM<> vm{R"((?<!f).)"};
|
|
|
|
kak_assert(vm.exec("f"));
|
|
|
|
}
|
|
|
|
|
2017-09-28 14:43:45 +02:00
|
|
|
{
|
2017-10-09 05:20:05 +02:00
|
|
|
TestVM<> vm{R"((?!f[oa]o)...)"};
|
2017-09-28 14:43:45 +02:00
|
|
|
kak_assert(not vm.exec("foo"));
|
|
|
|
kak_assert(vm.exec("qux"));
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
2017-10-09 05:20:05 +02:00
|
|
|
TestVM<> vm{R"(...(?<=f.o))"};
|
2017-09-28 14:43:45 +02:00
|
|
|
kak_assert(vm.exec("foo"));
|
|
|
|
kak_assert(not vm.exec("qux"));
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
2017-10-07 06:46:27 +02:00
|
|
|
TestVM<> vm{R"(...(?<!foo))"};
|
2017-09-28 14:43:45 +02:00
|
|
|
kak_assert(not vm.exec("foo"));
|
|
|
|
kak_assert(vm.exec("qux"));
|
|
|
|
}
|
2017-09-29 05:22:09 +02:00
|
|
|
|
|
|
|
{
|
2017-10-07 06:46:27 +02:00
|
|
|
TestVM<> vm{R"(Foo(?i)f[oB]+)"};
|
2017-09-29 05:22:09 +02:00
|
|
|
kak_assert(vm.exec("FooFOoBb"));
|
|
|
|
}
|
2017-10-02 07:49:08 +02:00
|
|
|
|
|
|
|
{
|
2017-10-07 06:46:27 +02:00
|
|
|
TestVM<> vm{R"([^\]]+)"};
|
2017-10-02 07:49:08 +02:00
|
|
|
kak_assert(not vm.exec("a]c"));
|
|
|
|
kak_assert(vm.exec("abc"));
|
2017-10-07 15:24:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
TestVM<> vm{R"([^:\n]+)"};
|
|
|
|
kak_assert(not vm.exec("\nbc"));
|
|
|
|
kak_assert(vm.exec("abc"));
|
2017-10-02 07:49:08 +02:00
|
|
|
}
|
2017-10-04 16:30:22 +02:00
|
|
|
|
|
|
|
{
|
2017-10-07 06:46:27 +02:00
|
|
|
TestVM<> vm{R"((?:foo)+)"};
|
2017-10-04 16:30:22 +02:00
|
|
|
kak_assert(vm.exec("foofoofoo"));
|
|
|
|
kak_assert(not vm.exec("barbarbar"));
|
|
|
|
}
|
2017-10-06 07:40:27 +02:00
|
|
|
|
|
|
|
{
|
2017-10-07 06:46:27 +02:00
|
|
|
TestVM<> vm{R"((?<!\\)(?:\\\\)*")"};
|
2017-10-06 16:28:49 +02:00
|
|
|
kak_assert(vm.exec("foo\"", RegexExecFlags::Search));
|
2017-10-06 07:40:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
{
|
2017-10-07 06:46:27 +02:00
|
|
|
TestVM<> vm{R"($)"};
|
2017-10-06 16:28:49 +02:00
|
|
|
kak_assert(vm.exec("foo\n", RegexExecFlags::Search));
|
2017-10-06 13:30:46 +02:00
|
|
|
kak_assert(*vm.captures()[0] == '\n');
|
2017-10-06 07:40:27 +02:00
|
|
|
}
|
2017-10-07 06:46:27 +02:00
|
|
|
|
|
|
|
{
|
|
|
|
TestVM<MatchDirection::Backward> vm{R"(fo{1,})"};
|
|
|
|
kak_assert(vm.exec("foo1fooo2", RegexExecFlags::Search));
|
|
|
|
kak_assert(*vm.captures()[1] == '2');
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
TestVM<MatchDirection::Backward> vm{R"((?<=f)oo(b[ae]r)?(?=baz))"};
|
|
|
|
kak_assert(vm.exec("foobarbazfoobazfooberbaz", RegexExecFlags::Search));
|
|
|
|
kak_assert(StringView{vm.captures()[0], vm.captures()[1]} == "oober");
|
|
|
|
kak_assert(StringView{vm.captures()[2], vm.captures()[3]} == "ber");
|
|
|
|
}
|
2017-10-07 08:25:14 +02:00
|
|
|
|
2017-10-09 12:19:36 +02:00
|
|
|
{
|
|
|
|
TestVM<MatchDirection::Backward> vm{R"((baz|boz|foo|qux)(?<!baz)(?<!o))"};
|
|
|
|
kak_assert(vm.exec("quxbozfoobaz", RegexExecFlags::Search));
|
|
|
|
kak_assert(StringView{vm.captures()[0], vm.captures()[1]} == "boz");
|
|
|
|
}
|
|
|
|
|
2017-10-11 15:05:02 +02:00
|
|
|
{
|
|
|
|
TestVM<MatchDirection::Backward> vm{R"(foo)"};
|
|
|
|
kak_assert(vm.exec("foofoo", RegexExecFlags::Search));
|
|
|
|
kak_assert(*vm.captures()[1] == 0);
|
|
|
|
}
|
|
|
|
|
2017-10-11 13:24:01 +02:00
|
|
|
{
|
|
|
|
TestVM<MatchDirection::Backward> vm{R"($)"};
|
|
|
|
kak_assert(vm.exec("foo\nbar\nbaz\nqux", RegexExecFlags::Search | RegexExecFlags::NotEndOfLine));
|
|
|
|
kak_assert(StringView{vm.captures()[0]} == "\nqux");
|
|
|
|
}
|
|
|
|
|
2017-10-07 08:25:14 +02:00
|
|
|
{
|
|
|
|
TestVM<> vm{R"(()*)"};
|
|
|
|
kak_assert(not vm.exec(" "));
|
|
|
|
}
|
2017-10-08 03:22:24 +02:00
|
|
|
|
|
|
|
{
|
|
|
|
TestVM<> vm{R"(\b(?<!-)(a|b|)(?!-)\b)"};
|
|
|
|
kak_assert(vm.exec("# foo bar", RegexExecFlags::Search));
|
|
|
|
kak_assert(*vm.captures()[0] == '#');
|
|
|
|
}
|
2017-10-08 13:03:38 +02:00
|
|
|
|
|
|
|
{
|
|
|
|
TestVM<> vm{R"((?=))"};
|
|
|
|
kak_assert(vm.exec(""));
|
|
|
|
}
|
2017-10-10 05:21:21 +02:00
|
|
|
|
2017-10-13 04:58:09 +02:00
|
|
|
{
|
|
|
|
TestVM<> vm{R"((?i)FOO)"};
|
|
|
|
kak_assert(vm.exec("foo", RegexExecFlags::Search));
|
|
|
|
}
|
|
|
|
|
2017-10-15 04:25:46 +02:00
|
|
|
{
|
|
|
|
TestVM<> vm{R"(.?(?=foo))"};
|
|
|
|
kak_assert(vm.exec("afoo", RegexExecFlags::Search));
|
|
|
|
kak_assert(*vm.captures()[0] == 'a');
|
|
|
|
}
|
|
|
|
|
2017-10-10 05:21:21 +02:00
|
|
|
{
|
|
|
|
TestVM<> vm{R"((?i)(?=Foo))"};
|
|
|
|
kak_assert(vm.exec("fOO", RegexExecFlags::Search));
|
|
|
|
kak_assert(*vm.captures()[0] == 'f');
|
|
|
|
}
|
2017-10-14 16:10:56 +02:00
|
|
|
|
|
|
|
{
|
|
|
|
TestVM<> vm{R"([d-ea-dcf-k]+)"};
|
|
|
|
kak_assert(vm.exec("abcde"));
|
|
|
|
}
|
2017-10-20 06:08:24 +02:00
|
|
|
|
2017-11-12 18:12:05 +01:00
|
|
|
{
|
|
|
|
TestVM<> vm{R"((?i)[a-c]+)"};
|
|
|
|
kak_assert(vm.exec("bCa"));
|
|
|
|
}
|
|
|
|
|
2017-10-20 12:26:33 +02:00
|
|
|
{
|
|
|
|
TestVM<> vm{R"(д)"};
|
|
|
|
kak_assert(vm.exec("д", RegexExecFlags::Search));
|
|
|
|
}
|
|
|
|
|
2017-10-20 06:08:24 +02:00
|
|
|
{
|
|
|
|
TestVM<> vm{R"(\0\x0A\u260e\u260F)"};
|
|
|
|
const char str[] = "\0\n☎☏"; // work around the null byte in the literal
|
|
|
|
kak_assert(vm.exec({str, str + sizeof(str)-1}));
|
|
|
|
}
|
2017-09-17 10:50:53 +02:00
|
|
|
}};
|
|
|
|
|
|
|
|
}
|