Merge "[1707-OS] Updated license text according to the"
[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.openecomp.sdc.be.datatypes.elements.SchemaDefinition;
29 import org.openecomp.sdc.be.model.Component;
30 import org.openecomp.sdc.be.model.DataTypeDefinition;
31 import org.openecomp.sdc.be.model.PropertyDefinition;
32 import org.openecomp.sdc.be.model.Resource;
33 import org.openecomp.sdc.be.model.tosca.ToscaPropertyType;
34 import org.openecomp.sdc.be.model.tosca.converters.ToscaMapValueConverter;
35 import org.openecomp.sdc.be.model.tosca.converters.ToscaValueConverter;
36 import org.openecomp.sdc.be.tosca.model.EntrySchema;
37 import org.openecomp.sdc.be.tosca.model.ToscaNodeType;
38 import org.openecomp.sdc.be.tosca.model.ToscaProperty;
39 import org.slf4j.Logger;
40 import org.slf4j.LoggerFactory;
41
42 import com.google.gson.JsonElement;
43 import com.google.gson.JsonParser;
44 import com.google.gson.JsonSyntaxException;
45 import com.google.gson.stream.JsonReader;
46
47 import fj.data.Either;
48
49 public class PropertyConvertor {
50         private static PropertyConvertor instance;
51         private JsonParser jsonParser = new JsonParser();
52         private static Logger log = LoggerFactory.getLogger(PropertyConvertor.class.getName());
53
54         protected PropertyConvertor() {
55
56         }
57
58         public static synchronized PropertyConvertor getInstance() {
59                 if (instance == null) {
60                         instance = new PropertyConvertor();
61                 }
62                 return instance;
63         }
64
65         public Either<ToscaNodeType, ToscaError> convertProperties(Component component, ToscaNodeType toscaNodeType, Map<String, DataTypeDefinition> dataTypes) {
66
67                 if (component instanceof Resource) {
68                         Resource resource = (Resource) component;
69                         List<PropertyDefinition> props = resource.getProperties();
70                         if (props != null) {
71                                 Map<String, ToscaProperty> properties = new HashMap<>();
72
73                                 // take only the properties of this resource
74                                 props.stream().filter(p -> p.getOwnerId() == null || p.getOwnerId().equals(component.getUniqueId())).forEach(property -> {
75                                         ToscaProperty prop = convertProperty(dataTypes, property, false);
76
77                                         properties.put(property.getName(), prop);
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.debug("try to convert property {} from type {} with default value {}", property.getName(), property.getType(), property.getDefaultValue());
100                 prop.setDefaultp(convertToToscaObject(property.getType(), property.getDefaultValue(), innerType, dataTypes));
101                 prop.setType(property.getType());
102                 prop.setDescription(property.getDescription());
103                 if (isCapabiltyProperty) {
104                         prop.setStatus(property.getStatus());
105                         prop.setRequired(property.isRequired());
106                 }
107                 return prop;
108         }
109
110         public Object convertToToscaObject(String propertyType, String value, String innerType, Map<String, DataTypeDefinition> dataTypes) {
111                 log.debug("try to convert propertyType {} , value {}, innerType {}", propertyType, value, innerType);
112                 if (value == null) {
113                         return value;
114                 }
115
116                 ToscaMapValueConverter mapConverterInst = ToscaMapValueConverter.getInstance();
117                 ToscaValueConverter innerConverter = null;
118                 Boolean isScalar = true;
119
120                 ToscaPropertyType type = ToscaPropertyType.isValidType(propertyType);
121                 if (type == null) {
122                         log.debug("isn't prederfined type, get from all data types");
123                         DataTypeDefinition dataTypeDefinition = dataTypes.get(propertyType);
124                         if (innerType == null) {
125                                 innerType = propertyType;
126                         }
127
128                         if ((type = mapConverterInst.isScalarType(dataTypeDefinition)) != null) {
129                                 log.debug("This is scalar type. get suitable converter for type {}", type);
130                                 innerConverter = type.getValueConverter();
131                         } else {
132                                 isScalar = false;
133                         }
134                 } else {
135                         ToscaPropertyType typeIfScalar = ToscaPropertyType.getTypeIfScalar(type.getType());
136                         if (typeIfScalar == null) {
137                                 isScalar = false;
138                         }
139
140                         innerConverter = type.getValueConverter();
141                         if (ToscaPropertyType.STRING.equals(type) && value.startsWith("/")) {
142                                 return innerConverter.convertToToscaValue(value, innerType, dataTypes);
143                         }
144                 }
145                 JsonElement jsonElement = null;
146                 try {
147                         StringReader reader = new StringReader(value);
148                         JsonReader jsonReader = new JsonReader(reader);
149                         jsonReader.setLenient(true);
150
151                         jsonElement = jsonParser.parse(jsonReader);
152
153                         if (value.equals("")) {
154                                 return value;
155                         }
156
157                         if (jsonElement.isJsonPrimitive() && isScalar) {
158                                 log.debug("It's well defined type. convert it");
159                                 ToscaValueConverter converter = type.getValueConverter();
160                                 return converter.convertToToscaValue(value, innerType, dataTypes);
161                         } else {
162                                 log.debug("It's data type or inputs in primitive type. convert as map");
163                                 Object convertedValue;
164                                 if (innerConverter != null && (ToscaPropertyType.MAP.equals(type) || ToscaPropertyType.LIST.equals(type))) {
165                                         convertedValue = innerConverter.convertToToscaValue(value, innerType, dataTypes);
166                                 } else {
167                                         if (isScalar) {
168                                                 // complex json for scalar type
169                                                 convertedValue = mapConverterInst.handleComplexJsonValue(jsonElement);
170                                         } else {
171                                                 if (innerConverter != null) {
172                                                         convertedValue = innerConverter.convertToToscaValue(value, innerType, dataTypes);
173                                                 } else {
174                                                         convertedValue = mapConverterInst.convertDataTypeToToscaObject(innerType, dataTypes, innerConverter, isScalar, jsonElement);
175                                                 }
176                                         }
177                                 }
178                                 return convertedValue;
179                         }
180
181                 } catch (JsonSyntaxException e) {
182                         log.debug("convertToToscaValue failed to parse json value :", e);
183                         return null;
184                 }
185
186         }
187
188 }