Prechádzať zdrojové kódy

Checker framework added

Tankernn 8 rokov pred
rodič
commit
1cfb2c4eb9

+ 46 - 0
pom.xml

@@ -32,11 +32,52 @@
 			<version>4.12</version>
 			<scope>test</scope>
 		</dependency>
+		<!-- annotations from the Checker Framework: nullness, interning, locking, 
+			... -->
+		<dependency>
+			<groupId>org.checkerframework</groupId>
+			<artifactId>checker-qual</artifactId>
+			<version>2.1.8</version>
+		</dependency>
+		<dependency>
+			<groupId>org.checkerframework</groupId>
+			<artifactId>checker</artifactId>
+			<version>2.1.8</version>
+		</dependency>
+		<!-- The type annotations compiler - uncomment if desired -->
+		<!-- <dependency> <groupId>org.checkerframework</groupId> <artifactId>compiler</artifactId> 
+			<version>2.1.8</version> </dependency> -->
+		<!-- The annotated JDK to use (change to jdk7 if using Java 7) -->
+		<dependency>
+			<groupId>org.checkerframework</groupId>
+			<artifactId>jdk8</artifactId>
+			<version>2.1.8</version>
+		</dependency>
 	</dependencies>
 
 	<build>
 		<finalName>${project.artifactId}-${project.version}.${build.number}</finalName>
 		<plugins>
+			<plugin>
+				<artifactId>maven-compiler-plugin</artifactId>
+				<version>3.3</version>
+				<configuration>
+					<!-- Change source and target to 1.7 if using Java 7 -->
+					<source>1.8</source>
+					<target>1.8</target>
+					<fork>true</fork>
+					<annotationProcessors>
+						<!-- Add all the checkers you want to enable here -->
+						<annotationProcessor>org.checkerframework.checker.nullness.NullnessChecker</annotationProcessor>
+					</annotationProcessors>
+					<compilerArgs>
+						<!-- location of the annotated JDK, which comes from a Maven dependency -->
+						<arg>-Xbootclasspath/p:${annotatedJdk}</arg>
+						<!-- Uncomment the following line to use the type annotations compiler. -->
+						<!-- <arg>-J-Xbootclasspath/p:${typeAnnotationsJavac}</arg> -->
+					</compilerArgs>
+				</configuration>
+			</plugin>
 			<plugin>
 				<artifactId>maven-assembly-plugin</artifactId>
 				<executions>
@@ -88,6 +129,11 @@
 	</build>
 
 	<properties>
+		<!-- These properties will be set by the Maven Dependency plugin -->
+		<!-- Change to jdk7 if using Java 7 -->
+		<annotatedJdk>${org.checkerframework:jdk8:jar}</annotatedJdk>
+		<!-- Uncomment to use the type annotations compiler. -->
+		<!-- <typeAnnotationsJavac>${org.checkerframework:compiler:jar}</typeAnnotationsJavac> -->
 		<maven.compiler.source>1.8</maven.compiler.source>
 		<maven.compiler.target>1.8</maven.compiler.target>
 		<build.number>SNAPSHOT</build.number>

+ 6 - 4
src/main/java/eu/tankernn/accounts/FileManager.java

@@ -13,6 +13,8 @@ import java.io.ObjectStreamException;
 import javax.swing.JFileChooser;
 import javax.swing.JOptionPane;
 
+import org.checkerframework.checker.nullness.qual.NonNull;
+
 import eu.tankernn.accounts.util.encryption.EncryptedComplex;
 import eu.tankernn.accounts.util.encryption.Encryption;
 import eu.tankernn.accounts.util.encryption.InvalidPasswordException;
@@ -107,7 +109,7 @@ public class FileManager {
 
 	}
 
-	private static String readFileAsString(File file) throws IOException {
+	private static String readFileAsString(@NonNull File file) throws IOException {
 		writeLastFileToCache(file);
 
 		BufferedReader reader = new BufferedReader(new FileReader(file));
@@ -121,11 +123,11 @@ public class FileManager {
 		return builder.toString();
 	}
 
-	private static void writeStringToFile(File file, String contents) {
+	private static void writeStringToFile(@NonNull File file, String contents) {
 		writeBytesToFile(file, contents.getBytes());
 	}
 
-	private static void writeBytesToFile(File file, byte[] data) {
+	private static void writeBytesToFile(@NonNull File file, byte[] data) {
 		try {
 			FileOutputStream writer = new FileOutputStream(file);
 			writer.write(data, 0, data.length);
@@ -139,7 +141,7 @@ public class FileManager {
 
 	}
 
-	public static <T> T readObjectFromFile(File file, Class<T> class1)
+	public static <T> T readObjectFromFile(@NonNull File file, Class<T> class1)
 			throws ClassNotFoundException, FileNotFoundException, IOException {
 		if (file == null) {
 			FILE_CHOOSER.showOpenDialog(null);