move actors code in drools-applications to policy/models
[policy/models.git] / models-interactions / model-impl / appclcm / src / main / java / org / onap / policy / appclcm / util / Serialization.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * appc
4  * ================================================================================
5  * Copyright (C) 2017-2019 AT&T Intellectual Property. All rights reserved.
6  * Modifications Copyright (C) 2019 Nordix Foundation.
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.appclcm.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.appclcm.LcmRequest;
38 import org.onap.policy.appclcm.LcmResponse;
39
40 public final class Serialization {
41     public static final Gson gsonPretty = new GsonBuilder().disableHtmlEscaping().setPrettyPrinting()
42             .registerTypeAdapter(Instant.class, new InstantAdapter()).create();
43
44     public static final Gson gson = new GsonBuilder().disableHtmlEscaping().setPrettyPrinting()
45             .registerTypeAdapter(LcmRequest.class, new RequestAdapter())
46             .registerTypeAdapter(LcmResponse.class, new ResponseAdapter()).create();
47
48     public static final Gson gsonJunit = new GsonBuilder().disableHtmlEscaping().setPrettyPrinting()
49             .registerTypeAdapter(Instant.class, new InstantJunitAdapter()).create();
50
51     private Serialization() {}
52
53     public static class RequestAdapter implements JsonSerializer<LcmRequest>, JsonDeserializer<LcmRequest> {
54
55         @Override
56         public JsonElement serialize(LcmRequest src, Type typeOfSrc, JsonSerializationContext context) {
57             JsonElement requestJson = gsonPretty.toJsonTree(src, LcmRequest.class);
58             JsonObject input = new JsonObject();
59             input.add("input", requestJson);
60
61             return input;
62         }
63
64         @Override
65         public LcmRequest deserialize(JsonElement json, Type typeOfT, JsonDeserializationContext context) {
66             return gsonPretty.fromJson(json.getAsJsonObject().get("input"), LcmRequest.class);
67         }
68     }
69
70     public static class ResponseAdapter implements JsonSerializer<LcmResponse>, JsonDeserializer<LcmResponse> {
71
72         @Override
73         public JsonElement serialize(LcmResponse src, Type typeOfSrc, JsonSerializationContext context) {
74             JsonElement responseJson = gsonPretty.toJsonTree(src, LcmResponse.class);
75             JsonObject output = new JsonObject();
76             output.add("output", responseJson);
77             return output;
78         }
79
80         @Override
81         public LcmResponse deserialize(JsonElement json, Type typeOfT, JsonDeserializationContext context) {
82             return gsonPretty.fromJson(json.getAsJsonObject().get("output"), LcmResponse.class);
83         }
84     }
85
86     public static class InstantAdapter implements JsonSerializer<Instant>, JsonDeserializer<Instant> {
87
88         @Override
89         public Instant deserialize(JsonElement json, Type typeOfT, JsonDeserializationContext context) {
90             return Instant.parse(json.getAsString());
91         }
92
93         @Override
94         public JsonElement serialize(Instant src, Type typeOfSrc, JsonSerializationContext context) {
95             return new JsonPrimitive(src.toString());
96         }
97
98     }
99
100     public static class InstantJunitAdapter implements JsonSerializer<Instant>, JsonDeserializer<Instant> {
101
102         @Override
103         public Instant deserialize(JsonElement json, Type typeOfT, JsonDeserializationContext context) {
104             return Instant.ofEpochMilli(json.getAsLong());
105         }
106
107         @Override
108         public JsonElement serialize(Instant src, Type typeOfSrc, JsonSerializationContext context) {
109             return new JsonPrimitive(src.toEpochMilli());
110         }
111
112     }
113
114 }