|
17 | 17 | package com.google.errorprone.bugpatterns;
|
18 | 18 |
|
19 | 19 | import static com.google.errorprone.BugPattern.SeverityLevel.ERROR;
|
20 |
| -import static com.google.errorprone.matchers.Matchers.allOf; |
21 |
| -import static com.google.errorprone.matchers.Matchers.anyOf; |
22 |
| -import static com.google.errorprone.matchers.Matchers.argument; |
23 |
| -import static com.google.errorprone.matchers.method.MethodMatchers.instanceMethod; |
24 |
| -import static com.google.errorprone.matchers.method.MethodMatchers.staticMethod; |
| 20 | +import static com.google.errorprone.matchers.Description.NO_MATCH; |
25 | 21 |
|
26 | 22 | import com.google.errorprone.BugPattern;
|
27 |
| -import com.google.errorprone.VisitorState; |
28 |
| -import com.google.errorprone.bugpatterns.BugChecker.MethodInvocationTreeMatcher; |
29 |
| -import com.google.errorprone.fixes.SuggestedFix; |
30 | 23 | import com.google.errorprone.matchers.Description;
|
31 |
| -import com.google.errorprone.matchers.Matcher; |
32 |
| -import com.google.errorprone.util.ASTHelpers; |
33 |
| -import com.sun.source.tree.ExpressionTree; |
34 | 24 | import com.sun.source.tree.MethodInvocationTree;
|
35 | 25 | import java.util.regex.Pattern;
|
36 | 26 | import java.util.regex.PatternSyntaxException;
|
|
40 | 30 | name = "InvalidPatternSyntax",
|
41 | 31 | summary = "Invalid syntax used for a regular expression",
|
42 | 32 | severity = ERROR)
|
43 |
| -public class InvalidPatternSyntax extends BugChecker implements MethodInvocationTreeMatcher { |
| 33 | +public class InvalidPatternSyntax extends AbstractPatternSyntaxChecker { |
44 | 34 |
|
45 | 35 | private static final String MESSAGE_BASE = "Invalid syntax used for a regular expression: ";
|
46 | 36 |
|
47 |
| - /* Match string literals that are not valid syntax for regular expressions. */ |
48 |
| - private static final Matcher<ExpressionTree> BAD_REGEX_LITERAL = |
49 |
| - new Matcher<ExpressionTree>() { |
50 |
| - @Override |
51 |
| - public boolean matches(ExpressionTree tree, VisitorState state) { |
52 |
| - String value = ASTHelpers.constValue(tree, String.class); |
53 |
| - return value != null && !isValidSyntax(value); |
54 |
| - } |
55 |
| - |
56 |
| - private boolean isValidSyntax(String regex) { |
57 |
| - // Actually valid, but useless. |
58 |
| - if (".".equals(regex)) { |
59 |
| - return false; |
60 |
| - } |
61 |
| - try { |
62 |
| - Pattern.compile(regex); |
63 |
| - return true; |
64 |
| - } catch (PatternSyntaxException e) { |
65 |
| - return false; |
66 |
| - } |
67 |
| - } |
68 |
| - }; |
69 |
| - |
70 |
| - /* |
71 |
| - * Match invocations to regex-accepting methods with bad string literals. |
72 |
| - * |
73 |
| - * <p>We deliberately omit Pattern.compile itself, as most of its users appear to be either |
74 |
| - * passing e.g. LITERAL flags, deliberately testing the regex compiler, or deliberately |
75 |
| - * using "." as the "vacuously true regex." |
76 |
| - */ |
77 |
| - private static final Matcher<MethodInvocationTree> BAD_REGEX_USAGE = |
78 |
| - allOf( |
79 |
| - anyOf( |
80 |
| - instanceMethod() |
81 |
| - .onExactClass("java.lang.String") |
82 |
| - .namedAnyOf("matches", "split") |
83 |
| - .withParameters("java.lang.String"), |
84 |
| - instanceMethod() |
85 |
| - .onExactClass("java.lang.String") |
86 |
| - .named("split") |
87 |
| - .withParameters("java.lang.String", "int"), |
88 |
| - instanceMethod() |
89 |
| - .onExactClass("java.lang.String") |
90 |
| - .namedAnyOf("replaceFirst", "replaceAll") |
91 |
| - .withParameters("java.lang.String", "java.lang.String"), |
92 |
| - staticMethod().onClass("java.util.regex.Pattern").named("matches"), |
93 |
| - staticMethod().onClass("com.google.common.base.Splitter").named("onPattern")), |
94 |
| - argument(0, BAD_REGEX_LITERAL)); |
95 |
| - |
96 | 37 | @Override
|
97 |
| - public Description matchMethodInvocation( |
98 |
| - MethodInvocationTree methodInvocationTree, VisitorState state) { |
99 |
| - if (!BAD_REGEX_USAGE.matches(methodInvocationTree, state)) { |
100 |
| - return Description.NO_MATCH; |
| 38 | + protected final Description matchRegexLiteral(MethodInvocationTree tree, String regex) { |
| 39 | + try { |
| 40 | + Pattern.compile(regex); |
| 41 | + return NO_MATCH; |
| 42 | + } catch (PatternSyntaxException e) { |
| 43 | + return buildDescription(tree).setMessage(MESSAGE_BASE + e.getMessage()).build(); |
101 | 44 | }
|
102 |
| - |
103 |
| - // TODO: Suggest fixes for more situations. |
104 |
| - Description.Builder descriptionBuilder = buildDescription(methodInvocationTree); |
105 |
| - ExpressionTree arg = methodInvocationTree.getArguments().get(0); |
106 |
| - String value = ASTHelpers.constValue(arg, String.class); |
107 |
| - String reasonInvalid = ""; |
108 |
| - |
109 |
| - if (".".equals(value)) { |
110 |
| - descriptionBuilder.addFix(SuggestedFix.replace(arg, "\"\\\\.\"")); |
111 |
| - reasonInvalid = "\".\" is a valid but useless regex"; |
112 |
| - } else { |
113 |
| - try { |
114 |
| - Pattern.compile(value); |
115 |
| - } catch (PatternSyntaxException e) { |
116 |
| - reasonInvalid = e.getMessage(); |
117 |
| - } |
118 |
| - } |
119 |
| - |
120 |
| - descriptionBuilder.setMessage(MESSAGE_BASE + reasonInvalid); |
121 |
| - return descriptionBuilder.build(); |
122 | 45 | }
|
123 | 46 | }
|
0 commit comments