Merge "Configuration section to Read the Docs"
[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
28 import org.apache.commons.lang3.StringUtils;
29 import org.openecomp.sdc.be.datatypes.elements.SchemaDefinition;
30 import org.openecomp.sdc.be.model.Component;
31 import org.openecomp.sdc.be.model.DataTypeDefinition;
32 import org.openecomp.sdc.be.model.PropertyDefinition;
33 import org.openecomp.sdc.be.model.Resource;
34 import org.openecomp.sdc.be.model.tosca.ToscaPropertyType;
35 import org.openecomp.sdc.be.model.tosca.converters.DataTypePropertyConverter;
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.JsonParser;
47 import com.google.gson.stream.JsonReader;
48
49 import fj.data.Either;
50
51 public class PropertyConvertor {
52         private static PropertyConvertor instance;
53         private JsonParser jsonParser = new JsonParser();
54         private static Logger log = LoggerFactory.getLogger(PropertyConvertor.class.getName());
55         Gson gson = new Gson();
56         protected PropertyConvertor() {
57
58         }
59
60         public static synchronized PropertyConvertor getInstance() {
61                 if (instance == null) {
62                         instance = new PropertyConvertor();
63                 }
64                 return instance;
65         }
66
67         public Either<ToscaNodeType, ToscaError> convertProperties(Component component, ToscaNodeType toscaNodeType, Map<String, DataTypeDefinition> dataTypes) {
68
69                 if (component instanceof Resource) {
70                         Resource resource = (Resource) component;
71                         List<PropertyDefinition> props = resource.getProperties();
72                         if (props != null) {
73                                 Map<String, ToscaProperty> properties = new HashMap<>();
74
75                                 // take only the properties of this resource
76                                 props.stream().filter(p -> p.getOwnerId() == null || p.getOwnerId().equals(component.getUniqueId())).forEach(property -> {
77                     properties.put(property.getName(), convertProperty(dataTypes, property, false));
78                                 });
79                                 if (!properties.isEmpty()) {
80                                         toscaNodeType.setProperties(properties);
81                                 }
82                         }
83                 }
84                 return Either.left(toscaNodeType);
85         }
86
87         public ToscaProperty convertProperty(Map<String, DataTypeDefinition> dataTypes, PropertyDefinition property, boolean isCapabiltyProperty) {
88                 ToscaProperty prop = new ToscaProperty();
89
90                 String innerType = null;
91                 SchemaDefinition schema = property.getSchema();
92                 if (schema != null && schema.getProperty() != null && schema.getProperty().getType() != null && !schema.getProperty().getType().isEmpty()) {
93                         innerType = schema.getProperty().getType();
94                         EntrySchema eschema = new EntrySchema();
95                         eschema.setType(innerType);
96                         eschema.setDescription(schema.getProperty().getDescription());
97                         prop.setEntry_schema(eschema);
98                 }
99                 log.trace("try to convert property {} from type {} with default value [{}]", property.getName(), property.getType(), property.getDefaultValue());
100         Object convertedObj = convertToToscaObject(property.getType(), property.getDefaultValue(), innerType, dataTypes);
101         if (convertedObj != null) {
102             prop.setDefaultp(convertedObj);
103         }
104                 prop.setType(property.getType());
105         prop.setDescription(property.getDescription());
106         if (isCapabiltyProperty) {
107             prop.setStatus(property.getStatus());
108             prop.setRequired(property.isRequired());
109         }
110         return prop;
111
112         }
113
114         public Object convertToToscaObject(String propertyType, String value, String innerType, Map<String, DataTypeDefinition> dataTypes) {
115                 log.trace("try to convert propertyType {} , value [{}], innerType {}", propertyType, value, innerType);
116                 if (StringUtils.isEmpty(value)) {
117                         value = DataTypePropertyConverter.getInstance().getDataTypePropertiesDefaultValuesRec(propertyType, dataTypes);
118                         if(StringUtils.isEmpty(value)){
119                                 return null;
120                         }
121                 }
122                 try {
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.trace("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.trace("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                 
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.trace("It's well defined type. convert it");
166                                 ToscaValueConverter converter = type.getValueConverter();
167                                 return converter.convertToToscaValue(value, innerType, dataTypes);
168                         } else {
169                                 log.trace("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 (Exception e) {
189                         log.debug("convertToToscaValue failed to parse json value :", e);
190                         return null;
191                 }
192
193         }
194
195 }