Giter VIP home page Giter VIP logo

kewt's Introduction

Bintray Tests drawing

Kewt - Kotlin cute data-class mapping tool

inspired by Mapstruct

Quick start

build.gradle.kts:

plugins {
    kotlin("kapt") version "1.3.72" //kotlinVersion
}
repositories {
    jcenter()
}
dependencies {
    implementation("com.github.mfarsikov:kewt-annotations:0.7.0")
    kapt("com.github.mfarsikov:kewt-map-processor:0.7.0")
}

Having data classes:

data class Person(val id: UUID, val name: String, val age: Int)
data class Employee(val id: UUID, val name: String, val age: Int)

Create interface

import com.github.mfarsikov.kewt.annotations.Mapper

@Mapper
interface PersonMapper {
    fun toEmployee(person: Person): Employee
}

Kewt generates this code:

@Generated
class PersonMapperImpl : PersonMapper {
  override fun toEmployee(person: Person) = Employee(
      age = person.age,
      id = person.id,
      name = person.name
  )
}

Mapping strategies

General concepts

  • Classes can be mapped if each target field have found a single source.
  • Mapping cannot be done if any target property can be mapped from more than one source.
  • In the same time it is allowed to have not mapped (extra) sources.

Implicitly by type, if it is not ambiguous

Type matched if:

  • Types are identical:
    • String => String
    • Employee => Employee
    • List<String> => List<String>
  • Exist conversion function (abstract or not):
    • String => Int if (String) -> Int conversion function provided
    • Person => Employee if (Person) -> Employee conversion function provided
    • List<String> => List<Int> if (String) -> Int conversion function provided
    • List<Person> => List<Employee> if (Person) -> Employee conversion function provided

Example

Type match
data class Person  (val personId: UUID,   val personName: String,   val personAge: Int  )
data class Employee(val employeeId: UUID, val employeeName: String, val employeeAge: Int)

There is only one way to map properties by their types.

Generated code:

@Generated
class PersonMapperImpl : PersonMapper {
    override fun toEmployee(person: Person) = Employee(
        employeeId = person.personId,
        employeeName = person.personName,
        employeeAge = person.personAge
    )
}
Negative example (ambiguous mapping):
data class Person  (val key: UUID, userId: UUID)
data class Employee(val id: UUID,  cardId: UUID)

These classes cannot be mapped implicitly, because there is ambiguity in fields mapping, all four variants are valid: key = id, key = cardId, userId = id, userId = cardId

To solve this see Explicit mapping

Type match using a converter function
data class Person  (val personId: String)
data class Employee(val employeeId: UUID)

Note that names are not matched and types are different.

@Mapper
interface PersonMapper{

    fun toEmployee(person: Person): Employee 
    
    fun toUuid(s: String) = UUID.fromString(s) // Non-abstract converter (String) -> UUID
}

Kewt maps fields by type using conversion function:

@Generated
class PersonMapperImpl : PersonMapper {
    override fun toEmployee(person: Person) = Employee(
        employeeId = toUuid(person.personId)
    )
}

Implicitly by name, if it is not ambiguous

If source property name and target property names are the same - fields match. This strategy could fail if provided more than one source with the same parameter name, and the same parameter type.

Example

data class Person  (val id: UUID, userId: UUID)
data class Employee(val id: UUID, userId: UUID)

Explicitly in @Mapping annotation

Has highest priority. Should be avoided in favor of implicit strategies.

Example

Explicit mapping
data class Person  (val key: UUID, userId: UUID)
data class Employee(val id: UUID,  cardId: UUID)
interface PersonMapper {
    @Mappings([
        Mapping(source="key",    target="id"    ),
        Mapping(source="userId", target="cardId")
    ])  
    fun toEmployee(person: Person): Employee
}

It is not required to specify all the fields, it is enough just to resolve ambiguity, the rest kewt maps automatically:

interface PersonMapper {
    @Mappings([
        Mapping(source="key", target="id")
    ])  
    fun toEmployee(person: Person): Employee
}
Explicit converter
data class Person  (val id: String)
data class Employee(val id: UUID  )

There are two functions (String) -> UUID and to solve this ambiguity converter explicitly:

interface PersonMapper {

    fun parseUuid(string: String): UUID = UUID.fromString(string) 
    fun invalidConverter(string: String): UUID = throw RuntimeException()

    @Mappings([
        Mapping(source="id", target="id", converter="parseUuid")
    ])  
    fun toEmployee(person: Person): Employee
}

Examples

Working examples can be found in examples sub-project. To build them run ./gradlew build Generated code is under build/generated/source/kapt/main.

Field lifting

data class Person(val name: Name)
data class Name(val firstName: String)

data class Employee(val name: String)

@Mapper
interface PersonMapper {
    @Mappings([
        Mapping(source = "person.name.firstName", target = "name")
    ])
    fun toEmployee(person: Person): Employee
}

Generated code:

@Generated
class PersonMapperImpl : PersonMapper {
  override fun toEmployee(person: Person) = Employee(
      name = person.name.firstName
  )
}

Map collection elements

data class Person(val ids: List<UUID>)
data class Employee(val ids: List<String>)

@Mapper
interface PersonMapper {
    fun toEmployee(person: Person): Employee
    fun uuidToString(uuid: UUID): String = uuid.toString()
}

Generated code:

@Generated
class PersonMapperImpl : PersonMapper {
  override fun toEmployee(person: Person): Employee = Employee(
      ids = person.ids.map { uuidToString(it) }
  )
}

Protobuf

Kewt can map protobuf classes using their builders.

Add library with generated protobuf classes to kapt configurtion.

Dependencies

All libraries used in mappers should be added to kapt configuration:

dependencies {
    kapt("com.nowhere:my-library:1.0.0")
}

Configuration

kapt {
    arguments {          
        arg("kewt.generate.spring", "true")
        arg("kewt.log.level", "debug")
        arg("kewt.whitelist", "com.github.mfarsikov.kewt.example.proto.ex02")
        arg("kewt.blacklist", "com.github.mfarsikov.kewt.example.proto")
    }
}           

Spring

arg("kewt.generate.spring", "true") 

Add a @org.springframework.stereotype.Component to the generated class.

Debugging

Logging

arg("kewt.log.level", "debug")

Values: error, warn, debug, trace. Default: warn

White/black listing packages

arg("kewt.whitelist", "com.github.mfarsikov.kewt.example.proto.ex02")
arg("kewt.blacklist", "com.github.mfarsikov.kewt.example.proto")

kewt's People

Contributors

mfarsikov avatar

Stargazers

 avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

Forkers

xardbaiz

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.