Tweeking configuration
[aquarium] / src / main / scala / gr / grnet / aquarium / converter / JsonConversions.scala
1 /*
2  * Copyright 2011-2012 GRNET S.A. All rights reserved.
3  *
4  * Redistribution and use in source and binary forms, with or
5  * without modification, are permitted provided that the following
6  * conditions are met:
7  *
8  *   1. Redistributions of source code must retain the above
9  *      copyright notice, this list of conditions and the following
10  *      disclaimer.
11  *
12  *   2. Redistributions in binary form must reproduce the above
13  *      copyright notice, this list of conditions and the following
14  *      disclaimer in the documentation and/or other materials
15  *      provided with the distribution.
16  *
17  * THIS SOFTWARE IS PROVIDED BY GRNET S.A. ``AS IS'' AND ANY EXPRESS
18  * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
19  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
20  * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL GRNET S.A OR
21  * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
22  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
23  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
24  * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
25  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
26  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
27  * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
28  * POSSIBILITY OF SUCH DAMAGE.
29  *
30  * The views and conclusions contained in the software and
31  * documentation are those of the authors and should not be
32  * interpreted as representing official policies, either expressed
33  * or implied, of GRNET S.A.
34  */
35
36 package gr.grnet.aquarium.converter
37
38 import net.liftweb.json.JsonAST.JValue
39 import net.liftweb.json._
40 import ext.JodaTimeSerializers
41 import gr.grnet.aquarium.event.ExternalEventSkeleton
42
43
44 /**
45  * Provides conversion methods from and to JSON.
46  *
47  * The underlying library used is lift-json.
48  *
49  * @author Christos KK Loverdos <loverdos@gmail.com>
50  */
51
52 object JsonConversions {
53   /**
54    * The application-wide JSON formats used from the underlying lift-json library.
55    */
56   implicit val Formats = (DefaultFormats ++ JodaTimeSerializers.all) +
57     FieldSerializer[ExternalEventSkeleton]()
58
59   /**
60    * Converts a value to JSON AST (Abstract Syntax Tree) by acting a bit intelligently, depending on the actual type
61    * of the given value. In particular, if the given value `any` is already a JSON AST, it is returned
62    * as is. Also, if the given value `any` is a String, it is assumed that the string is already a JSON
63    * representation and then it is parsed to a JSON AST.
64    */
65   final def anyToJValue(any: Any)(implicit formats: Formats = Formats): JValue = {
66     any match {
67       case jValue: JValue ⇒
68         jValue
69       case json: String ⇒
70         jsonToJValue(json)
71       case jsonFormat: JsonTextFormat ⇒
72         jsonToJValue(jsonFormat.value)
73       case _ ⇒
74         Extraction.decompose(any)
75     }
76   }
77
78   final def jsonToJValue(json: String): JValue = {
79     parse(json)
80   }
81
82   final def jValueToCompactString(jValue: JValue): String = {
83     Printer.compact(JsonAST.render(jValue))
84   }
85
86   final def jValueToPrettyString(jValue: JValue): String = {
87     Printer.pretty(JsonAST.render(jValue))
88   }
89
90   final def anyToJson(any: Any, pretty: Boolean = true)(implicit formats: Formats = Formats): String = {
91     val jValue = anyToJValue(any)
92     val jDoc = JsonAST.render(jValue)
93     if(pretty) {
94       Printer.pretty(jDoc)
95     } else {
96       Printer.compact(jDoc)
97     }
98   }
99
100   final def jsonBytesToObject[A: Manifest](bytes: Array[Byte], encoding: String = "UTF-8"): A = {
101     val json = new String(bytes, encoding)
102     jsonToObject[A](json)
103   }
104
105   final def jsonToObject[A](json: String)(implicit ma: Manifest[A], formats: Formats = Formats): A = {
106     val jValue = parse(json)
107     jValueToObject[A](jValue)
108   }
109
110   final def jValueToObject[A](jValue: JValue)(implicit ma: Manifest[A], formats: Formats = Formats): A = {
111     Extraction.extract[A](jValue)
112   }
113 }