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

sjsonnew.AdditionalFormats.scala Maven / Gradle / Ivy

/*
 * Original implementation (C) 2009-2011 Debasish Ghosh
 * Adapted and extended in 2011 by Mathias Doenitz
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package sjsonnew

/**
  * Provides additional JsonFormats and helpers
 */
trait AdditionalFormats {

  /**
   * Constructs a JsonFormat from its two parts, JsonReader and JsonWriter.
   */
  def jsonFormat[A](reader: JsonReader[A], writer: JsonWriter[A]) = new JsonFormat[A] {
    def write[J](obj: A, builder: Builder[J]): Unit = writer.write(obj, builder)
    def read[J](jsOpt: Option[J], unbuilder: Unbuilder[J]): A = reader.read(jsOpt, unbuilder)
  }

  /**
   * Constructs a RootJsonFormat from its two parts, RootJsonReader and RootJsonWriter.
   */
  def rootJsonFormat[T](reader: RootJsonReader[T], writer: RootJsonWriter[T]) =
    rootFormat(jsonFormat(reader, writer))

  /**
   * Turns a JsonWriter into a JsonFormat that throws an UnsupportedOperationException for reads.
   */
  def liftFormat[A](writer: JsonWriter[A]) = new JsonFormat[A] {
    def write[J](obj: A, builder: Builder[J]): Unit = writer.write(obj, builder)
    def read[J](jsOpt: Option[J], unbuilder: Unbuilder[J]): A =
      throw new UnsupportedOperationException("JsonReader implementation missing")
  }

  /**
   * Turns a RootJsonWriter into a RootJsonFormat that throws an UnsupportedOperationException for reads.
   */
  def liftFormat[A](writer: RootJsonWriter[A]): RootJsonFormat[A] =
    rootFormat(liftFormat(writer: JsonWriter[A]))

  /**
   * Turns a JsonReader into a JsonFormat that throws an UnsupportedOperationException for writes.
   */
  def liftFormat[A <: AnyRef](reader: JsonReader[A]) = new JsonFormat[A] {
    def write[J](obj: A, builder: Builder[J]): Unit =
      throw new UnsupportedOperationException("No JsonWriter[" + obj.getClass + "] available")
    def read[J](jsOpt: Option[J], unbuilder: Unbuilder[J]): A = reader.read(jsOpt, unbuilder)
  }

  /**
   * Turns a RootJsonReader into a RootJsonFormat that throws an UnsupportedOperationException for writes.
   */
  def liftFormat[A <: AnyRef](reader: RootJsonReader[A]): RootJsonFormat[A] =
    rootFormat(liftFormat(reader: JsonReader[A]))

  /**
   * Lazy wrapper around serialization. Useful when you want to serialize (mutually) recursive structures.
   */
  def lazyFormat[A](format: => JsonFormat[A]) = new JsonFormat[A] {
    lazy val delegate = format
    def write[J](obj: A, builder: Builder[J]): Unit = delegate.write(obj, builder)
    def read[J](jsOpt: Option[J], unbuilder: Unbuilder[J]): A = delegate.read(jsOpt, unbuilder)
  }

  /**
   * Explicitly turns a JsonFormat into a RootJsonFormat.
   */
  def rootFormat[A](format: JsonFormat[A]) = new RootJsonFormat[A] {
    def write[J](obj: A, builder: Builder[J]): Unit = format.write(obj, builder)
    def read[J](jsOpt: Option[J], unbuilder: Unbuilder[J]): A = format.read(jsOpt, unbuilder)

    override def addField[J](name: String, obj: A, builder: Builder[J]) =
      format.addField(name, obj, builder)
  }

  /**
   * Wraps an existing JsonReader with Exception protection.
   */
  def safeReader[A: JsonReader] = new JsonReader[Either[Exception, A]] {
    def read[J](jsOpt: Option[J], unbuilder: Unbuilder[J]): Either[Exception, A] = {
      val reader = implicitly[JsonReader[A]]
      try {
        Right(reader.read(jsOpt, unbuilder))
      } catch {
        case e: Exception => Left(e)
      }
    }
  }

  /**
   * A `JsonFormat` that doesn't write and always return this instance of `a`.
   */
  def asSingleton[A](a: A): JsonFormat[A] = new JsonFormat[A] {
    def read[J](jsOpt: Option[J], unbuilder: Unbuilder[J]): A = a
    def write[J](obj: A, builder: Builder[J]): Unit = ()
  }

  /**
   * A `JsonFormat` that can read and write an instance of `T` by using a `JsonFormat` for `U`.
   */
  def projectFormat[T, U](f1: T => U, f2: U => T)(implicit fu: JsonFormat[U]): JsonFormat[T] = new JsonFormat[T] {
    def read[J](jsOpt: Option[J], unbuilder: Unbuilder[J]): T = f2(fu.read(jsOpt, unbuilder))
    def write[J](obj: T, builder: Builder[J]): Unit = fu.write(f1(obj), builder)

    override def addField[J](name: String, obj: T, builder: Builder[J]) =
      fu.addField(name, f1(obj), builder)
  }

  /**
   * A `JsonReader` that can read an instance of `B` by using a `JsonReader` for `A`.
   */
  def mapReader[A, B](f: A => B)(implicit ev: JsonReader[A]): JsonReader[B] = new JsonReader[B] {
    def read[J](jsOpt: Option[J], unbuilder: Unbuilder[J]): B =
      f(ev.read(jsOpt, unbuilder))
  }

  /**
   * A `JsonWriter` that can read an instance of `B` by using a `JsonWriter` for `A`.
   */
  def contramapWriter[A, B](f: B => A)(implicit ev: JsonWriter[A]): JsonWriter[B] = new JsonWriter[B] {
    def write[J](obj: B, builder: Builder[J]): Unit =
      ev.write(f(obj), builder)
  }

  /**
   * A `JsonKeyReader` that can read an instance of `B` by using a `JsonKeyReader` for `A`.
   */
  def mapKeyReader[A, B](f: A => B)(implicit ev: JsonKeyReader[A]): JsonKeyReader[B] = new JsonKeyReader[B] {
    def read(key: String): B = f(ev.read(key))
  }

  /**
   * A `JsonKeyWriter` that can read an instance of `B` by using a `JsonKeyWriter` for `A`.
   */
  def contramapKeyWriter[A, B](f: B => A)(implicit ev: JsonKeyWriter[A]): JsonKeyWriter[B] = new JsonKeyWriter[B] {
    def write(key: B): String = ev.write(f(key))
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy