An open API service indexing awesome lists of open source software.

https://github.com/roookeee/datus

datus enables you to define a conversion process between two data structures in a fluent functional API
https://github.com/roookeee/datus

conversion datus factory factory-pattern functional java java-8 mapping

Last synced: 4 months ago
JSON representation

datus enables you to define a conversion process between two data structures in a fluent functional API

Awesome Lists containing this project

README

          

datus enables you to define a conversion process between two data structures in a fluent functional API.
Define conditional processing, do some business relevant work or just pass values from a to b - just about everything
is possible for both mutable and immutable data structures.

Replace your conversion factories/helpers with *datus* and focus on what to map, not how:
define your conversion, eliminate the need to test the conversion aspects
of your application and focus on what really matters - your project.

#### Overview
1. [Why use datus?](#why-use-datus)
2. [Examples](#examples)
3. [Sample projects](#sample-projects)
4. [User guide](#user-guide)
5. [Dependency information (Maven etc.)](#dependency-information)
6. [Supported JVM languages](#supported-jvm-languages)
6. [Development principles](#development-principles)
7. [Supporting datus development](#supporting-datus-development)

## Why use *datus*?
Using *datus* has the following benefits:

- **separation of concerns**: write your mapping in *datus* while using the business logic of other components (no more monolithic classes that do both)
- **reducing dependencies**: enable your businesslogic to operate on parts of a data structure instead of depending on the whole object (e.g. upper casing a persons name in a `.map`-step)
- **cleaner abstractions**: programming against an `interface` instead of concrete classes
- **declarative/functional-programming approach**: focus on `what` to map, not `how` to do it
- **simplicity**: compared to [Lombok](https://projectlombok.org/) and [Apache MapStruct](http://mapstruct.org/) no additional IDE or build system plugins are needed
- **explicitness**: no black magic - you define what to map and how (compile-time checked), not naming conventions, annotations or heuristics
- **low coupling**: leave your POJO/data classes 'as is' - no need for annotations or any other modifications
- **less classes**: no more 'dumb'/businesslogic less `Factory`-classes that you have to unit test
- **cross-cutting concerns**: easily add logging (or other cross-cutting concerns) via `spy` or `process`(see below for more information about the full API)
- **rich mapping API**: define the mapping process from `A -> B` and get `Collection -> Collection`, `Collection -> Map` and more for free
- **focus on meaningful unit tests**: no need to unit test trivial but necessary logic (e.g. `null` checking, which once fixed won't be a problem at the given location again)
- **clarity**: (subjectively) more self-documenting code when using *datus* mapping definitions
- **no reflection or code generation**: *datus* implementation is just plain java,
use [GraalVM Native Image](https://www.graalvm.org/docs/reference-manual/aot-compilation/) or any JVM out there -
*datus* will always run out of the box without any further configuration or limitations

## Examples
The following examples outline the general usage of both the immutable and mutable API of *datus*.
Please refer to the [USAGE.md](https://github.com/roookeee/datus/blob/master/USAGE.md) for an extensive guide on *datus*
that includes [a fictional, more complex scenario with changing requirements](https://github.com/roookeee/datus/blob/master/USAGE.md#examples).
#### Immutable object API example
```java

class Person {
//getters + constructor omitted for brevity
private final String firstName;
private final String lastName;

}

class PersonDTO {
//getters omitted for brevity
private final String firstName;
private final String lastName;

public PersonDTO(String firstName, String lastName) {
this.firstName = firstName;
this.lastName = lastName;
}
}

//define a building process for each constructor parameter, step by step
//the immutable API defines constructor parameters in their declaration order
Mapper mapper = Datus.forTypes(Person.class, PersonDTO.class).immutable(PersonDTO::new)
.from(Person::getFirstName).to(ConstructorParameter::bind)
.from(Person::getLastName).nullsafe()
.given(String::isEmpty, "fallback").orElse(ln -> ln.toUpperCase())
.to(ConstructorParameter::bind)
.build();

Person person = new Person();
person.setFirstName("firstName");
person.setLastName(null);
PersonDTO personDto = mapper.convert(person);
/*
personDto = PersonDTO [
firstName = "firstName",
lastName = null
]
*/
person.setLastName("");
personDto = mapper.convert(person);
/*
personDto = PersonDTO [
firstName = "firstName",
lastName = "fallback"
]
*/
person.setLastName("lastName");
personDto = mapper.convert(person);
/*
personDto = PersonDTO [
firstName = "firstName",
lastName = "LASTNAME"
]
*/
```

#### Mutable object API example
```java
class Person {
//getters + setters omitted for brevity
private String firstName;
private String lastName;
}

class PersonDTO {
//getters + setters + empty constructor omitted for brevity
private String firstName;
private String lastName;
}

//the mutable API defines a mapping process by multiple getter-setter steps
Mapper mapper = Datus.forTypes(Person.class, PersonDTO.class).mutable(PersonDTO::new)
.from(Person::getFirstName).into(PersonDTO.setFirstName)
.from(Person::getLastName).nullsafe()
.given(String::isEmpty, "fallback").orElse(ln -> ln.toUpperCase())
.into(PersonDTO::setLastName)
.from(/*...*/).into(/*...*/)
.build();

Person person = new Person();
person.setFirstName("firstName");
person.setLastName(null);
PersonDTO personDto = mapper.convert(person);
/*
personDto = PersonDTO [
firstName = "firstName",
lastName = null
]
*/
person.setLastName("");
personDto = mapper.convert(person);
/*
personDto = PersonDTO [
firstName = "firstName",
lastName = "fallback"
]
*/
person.setLastName("lastName");
personDto = mapper.convert(person);
/*
personDto = PersonDTO [
firstName = "firstName",
lastName = "LASTNAME"
]
*/
```
## Sample projects
There are two sample projects located in the [sample-projects](https://github.com/roookeee/datus/tree/master/sample-projects) directory
that showcase most of *datus* features in two environments: [framework-less](https://github.com/roookeee/datus/tree/master/sample-projects/plainjava)
and [with Spring Boot](https://github.com/roookeee/datus/tree/master/sample-projects/samplespring).

Hop right in and tinker around with *datus* in a compiling environment!

## User guide
Please refer to the [USAGE.md](https://github.com/roookeee/datus/blob/master/USAGE.md) for a complete user guide as the readme only serves as a broad overview.
The user guide is designed to take **at most 15 minutes** to get you covered on everything about *datus* and how to use it
in different scenarios.

## Dependency information
Maven
```xml

com.github.roookeee
datus
1.5.0

```
or any other build system via Maven Central

[![Maven Central](https://img.shields.io/maven-central/v/com.github.roookeee/datus.svg?label=Maven%20Central)](https://search.maven.org/search?q=g:%22com.github.roookeee%22%20AND%20a:%22datus%22)

## Supported JVM languages
*datus* currently only supports Java as every other popular statically typed language on the JVM has fundamental issues with *datus*
core workflow. Non-statically typed languages like Clojure are not tested for compatability.

##### Kotlin issues
Kotlin has a myriad of issues when it comes to the type-inference chain of *datus* builder-like API which makes 1:1 translations
of Java to Kotlin (e.g. immutable class to data class) uncompilable. The encoding
of (non-) nullability in Kotlins type system makes using method references with *datus* nearly impossible when using a nullable type
and referencing Java functions from Kotlin (e.g. something simple as `Long::parseLong` on a `Long?`).

##### Scala issues
Scala offers no way to obtain a method reference to a constructor of an object which forces *datus* users to provide
a lambda which delegates to the corresponding constructor. This lambda has to be fully typed as Scalas overload resolution
/ type-inference cannot handle it otherwise. This makes using the immutable API of datus cumbersome which is especially
bad for a language like Scala that is focused around immutability.

The aforementioned issues are not exhaustive and more issues are likely to arise when working around them.
Therefor it is discouraged to use *datus* in any other language than Java right now.

## Development principles
This section is about the core principles *datus* is developed with.

#### Benchmarking
Every release of *datus* is monitored for performance regressions by a simple JMH suite that checks the core
functionality of datus (simple mapping from `a->b`).
See `com.github.roookeee.datus.performance.PerformanceBenchmarkTest` for further insight.

#### Mutation testing
*datus* uses [pitest](http://pitest.org/) to secure the quality of all implemented tests and has no surviving mutations outside
of `Datus` helper functions (which only aid type inference and are thus not tested), some constructors of the immutable API that only
delegate and are thus not explicitly tested and pitest edge-cases which are not testable / programmatically producible.

#### Branching
The `master` branch always matches the latest release of *datus* while the `develop` branch houses the next version of datus
that is still under development.

#### Semver
*datus* follows semantic versioning (see https://semver.org/) starting with the 1.0 release.

#### Licensing
*datus* is licensed under The MIT License (MIT)

Copyright (c) 2019-2023 Nico Heller

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

## Supporting datus development
Like *datus* ? Consider buying me a coffee :)

Buy Me A Coffee