-
Notifications
You must be signed in to change notification settings - Fork 746
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rethrow ReflectiveOperationException as LinkageError instead of Asser…
…tionError. PiperOrigin-RevId: 363446325
- Loading branch information
1 parent
fc7cca8
commit 2b10575
Showing
5 changed files
with
260 additions
and
0 deletions.
There are no files selected for viewing
81 changes: 81 additions & 0 deletions
81
.../com/google/errorprone/bugpatterns/RethrowReflectiveOperationExceptionAsLinkageError.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
/* | ||
* Copyright 2021 The Error Prone Authors. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package com.google.errorprone.bugpatterns; | ||
|
||
import static com.google.errorprone.BugPattern.SeverityLevel.WARNING; | ||
import static com.google.errorprone.matchers.Description.NO_MATCH; | ||
import static com.google.errorprone.matchers.Matchers.constructor; | ||
|
||
import com.google.common.collect.Iterables; | ||
import com.google.errorprone.BugPattern; | ||
import com.google.errorprone.VisitorState; | ||
import com.google.errorprone.bugpatterns.BugChecker.ThrowTreeMatcher; | ||
import com.google.errorprone.fixes.SuggestedFix; | ||
import com.google.errorprone.matchers.Description; | ||
import com.google.errorprone.matchers.Matcher; | ||
import com.google.errorprone.util.ASTHelpers; | ||
import com.sun.source.tree.ExpressionTree; | ||
import com.sun.source.tree.NewClassTree; | ||
import com.sun.source.tree.ThrowTree; | ||
import com.sun.tools.javac.code.Symbol; | ||
import java.util.List; | ||
import javax.lang.model.element.ElementKind; | ||
|
||
/** A {@link BugChecker}; see the associated {@link BugPattern} annotation for details. */ | ||
@BugPattern( | ||
name = "RethrowReflectiveOperationExceptionAsLinkageError", | ||
summary = "Prefer LinkageError for rethrowing ReflectiveOperationException as unchecked", | ||
severity = WARNING) | ||
public class RethrowReflectiveOperationExceptionAsLinkageError extends BugChecker | ||
implements ThrowTreeMatcher { | ||
private static final String ASSERTION_ERROR = "java.lang.AssertionError"; | ||
private static final String REFLECTIVE_OPERATION_EXCEPTION = | ||
"java.lang.ReflectiveOperationException"; | ||
private static final Matcher<ExpressionTree> MATCHER = constructor().forClass(ASSERTION_ERROR); | ||
|
||
@Override | ||
public Description matchThrow(ThrowTree throwTree, VisitorState state) { | ||
if (!MATCHER.matches(throwTree.getExpression(), state)) { | ||
return NO_MATCH; | ||
} | ||
NewClassTree newClassTree = (NewClassTree) throwTree.getExpression(); | ||
List<? extends ExpressionTree> arguments = newClassTree.getArguments(); | ||
if (arguments.isEmpty() || arguments.size() > 2) { | ||
return NO_MATCH; | ||
} | ||
Symbol cause = ASTHelpers.getSymbol(Iterables.getLast(arguments)); | ||
if (cause == null || !isReflectiveOperationException(state, cause)) { | ||
return NO_MATCH; | ||
} | ||
String message = | ||
arguments.size() == 1 | ||
? String.format("%s.getMessage()", cause.getSimpleName()) | ||
: state.getSourceForNode(arguments.get(0)); | ||
return describeMatch( | ||
newClassTree, | ||
SuggestedFix.replace( | ||
newClassTree, | ||
String.format("new LinkageError(%s, %s)", message, cause.getSimpleName()))); | ||
} | ||
|
||
private static boolean isReflectiveOperationException(VisitorState state, Symbol symbol) { | ||
return state | ||
.getTypes() | ||
.isSameType(symbol.asType(), state.getTypeFromString(REFLECTIVE_OPERATION_EXCEPTION)) | ||
&& symbol.getKind().equals(ElementKind.EXCEPTION_PARAMETER); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
44 changes: 44 additions & 0 deletions
44
.../google/errorprone/bugpatterns/RethrowReflectiveOperationExceptionAsLinkageErrorTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
/* | ||
* Copyright 2021 The Error Prone Authors. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package com.google.errorprone.bugpatterns; | ||
|
||
import com.google.errorprone.CompilationTestHelper; | ||
import org.junit.Test; | ||
import org.junit.runner.RunWith; | ||
import org.junit.runners.JUnit4; | ||
|
||
/** {@link RethrowReflectiveOperationExceptionAsLinkageError}Test */ | ||
@RunWith(JUnit4.class) | ||
public class RethrowReflectiveOperationExceptionAsLinkageErrorTest { | ||
private final CompilationTestHelper testHelper = | ||
CompilationTestHelper.newInstance( | ||
RethrowReflectiveOperationExceptionAsLinkageError.class, getClass()); | ||
|
||
@Test | ||
public void positive() { | ||
testHelper | ||
.addSourceFile("RethrowReflectiveOperationExceptionAsLinkageErrorPositiveCases.java") | ||
.doTest(); | ||
} | ||
|
||
@Test | ||
public void negative() { | ||
testHelper | ||
.addSourceFile("RethrowReflectiveOperationExceptionAsLinkageErrorNegativeCases.java") | ||
.doTest(); | ||
} | ||
} |
69 changes: 69 additions & 0 deletions
69
.../bugpatterns/testdata/RethrowReflectiveOperationExceptionAsLinkageErrorNegativeCases.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
/* | ||
* Copyright 2021 The Error Prone Authors. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package com.google.errorprone.bugpatterns.testdata; | ||
|
||
import java.io.IOException; | ||
|
||
public class RethrowReflectiveOperationExceptionAsLinkageErrorNegativeCases { | ||
void assertionErrorNonStringConstructor() { | ||
try { | ||
throw new ReflectiveOperationException(); | ||
} catch (ReflectiveOperationException e) { | ||
throw new AssertionError(1); | ||
} | ||
} | ||
|
||
void assertionErrorNoArgConstructor() { | ||
try { | ||
throw new ReflectiveOperationException(); | ||
} catch (ReflectiveOperationException e) { | ||
throw new AssertionError(); | ||
} | ||
} | ||
|
||
void noThrowAssertionError() { | ||
try { | ||
throw new ReflectiveOperationException(); | ||
} catch (ReflectiveOperationException e) { | ||
throw new IllegalStateException(e); | ||
} | ||
} | ||
|
||
void noCatchReflectiveOperationException() { | ||
try { | ||
throw new ReflectiveOperationException(); | ||
} catch (Exception e) { | ||
throw new AssertionError(e); | ||
} | ||
} | ||
|
||
void multiCatchExceptions() { | ||
try { | ||
int a = 100; | ||
if (a < 100) { | ||
throw new IOException("Test"); | ||
} | ||
throw new ReflectiveOperationException(); | ||
} catch (IOException | ReflectiveOperationException e) { | ||
throw new AssertionError(e); | ||
} | ||
} | ||
|
||
void throwNewReflectiveOperationException() { | ||
throw new AssertionError(new ReflectiveOperationException("Test")); | ||
} | ||
} |
64 changes: 64 additions & 0 deletions
64
.../bugpatterns/testdata/RethrowReflectiveOperationExceptionAsLinkageErrorPositiveCases.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
/* | ||
* Copyright 2021 The Error Prone Authors. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package com.google.errorprone.bugpatterns.testdata; | ||
|
||
public class RethrowReflectiveOperationExceptionAsLinkageErrorPositiveCases { | ||
void assertionErrorExceptionConstructor() { | ||
try { | ||
throw new ReflectiveOperationException(); | ||
} catch (ReflectiveOperationException e) { | ||
// BUG: Diagnostic contains: throw new LinkageError(e.getMessage(), e); | ||
throw new AssertionError(e); | ||
} | ||
} | ||
|
||
void assertionErrorStringConstructor() { | ||
try { | ||
throw new ReflectiveOperationException(); | ||
} catch (ReflectiveOperationException e) { | ||
// BUG: Diagnostic contains: throw new LinkageError("Test", e); | ||
throw new AssertionError("Test", e); | ||
} | ||
} | ||
|
||
void assertionErrorStringFormatConstructor() { | ||
try { | ||
throw new ReflectiveOperationException(); | ||
} catch (ReflectiveOperationException e) { | ||
// BUG: Diagnostic contains: throw new LinkageError(String.format("Test"), e); | ||
throw new AssertionError(String.format("Test"), e); | ||
} | ||
} | ||
|
||
void multiLineCatchBlock() { | ||
try { | ||
throw new ReflectiveOperationException(); | ||
} catch (ReflectiveOperationException e1) { | ||
int a = 100; | ||
if (a < 100) { | ||
try { | ||
throw new ReflectiveOperationException(); | ||
} catch (ReflectiveOperationException e2) { | ||
// BUG: Diagnostic contains: throw new LinkageError(e2.getMessage(), e2); | ||
throw new AssertionError(e2); | ||
} | ||
} | ||
// BUG: Diagnostic contains: throw new LinkageError(e1.getMessage(), e1); | ||
throw new AssertionError(e1); | ||
} | ||
} | ||
} |