Skip to content

Commit dadd207

Browse files
committed
fix issue #329: lookbehind rotating inner regex in select<...>
1 parent a9418a5 commit dadd207

File tree

5 files changed

+18
-3
lines changed

5 files changed

+18
-3
lines changed

include/ctre/rotate.hpp

+4-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@ static auto rotate(end_lookbehind_mark) -> end_lookbehind_mark;
4444
template <size_t Id> static auto rotate(numeric_mark<Id>) -> numeric_mark<Id>;
4545
static auto rotate(any) -> any;
4646

47-
template <typename... Content> static auto rotate(select<Content...>) -> select<Content...>;
4847
static auto rotate(empty) -> empty;
4948

5049

@@ -92,6 +91,10 @@ static auto rotate(assert_subject_end_line) -> assert_subject_end_line;
9291
static auto rotate(assert_line_begin) -> assert_line_begin;
9392
static auto rotate(assert_line_end) -> assert_line_end;
9493

94+
// select rotates only insides of selection, not select itself
95+
template <typename... Content> static auto rotate(select<Content...>) -> select<decltype(rotate(Content{}))...>;
96+
97+
9598
};
9699

97100
}

single-header/ctre-unicode.hpp

+3-1
Original file line numberDiff line numberDiff line change
@@ -2065,7 +2065,6 @@ static auto rotate(end_lookbehind_mark) -> end_lookbehind_mark;
20652065
template <size_t Id> static auto rotate(numeric_mark<Id>) -> numeric_mark<Id>;
20662066
static auto rotate(any) -> any;
20672067

2068-
template <typename... Content> static auto rotate(select<Content...>) -> select<Content...>;
20692068
static auto rotate(empty) -> empty;
20702069

20712070
template <size_t a, size_t b, typename... Content> static auto rotate(repeat<a,b,Content...>) -> decltype(ctre::convert_to_repeat<repeat, a, b>(ctll::rotate(ctll::list<decltype(rotate(Content{}))...>{})));
@@ -2112,6 +2111,9 @@ static auto rotate(assert_subject_end_line) -> assert_subject_end_line;
21122111
static auto rotate(assert_line_begin) -> assert_line_begin;
21132112
static auto rotate(assert_line_end) -> assert_line_end;
21142113

2114+
// select rotates only insides of selection, not select itself
2115+
template <typename... Content> static auto rotate(select<Content...>) -> select<decltype(rotate(Content{}))...>;
2116+
21152117
};
21162118

21172119
}

single-header/ctre.hpp

+3-1
Original file line numberDiff line numberDiff line change
@@ -2062,7 +2062,6 @@ static auto rotate(end_lookbehind_mark) -> end_lookbehind_mark;
20622062
template <size_t Id> static auto rotate(numeric_mark<Id>) -> numeric_mark<Id>;
20632063
static auto rotate(any) -> any;
20642064

2065-
template <typename... Content> static auto rotate(select<Content...>) -> select<Content...>;
20662065
static auto rotate(empty) -> empty;
20672066

20682067
template <size_t a, size_t b, typename... Content> static auto rotate(repeat<a,b,Content...>) -> decltype(ctre::convert_to_repeat<repeat, a, b>(ctll::rotate(ctll::list<decltype(rotate(Content{}))...>{})));
@@ -2109,6 +2108,9 @@ static auto rotate(assert_subject_end_line) -> assert_subject_end_line;
21092108
static auto rotate(assert_line_begin) -> assert_line_begin;
21102109
static auto rotate(assert_line_end) -> assert_line_end;
21112110

2111+
// select rotates only insides of selection, not select itself
2112+
template <typename... Content> static auto rotate(select<Content...>) -> select<decltype(rotate(Content{}))...>;
2113+
21122114
};
21132115

21142116
}

tests/generating.cpp

+3
Original file line numberDiff line numberDiff line change
@@ -270,5 +270,8 @@ static_assert(same_f(CTRE_GEN("(?<!a)"), ctre::lookbehind_negative<ctre::charact
270270
static_assert(same_f(CTRE_GEN("(?<=ab)"), ctre::lookbehind_positive<ctre::string<'b','a'>>()));
271271
static_assert(same_f(CTRE_GEN("(?<!ab)"), ctre::lookbehind_negative<ctre::string<'b','a'>>()));
272272

273+
static_assert(same_f(CTRE_GEN("(?<=ab|cd)"), ctre::lookbehind_positive<ctre::select<ctre::string<'b','a'>, ctre::string<'d','c'>>>()));
274+
static_assert(same_f(CTRE_GEN("(?<!ab|cd)"), ctre::lookbehind_negative<ctre::select<ctre::string<'b','a'>, ctre::string<'d','c'>>>()));
275+
273276
static_assert(same_f(CTRE_GEN("(?<=(ab))"), ctre::lookbehind_positive<ctre::capture<1, ctre::string<'b','a'>>>()));
274277
static_assert(same_f(CTRE_GEN("(?<!(ab))"), ctre::lookbehind_negative<ctre::capture<1, ctre::string<'b','a'>>>()));

tests/matching3.cpp

+5
Original file line numberDiff line numberDiff line change
@@ -234,3 +234,8 @@ TEST_MATCH(225, R"( ?[\p{N}])", " 1");
234234
TEST_MATCH(226, R"( ?\p{N})", " 1");
235235
TEST_MATCH(227, R"( ?\p{N}+)", " 1234");
236236

237+
// issue #339 (rotate didn't rotate inside of selection)
238+
TEST_SEARCH(228, "(?<=ba|cd)s", "bas");
239+
TEST_NOT_SEARCH(229, "(?<!ba|cd)s", "bas"); // negative means both "ba|cd most not be there"
240+
TEST_SEARCH(230, "(?<=ba|cd)s", "cds");
241+
TEST_NOT_SEARCH(231, "(?<!ba|cd)s", "cds"); // negative means both "ba|cd most not be there"

0 commit comments

Comments
 (0)