Merge "Add debugging of REST call"
[policy/drools-applications.git] / controlloop / common / model-impl / appc / src / main / java / org / onap / policy / appc / util / Serialization.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * appc
4  * ================================================================================
5  * Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.policy.appc.util;
22
23 import com.google.gson.Gson;
24 import com.google.gson.GsonBuilder;
25 import com.google.gson.JsonDeserializationContext;
26 import com.google.gson.JsonDeserializer;
27 import com.google.gson.JsonElement;
28 import com.google.gson.JsonPrimitive;
29 import com.google.gson.JsonSerializationContext;
30 import com.google.gson.JsonSerializer;
31
32 import java.lang.reflect.Type;
33 import java.time.Instant;
34 import java.time.ZonedDateTime;
35 import java.time.format.DateTimeFormatter;
36
37 import org.slf4j.Logger;
38 import org.slf4j.LoggerFactory;
39
40 public final class Serialization {
41     public static final DateTimeFormatter format = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss.SSSSSSxxx");
42
43     public static final Gson gsonPretty = new GsonBuilder().disableHtmlEscaping().setPrettyPrinting()
44             .registerTypeAdapter(ZonedDateTime.class, new GsonUtcAdapter())
45             .registerTypeAdapter(Instant.class, new GsonInstantAdapter())
46             // .registerTypeAdapter(CommonHeader1607.class, new gsonCommonHeaderInstance())
47             // .registerTypeAdapter(ResponseStatus1607.class, new gsonResponseStatus())
48             .create();
49
50     private Serialization() {}
51
52     public static class GsonUtcAdapter implements JsonSerializer<ZonedDateTime>, JsonDeserializer<ZonedDateTime> {
53         private static final Logger logger = LoggerFactory.getLogger(GsonUtcAdapter.class);
54
55         @Override
56         public ZonedDateTime deserialize(JsonElement element, Type type, JsonDeserializationContext context) {
57             try {
58                 return ZonedDateTime.parse(element.getAsString(), format);
59             } catch (Exception e) {
60                 logger.error("deserialize threw: ", e);
61             }
62             return null;
63         }
64
65         @Override
66         public JsonElement serialize(ZonedDateTime datetime, Type type, JsonSerializationContext context) {
67             return new JsonPrimitive(datetime.format(format));
68         }
69     }
70
71     public static class GsonInstantAdapter implements JsonSerializer<Instant>, JsonDeserializer<Instant> {
72
73         @Override
74         public Instant deserialize(JsonElement json, Type typeOfT, JsonDeserializationContext context) {
75             return Instant.ofEpochMilli(json.getAsLong());
76         }
77
78         @Override
79         public JsonElement serialize(Instant src, Type typeOfSrc, JsonSerializationContext context) {
80             return new JsonPrimitive(src.toEpochMilli());
81         }
82
83     }
84
85 }