Being devops-friendly until a user creation event arrives
[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
42 import gr.grnet.aquarium.util.{makeString, UTF_8_Charset}
43 import java.nio.charset.Charset
44 import gr.grnet.aquarium.computation.reason.{IMEventArrival, RealtimeBillingCalculation, MonthlyBillingCalculation, NoSpecificChangeReason, InitialUserActorSetup, InitialUserStateSetup}
45
46 /**
47  * Provides conversion methods from and to JSON.
48  *
49  * The underlying library used is lift-json.
50  *
51  * @author Christos KK Loverdos <loverdos@gmail.com>
52  */
53
54 object JsonConversions {
55   /**
56    * The application-wide JSON formats used from the underlying lift-json library.
57    */
58   implicit final val Formats = (DefaultFormats ++ JodaTimeSerializers.all)
59
60   /**
61    * Converts a value to JSON AST (Abstract Syntax Tree) by acting a bit intelligently, depending on the actual type
62    * of the given value. In particular, if the given value `any` is already a JSON AST, it is returned
63    * as is. Also, if the given value `any` is a String, it is assumed that the string is already a JSON
64    * representation and then it is parsed to a JSON AST.
65    */
66   final def anyToJValue(any: Any)(implicit formats: Formats = Formats): JValue = {
67     any match {
68       case jValue: JValue ⇒
69         jValue
70       case json: String ⇒
71         jsonToJValue(json)
72       case jsonFormat: JsonTextFormat ⇒
73         jsonToJValue(jsonFormat.value)
74       case _ ⇒
75         Extraction.decompose(any)
76     }
77   }
78
79   final def jsonToJValue(json: String): JValue = {
80     parse(json)
81   }
82
83   final def jValueToCompactString(jValue: JValue): String = {
84     Printer.compact(JsonAST.render(jValue))
85   }
86
87   final def jValueToPrettyString(jValue: JValue): String = {
88     Printer.pretty(JsonAST.render(jValue))
89   }
90
91   final def anyToJson(any: Any, pretty: Boolean = true)(implicit formats: Formats = Formats): String = {
92     val jValue = anyToJValue(any)
93     val jDoc = JsonAST.render(jValue)
94     if(pretty) {
95       Printer.pretty(jDoc)
96     } else {
97       Printer.compact(jDoc)
98     }
99   }
100
101   final def jsonBytesToJson(bytes: Array[Byte], charset: Charset = UTF_8_Charset): String = {
102     makeString(bytes, charset)
103   }
104
105   final def jsonBytesToObject[A: Manifest](bytes: Array[Byte], charset: Charset = UTF_8_Charset): A = {
106     val json = jsonBytesToJson(bytes, charset)
107     jsonToObject[A](json)
108   }
109
110   final def jsonToObject[A](json: String)(implicit ma: Manifest[A], formats: Formats = Formats): A = {
111     val jValue = parse(json)
112     jValueToObject[A](jValue)
113   }
114
115   final def jValueToObject[A](jValue: JValue)(implicit ma: Manifest[A], formats: Formats = Formats): A = {
116     Extraction.extract[A](jValue)
117   }
118 }