Skip to content

Commit 90027ff

Browse files
committedJun 7, 2023
8309515: Stale cached data from Matcher.namedGroups() after Matcher.usePattern()
Reviewed-by: rriggs
1 parent ea41907 commit 90027ff

File tree

2 files changed

+24
-1
lines changed

2 files changed

+24
-1
lines changed
 

‎src/java.base/share/classes/java/util/regex/Matcher.java

+1
Original file line numberDiff line numberDiff line change
@@ -390,6 +390,7 @@ public Matcher usePattern(Pattern newPattern) {
390390
if (newPattern == null)
391391
throw new IllegalArgumentException("Pattern cannot be null");
392392
parentPattern = newPattern;
393+
namedGroups = null;
393394

394395
// Reallocate state storage
395396
int parentGroupCount = Math.max(newPattern.capturingGroupCount, 10);

‎test/jdk/java/util/regex/NamedGroupsTests.java

+23-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
/*
2525
* @test
26-
* @bug 8065554
26+
* @bug 8065554 8309515
2727
* @run main NamedGroupsTests
2828
*/
2929

@@ -86,6 +86,8 @@ public static void main(String[] args) {
8686

8787
testMatchResultStartEndGroupBeforeMatchOp();
8888
testMatchResultStartEndGroupAfterMatchOp();
89+
90+
testMatchAfterUsePattern();
8991
}
9092

9193
private static void testMatchResultNoDefault() {
@@ -346,4 +348,24 @@ private static void testPatternNamedGroupsTwoNamedGroups() {
346348
}
347349
}
348350

351+
private static void testMatchAfterUsePattern() {
352+
Pattern p1 = Pattern.compile("(?<a>...)(?<b>...)");
353+
Matcher m = p1.matcher("foobar");
354+
if (!m.matches()) {
355+
throw new RuntimeException("matches() expected");
356+
}
357+
if (!m.group("a").equals("foo")) {
358+
throw new RuntimeException("\"foo\" expected for group(\"a\")");
359+
}
360+
361+
Pattern p2 = Pattern.compile("(?<b>...)(?<a>...)");
362+
m.usePattern(p2);
363+
if (!m.matches()) {
364+
throw new RuntimeException("matches() expected");
365+
}
366+
if (!m.group("a").equals("bar")) {
367+
throw new RuntimeException("\"bar\" expected for group(\"a\")");
368+
}
369+
}
370+
349371
}

0 commit comments

Comments
 (0)
Please sign in to comment.