Changes for Checkstyle 8.32
[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 import java.lang.reflect.Type;
35 import java.time.Instant;
36 import org.onap.policy.sdnr.PciRequest;
37 import org.onap.policy.sdnr.PciResponse;
38
39 public final class Serialization {
40     public static final Gson gsonPretty = new GsonBuilder().disableHtmlEscaping().setPrettyPrinting()
41             .registerTypeAdapter(Instant.class, new InstantAdapter()).create();
42
43     public static final Gson gson = new GsonBuilder().disableHtmlEscaping().setPrettyPrinting()
44             .registerTypeAdapter(PciRequest.class, new RequestAdapter())
45             .registerTypeAdapter(PciResponse.class, new ResponseAdapter()).create();
46
47     public static final Gson gsonJunit = new GsonBuilder().disableHtmlEscaping().setPrettyPrinting()
48             .registerTypeAdapter(Instant.class, new InstantJunitAdapter()).create();
49
50     private Serialization() {
51         // Private constructor to prevent subclassing
52     }
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 }