a5e4336daefa301e6567b6c788313109abe9f1e4
[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, 2021 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.JsonSerializationContext;
32 import com.google.gson.JsonSerializer;
33 import java.lang.reflect.Type;
34 import java.time.Instant;
35 import org.onap.policy.common.gson.InstantAsMillisTypeAdapter;
36 import org.onap.policy.common.gson.InstantTypeAdapter;
37 import org.onap.policy.sdnr.PciRequest;
38 import org.onap.policy.sdnr.PciResponse;
39
40 public final class Serialization {
41     public static final Gson gsonPretty = new GsonBuilder().disableHtmlEscaping().setPrettyPrinting()
42             .registerTypeAdapter(Instant.class, new InstantTypeAdapter()).create();
43
44     public static final Gson gson = new GsonBuilder().disableHtmlEscaping().setPrettyPrinting()
45             .registerTypeAdapter(PciRequest.class, new RequestAdapter())
46             .registerTypeAdapter(PciResponse.class, new ResponseAdapter()).create();
47
48     public static final Gson gsonJunit = new GsonBuilder().disableHtmlEscaping().setPrettyPrinting()
49             .registerTypeAdapter(Instant.class, new InstantAsMillisTypeAdapter()).create();
50
51     private Serialization() {
52         // Private constructor to prevent subclassing
53     }
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 }