typelevel / fabric   1.14.2

MIT License GitHub

Object-Notation Abstraction for JSON, binary, HOCON, etc.

Scala versions: 3.x 2.13 2.12 2.11
Scala.js versions: 1.x
Scala Native versions: 0.4

fabric

CI Gitter Maven Central fabric-core Scala version support

Abstract Syntax Tree (AST) based on JSON concepts, but more abstract for parsing and application.

Justification

Having worked with Circe and uPickle for years there are many things I love about each, but unfortunately a few things I was frustrated by. At a high level, I think Circe can be a bit overly complicated and compilation quite slow in large projects. With uPickle, I found the mutable underlying references within the structure very concerning and problematic when doing things like merges. Both of them suffer from slow releases periodically, so I ultimately decided to try my hand at accomplishing the same and incorporate some of my own crazy ideas in the process.

I won't say that fabric is a better library than either of those great projects, but it was inspired by both of them and customized to suit my particular needs. If you find it useful as well, please use it and offer some feedback.

Performance

I wrote a performance benchmark with every expectation to be slower than the alternatives as I've done very little tuning, and I'm just one person versus the many developers that have worked on the others for years. However, I was shocked to see how well my little library performed compared to the alternatives: JMH Results for 1.7.0 on Scala 3

Features

The focus of this project is minimalism and flexibility. To that end, the features are somewhat sparse:

  • Support for JVM, Scala.js, and Scala Native
  • Support for Scala 2.11, 2.12, 2.13, and 3.x
  • AST for representation of Map, Array, Numeric, String, Boolean, and null in a type-safe and immutable way
  • Clean DSL to create tree structures
  • Deep merging support
  • Compile-time generation of conversions to/from case classes with support for default arguments
  • Easy and convenient extensibility support
  • Parsing support for JSON on JVM and Scala.js
  • JSON DDL generation from data
  • Scala code generation from JSON DDL (data -> DDL -> Scala) for easy data mapping

Getting Started

Setup

For SBT simply include: libraryDependencies += "org.typelevel" %%% "fabric-core" % "1.14.2"

For parsing support include: libraryDependencies += "org.typelevel" %%% "fabric-io" % "1.14.2"

Create

Creating fabric structures with the DSL is very easy:

import fabric._

val v1 = obj(
  "name" -> "John Doe",
  "age" -> 21,
  "numbers" -> List(1, 2, 3),
  "address" -> obj(
    "street" -> "123 Somewhere Rd.",
    "city" -> "San Jose"
  )
)
// v1: Obj = {"name": "John Doe", "age": 21, "numbers": [1, 2, 3], "address": {"street": "123 Somewhere Rd.", "city": "San Jose"}}

Merging

Deep-merging is trivial:

import fabric._

val v2 = obj(
  "age" -> 23,
  "numbers" -> List(4, 5, 6),
  "address" -> obj(
    "state" -> "California"
  )
)
// v2: Obj = {"age": 23, "numbers": [4, 5, 6], "address": {"state": "California"}}

val v3 = v1.merge(v2)
// v3: Json = {"age": 23, "numbers": [4, 5, 6], "address": {"state": "California", "street": "123 Somewhere Rd.", "city": "San Jose"}, "name": "John Doe"}

It is worth mentioning that because values are immutable, v1 and v2 remain unchanged.

Convert

Conversion to other types is very easy with the built-in compile-time conversions:

import fabric._
import fabric.rw._

val person = obj(
  "name" -> "John Doe",
  "age" -> 21
).as[Person]
// person: Person = Person(name = "John Doe", age = 21)

val backToValue: Json = person.json
// backToValue: Json = {"name": "John Doe", "age": 21}

case class Person(name: String, age: Int)

object Person {
  implicit val rw: RW[Person] = RW.gen[Person]
}

Parse

Parsing from existing JSON requires the use of the fabric-parse module:

import fabric._
import fabric.io._

val value = JsonParser("""{"name": "John Doe", "age": 21}""", Format.Json)
// value: Json = {"name": "John Doe", "age": 21}

Formatting

Taking an existing value and formatting it for output as JSON:

val formattedString: String = JsonFormatter.Default(value)
// formattedString: String = """{
//   "name": "John Doe",
//   "age": 21
// }"""