Skip to content

Commit ed32e02

Browse files
lgxbslgxjonathan-gibbons
authored andcommittedMay 12, 2021
8241187: ToolBox::grep should allow for negative filtering
Reviewed-by: vromero
1 parent cc03734 commit ed32e02

File tree

2 files changed

+104
-5
lines changed

2 files changed

+104
-5
lines changed
 
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,73 @@
1+
/*
2+
* Copyright (c) 2021, Oracle and/or its affiliates. All rights reserved.
3+
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4+
*
5+
* This code is free software; you can redistribute it and/or modify it
6+
* under the terms of the GNU General Public License version 2 only, as
7+
* published by the Free Software Foundation.
8+
*
9+
* This code is distributed in the hope that it will be useful, but WITHOUT
10+
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11+
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12+
* version 2 for more details (a copy is included in the LICENSE file that
13+
* accompanied this code).
14+
*
15+
* You should have received a copy of the GNU General Public License version
16+
* 2 along with this work; if not, write to the Free Software Foundation,
17+
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18+
*
19+
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20+
* or visit www.oracle.com if you need additional information or have any
21+
* questions.
22+
*/
23+
24+
/*
25+
* @test
26+
* @bug 8241187
27+
* @summary ToolBox::grep should allow for negative filtering
28+
* @library /tools/lib
29+
* @build toolbox.ToolBox
30+
* @run main TestGrepOfToolBox
31+
*/
32+
33+
import java.util.Arrays;
34+
import java.util.List;
35+
36+
import toolbox.ToolBox;
37+
38+
public class TestGrepOfToolBox {
39+
public static void main(String[] args) {
40+
ToolBox tb = new ToolBox();
41+
List<String> input = Arrays.asList("apple", "banana", "cat", "dog", "end", "ending");
42+
43+
String regex1 = ".*ana.*";
44+
List<String> expected1 = Arrays.asList("apple", "cat", "dog", "end", "ending");
45+
List<String> output1 = tb.grep(regex1, input, false);
46+
tb.checkEqual(expected1, output1);
47+
48+
String regex2 = ".*nd.*";
49+
List<String> expected2 = Arrays.asList("apple", "banana", "cat", "dog");
50+
List<String> output2 = tb.grep(regex2, input, false);
51+
tb.checkEqual(expected2, output2);
52+
53+
String regex3 = "apple";
54+
List<String> expected3 = Arrays.asList("banana", "cat", "dog", "end", "ending");
55+
List<String> output3 = tb.grep(regex3, input, false);
56+
tb.checkEqual(expected3, output3);
57+
58+
String regex4 = ".*ana.*";
59+
List<String> expected4 = Arrays.asList("banana");
60+
List<String> output4 = tb.grep(regex4, input, true);
61+
tb.checkEqual(expected4, output4);
62+
63+
String regex5 = ".*nd.*";
64+
List<String> expected5 = Arrays.asList("end", "ending");
65+
List<String> output5 = tb.grep(regex5, input, true);
66+
tb.checkEqual(expected5, output5);
67+
68+
String regex6 = "apple";
69+
List<String> expected6 = Arrays.asList("apple");
70+
List<String> output6 = tb.grep(regex6, input, true);
71+
tb.checkEqual(expected6, output6);
72+
}
73+
}

‎test/langtools/tools/lib/toolbox/ToolBox.java

+31-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2013, 2019, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2013, 2021, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -164,24 +164,50 @@ public void checkEqual(List<String> l1, List<String> l2) throws Error {
164164
}
165165

166166
/**
167-
* Filters a list of strings according to the given regular expression.
167+
* Filters a list of strings according to the given regular expression,
168+
* returning the strings that match the regular expression.
168169
* @param regex the regular expression
169170
* @param lines the strings to be filtered
170171
* @return the strings matching the regular expression
171172
*/
172173
public List<String> grep(String regex, List<String> lines) {
173-
return grep(Pattern.compile(regex), lines);
174+
return grep(Pattern.compile(regex), lines, true);
174175
}
175176

176177
/**
177-
* Filters a list of strings according to the given regular expression.
178+
* Filters a list of strings according to the given regular expression,
179+
* returning the strings that match the regular expression.
178180
* @param pattern the regular expression
179181
* @param lines the strings to be filtered
180182
* @return the strings matching the regular expression
181183
*/
182184
public List<String> grep(Pattern pattern, List<String> lines) {
185+
return grep(pattern, lines, true);
186+
}
187+
188+
/**
189+
* Filters a list of strings according to the given regular expression,
190+
* returning either the strings that match or the strings that do not match.
191+
* @param regex the regular expression
192+
* @param lines the strings to be filtered
193+
* @param match if true, return the lines that match; otherwise if false, return the lines that do not match.
194+
* @return the strings matching(or not matching) the regular expression
195+
*/
196+
public List<String> grep(String regex, List<String> lines, boolean match) {
197+
return grep(Pattern.compile(regex), lines, match);
198+
}
199+
200+
/**
201+
* Filters a list of strings according to the given regular expression,
202+
* returning either the strings that match or the strings that do not match.
203+
* @param pattern the regular expression
204+
* @param lines the strings to be filtered
205+
* @param match if true, return the lines that match; otherwise if false, return the lines that do not match.
206+
* @return the strings matching(or not matching) the regular expression
207+
*/
208+
public List<String> grep(Pattern pattern, List<String> lines, boolean match) {
183209
return lines.stream()
184-
.filter(s -> pattern.matcher(s).find())
210+
.filter(s -> pattern.matcher(s).find() == match)
185211
.collect(Collectors.toList());
186212
}
187213

0 commit comments

Comments
 (0)
Please sign in to comment.