-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Java: Improve NullGuards.clearlyNotNullExpr()
- Loading branch information
1 parent
a7030c7
commit 9918f1b
Showing
5 changed files
with
148 additions
and
5 deletions.
There are no files selected for viewing
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
25 changes: 25 additions & 0 deletions
25
java/ql/test/library-tests/null-guards/ClearlyNotNullExpr.expected
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,25 @@ | ||
| Test.java:12:13:12:24 | new Object(...) | Test.java:12:13:12:24 | new Object(...) | | ||
| Test.java:13:21:13:21 | 0 | Test.java:13:21:13:21 | 0 | | ||
| Test.java:14:13:14:16 | this | Test.java:14:13:14:16 | this | | ||
| Test.java:15:13:15:14 | "" | Test.java:15:13:15:14 | "" | | ||
| Test.java:17:13:17:24 | Boolean.TRUE | Test.java:17:13:17:24 | Boolean.TRUE | | ||
| Test.java:18:13:18:25 | Boolean.FALSE | Test.java:18:13:18:25 | Boolean.FALSE | | ||
| Test.java:20:13:20:13 | 1 | Test.java:20:13:20:13 | 1 | | ||
| Test.java:21:13:21:21 | Float.NaN | Test.java:21:13:21:21 | Float.NaN | | ||
| Test.java:22:13:22:20 | constant | Test.java:3:29:3:30 | "" | | ||
| Test.java:23:13:23:23 | (...)... | Test.java:23:22:23:23 | "" | | ||
| Test.java:24:13:24:21 | ...=... | Test.java:24:20:24:21 | "" | | ||
| Test.java:26:13:26:54 | ...?...:... | Test.java:26:38:26:39 | "" | | ||
| Test.java:26:13:26:54 | ...?...:... | Test.java:26:43:26:54 | new Object(...) | | ||
| Test.java:27:13:27:21 | switch (...) | Test.java:3:29:3:30 | "" | | ||
| Test.java:27:13:27:21 | switch (...) | Test.java:28:27:28:28 | "" | | ||
| Test.java:34:13:34:25 | ...::... | Test.java:34:13:34:25 | ...::... | | ||
| Test.java:35:13:35:27 | ...->... | Test.java:35:13:35:27 | ...->... | | ||
| Test.java:41:13:41:18 | ... + ... | Test.java:41:13:41:18 | ... + ... | | ||
| Test.java:42:13:42:20 | ... + ... | Test.java:42:13:42:20 | ... + ... | | ||
| Test.java:43:13:43:19 | ...+=... | Test.java:43:13:43:19 | ...+=... | | ||
| Test.java:44:13:44:32 | ... + ... | Test.java:44:13:44:32 | ... + ... | | ||
| Test.java:51:17:51:18 | n1 | Test.java:49:13:49:22 | ... != ... | | ||
| Test.java:59:13:59:14 | n2 | Test.java:57:14:57:15 | "" | | ||
| Test.java:70:13:70:14 | n3 | Test.java:65:18:65:19 | "" | | ||
| Test.java:70:13:70:14 | n3 | Test.java:67:18:67:18 | 1 | |
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,9 @@ | ||
import java | ||
import semmle.code.java.dataflow.NullGuards | ||
|
||
from Expr notNull, Expr reason | ||
where | ||
notNull = clearlyNotNullExpr(reason) and | ||
// Restrict to ArrayInit to make results easier to read | ||
notNull.getParent() instanceof ArrayInit | ||
select notNull, reason |
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,88 @@ | ||
class NonNullTest { | ||
final String constantNull = null; | ||
final String constant = ""; | ||
|
||
Object getMaybeNull() { | ||
return null; | ||
} | ||
|
||
void notNull() { | ||
Object temp; | ||
Object[] r = { | ||
new Object(), | ||
new int[0], | ||
this, | ||
"", | ||
|
||
Boolean.TRUE, | ||
Boolean.FALSE, | ||
|
||
1, | ||
Float.NaN, | ||
constant, | ||
(Object) "", | ||
temp = "", | ||
|
||
getMaybeNull() == null ? "" : new Object(), | ||
switch(1) { | ||
case 1 -> ""; | ||
default -> constant; | ||
} | ||
}; | ||
|
||
Runnable[] functional = { | ||
this::notNull, | ||
() -> notNull() | ||
}; | ||
|
||
String s = null; | ||
String s2 = null; | ||
r = new Object[] { | ||
s + s2, | ||
null + s, | ||
s += s2, | ||
(String) null + null | ||
}; | ||
|
||
Object n1 = getMaybeNull(); | ||
// Guarded by null check | ||
if (n1 != null) { | ||
r = new Object[] { | ||
n1 | ||
}; | ||
} | ||
|
||
Object n2 = getMaybeNull(); | ||
// Assigned a non-null value | ||
n2 = ""; | ||
r = new Object[] { | ||
n2 | ||
}; | ||
|
||
// final variable for which all assigned values are non-null | ||
final Object n3; | ||
if (getMaybeNull() == null) { | ||
n3 = ""; | ||
} else { | ||
n3 = 1; | ||
} | ||
r = new Object[] { | ||
n3 | ||
}; | ||
} | ||
|
||
void maybeNull(boolean b, int i) { | ||
Object temp; | ||
Object[] r = { | ||
constantNull, | ||
(Object) null, | ||
temp = (String) null, | ||
b ? "" : null, | ||
switch(i) { | ||
case 1 -> ""; | ||
default -> null; | ||
}, | ||
null | ||
}; | ||
} | ||
} |
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 @@ | ||
//semmle-extractor-options: --javac-args -source 15 -target 15 |