3a116d741bbdf34c065956b566bd5128855b27dd
[policy/drools-applications.git] / controlloop / common / model-impl / sdnr / src / main / java / org / onap / policy / sdnr / util / Serialization.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * sdnr
4  * ================================================================================
5  * Copyright (C) 2018 Wipro Limited Intellectual Property. All rights reserved.
6  * Modifications Copyright (C) 2018 AT&T Intellectual Property. All rights reserved.
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  * 
12  *      http://www.apache.org/licenses/LICENSE-2.0
13  * 
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END=========================================================
20  */
21
22 package org.onap.policy.sdnr.util;
23
24 import com.google.gson.Gson;
25 import com.google.gson.GsonBuilder;
26 import com.google.gson.JsonDeserializationContext;
27 import com.google.gson.JsonDeserializer;
28 import com.google.gson.JsonElement;
29 import com.google.gson.JsonObject;
30 import com.google.gson.JsonPrimitive;
31 import com.google.gson.JsonSerializationContext;
32 import com.google.gson.JsonSerializer;
33
34 import java.lang.reflect.Type;
35 import java.time.Instant;
36
37 import org.onap.policy.sdnr.PciRequest;
38 import org.onap.policy.sdnr.PciResponse;
39
40
41 public final class Serialization {
42     public static final Gson gsonPretty = new GsonBuilder().disableHtmlEscaping().setPrettyPrinting()
43             .registerTypeAdapter(Instant.class, new InstantAdapter()).create();
44
45     public static final Gson gson = new GsonBuilder().disableHtmlEscaping().setPrettyPrinting()
46             .registerTypeAdapter(PciRequest.class, new RequestAdapter())
47             .registerTypeAdapter(PciResponse.class, new ResponseAdapter()).create();
48
49     public static final Gson gsonJunit = new GsonBuilder().disableHtmlEscaping().setPrettyPrinting()
50             .registerTypeAdapter(Instant.class, new InstantJunitAdapter()).create();
51
52     private Serialization() {}
53
54     public static class RequestAdapter implements JsonSerializer<PciRequest>, JsonDeserializer<PciRequest> {
55
56         @Override
57         public JsonElement serialize(PciRequest src, Type typeOfSrc, JsonSerializationContext context) {
58             JsonElement requestJson = gsonPretty.toJsonTree(src, PciRequest.class);
59             JsonObject input = new JsonObject();
60             input.add("input", requestJson);
61
62             return input;
63         }
64
65         @Override
66         public PciRequest deserialize(JsonElement json, Type typeOfT, JsonDeserializationContext context) {
67             return gsonPretty.fromJson(json.getAsJsonObject().get("input"), PciRequest.class);
68         }
69     }
70
71     public static class ResponseAdapter implements JsonSerializer<PciResponse>, JsonDeserializer<PciResponse> {
72
73         @Override
74         public JsonElement serialize(PciResponse src, Type typeOfSrc, JsonSerializationContext context) {
75             JsonElement responseJson = gsonPretty.toJsonTree(src, PciResponse.class);
76             JsonObject output = new JsonObject();
77             output.add("output", responseJson);
78             return output;
79         }
80
81         @Override
82         public PciResponse deserialize(JsonElement json, Type typeOfT, JsonDeserializationContext context) {
83             return gsonPretty.fromJson(json.getAsJsonObject().get("output"), PciResponse.class);
84         }
85     }
86
87     public static class InstantAdapter implements JsonSerializer<Instant>, JsonDeserializer<Instant> {
88
89         @Override
90         public Instant deserialize(JsonElement json, Type typeOfT, JsonDeserializationContext context) {
91             return Instant.parse(json.getAsString());
92         }
93
94         @Override
95         public JsonElement serialize(Instant src, Type typeOfSrc, JsonSerializationContext context) {
96             return new JsonPrimitive(src.toString());
97         }
98
99     }
100
101     public static class InstantJunitAdapter implements JsonSerializer<Instant>, JsonDeserializer<Instant> {
102
103         @Override
104         public Instant deserialize(JsonElement json, Type typeOfT, JsonDeserializationContext context) {
105             return Instant.ofEpochMilli(json.getAsLong());
106         }
107
108         @Override
109         public JsonElement serialize(Instant src, Type typeOfSrc, JsonSerializationContext context) {
110             return new JsonPrimitive(src.toEpochMilli());
111         }
112
113     }
114
115 }