move actors code in drools-applications to policy/models
[policy/models.git] / models-interactions / model-impl / events / src / main / java / org / onap / policy / controlloop / util / Serialization.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * controlloop
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.controlloop.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.JsonPrimitive;
30 import com.google.gson.JsonSerializationContext;
31 import com.google.gson.JsonSerializer;
32
33 import java.lang.reflect.Type;
34 import java.time.Instant;
35 import java.time.ZonedDateTime;
36 import java.time.format.DateTimeFormatter;
37
38 import org.onap.policy.controlloop.ControlLoopNotificationType;
39 import org.onap.policy.controlloop.ControlLoopTargetType;
40 import org.slf4j.Logger;
41 import org.slf4j.LoggerFactory;
42
43 public final class Serialization {
44     public static final Gson gson =
45             new GsonBuilder().disableHtmlEscaping().registerTypeAdapter(ZonedDateTime.class, new GsonUtcAdapter())
46                     .registerTypeAdapter(Instant.class, new GsonInstantAdapter())
47                     .registerTypeAdapter(ControlLoopNotificationType.class, new NotificationTypeAdapter())
48                     .registerTypeAdapter(ControlLoopTargetType.class, new TargetTypeAdapter()).create();
49
50
51     public static final Gson gsonPretty = new GsonBuilder().disableHtmlEscaping().setPrettyPrinting()
52             .registerTypeAdapter(ZonedDateTime.class, new GsonUtcAdapter())
53             .registerTypeAdapter(Instant.class, new GsonInstantAdapter())
54             .registerTypeAdapter(ControlLoopNotificationType.class, new NotificationTypeAdapter())
55             .registerTypeAdapter(ControlLoopTargetType.class, new TargetTypeAdapter()).create();
56
57     public static final Gson gsonJunit = new GsonBuilder().disableHtmlEscaping().setPrettyPrinting()
58             .registerTypeAdapter(ZonedDateTime.class, new GsonUtcAdapter())
59             .registerTypeAdapter(Instant.class, new GsonInstantAdapter())
60             .registerTypeAdapter(ControlLoopTargetType.class, new TargetTypeAdapter()).create();
61
62     private Serialization() {}
63
64     public static class NotificationTypeAdapter
65             implements JsonSerializer<ControlLoopNotificationType>, JsonDeserializer<ControlLoopNotificationType> {
66         @Override
67         public JsonElement serialize(ControlLoopNotificationType src, Type typeOfSrc,
68                 JsonSerializationContext context) {
69             return new JsonPrimitive(src.toString());
70         }
71
72         @Override
73         public ControlLoopNotificationType deserialize(JsonElement json, Type typeOfT,
74                 JsonDeserializationContext context) {
75             return ControlLoopNotificationType.toType(json.getAsString());
76         }
77     }
78
79     public static class TargetTypeAdapter
80             implements JsonSerializer<ControlLoopTargetType>, JsonDeserializer<ControlLoopTargetType> {
81         @Override
82         public JsonElement serialize(ControlLoopTargetType src, Type typeOfSrc, JsonSerializationContext context) {
83             return new JsonPrimitive(src.toString());
84         }
85
86         @Override
87         public ControlLoopTargetType deserialize(JsonElement json, Type typeOfT, JsonDeserializationContext context) {
88             return ControlLoopTargetType.toType(json.getAsString());
89         }
90     }
91
92     public static class GsonUtcAdapter implements JsonSerializer<ZonedDateTime>, JsonDeserializer<ZonedDateTime> {
93         private static final Logger logger = LoggerFactory.getLogger(GsonUtcAdapter.class);
94         public static final DateTimeFormatter format = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss.SSSSSSxxx");
95
96         @Override
97         public ZonedDateTime deserialize(JsonElement element, Type type, JsonDeserializationContext context) {
98             try {
99                 return ZonedDateTime.parse(element.getAsString(), format);
100             } catch (Exception e) {
101                 logger.error(e.getMessage(), e);
102             }
103             return null;
104         }
105
106         @Override
107         public JsonElement serialize(ZonedDateTime datetime, Type type, JsonSerializationContext context) {
108             return new JsonPrimitive(datetime.format(format));
109         }
110     }
111
112     public static class GsonInstantAdapter implements JsonSerializer<Instant>, JsonDeserializer<Instant> {
113
114         @Override
115         public Instant deserialize(JsonElement json, Type typeOfT, JsonDeserializationContext context) {
116             return Instant.ofEpochMilli(json.getAsLong());
117         }
118
119         @Override
120         public JsonElement serialize(Instant src, Type typeOfSrc, JsonSerializationContext context) {
121             return new JsonPrimitive(src.toEpochMilli());
122         }
123
124     }
125
126 }