40fe63c745fd69fed5692dab9bc1f474aeb7404f
[policy/models.git] /
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2019 Nordix Foundation.
4  *  Copyright (C) 2019 AT&T Intellectual Property. All rights reserved.
5  * ================================================================================
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  *      http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  *
18  * SPDX-License-Identifier: Apache-2.0
19  * ============LICENSE_END=========================================================
20  */
21
22 package org.onap.policy.models.tosca.simple.serialization;
23
24 import com.google.gson.JsonDeserializationContext;
25 import com.google.gson.JsonDeserializer;
26 import com.google.gson.JsonElement;
27 import com.google.gson.JsonObject;
28 import com.google.gson.JsonSerializationContext;
29 import com.google.gson.JsonSerializer;
30
31 import java.lang.reflect.Type;
32
33 import lombok.NonNull;
34
35 import org.onap.policy.models.tosca.simple.concepts.ToscaServiceTemplate;
36 import org.onap.policy.models.tosca.simple.concepts.ToscaTopologyTemplate;
37
38 /**
39  * GSON type adapter for TOSCA policies.
40  *
41  * @author Liam Fallon (liam.fallon@est.tech)
42  * @author Chenfei Gao (cgao@research.att.com)
43  */
44 public class ToscaServiceTemplateJsonAdapter
45         implements JsonSerializer<ToscaServiceTemplate>, JsonDeserializer<ToscaServiceTemplate> {
46
47     private static final String TOPOLOGY_TEMPLATE = "topology_template";
48     private static final String TOSCA_DEFINITIONS_VERSION = "tosca_definitions_version";
49
50     @Override
51     public ToscaServiceTemplate deserialize(@NonNull final JsonElement serviceTemplateElement, @NonNull final Type type,
52             @NonNull final JsonDeserializationContext context) {
53
54         // The incoming JSON
55         final JsonObject serviceTemplateJsonObject = serviceTemplateElement.getAsJsonObject();
56
57         // The outgoing object
58         final ToscaServiceTemplate serviceTemplate = new ToscaServiceTemplate();
59         serviceTemplate
60                 .setToscaDefinitionsVersion(serviceTemplateJsonObject.get(TOSCA_DEFINITIONS_VERSION).getAsString());
61
62         if (serviceTemplateJsonObject.has(TOPOLOGY_TEMPLATE)) {
63             serviceTemplate.setTopologyTemplate(new ToscaTopologyTemplateJsonAdapter().deserialize(
64                     serviceTemplateJsonObject.get(TOPOLOGY_TEMPLATE), ToscaTopologyTemplate.class, context));
65         }
66
67         // Set the parent key of the topology template to be this service template
68         serviceTemplate.getTopologyTemplate().getKey().setParentConceptKey(serviceTemplate.getKey());
69
70         return serviceTemplate;
71     }
72
73     @Override
74     public JsonElement serialize(@NonNull final ToscaServiceTemplate serviceTemplate, @NonNull final Type type,
75             @NonNull final JsonSerializationContext context) {
76
77         JsonObject serviceTemplateJsonObject = new JsonObject();
78         JsonElement topologyTemplateJsonElement = new ToscaTopologyTemplateJsonAdapter()
79                 .serialize(serviceTemplate.getTopologyTemplate(), type, context);
80
81         serviceTemplateJsonObject.addProperty(TOSCA_DEFINITIONS_VERSION, serviceTemplate.getToscaDefinitionsVersion());
82         serviceTemplateJsonObject.add(TOPOLOGY_TEMPLATE, topologyTemplateJsonElement);
83
84         return serviceTemplateJsonObject;
85     }
86 }