|
Play Framework/Scala example source code file (Reads.scala)
The Reads.scala Play Framework example source code
/*
* Copyright (C) 2009-2013 Typesafe Inc. <http://www.typesafe.com>
*/
package play.api.libs.json
import scala.annotation.implicitNotFound
import scala.collection._
import scala.language.higherKinds
import com.fasterxml.jackson.databind.JsonNode
import com.fasterxml.jackson.databind.node.{ ArrayNode, ObjectNode }
import Json._
import play.api.data.validation.ValidationError
import reflect.ClassTag
import play.api.libs.json.JsError
/**
* Json deserializer: write an implicit to define a deserializer for any type.
*/
@implicitNotFound(
"No Json deserializer found for type ${A}. Try to implement an implicit Reads or Format for this type."
)
trait Reads[A] {
self =>
/**
* Convert the JsValue into a A
*/
def reads(json: JsValue): JsResult[A]
def map[B](f: A => B): Reads[B] =
Reads[B] { json => self.reads(json).map(f) }
def flatMap[B](f: A => Reads[B]): Reads[B] = Reads[B] { json =>
self.reads(json).flatMap(t => f(t).reads(json))
}
def filter(f: A => Boolean): Reads[A] =
Reads[A] { json => self.reads(json).filter(f) }
def filter(error: ValidationError)(f: A => Boolean): Reads[A] =
Reads[A] { json => self.reads(json).filter(error)(f) }
def filterNot(f: A => Boolean): Reads[A] =
Reads[A] { json => self.reads(json).filterNot(f) }
def filterNot(error: ValidationError)(f: A => Boolean): Reads[A] =
Reads[A] { json => self.reads(json).filterNot(error)(f) }
def collect[B](error: ValidationError)(f: PartialFunction[A, B]) =
Reads[B] { json => self.reads(json).collect(error)(f) }
def orElse(v: Reads[A]): Reads[A] =
Reads[A] { json => self.reads(json).orElse(v.reads(json)) }
def compose[B <: JsValue](rb: Reads[B]): Reads[A] =
Reads[A] { js =>
rb.reads(js) match {
case JsSuccess(b, p) => this.reads(b).repath(p)
case JsError(e) => JsError(e)
}
}
def andThen[B](rb: Reads[B])(implicit witness: A <:< JsValue): Reads[B] = rb.compose(this.map(witness))
}
/**
* Default deserializer type classes.
*/
object Reads extends ConstraintReads with PathReads with DefaultReads {
val constraints: ConstraintReads = this
val path: PathReads = this
import play.api.libs.functional._
implicit def applicative(implicit applicativeJsResult: Applicative[JsResult]): Applicative[Reads] = new Applicative[Reads] {
def pure[A](a: A): Reads[A] = Reads[A] { _ => JsSuccess(a) }
def map[A, B](m: Reads[A], f: A => B): Reads[B] = m.map(f)
def apply[A, B](mf: Reads[A => B], ma: Reads[A]): Reads[B] = new Reads[B] { def reads(js: JsValue) = applicativeJsResult(mf.reads(js), ma.reads(js)) }
}
implicit def alternative(implicit a: Applicative[Reads]): Alternative[Reads] = new Alternative[Reads] {
val app = a
def |[A, B >: A](alt1: Reads[A], alt2: Reads[B]): Reads[B] = new Reads[B] {
def reads(js: JsValue) = alt1.reads(js) match {
case r @ JsSuccess(_, _) => r
case r @ JsError(es1) => alt2.reads(js) match {
case r2 @ JsSuccess(_, _) => r2
case r2 @ JsError(es2) => JsError(JsError.merge(es1, es2))
}
}
}
def empty: Reads[Nothing] = new Reads[Nothing] { def reads(js: JsValue) = JsError(Seq()) }
}
def apply[A](f: JsValue => JsResult[A]): Reads[A] = new Reads[A] {
def reads(json: JsValue) = f(json)
}
implicit def functorReads(implicit a: Applicative[Reads]) = new Functor[Reads] {
def fmap[A, B](reads: Reads[A], f: A => B): Reads[B] = a.map(reads, f)
}
implicit object JsObjectMonoid extends Monoid[JsObject] {
def append(o1: JsObject, o2: JsObject) = o1 deepMerge o2
def identity = JsObject(Seq())
}
implicit val JsObjectReducer = Reducer[JsObject, JsObject](o => o)
implicit object JsArrayMonoid extends Monoid[JsArray] {
def append(a1: JsArray, a2: JsArray) = a1 ++ a2
def identity = JsArray()
}
implicit val JsArrayReducer = Reducer[JsValue, JsArray](js => JsArray(Seq(js)))
}
/**
* Default deserializer type classes.
*/
trait DefaultReads {
/**
* builds a JsErrorObj JsObject
* {
* __VAL__ : "current known erroneous jsvalue",
* __ERR__ : "the i18n key of the error msg",
* __ARGS__ : "the args for the error msg" (JsArray)
* }
*/
def JsErrorObj(knownValue: JsValue, key: String, args: JsValue*) = {
Json.obj(
"__VAL__" -> knownValue,
"__ERR__" -> key,
"__ARGS__" -> args.foldLeft(JsArray())((acc: JsArray, arg: JsValue) => acc :+ arg)
)
}
/**
* Deserializer for Int types.
*/
implicit object IntReads extends Reads[Int] {
def reads(json: JsValue) = json match {
case JsNumber(n) => JsSuccess(n.toInt)
case _ => JsError(Seq(JsPath() -> Seq(ValidationError("error.expected.jsnumber"))))
}
}
/**
* Deserializer for Short types.
*/
implicit object ShortReads extends Reads[Short] {
def reads(json: JsValue) = json match {
case JsNumber(n) => JsSuccess(n.toShort)
case _ => JsError(Seq(JsPath() -> Seq(ValidationError("error.expected.jsnumber"))))
}
}
/**
* Deserializer for Long types.
*/
implicit object LongReads extends Reads[Long] {
def reads(json: JsValue) = json match {
case JsNumber(n) => JsSuccess(n.toLong)
case _ => JsError(Seq(JsPath() -> Seq(ValidationError("error.expected.jsnumber"))))
}
}
/**
* Deserializer for Float types.
*/
implicit object FloatReads extends Reads[Float] {
def reads(json: JsValue) = json match {
case JsNumber(n) => JsSuccess(n.toFloat)
case _ => JsError(Seq(JsPath() -> Seq(ValidationError("error.expected.jsnumber"))))
}
}
/**
* Deserializer for Double types.
*/
implicit object DoubleReads extends Reads[Double] {
def reads(json: JsValue) = json match {
case JsNumber(n) => JsSuccess(n.toDouble)
case _ => JsError(Seq(JsPath() -> Seq(ValidationError("error.expected.jsnumber"))))
}
}
/**
* Deserializer for BigDecimal
*/
implicit val bigDecReads = Reads[BigDecimal](js => js match {
case JsString(s) =>
scala.util.control.Exception.catching(classOf[NumberFormatException])
.opt(JsSuccess(BigDecimal(new java.math.BigDecimal(s))))
.getOrElse(JsError(ValidationError("error.expected.numberformatexception")))
case JsNumber(d) => JsSuccess(d.underlying)
case _ => JsError(ValidationError("error.expected.jsnumberorjsstring"))
})
/**
* Deserializer for BigDecimal
*/
implicit val javaBigDecReads = Reads[java.math.BigDecimal](js => js match {
case JsString(s) =>
scala.util.control.Exception.catching(classOf[NumberFormatException])
.opt(JsSuccess(new java.math.BigDecimal(s)))
.getOrElse(JsError(ValidationError("error.expected.numberformatexception")))
case JsNumber(d) => JsSuccess(d.underlying)
case _ => JsError(ValidationError("error.expected.jsnumberorjsstring"))
})
/**
* Reads for the `java.util.Date` type.
*
* @param pattern a date pattern, as specified in `java.text.SimpleDateFormat`.
* @param corrector a simple string transformation function that can be used to transform input String before parsing. Useful when standards are not exactly respected and require a few tweaks
*/
def dateReads(pattern: String, corrector: String => String = identity): Reads[java.util.Date] = new Reads[java.util.Date] {
def reads(json: JsValue): JsResult[java.util.Date] = json match {
case JsNumber(d) => JsSuccess(new java.util.Date(d.toLong))
case JsString(s) => parseDate(corrector(s)) match {
case Some(d) => JsSuccess(d)
case None => JsError(Seq(JsPath() -> Seq(ValidationError("error.expected.date.isoformat", pattern))))
}
case _ => JsError(Seq(JsPath() -> Seq(ValidationError("error.expected.date"))))
}
private def parseDate(input: String): Option[java.util.Date] = {
// REMEMBER THAT SIMPLEDATEFORMAT IS NOT THREADSAFE
val df = new java.text.SimpleDateFormat(pattern)
df.setLenient(false)
try { Some(df.parse(input)) } catch {
case _: java.text.ParseException => None
}
}
}
/**
* the default implicit java.util.Date reads
*/
implicit val DefaultDateReads = dateReads("yyyy-MM-dd")
/**
* ISO 8601 Reads
*/
val IsoDateReads = dateReads("yyyy-MM-dd'T'HH:mm:ssz", { input =>
// NOTE: SimpleDateFormat uses GMT[-+]hh:mm for the TZ so need to refactor a bit
// 1994-11-05T13:15:30Z -> 1994-11-05T13:15:30GMT-00:00
// 1994-11-05T08:15:30-05:00 -> 1994-11-05T08:15:30GMT-05:00
if (input.endsWith("Z")) {
input.substring(0, input.length() - 1) + "GMT-00:00"
} else {
val inset = 6
val s0 = input.substring(0, input.length - inset)
val s1 = input.substring(input.length - inset, input.length)
s0 + "GMT" + s1
}
})
/**
* Reads for the `org.joda.time.DateTime` type.
*
* @param pattern a date pattern, as specified in `java.text.SimpleDateFormat`.
* @param corrector a simple string transformation function that can be used to transform input String before parsing. Useful when standards are not exactly respected and require a few tweaks
*/
def jodaDateReads(pattern: String, corrector: String => String = identity): Reads[org.joda.time.DateTime] = new Reads[org.joda.time.DateTime] {
import org.joda.time.DateTime
val df = org.joda.time.format.DateTimeFormat.forPattern(pattern)
def reads(json: JsValue): JsResult[DateTime] = json match {
case JsNumber(d) => JsSuccess(new DateTime(d.toLong))
case JsString(s) => parseDate(corrector(s)) match {
case Some(d) => JsSuccess(d)
case None => JsError(Seq(JsPath() -> Seq(ValidationError("error.expected.jodadate.format", pattern))))
}
case _ => JsError(Seq(JsPath() -> Seq(ValidationError("error.expected.date"))))
}
private def parseDate(input: String): Option[DateTime] =
scala.util.control.Exception.allCatch[DateTime] opt (DateTime.parse(input, df))
}
/**
* the default implicit JodaDate reads
*/
implicit val DefaultJodaDateReads = jodaDateReads("yyyy-MM-dd")
/**
* Reads for the `org.joda.time.LocalDate` type.
*
* @param pattern a date pattern, as specified in `org.joda.time.format.DateTimeFormat`.
* @param corrector string transformation function (See jodaDateReads)
*/
def jodaLocalDateReads(pattern: String, corrector: String => String = identity): Reads[org.joda.time.LocalDate] = new Reads[org.joda.time.LocalDate] {
import org.joda.time.LocalDate
import org.joda.time.format.{ DateTimeFormat, ISODateTimeFormat }
val df = if (pattern == "") ISODateTimeFormat.localDateParser else DateTimeFormat.forPattern(pattern)
def reads(json: JsValue): JsResult[LocalDate] = json match {
case JsString(s) => parseDate(corrector(s)) match {
case Some(d) => JsSuccess(d)
case None => JsError(Seq(JsPath() -> Seq(ValidationError("error.expected.jodadate.format", pattern))))
}
case _ => JsError(Seq(JsPath() -> Seq(ValidationError("error.expected.date"))))
}
private def parseDate(input: String): Option[LocalDate] =
scala.util.control.Exception.allCatch[LocalDate] opt (LocalDate.parse(input, df))
}
/**
* the default implicit joda.time.LocalDate reads
*/
implicit val DefaultJodaLocalDateReads = jodaLocalDateReads("")
/**
* Reads for the `java.sql.Date` type.
*
* @param pattern a date pattern, as specified in `java.text.SimpleDateFormat`.
* @param corrector a simple string transformation function that can be used to transform input String before parsing. Useful when standards are not exactly respected and require a few tweaks
*/
def sqlDateReads(pattern: String, corrector: String => String = identity): Reads[java.sql.Date] =
dateReads(pattern, corrector).map(d => new java.sql.Date(d.getTime))
/**
* the default implicit JodaDate reads
*/
implicit val DefaultSqlDateReads = sqlDateReads("yyyy-MM-dd")
/**
* Reads for `scala.Enumeration` types using the name.
*
* @param enum a `scala.Enumeration`.
*/
def enumNameReads[E <: Enumeration](enum: E): Reads[E#Value] = new Reads[E#Value] {
def reads(json: JsValue) = json match {
case JsString(str) =>
enum.values
.find(_.toString == str)
.map(JsSuccess(_))
.getOrElse(JsError(Seq(JsPath() -> Seq(ValidationError("error.expected.validenumvalue")))))
case _ => JsError(Seq(JsPath() -> Seq(ValidationError("error.expected.enumstring"))))
}
}
/**
* Deserializer for Boolean types.
*/
implicit object BooleanReads extends Reads[Boolean] {
def reads(json: JsValue) = json match {
case JsBoolean(b) => JsSuccess(b)
case _ => JsError(Seq(JsPath() -> Seq(ValidationError("error.expected.jsboolean"))))
}
}
/**
* Deserializer for String types.
*/
implicit object StringReads extends Reads[String] {
def reads(json: JsValue) = json match {
case JsString(s) => JsSuccess(s)
case _ => JsError(Seq(JsPath() -> Seq(ValidationError("error.expected.jsstring"))))
}
}
/**
* Deserializer for JsObject.
*/
implicit object JsObjectReads extends Reads[JsObject] {
def reads(json: JsValue) = json match {
case o: JsObject => JsSuccess(o)
case _ => JsError(Seq(JsPath() -> Seq(ValidationError("error.expected.jsobject"))))
}
}
implicit object JsArrayReads extends Reads[JsArray] {
def reads(json: JsValue) = json match {
case o: JsArray => JsSuccess(o)
case _ => JsError(Seq(JsPath() -> Seq(ValidationError("error.expected.jsarray"))))
}
}
/**
* Deserializer for JsValue.
*/
implicit object JsValueReads extends Reads[JsValue] {
def reads(json: JsValue) = JsSuccess(json)
}
implicit object JsStringReads extends Reads[JsString] {
def reads(json: JsValue) = json match {
case s: JsString => JsSuccess(s)
case _ => JsError(Seq(JsPath() -> Seq(ValidationError("error.expected.jsstring"))))
}
}
implicit object JsNumberReads extends Reads[JsNumber] {
def reads(json: JsValue) = json match {
case n: JsNumber => JsSuccess(n)
case _ => JsError(Seq(JsPath() -> Seq(ValidationError("error.expected.jsnumber"))))
}
}
implicit object JsBooleanReads extends Reads[JsBoolean] {
def reads(json: JsValue) = json match {
case b: JsBoolean => JsSuccess(b)
case _ => JsError(Seq(JsPath() -> Seq(ValidationError("error.expected.jsboolean"))))
}
}
/**
* Deserializer for Jackson JsonNode
*/
implicit object JsonNodeReads extends Reads[JsonNode] {
def reads(json: JsValue): JsResult[JsonNode] =
JsSuccess(JacksonJson.jsValueToJsonNode(json))
}
/**
* Deserializer for Jackson ObjectNode
*/
implicit object ObjectNodeReads extends Reads[ObjectNode] {
def reads(json: JsValue): JsResult[ObjectNode] = {
json.validate[JsObject] map (jo => JacksonJson.jsValueToJsonNode(jo).asInstanceOf[ObjectNode])
}
}
/**
* Deserializer for Jackson ArrayNode
*/
implicit object ArrayNodeReads extends Reads[ArrayNode] {
def reads(json: JsValue): JsResult[ArrayNode] = {
json.validate[JsArray] map (ja => JacksonJson.jsValueToJsonNode(ja).asInstanceOf[ArrayNode])
}
}
implicit def OptionReads[T](implicit fmt: Reads[T]): Reads[Option[T]] = new Reads[Option[T]] {
import scala.util.control.Exception._
def reads(json: JsValue) = fmt.reads(json).fold(e => JsSuccess(None), v => JsSuccess(Some(v)))
}
/**
* Deserializer for Map[String,V] types.
*/
implicit def mapReads[V](implicit fmtv: Reads[V]): Reads[collection.immutable.Map[String, V]] = new Reads[collection.immutable.Map[String, V]] {
def reads(json: JsValue) = json match {
case JsObject(m) => {
type Errors = Seq[(JsPath, Seq[ValidationError])]
def locate(e: Errors, key: String) = e.map { case (p, valerr) => (JsPath \ key) ++ p -> valerr }
m.foldLeft(Right(Map.empty): Either[Errors, Map[String, V]]) {
case (acc, (key, value)) => (acc, fromJson[V](value)(fmtv)) match {
case (Right(vs), JsSuccess(v, _)) => Right(vs + (key -> v))
case (Right(_), JsError(e)) => Left(locate(e, key))
case (Left(e), _: JsSuccess[_]) => Left(e)
case (Left(e1), JsError(e2)) => Left(e1 ++ locate(e2, key))
}
}.fold(JsError.apply, res => JsSuccess(res.toMap))
}
case _ => JsError(Seq(JsPath() -> Seq(ValidationError("error.expected.jsobject"))))
}
}
/**
* Generic deserializer for collections types.
*/
implicit def traversableReads[F[_], A](implicit bf: generic.CanBuildFrom[F[_], A, F[A]], ra: Reads[A]) = new Reads[F[A]] {
def reads(json: JsValue) = json match {
case JsArray(ts) =>
type Errors = Seq[(JsPath, Seq[ValidationError])]
def locate(e: Errors, idx: Int) = e.map { case (p, valerr) => (JsPath(idx)) ++ p -> valerr }
ts.zipWithIndex.foldLeft(Right(Vector.empty): Either[Errors, Vector[A]]) {
case (acc, (elt, idx)) => (acc, fromJson[A](elt)(ra)) match {
case (Right(vs), JsSuccess(v, _)) => Right(vs :+ v)
case (Right(_), JsError(e)) => Left(locate(e, idx))
case (Left(e), _: JsSuccess[_]) => Left(e)
case (Left(e1), JsError(e2)) => Left(e1 ++ locate(e2, idx))
}
}.fold(JsError.apply, { res =>
val builder = bf()
res.foreach(builder.+=)
JsSuccess(builder.result())
})
case _ => JsError(Seq(JsPath() -> Seq(ValidationError("error.expected.jsarray"))))
}
}
/**
* Deserializer for Array[T] types.
*/
implicit def ArrayReads[T: Reads: ClassTag]: Reads[Array[T]] = new Reads[Array[T]] {
def reads(json: JsValue) = json.validate[List[T]].map(_.toArray)
}
/**
* Deserializer for java.util.UUID
*/
def uuidReader(checkUuuidValidity: Boolean = false): Reads[java.util.UUID] = new Reads[java.util.UUID] {
import java.util.UUID
import scala.util.Try
def check(s: String)(u: UUID): Boolean = (u != null && s == u.toString())
def parseUuid(s: String): Option[UUID] = {
val uncheckedUuid = Try(UUID.fromString(s)).toOption
if (checkUuuidValidity) {
uncheckedUuid filter check(s)
} else {
uncheckedUuid
}
}
def reads(json: JsValue) = json match {
case JsString(s) => {
parseUuid(s).map(JsSuccess(_)).getOrElse(JsError(Seq(JsPath() -> Seq(ValidationError("error.expected.uuid")))))
}
case _ => JsError(Seq(JsPath() -> Seq(ValidationError("error.expected.uuid"))))
}
}
implicit val uuidReads: Reads[java.util.UUID] = uuidReader()
}
Other Play Framework source code examplesHere is a short list of links related to this Play Framework Reads.scala source code file: |
| ... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.