LiquidJava is an additional type checker for Java, based on liquid types and typestates, which provides additional safety guarantees to Java programs through refinements at compile time.
Example:
@Refinement("a > 0")
int a = 3; // okay
a = -8; // type error!This project contains the LiquidJava verifier and its API, as well as some examples for testing.
You can find out more about LiquidJava in the following resources:
- LiquidJava Website
- VS Code Extension (Marketplace)
- VS Code Extension (Source Code)
- LiquidJava Examples
- LiquidJava External Libraries Examples
The easiest way to use LiquidJava is through its VS Code extension, which uses the LiquidJava verifier directly inside VS Code, with real-time error diagnostics and syntax highlighting for refinements.
For development, you may use the LiquidJava verifier from the command line.
Before setting up LiquidJava, ensure you have the following installed:
- Java 20+ - JDK for compiling and running Java programs
- Maven 3.6+ - For building and dependency management
Additionally, you'll need the following dependency, which includes the LiquidJava API annotations:
<dependency>
<groupId>io.github.liquid-java</groupId>
<artifactId>liquidjava-api</artifactId>
<version>0.0.3</version>
</dependency>repositories {
mavenCentral()
}
dependencies {
implementation 'io.github.liquid-java:liquidjava-api:0.0.3'
}- Clone the repository:
git clone https://github.com/liquid-java/liquidjava.git - Build the project
mvn clean install - Run tests to verify installation:
mvn test - If importing into an IDE, import the project as a Maven project using the root
pom.xml
To run LiquidJava, use the Maven command below, replacing /path/to/your/project with the path to the Java file or directory you want to verify.
mvn exec:java -pl liquidjava-verifier -Dexec.mainClass="liquidjava.api.CommandLineLauncher" -Dexec.args="/path/to/your/project"Warning: Any change to LiquidJava requires rebuilding the jar.
If you're on Linux/macOS, you can use the liquidjava script (from the repository root) to simplify the process.
Test a correct case:
./liquidjava liquidjava-example/src/main/java/testSuite/CorrectSimpleAssignment.javaThis should output: Correct! Passed Verification.
Test an error case:
./liquidjava liquidjava-example/src/main/java/testSuite/ErrorSimpleAssignment.javaThis should output an error message describing the refinement violation.
Run mvn test to run all the tests in LiquidJava.
The starter test file is TestExamples.java, which runs the test suite under the testSuite directory in liquidjava-example.
The test suite considers test cases:
- Files that start with
CorrectorError(e.g.,CorrectRecursion.java) - Packages or folders that contain the word
correctorerror(e.g.,arraylist_correct)
Therefore, the files and folders that do not follow this pattern are ignored.
- docs: Contains documents used for the design of the language. This folder includes a README with the link to the full artifact used in the design process. It also contains initial documents used to prepare the design of the refinements language during its evaluation
- liquidjava-api: Includes the annotations that can be introduced in the Java programs to add the refinements
- liquidjava-example: Includes some examples and the test suite used for testing the verifier
- liquidjava-verifier: Includes the implementation of the verifier. Its main packages are:
api: Includes theCommandLineLauncherthat runs the verification on a given class or in thecurrentlyTestingdirectory if no argument is givenast: Represents the Abstract Syntax Tree (AST) of the Refinements Language (RJ)errors: Package for reporting the errorsprocessor: Package that handles the type checkingrj_language: Handles the parsing of the refinement strings to an ASTsmt: Package that handles the translation to the SMT solver and the processing of the results the SMT solver producesutils: Includes useful methods for all the previous packagestest/java/liquidjava/api/tests: Contains theTestExamplesclass used for running the test suite
