[sdc] rebase update
[sdc.git] / catalog-be / src / main / java / org / openecomp / sdc / be / tosca / PropertyConvertor.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 2017 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.openecomp.sdc.be.tosca;
22
23 import java.io.StringReader;
24 import java.util.HashMap;
25 import java.util.List;
26 import java.util.Map;
27 import java.util.Map.Entry;
28
29 import org.apache.commons.lang3.StringUtils;
30 import org.openecomp.sdc.be.datatypes.elements.SchemaDefinition;
31 import org.openecomp.sdc.be.model.Component;
32 import org.openecomp.sdc.be.model.DataTypeDefinition;
33 import org.openecomp.sdc.be.model.PropertyDefinition;
34 import org.openecomp.sdc.be.model.Resource;
35 import org.openecomp.sdc.be.model.tosca.ToscaPropertyType;
36 import org.openecomp.sdc.be.model.tosca.converters.ToscaMapValueConverter;
37 import org.openecomp.sdc.be.model.tosca.converters.ToscaValueConverter;
38 import org.openecomp.sdc.be.tosca.model.EntrySchema;
39 import org.openecomp.sdc.be.tosca.model.ToscaNodeType;
40 import org.openecomp.sdc.be.tosca.model.ToscaProperty;
41 import org.slf4j.Logger;
42 import org.slf4j.LoggerFactory;
43
44 import com.google.gson.Gson;
45 import com.google.gson.JsonElement;
46 import com.google.gson.JsonObject;
47 import com.google.gson.JsonParser;
48 import com.google.gson.JsonSyntaxException;
49 import com.google.gson.stream.JsonReader;
50
51 import fj.data.Either;
52
53 public class PropertyConvertor {
54         private static PropertyConvertor instance;
55         private JsonParser jsonParser = new JsonParser();
56         private static Logger log = LoggerFactory.getLogger(PropertyConvertor.class.getName());
57         Gson gson = new Gson();
58         protected PropertyConvertor() {
59
60         }
61
62         public static synchronized PropertyConvertor getInstance() {
63                 if (instance == null) {
64                         instance = new PropertyConvertor();
65                 }
66                 return instance;
67         }
68
69         public Either<ToscaNodeType, ToscaError> convertProperties(Component component, ToscaNodeType toscaNodeType, Map<String, DataTypeDefinition> dataTypes) {
70
71                 if (component instanceof Resource) {
72                         Resource resource = (Resource) component;
73                         List<PropertyDefinition> props = resource.getProperties();
74                         if (props != null) {
75                                 Map<String, ToscaProperty> properties = new HashMap<>();
76
77                                 // take only the properties of this resource
78                                 props.stream().filter(p -> p.getOwnerId() == null || p.getOwnerId().equals(component.getUniqueId())).forEach(property -> {
79                                         ToscaProperty prop = convertProperty(dataTypes, property, false);
80
81                                         properties.put(property.getName(), prop);
82                                 });
83                                 if (!properties.isEmpty()) {
84                                         toscaNodeType.setProperties(properties);
85                                 }
86                         }
87                 }
88                 return Either.left(toscaNodeType);
89         }
90
91         public ToscaProperty convertProperty(Map<String, DataTypeDefinition> dataTypes, PropertyDefinition property, boolean isCapabiltyProperty) {
92                 ToscaProperty prop = new ToscaProperty();
93
94                 String innerType = null;
95                 SchemaDefinition schema = property.getSchema();
96                 if (schema != null && schema.getProperty() != null && schema.getProperty().getType() != null && !schema.getProperty().getType().isEmpty()) {
97                         innerType = schema.getProperty().getType();
98                         EntrySchema eschema = new EntrySchema();
99                         eschema.setType(innerType);
100                         eschema.setDescription(schema.getProperty().getDescription());
101                         prop.setEntry_schema(eschema);
102                 }
103                 log.debug("try to convert property {} from type {} with default value {}", property.getName(), property.getType(), property.getDefaultValue());
104                 prop.setDefaultp(convertToToscaObject(property.getType(), property.getName(), property.getDefaultValue(), innerType, dataTypes));
105                 prop.setType(property.getType());
106                 prop.setDescription(property.getDescription());
107                 if (isCapabiltyProperty) {
108                         prop.setStatus(property.getStatus());
109                         prop.setRequired(property.isRequired());
110                 }
111                 return prop;
112         }
113
114         public Object convertToToscaObject(String propertyType, String propertyName, String value, String innerType, Map<String, DataTypeDefinition> dataTypes) {
115                 log.debug("try to convert propertyType {} , value {}, innerType {}", propertyType, value, innerType);
116                 if (value == null) {
117                         value = getDataTypeDefaultValue(propertyName, dataTypes.get(propertyType));
118                         if(StringUtils.isEmpty(value)){
119                                 return null;
120                         }
121                 }
122
123                 ToscaMapValueConverter mapConverterInst = ToscaMapValueConverter.getInstance();
124                 ToscaValueConverter innerConverter = null;
125                 Boolean isScalar = true;
126
127                 ToscaPropertyType type = ToscaPropertyType.isValidType(propertyType);
128                 if (type == null) {
129                         log.debug("isn't prederfined type, get from all data types");
130                         DataTypeDefinition dataTypeDefinition = dataTypes.get(propertyType);
131                         if (innerType == null) {
132                                 innerType = propertyType;
133                         }
134
135                         if ((type = mapConverterInst.isScalarType(dataTypeDefinition)) != null) {
136                                 log.debug("This is scalar type. get suitable converter for type {}", type);
137                                 innerConverter = type.getValueConverter();
138                         } else {
139                                 isScalar = false;
140                         }
141                 } else {
142                         ToscaPropertyType typeIfScalar = ToscaPropertyType.getTypeIfScalar(type.getType());
143                         if (typeIfScalar == null) {
144                                 isScalar = false;
145                         }
146
147                         innerConverter = type.getValueConverter();
148                         if (ToscaPropertyType.STRING.equals(type) && value.startsWith("/")) {
149                                 return innerConverter.convertToToscaValue(value, innerType, dataTypes);
150                         }
151                 }
152                 JsonElement jsonElement = null;
153                 try {
154                         StringReader reader = new StringReader(value);
155                         JsonReader jsonReader = new JsonReader(reader);
156                         jsonReader.setLenient(true);
157
158                         jsonElement = jsonParser.parse(jsonReader);
159
160                         if (value.equals("")) {
161                                 return value;
162                         }
163
164                         if (jsonElement.isJsonPrimitive() && isScalar) {
165                                 log.debug("It's well defined type. convert it");
166                                 ToscaValueConverter converter = type.getValueConverter();
167                                 return converter.convertToToscaValue(value, innerType, dataTypes);
168                         } else {
169                                 log.debug("It's data type or inputs in primitive type. convert as map");
170                                 Object convertedValue;
171                                 if (innerConverter != null && (ToscaPropertyType.MAP.equals(type) || ToscaPropertyType.LIST.equals(type))) {
172                                         convertedValue = innerConverter.convertToToscaValue(value, innerType, dataTypes);
173                                 } else {
174                                         if (isScalar) {
175                                                 // complex json for scalar type
176                                                 convertedValue = mapConverterInst.handleComplexJsonValue(jsonElement);
177                                         } else {
178                                                 if (innerConverter != null) {
179                                                         convertedValue = innerConverter.convertToToscaValue(value, innerType, dataTypes);
180                                                 } else {
181                                                         convertedValue = mapConverterInst.convertDataTypeToToscaObject(innerType, dataTypes, innerConverter, isScalar, jsonElement);
182                                                 }
183                                         }
184                                 }
185                                 return convertedValue;
186                         }
187
188                 } catch (JsonSyntaxException e) {
189                         log.debug("convertToToscaValue failed to parse json value :", e);
190                         return null;
191                 }
192
193         }
194
195         private String getDataTypeDefaultValue(String propertyName, DataTypeDefinition dataTypeDefinition) {
196                 
197                 String delaultValue = null;
198                 JsonObject asJsonObjectIn = new JsonObject();
199                 Map<String, PropertyDefinition> allParentsProps = new HashMap<>();
200                 while (dataTypeDefinition != null) {
201
202                         List<PropertyDefinition> currentParentsProps = dataTypeDefinition.getProperties();
203                         if (currentParentsProps != null) {
204                                 currentParentsProps.stream().forEach(p -> allParentsProps.put(p.getName(), p));
205                         }
206
207                         dataTypeDefinition = dataTypeDefinition.getDerivedFrom();
208                 }
209                 for (Entry<String, PropertyDefinition> entry : allParentsProps.entrySet()) {
210                         String propName = entry.getKey();
211                         PropertyDefinition propertyDefinition = entry.getValue();
212                         JsonElement elementValue = asJsonObjectIn.get(propName);
213                         if(elementValue == null && propertyDefinition.getDefaultValue() != null){
214                                 JsonReader jsonReader = new JsonReader(new StringReader(propertyDefinition.getDefaultValue()));
215                                 jsonReader.setLenient(true);
216                                 elementValue = jsonParser.parse(jsonReader);
217                                 asJsonObjectIn.add(propName, elementValue);
218                         }
219                 }
220                 if(!asJsonObjectIn.isJsonNull()){
221                         delaultValue = gson.toJson(asJsonObjectIn);
222                 }
223                 return delaultValue;
224         }
225
226 }