Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prevent NestedOptionals from throwing an NPE #412

Merged
merged 2 commits into from
Dec 16, 2022
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,11 @@ public NestedOptionals() {}

@Override
public Description matchMethodInvocation(MethodInvocationTree tree, VisitorState state) {
return state.getTypes().isSubtype(ASTHelpers.getType(tree), OPTIONAL_OF_OPTIONAL.get(state))
? describeMatch(tree)
: Description.NO_MATCH;
Type stateType = OPTIONAL_OF_OPTIONAL.get(state);
if (stateType != null && state.getTypes().isSubtype(ASTHelpers.getType(tree), stateType)) {
return describeMatch(tree);
} else {
return Description.NO_MATCH;
}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Alright, so I guess that the issue happens if the Optional class isn't loaded during compilation at all. That realization also lead to this code.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We do have a preference for an early return with Description.NO_MATCH:

Suggested change
Type stateType = OPTIONAL_OF_OPTIONAL.get(state);
if (stateType != null && state.getTypes().isSubtype(ASTHelpers.getType(tree), stateType)) {
return describeMatch(tree);
} else {
return Description.NO_MATCH;
}
Type type = OPTIONAL_OF_OPTIONAL.get(state);
if (type == null || !state.getTypes().isSubtype(ASTHelpers.getType(tree), type)) {
return Description.NO_MATCH;
}
return describeMatch(tree);

}
}
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,19 @@ void identification() {
"}")
.doTest();
}

@Test
void failingTypeCheck() {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Slightly more in line which what we do in a few other places

Suggested change
void failingTypeCheck() {
void identificationOptionalTypeNotLoaded() {

(Funny: I tried to replace the Duration expression below with Stream.empty(), but then the NPE didn't happen. I think because Stream does reference Optional, while Duration (and ChronoUnit) don't.

compilationTestHelper
.addSourceLines(
"B.java",
"import java.time.temporal.ChronoUnit;",
"",
"class B {",
" void m() {",
" java.time.Duration.of(1, ChronoUnit.YEARS);",
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I suggest using a slightly more realistic case ;)

jshell> java.time.Duration.of(1, java.time.temporal.ChronoUnit.YEARS)
|  Exception java.time.temporal.UnsupportedTemporalTypeException: Unit must not have an estimated duration
|        at Duration.plus (Duration.java:717)
|        at Duration.of (Duration.java:312)
|        at (#1:1)

" }",
"}")
.doTest();
}
}