summaryrefslogtreecommitdiff
path: root/Userland/Libraries
diff options
context:
space:
mode:
authorAli Mohammad Pur <ali.mpfard@gmail.com>2021-07-13 02:16:09 +0430
committerGunnar Beutner <gunnar@beutner.name>2021-07-13 07:04:06 +0200
commit6e35b9403465f8c9ac69c41810f1304847c5c53e (patch)
treed24b8861becc1c470ab47c95a4fdd62fd17e80b0 /Userland/Libraries
parent5f4e1338a1a4d932a4f41a85ce148cb6ae1ba868 (diff)
downloadserenity-6e35b9403465f8c9ac69c41810f1304847c5c53e.zip
LibRegex: Implement lookaround in ERE
Diffstat (limited to 'Userland/Libraries')
-rw-r--r--Userland/Libraries/LibRegex/RegexParser.cpp37
1 files changed, 30 insertions, 7 deletions
diff --git a/Userland/Libraries/LibRegex/RegexParser.cpp b/Userland/Libraries/LibRegex/RegexParser.cpp
index 5979da40f1..e50db2a5b2 100644
--- a/Userland/Libraries/LibRegex/RegexParser.cpp
+++ b/Userland/Libraries/LibRegex/RegexParser.cpp
@@ -218,7 +218,7 @@ ALWAYS_INLINE bool AbstractPosixParser::parse_bracket_expression(Vector<CompareT
// FIXME: Parse collating element, this is needed when we have locale support
// This could have impact on length parameter, I guess.
- VERIFY_NOT_REACHED();
+ set_error(Error::InvalidCollationElement);
consume(TokenType::Period, Error::InvalidCollationElement);
consume(TokenType::RightBracket, Error::MismatchingBracket);
@@ -227,7 +227,7 @@ ALWAYS_INLINE bool AbstractPosixParser::parse_bracket_expression(Vector<CompareT
consume();
// FIXME: Parse collating element, this is needed when we have locale support
// This could have impact on length parameter, I guess.
- VERIFY_NOT_REACHED();
+ set_error(Error::InvalidCollationElement);
consume(TokenType::EqualSign, Error::InvalidCollationElement);
consume(TokenType::RightBracket, Error::MismatchingBracket);
@@ -711,6 +711,13 @@ ALWAYS_INLINE bool PosixExtendedParser::parse_sub_expression(ByteCode& stack, si
return false;
if (match(TokenType::LeftParen)) {
+ enum GroupMode {
+ Normal,
+ Lookahead,
+ NegativeLookahead,
+ Lookbehind,
+ NegativeLookbehind,
+ } group_mode { Normal };
consume();
Optional<StringView> capture_group_name;
bool prevent_capture_group = false;
@@ -739,16 +746,16 @@ ALWAYS_INLINE bool PosixExtendedParser::parse_sub_expression(ByteCode& stack, si
} else if (match(TokenType::EqualSign)) { // positive lookahead
consume();
- VERIFY_NOT_REACHED();
+ group_mode = Lookahead;
} else if (consume("!")) { // negative lookahead
- VERIFY_NOT_REACHED();
+ group_mode = NegativeLookahead;
} else if (consume("<")) {
if (match(TokenType::EqualSign)) { // positive lookbehind
consume();
- VERIFY_NOT_REACHED();
+ group_mode = Lookbehind;
}
if (consume("!")) // negative lookbehind
- VERIFY_NOT_REACHED();
+ group_mode = NegativeLookbehind;
} else {
return set_error(Error::InvalidRepetitionMarker);
}
@@ -766,7 +773,23 @@ ALWAYS_INLINE bool PosixExtendedParser::parse_sub_expression(ByteCode& stack, si
if (!parse_root(capture_group_bytecode, length))
return set_error(Error::InvalidPattern);
- bytecode.extend(move(capture_group_bytecode));
+ switch (group_mode) {
+ case Normal:
+ bytecode.extend(move(capture_group_bytecode));
+ break;
+ case Lookahead:
+ bytecode.insert_bytecode_lookaround(move(capture_group_bytecode), ByteCode::LookAroundType::LookAhead, length);
+ break;
+ case NegativeLookahead:
+ bytecode.insert_bytecode_lookaround(move(capture_group_bytecode), ByteCode::LookAroundType::NegatedLookAhead, length);
+ break;
+ case Lookbehind:
+ bytecode.insert_bytecode_lookaround(move(capture_group_bytecode), ByteCode::LookAroundType::LookBehind, length);
+ break;
+ case NegativeLookbehind:
+ bytecode.insert_bytecode_lookaround(move(capture_group_bytecode), ByteCode::LookAroundType::NegatedLookBehind, length);
+ break;
+ }
consume(TokenType::RightParen, Error::MismatchingParen);