Check out Scala 3 version here
This library provides facilities to derive JSON codec instances for Circe using Magnolia macros.
Although this project is extensively tested and seems to work fine, it's still at early development stages. It's not advised to use this in production without proper test coverage of related code.
There are still some things, that are different from circe-generic, including a critical issue with auto derivation.
See Testing and Status for more details.
To play around with circe-magnolia, add it to your build:
libraryDependencies += "io.circe" %%% "circe-magnolia-derivation" % "0.7.0"
After that, as in circe-generic
, you can use one of two derivation modes.
Note, that at the moment for both auto and semiauto modes you have to import encoder and decoder machinery separately (see examples below).
Works in the same way as io.circe.generic.auto._
from circe-generic
.
import io.circe.magnolia.derivation.decoder.auto._
import io.circe.magnolia.derivation.encoder.auto._
case class Foo(i: Int, s: String)
implicitly[Encoder[Foo]]
implicitly[Decoder[Foo]]
Works in the same way as io.circe.generic.semiauto._
from circe-generic
, but the method names differ so that you can theoretically use both in the same scope:
import io.circe.magnolia.derivation.decoder.semiauto._
import io.circe.magnolia.derivation.encoder.semiauto._
case class Foo(i: Int, s: String)
val encoder = deriveMagnoliaEncoder[Foo]
val decoder = deriveMagnoliaDecoder[Foo]
Configuration is possible if you want to configure your Encoder/Decoder's output. This project provides the same configuration as circe-generic-extras
.
For example, to generate Encoder/Decoder where the JSON keys are snake-cased:
import io.circe.magnolia.configured.decoder.semiauto._
import io.circe.magnolia.configured.encoder.semiauto._
import io.circe.magnolia.configured.Configuration
case class User(firstName: Int, lastName: String)
implicit val configuration: Configuration = Configuration.default.withSnakeCaseMemberNames
val encoder = deriveConfiguredMagnoliaEncoder[User]
val decoder = deriveConfiguredMagnoliaDecoder[User]
To avoid constantly needing to provide/import an implicit Configuration
to derive Encoder/Decoders, you can hardcode the configuration by defining your own version of deriver.
See HardcodedDerivationSpec for an example of how to do this. (In fact, the default auto and semiauto derivers are hardcoded to use the default Configuration)
To ensure circe-magnolia
derivation and codecs work in the same way as in circe-generic
, several test suites from original circe repository were adapted and added to this project. These tests validate the derivation semantics and also the lawfulness of derived codecs (example).
There's another set of tests, that validate the equivalence of JSON and decoding logic, produced by circe-magnolia
and circe-generic
(example).
Test suite is currently green, but couple of cases are worked around or ignored, and waiting to be fixed. See the issue tracker for outstanding issues.
Overall, semiauto derivation works pretty well. All laws are satisfied and compatibility tests are passing.
There is a subtle difference from circe-generic semiauto in what can and what can not be derived. Circe-magnolia deriver has more relaxed requirements on what has to be in scope, so you might not even notice this. Basically, circe-magnolia doesn't require any pre-defined codecs for intermediate types.
In essense: current version of circe-magnolia
semiauto is as powerful as circe-generic
's auto under the hood. It just doesn't provide any top-level implicits out of the box - you have to call deriveMagnolia[Encoder|Decoder]
to start derivation process. See more here
Auto derivation also works, but there's a twist: at the moment, for default codecs (for example, Encoder[List]
) to be picked up, they have to be imported explicitly.
Otherwise, deriver uses Magnolia to derive codecs for any types which are either case classes or sealed traits. These derived codecs then override the default ones.
This is definitely going to be fixed in future, but if you want to switch from circe-generic's auto to circe-magnolia's auto today, you would have to add additional imports to every place where derivation takes place:
// import all default codecs, defined in circe
import io.circe.Encoder._
import io.circe.Decoder._
// also import all codecs, defined in the companion objects of your own data definitions
import Foo._, Bar._
Another outstanding issue with auto is that it doesn't pick up default instances for tagged types.
This is probably due to trying to derive for indirect recursive type like this:
case class RecursiveWithOptionExample(o: Option[RecursiveWithOptionExample])
object RecursiveWithOptionExample {
implicit val decoder: Decoder[RecursiveWithOptionExample] = deriveMagnoliaDecoder[RecursiveWithOptionExample]
}
The cause is that when the Scala compiler tries to resolve Decoder[Option[RecursiveWithOptionExample]]
, it finds
and use the same decoder instance we're trying to define! (if you use implicit def
instead, you'll see StackOverflowException for the same reason)
The fix is to make your definition lazy
.
implicit lazy val decoder: Decoder[RecursiveWithOptionExample] = deriveMagnoliaDecoder[RecursiveWithOptionExample]
- Facilitate magnolia development to make auto derivation work the same way as in
circe-generic
. - Add derivation of partial/patch codecs.
Circe-magnolia is currently developed and maintained by Vladimir Pavkin.
I really welcome any kind of contributions, including test/bug reports and benchmarks.
I really appreciate all the people who contributed to the project:
I also want to say "Thank you!" to
- Jon Pretty for active collaboration and improvements in Magnolia, that make this project progress.
- Travis Brown for his amazing Circe project.