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