Giter Site home page Giter Site logo

better-strings's Introduction

Better Strings - Java String Interpolation

Build Status badge badge

The Java Plugin to use string interpolation for Java (like in Kotlin). Supports Java 8, 9, 10, 11, …​

1. Motivation

In the latest JEPs https://openjdk.java.net/jeps/355, we have the only expectation of the RAW string literals, but there is nothing about the string interpolation.

And it’s so sad, that we need writing code like this in the 2020 year:

int a = 3;
int b = 4;
System.out.println(a + " + " + b + " = " + (a + b));

just to print the string: 3 + 4 = 7

of course, we can use a var since Java 10:

var a = 3;
var b = 4;
System.out.println(a + " + " + b + " = " + (a + b));

But this code is still sad =(

2. What can we do with the Better Strings plugin?

2.1. Using variables in string literals

var a = 3;
var b = 4;
System.out.println("${a} + ${b} = ${a+b}");

prints: 3 + 4 = 7

2.2. Using expressions

var a = 3;
var b = 4;
System.out.println("flag = ${a > b ? true : false}");

prints: flag = false

var a = 3;
System.out.println("pow = ${a * a}");

prints: pow = 9

2.3. Using functions

@Test
void functionCall() {
    System.out.println("fact(5) = ${factorial(5)}");
}

long factorial(int n) {
    long fact = 1;
    for (int i = 2; i <= n; i++) {
        fact = fact * i;
    }
    return fact;
}

prints: fact(5) = 120

2.4. Using string interpolation in class fields

you can use better-string for string interpolation in class fields, for example:

public class Test {
	public String field = "${3+4}";
	public String getField(){
		return "field = ${field}";
	}
}

new Test().getField() prints : field = 7

2.5. Using string interpolation in default methods of interfaces

also you can use string interpolation with default methods in interfaces like this:

public interface InterfaceWithDefaultMethod {
	default String sum(){
		return "sum = ${1+2}";
	}
}

public class Test implements InterfaceWithDefaultMethod {
	public String test() {
		return sum();
	}
}

The result of new Test().test() is sum = 3

2.6. Using string interpolation in enums

In addition you can use string interpolation for code of enums:

public enum EnumCode {
	FIRST,
	SECOND,
	THIRD;

	@Override
	public String toString() {
		return "value: ${this.name()}, order: ${this.ordinal() + 1}";
	}
}

EnumCode.THIRD.toString(); should print: value: THIRD, order: 3

2.7. Limitations

It’s impossible to use the string interpolation within annotations value. It provides compatibility with spring framework properties injecting by the @Value annotation.

2.8. Disclaimer

Note
Keep in mind that this feature should be used carefully. You shouldn’t write too much code inside string literals because it is too difficult to maintain and maybe not obvious for debugging.

3. Getting started

3.1. Maven

You need to add the following dependency:

<dependency>
    <groupId>com.antkorwin</groupId>
    <artifactId>better-strings</artifactId>
    <version>0.5</version>
</dependency>

And you can use string interpolation anywhere in your code.

Note
if you use maven-compiler-plugin in your pom file then declare better-string in the annotation processors configuration section:
<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-compiler-plugin</artifactId>
    <version>3.5.1</version>
    <configuration>
        <annotationProcessorPaths>
            <path>
               <groupId>com.antkorwin</groupId>
               <artifactId>better-strings</artifactId>
               <version>${better-strings.version}</version>
            </path>
        </annotationProcessorPaths>
    </configuration>
</plugin>

You can read more about configuration of multiple annotation processors for one project here.

3.2. Gradle

Add the following dependencies in your build.gradle file:

compileOnly 'com.antkorwin:better-strings:0.4'
annotationProcessor 'com.antkorwin:better-strings:0.4'

if you want use string interpolation for tests:

testCompileOnly 'com.antkorwin:better-strings:0.4'
testAnnotationProcessor 'com.antkorwin:better-strings:0.4'

Example of a simple application with gradle build: https://github.com/antkorwin/better-strings-demo

3.3. Intellij IDEA with Gradle

Sometimes you can get into problems with gradle projects in IDEA, an internal runner(in IDEA) may not execute our annotation processor.

You can read more about this problem here: https://stackoverflow.com/a/55605950

I suggest to turn on enable annotation processing

enable annotation processing

And select the gradle test runner in the Intellij IDEA settings.

gradle test runner

3.4. Eclipse

Unfortunately, better-string doesn’t work with Eclipse. Eclipse uses its own java compiler and the annotation processing with AST modification isn’t work with them out of the box.

4. How to turn-off string interpolation

To skip the string interpolation for class, method or field you can use the @DisabledStringInterpolation annotation:

@DisabledStringInterpolation
class Foo {
    void test() {
        System.out.println("${a+b}");
    }
}

this code prints: ${a+b}

Also, you can use the following workaround to escape string interpolation locally in your code:

System.out.println("${'$'}{a+b}");

the result is : ${a+b}

5. How to control the generated code

Better Strings is a Java Annotation Processor, but it does not process specific annotations, it makes AST modification of your code while javac compiling it.

By default, each ${…​} occurrence translates into an invocation of String#valueOf. For instance, a string:

"Result: ${obj}.method() = ${obj.method()}"

will yield:

"Result: "
  + String.valueOf(obj)
  + ".method() = "
  + String.valueOf(obj.method())

Under certain circumstances (e.g. with certain static code analyzers), however, it might be preferred that the generated code contains an explicit toString invocation for each ${…​} occurrence containing a non-null value. This can be controlled with -AcallToStringExplicitlyInInterpolations compiler option, which will instead make the above string translate into:

"Result: "
  + (java.util.Objects.nonNull(obj) ? java.util.Objects.requireNonNull(obj).toString() : "null")
  + ".method() = "
  + (java.util.Objects.nonNull(obj.method()) ? java.util.Objects.requireNonNull(obj.method()).toString() : "null")
Note
this causes the inner part of each ${…​} to be evaluated twice, which might be problematic if the expression is side-effecting, non-deterministic or expensive to compute.

6. How to use with other annotation processors

If you need to use multiple annotation processors (for example better-strings with lombok or mapstruct) and the order of processing is necessary for you then you can set the order in your building tool.

In maven, you should declare dependencies as usually, then describe annotation processors in the configuration of the maven-compiler-plugin in the build section:

<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-compiler-plugin</artifactId>
    <version>3.5.1</version>
    <configuration>
        <annotationProcessorPaths>

            <!-- first annotation processor -->
            <path>
                <groupId>org.projectlombok</groupId>
                <artifactId>lombok</artifactId>
                <version>${lombok.version}</version>
            </path>

            <!-- second annotation processor -->
            <path>
               <groupId>com.antkorwin</groupId>
               <artifactId>better-strings</artifactId>
               <version>${better-strings.version}</version>
            </path>

        </annotationProcessorPaths>
    </configuration>
</plugin>
Note
The order of annotation processors paths is necessary. You should describe the all used APT when you write annotationProcessorPaths section.

better-strings's People

Contributors

antkorwin avatar pawellipski avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.