Skip to content

Commit 623f564

Browse files
christophstroblmp911de
authored andcommitted
Migrate to JSpecify annotations for nullability constraints.
Closes #3745 Original pull request: #3781
1 parent 600180d commit 623f564

File tree

142 files changed

+681
-507
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

142 files changed

+681
-507
lines changed

org/antlr/v4/tool/templates/codegen/Java/Java.stg

+30-5
Original file line numberDiff line numberDiff line change
@@ -48,14 +48,18 @@ ParserFile(file, parser, namedActions, contextSuperClass) ::= <<
4848
package <file.genPackage>;
4949
<endif>
5050
<namedActions.header>
51+
5152
import org.antlr.v4.runtime.atn.*;
5253
import org.antlr.v4.runtime.dfa.DFA;
5354
import org.antlr.v4.runtime.*;
5455
import org.antlr.v4.runtime.misc.*;
5556
import org.antlr.v4.runtime.tree.*;
57+
import org.jspecify.annotations.NullUnmarked;
5658
import java.util.List;
5759
import java.util.Iterator;
5860
import java.util.ArrayList;
61+
import jakarta.annotation.Generated;
62+
5963

6064
<parser>
6165
>>
@@ -67,11 +71,15 @@ package <file.genPackage>;
6771
<endif>
6872
<header>
6973
import org.antlr.v4.runtime.tree.ParseTreeListener;
74+
import org.jspecify.annotations.NullUnmarked;
75+
import jakarta.annotation.Generated;
7076

7177
/**
7278
* This interface defines a complete listener for a parse tree produced by
7379
* {@link <file.parserName>}.
7480
*/
81+
@NullUnmarked
82+
@Generated("<file.grammarName>Listener")
7583
interface <file.grammarName>Listener extends ParseTreeListener {
7684
<file.listenerNames:{lname |
7785
/**
@@ -103,17 +111,20 @@ BaseListenerFile(file, header, namedActions) ::= <<
103111
package <file.genPackage>;
104112
<endif>
105113
<header>
106-
107114
import org.antlr.v4.runtime.ParserRuleContext;
108115
import org.antlr.v4.runtime.tree.ErrorNode;
109116
import org.antlr.v4.runtime.tree.TerminalNode;
117+
import org.jspecify.annotations.NullUnmarked;
118+
import jakarta.annotation.Generated;
110119

111120
/**
112121
* This class provides an empty implementation of {@link <file.grammarName>Listener},
113122
* which can be extended to create a listener which only needs to handle a subset
114123
* of the available methods.
115124
*/
116-
@SuppressWarnings("CheckReturnValue")
125+
@NullUnmarked
126+
@Generated("<file.grammarName>BaseListener")
127+
@SuppressWarnings({ "CheckReturnValue", "NullAway" })
117128
class <file.grammarName>BaseListener implements <file.grammarName>Listener {
118129
<file.listenerNames:{lname |
119130
/**
@@ -163,6 +174,8 @@ package <file.genPackage>;
163174
<endif>
164175
<header>
165176
import org.antlr.v4.runtime.tree.ParseTreeVisitor;
177+
import org.jspecify.annotations.NullUnmarked;
178+
import jakarta.annotation.Generated;
166179

167180
/**
168181
* This interface defines a complete generic visitor for a parse tree produced
@@ -171,6 +184,8 @@ import org.antlr.v4.runtime.tree.ParseTreeVisitor;
171184
* @param \<T> The return type of the visit operation. Use {@link Void} for
172185
* operations with no return type.
173186
*/
187+
@NullUnmarked
188+
@Generated("<file.grammarName>Visitor")
174189
interface <file.grammarName>Visitor\<T> extends ParseTreeVisitor\<T> {
175190
<file.visitorNames:{lname |
176191
/**
@@ -194,6 +209,8 @@ package <file.genPackage>;
194209
<endif>
195210
<header>
196211
import org.antlr.v4.runtime.tree.AbstractParseTreeVisitor;
212+
import org.jspecify.annotations.NullUnmarked;
213+
import jakarta.annotation.Generated;
197214

198215
/**
199216
* This class provides an empty implementation of {@link <file.grammarName>Visitor},
@@ -203,7 +220,9 @@ import org.antlr.v4.runtime.tree.AbstractParseTreeVisitor;
203220
* @param \<T> The return type of the visit operation. Use {@link Void} for
204221
* operations with no return type.
205222
*/
206-
@SuppressWarnings("CheckReturnValue")
223+
@NullUnmarked
224+
@Generated("<file.grammarName>BaseVisitor")
225+
@SuppressWarnings({ "CheckReturnValue", "NullAway" })
207226
class <file.grammarName>BaseVisitor\<T> extends AbstractParseTreeVisitor\<T> implements <file.grammarName>Visitor\<T> {
208227
<file.visitorNames:{lname |
209228
/**
@@ -225,7 +244,9 @@ Parser(parser, funcs, atn, sempredFuncs, superClass) ::= <<
225244
>>
226245

227246
Parser_(parser, funcs, atn, sempredFuncs, ctor, superClass) ::= <<
228-
@SuppressWarnings({"all", "warnings", "unchecked", "unused", "cast", "CheckReturnValue"})
247+
@NullUnmarked
248+
@Generated("<parser.name>")
249+
@SuppressWarnings({"all", "warnings", "unchecked", "unused", "cast", "CheckReturnValue", "NullAway"})
229250
class <parser.name> extends <superClass; null="Parser"> {
230251
// Customization: Suppress version check
231252
// static { RuntimeMetaData.checkVersion("<file.ANTLRVersion>", RuntimeMetaData.VERSION); }
@@ -895,12 +916,16 @@ import org.antlr.v4.runtime.*;
895916
import org.antlr.v4.runtime.atn.*;
896917
import org.antlr.v4.runtime.dfa.DFA;
897918
import org.antlr.v4.runtime.misc.*;
919+
import org.jspecify.annotations.NullUnmarked;
920+
import jakarta.annotation.Generated;
898921

899922
<lexer>
900923
>>
901924

902925
Lexer(lexer, atn, actionFuncs, sempredFuncs, superClass) ::= <<
903-
@SuppressWarnings({"all", "warnings", "unchecked", "unused", "cast", "CheckReturnValue"})
926+
@NullUnmarked
927+
@Generated("<lexer.name>")
928+
@SuppressWarnings({"all", "warnings", "unchecked", "unused", "cast", "CheckReturnValue", "NullAway"})
904929
class <lexer.name> extends <superClass; null="Lexer"> {
905930
// Customization: Suppress version check
906931
// static { RuntimeMetaData.checkVersion("<lexerFile.ANTLRVersion>", RuntimeMetaData.VERSION); }
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
22
* Classes for Envers Repositories configuration support.
33
*/
4-
@org.springframework.lang.NonNullApi
4+
@org.jspecify.annotations.NullMarked
55
package org.springframework.data.envers.repository.config;

spring-data-envers/src/main/java/org/springframework/data/envers/repository/support/EnversRevisionRepositoryFactoryBean.java

+3-2
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121

2222
import org.hibernate.envers.DefaultRevisionEntity;
2323

24+
import org.jspecify.annotations.Nullable;
2425
import org.springframework.beans.factory.FactoryBean;
2526
import org.springframework.data.jpa.repository.support.JpaRepositoryFactory;
2627
import org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean;
@@ -39,7 +40,7 @@
3940
public class EnversRevisionRepositoryFactoryBean<T extends RevisionRepository<S, ID, N>, S, ID, N extends Number & Comparable<N>>
4041
extends JpaRepositoryFactoryBean<T, S, ID> {
4142

42-
private Class<?> revisionEntityClass;
43+
private @Nullable Class<?> revisionEntityClass;
4344

4445
/**
4546
* Creates a new {@link EnversRevisionRepositoryFactoryBean} for the given repository interface.
@@ -81,7 +82,7 @@ private static class RevisionRepositoryFactory<T, ID, N extends Number & Compara
8182
* @param entityManager must not be {@literal null}.
8283
* @param revisionEntityClass can be {@literal null}, will default to {@link DefaultRevisionEntity}.
8384
*/
84-
public RevisionRepositoryFactory(EntityManager entityManager, Class<?> revisionEntityClass) {
85+
public RevisionRepositoryFactory(EntityManager entityManager, @Nullable Class<?> revisionEntityClass) {
8586

8687
super(entityManager);
8788

Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
22
* Spring Data JPA specific converter infrastructure.
33
*/
4-
@org.springframework.lang.NonNullApi
4+
@org.jspecify.annotations.NullMarked
55
package org.springframework.data.envers.repository.support;

spring-data-jpa/pom.xml

+85
Original file line numberDiff line numberDiff line change
@@ -465,4 +465,89 @@
465465
</profile>
466466
</profiles>
467467

468+
<profiles>
469+
<profile>
470+
<id>nullaway</id>
471+
<build>
472+
<plugins>
473+
<plugin>
474+
<groupId>org.apache.maven.plugins</groupId>
475+
<artifactId>maven-compiler-plugin</artifactId>
476+
<configuration>
477+
<annotationProcessorPaths>
478+
<path>
479+
<groupId>com.querydsl</groupId>
480+
<artifactId>querydsl-apt</artifactId>
481+
<version>${querydsl}</version>
482+
<classifier>jakarta</classifier>
483+
</path>
484+
<path>
485+
<groupId>org.hibernate.orm</groupId>
486+
<artifactId>hibernate-jpamodelgen</artifactId>
487+
<version>${hibernate}</version>
488+
</path>
489+
<path>
490+
<groupId>org.hibernate.orm</groupId>
491+
<artifactId>hibernate-core</artifactId>
492+
<version>${hibernate}</version>
493+
</path>
494+
<path>
495+
<groupId>org.openjdk.jmh</groupId>
496+
<artifactId>jmh-generator-annprocess</artifactId>
497+
<version>${jmh}</version>
498+
</path>
499+
<path>
500+
<groupId>jakarta.persistence</groupId>
501+
<artifactId>jakarta.persistence-api</artifactId>
502+
<version>${jakarta-persistence-api}</version>
503+
</path>
504+
<path>
505+
<groupId>com.google.errorprone</groupId>
506+
<artifactId>error_prone_core</artifactId>
507+
<version>${errorprone}</version>
508+
</path>
509+
<path>
510+
<groupId>com.uber.nullaway</groupId>
511+
<artifactId>nullaway</artifactId>
512+
<version>${nullaway}</version>
513+
</path>
514+
</annotationProcessorPaths>
515+
</configuration>
516+
<executions>
517+
<execution>
518+
<id>default-compile</id>
519+
<phase>none</phase>
520+
</execution>
521+
<execution>
522+
<id>default-testCompile</id>
523+
<phase>none</phase>
524+
</execution>
525+
<execution>
526+
<id>java-compile</id>
527+
<phase>compile</phase>
528+
<goals>
529+
<goal>compile</goal>
530+
</goals>
531+
<configuration>
532+
<compilerArgs>
533+
<arg>-XDcompilePolicy=simple</arg>
534+
<arg>--should-stop=ifError=FLOW</arg>
535+
<arg>-Xplugin:ErrorProne -XepDisableAllChecks -Xep:NullAway:ERROR -XepOpt:NullAway:OnlyNullMarked=true -XepOpt:NullAway:TreatGeneratedAsUnannotated=true -XepOpt:NullAway:CustomContractAnnotations=org.springframework.lang.Contract</arg>
536+
</compilerArgs>
537+
</configuration>
538+
</execution>
539+
<execution>
540+
<id>java-test-compile</id>
541+
<phase>test-compile</phase>
542+
<goals>
543+
<goal>testCompile</goal>
544+
</goals>
545+
</execution>
546+
</executions>
547+
</plugin>
548+
</plugins>
549+
</build>
550+
</profile>
551+
</profiles>
552+
468553
</project>

spring-data-jpa/src/main/java/org/springframework/data/jpa/convert/QueryByExamplePredicateBuilder.java

+4-5
Original file line numberDiff line numberDiff line change
@@ -34,14 +34,15 @@
3434
import java.util.Set;
3535

3636
import org.springframework.dao.InvalidDataAccessApiUsageException;
37+
38+
import org.jspecify.annotations.Nullable;
3739
import org.springframework.data.domain.Example;
3840
import org.springframework.data.domain.ExampleMatcher;
3941
import org.springframework.data.domain.ExampleMatcher.MatchMode;
4042
import org.springframework.data.domain.ExampleMatcher.PropertyValueTransformer;
4143
import org.springframework.data.jpa.repository.query.EscapeCharacter;
4244
import org.springframework.data.support.ExampleMatcherAccessor;
4345
import org.springframework.data.util.DirectFieldAccessFallbackBeanWrapper;
44-
import org.springframework.lang.Nullable;
4546
import org.springframework.util.Assert;
4647
import org.springframework.util.ClassUtils;
4748
import org.springframework.util.ObjectUtils;
@@ -81,8 +82,7 @@ public class QueryByExamplePredicateBuilder {
8182
* @param example must not be {@literal null}.
8283
* @return {@literal null} indicates no {@link Predicate}.
8384
*/
84-
@Nullable
85-
public static <T> Predicate getPredicate(Root<T> root, CriteriaBuilder cb, Example<T> example) {
85+
public static <T> @Nullable Predicate getPredicate(Root<T> root, CriteriaBuilder cb, Example<T> example) {
8686
return getPredicate(root, cb, example, EscapeCharacter.DEFAULT);
8787
}
8888

@@ -95,8 +95,7 @@ public static <T> Predicate getPredicate(Root<T> root, CriteriaBuilder cb, Examp
9595
* @param escapeCharacter Must not be {@literal null}.
9696
* @return {@literal null} indicates no constraints
9797
*/
98-
@Nullable
99-
public static <T> Predicate getPredicate(Root<T> root, CriteriaBuilder cb, Example<T> example,
98+
public static <T> @Nullable Predicate getPredicate(Root<T> root, CriteriaBuilder cb, Example<T> example,
10099
EscapeCharacter escapeCharacter) {
101100

102101
Assert.notNull(root, "Root must not be null");
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
22
* Spring Data JPA specific converter infrastructure.
33
*/
4-
@org.springframework.lang.NonNullApi
4+
@org.jspecify.annotations.NullMarked
55
package org.springframework.data.jpa.convert;

0 commit comments

Comments
 (0)