All Downloads are FREE. Search and download functionalities are using the official Maven repository.

main.wisp.moshi.MoshiBuild.kt Maven / Gradle / Ivy

There is a newer version: 2024.09.23.190942-fac7598
Show newest version
package wisp.moshi

import com.squareup.moshi.JsonAdapter
import com.squareup.moshi.Moshi
import com.squareup.moshi.kotlin.reflect.KotlinJsonAdapterFactory

/**
 * Default build for Moshi using the Kotlin JSON adapter
 */
val defaultKotlinMoshi = buildMoshi(emptyList())

@JvmOverloads
fun buildMoshi(
  jsonAdapters: List,
  jsonLastAdapters: List = emptyList()
): Moshi {
  val builder = Moshi.Builder()

  jsonAdapters.forEach { jsonAdapter ->
    // There are multiple overloads of add() that do different things based on the type of the param.
    // This forces the correct overload for be called for JsonAdapter.Factory
    when (jsonAdapter) {
      is JsonAdapter.Factory -> builder.add(jsonAdapter)
      else -> builder.add(jsonAdapter)
    }
  }

  // addLast() so that user adapters take precedence
  jsonLastAdapters.forEach { jsonAdapter ->
    // There are multiple overloads of add() that do different things based on the type of the param.
    // This forces the correct overload for be called for JsonAdapter.Factory
    when (jsonAdapter) {
      is JsonAdapter.Factory -> builder.addLast(jsonAdapter)
      else -> builder.addLast(jsonAdapter)
    }
  }
  
  builder.addLast(KotlinJsonAdapterFactory())

  return builder.build()
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy