Custom Codecs

Custom encoders/decoders

If you want to write your own codec instead of using automatic or semi-automatic derivation, you can do so in a couple of ways.

Firstly, you can write a new Encoder[A] and Decoder[A] from scratch:

import io.circe.{ Decoder, Encoder, HCursor, Json }

class Thing(val foo: String, val bar: Int)

implicit val encodeFoo: Encoder[Thing] = new Encoder[Thing] {
  final def apply(a: Thing): Json = Json.obj(
    ("foo", Json.fromString(a.foo)),
    ("bar", Json.fromInt(a.bar))
  )
}
// encodeFoo: Encoder[Thing] = repl.MdocSession$MdocApp$$anon$1@7de461bc

implicit val decodeFoo: Decoder[Thing] = new Decoder[Thing] {
  final def apply(c: HCursor): Decoder.Result[Thing] =
    for {
      foo <- c.downField("foo").as[String]
      bar <- c.downField("bar").as[Int]
    } yield {
      new Thing(foo, bar)
    }
}
// decodeFoo: Decoder[Thing] = repl.MdocSession$MdocApp$$anon$2@4d535761

But in many cases you might find it more convenient to piggyback on top of the decoders that are already available. For example, a codec for java.time.Instant might look like this:

import io.circe.{ Decoder, Encoder }
import java.time.Instant
import scala.util.Try

implicit val encodeInstant: Encoder[Instant] = Encoder.encodeString.contramap[Instant](_.toString)
// encodeInstant: Encoder[Instant] = io.circe.Encoder$$anon$1@3826fa38

implicit val decodeInstant: Decoder[Instant] = Decoder.decodeString.emapTry { str =>
  Try(Instant.parse(str))
}
// decodeInstant: Decoder[Instant] = io.circe.Decoder$$anon$14@5c829483

Older scala versions

If you are using custom codecs and an older versions of scala (below 2.12) and you get errors like this value flatMap is not a member of io.circe.Decoder.Result[Option[String]] or value map is not a member of io.circe.Decoder.Result[Option[String]] then you need to use the following import: import cats.syntax.either._ to fix this.

Custom key types

If you need to encode/decode Map[K, V] where K is not String (or Symbol, Int, Long, etc.), you need to provide a KeyEncoder and/or KeyDecoder for your custom key type.

For example:

import io.circe._, io.circe.syntax._

case class Foo(value: String)

implicit val fooKeyEncoder: KeyEncoder[Foo] = new KeyEncoder[Foo] {
  override def apply(foo: Foo): String = foo.value
}
// fooKeyEncoder: KeyEncoder[Foo] = repl.MdocSession$MdocApp$$anon$3@2b5e72e
val map = Map[Foo, Int](
  Foo("hello") -> 123,
  Foo("world") -> 456
)
// map: Map[Foo, Int] = Map(
//   Foo(value = "hello") -> 123,
//   Foo(value = "world") -> 456
// )

val json = map.asJson
// json: Json = JObject(value = object[hello -> 123,world -> 456])

implicit val fooKeyDecoder: KeyDecoder[Foo] = new KeyDecoder[Foo] {
  override def apply(key: String): Option[Foo] = Some(Foo(key))
}
// fooKeyDecoder: KeyDecoder[Foo] = repl.MdocSession$MdocApp$$anon$4@5eb14b7

json.as[Map[Foo, Int]]
// res0: Decoder.Result[Map[Foo, Int]] = Right(
//   value = Map(Foo(value = "hello") -> 123, Foo(value = "world") -> 456)
// )

Custom key mappings via annotations

It's often necessary to work with keys in your JSON objects that aren't idiomatic case class member names in Scala. While the standard generic derivation doesn't support this use case, the experimental generic-extras module does provide two ways to transform your case class member names during encoding and decoding.

In many cases the transformation is as simple as going from camel case to snake case, in which case all you need is a custom implicit configuration:

import io.circe.generic.extras._, io.circe.syntax._

implicit val config: Configuration = Configuration.default.withSnakeCaseMemberNames
// config: Configuration = Configuration(
//   transformMemberNames = io.circe.generic.extras.Configuration$$$Lambda$18346/0x0000000804989840@53fa1c0b,
//   transformConstructorNames = io.circe.generic.extras.Configuration$$$Lambda$18345/0x0000000804989040@7de218d3,
//   useDefaults = false,
//   discriminator = None,
//   strictDecoding = false
// )

@ConfiguredJsonCodec case class User(firstName: String, lastName: String)

User("Foo", "McBar").asJson
// res1: Json = JObject(
//   value = object[first_name -> "Foo",last_name -> "McBar"]
// )

In other cases you may need more complex mappings. These can be provided as a function:

import io.circe.generic.extras._, io.circe.syntax._

implicit val config: Configuration = Configuration.default.copy(
  transformMemberNames = {
    case "i" => "my-int"
    case other => other
  }
)
// config: Configuration = Configuration(
//   transformMemberNames = <function1>,
//   transformConstructorNames = io.circe.generic.extras.Configuration$$$Lambda$18345/0x0000000804989040@7de218d3,
//   useDefaults = false,
//   discriminator = None,
//   strictDecoding = false
// )

@ConfiguredJsonCodec case class Bar(i: Int, s: String)

Bar(13, "Qux").asJson
// res3: io.circe.Json = JObject(value = object[my-int -> 13,s -> "Qux"])

Since this is a common use case, we also support for mapping member names via an annotation:

import io.circe.generic.extras._, io.circe.syntax._

implicit val config: Configuration = Configuration.default
// config: Configuration = Configuration(
//   transformMemberNames = io.circe.generic.extras.Configuration$$$Lambda$18344/0x0000000804988040@25c38b1,
//   transformConstructorNames = io.circe.generic.extras.Configuration$$$Lambda$18345/0x0000000804989040@7de218d3,
//   useDefaults = false,
//   discriminator = None,
//   strictDecoding = false
// )

@ConfiguredJsonCodec case class Bar(@JsonKey("my-int") i: Int, s: String)

Bar(13, "Qux").asJson
// res5: io.circe.Json = JObject(value = object[my-int -> 13,s -> "Qux"])

It's worth noting that if you don't want to use the experimental generic-extras module, the completely unmagical forProductN version isn't really that much of a burden:

import io.circe.Encoder, io.circe.syntax._

case class User(firstName: String, lastName: String)
case class Bar(i: Int, s: String)

implicit val encodeUser: Encoder[User] =
  Encoder.forProduct2("first_name", "last_name")(u => (u.firstName, u.lastName))
// encodeUser: Encoder[User] = io.circe.ProductEncoders$$anon$2@770204b7

implicit val encodeBar: Encoder[Bar] =
  Encoder.forProduct2("my-int", "s")(b => (b.i, b.s))
// encodeBar: Encoder[Bar] = io.circe.ProductEncoders$$anon$2@4b252b0a

User("Foo", "McBar").asJson
// res7: io.circe.Json = JObject(
//   value = object[first_name -> "Foo",last_name -> "McBar"]
// )
Bar(13, "Qux").asJson
// res8: io.circe.Json = JObject(value = object[my-int -> 13,s -> "Qux"])

While this version does involve a bit of boilerplate, it only requires circe-core, and may have slightly better runtime performance in some cases.

More configuration arguments

Above we've seen how you can use transformMemberNames if the name of case class member names are different from the JSON keys.

Here's how you can use transformConstructorNames when encoding/decoding ADTs:

import io.circe.generic.extras._
import io.circe.generic.extras.auto._
import io.circe.parser._

implicit val config: Configuration = Configuration.default.copy(
  transformConstructorNames = _.toLowerCase
)
// config: Configuration = Configuration(
//   transformMemberNames = io.circe.generic.extras.Configuration$$$Lambda$18344/0x0000000804988040@25c38b1,
//   transformConstructorNames = <function1>,
//   useDefaults = false,
//   discriminator = None,
//   strictDecoding = false
// )

sealed trait Animal
case class Dog(age: Int) extends Animal
case class Cat(color: String) extends Animal

decode[Animal]("""{"dog": {"age": 2}}""")
// res10: Either[io.circe.Error, Animal] = Right(value = Dog(age = 2))
decode[Animal]("""{"cat": {"color": "brown"}}""")
// res11: Either[io.circe.Error, Animal] = Right(value = Cat(color = "brown"))

If you want to allow default values when a field is missing from the JSON, you can use useDefaults:

import io.circe.generic.extras._
import io.circe.generic.extras.auto._
import io.circe.parser._

implicit val config: Configuration = Configuration.default.copy(
  useDefaults = true
)
// config: Configuration = Configuration(
//   transformMemberNames = io.circe.generic.extras.Configuration$$$Lambda$18344/0x0000000804988040@25c38b1,
//   transformConstructorNames = io.circe.generic.extras.Configuration$$$Lambda$18345/0x0000000804989040@7de218d3,
//   useDefaults = true,
//   discriminator = None,
//   strictDecoding = false
// )

case class User(firstName: String, lastName: String = "Doe")

decode[User]("""{"firstName": "Foo"}""")
// res13: Either[io.circe.Error, User] = Right(
//   value = User(firstName = "Foo", lastName = "Doe")
// )

If useDefaults = false, the decoding would fail.

See here for a use of discriminator.

And finally, we have strictDecoding.

By default, if a JSON has extra fields, we decode it without errors:

import io.circe.generic.extras._
import io.circe.generic.extras.auto._
import io.circe.parser._

implicit val config: Configuration = Configuration.default
// config: Configuration = Configuration(
//   transformMemberNames = io.circe.generic.extras.Configuration$$$Lambda$18344/0x0000000804988040@25c38b1,
//   transformConstructorNames = io.circe.generic.extras.Configuration$$$Lambda$18345/0x0000000804989040@7de218d3,
//   useDefaults = false,
//   discriminator = None,
//   strictDecoding = false
// )

case class User(firstName: String, lastName: String)

decode[User]("""{"firstName": "Foo", "lastName": "Bar", "likesCats": true}""")
// res15: Either[io.circe.Error, User] = Right(
//   value = User(firstName = "Foo", lastName = "Bar")
// )

But we can be more strict, if we want to:

import io.circe.generic.extras._
import io.circe.generic.extras.auto._
import io.circe.parser._

implicit val config: Configuration = Configuration.default.copy(
  strictDecoding = true
)
// config: Configuration = Configuration(
//   transformMemberNames = io.circe.generic.extras.Configuration$$$Lambda$18344/0x0000000804988040@25c38b1,
//   transformConstructorNames = io.circe.generic.extras.Configuration$$$Lambda$18345/0x0000000804989040@7de218d3,
//   useDefaults = false,
//   discriminator = None,
//   strictDecoding = true
// )

case class User(firstName: String, lastName: String)

decode[User]("""{"firstName": "Foo", "lastName": "Bar", "likesCats": true}""")
// res17: Either[io.circe.Error, User] = Left(
//   value = DecodingFailure at : Unexpected field: [likesCats]; valid fields: firstName, lastName
// )