aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/java/org/onap/sdc/toscaparser/api/Property.java
blob: e20bd2f77fda329b746430626e200cc1584e69d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
/*-
 * ============LICENSE_START=======================================================
 * SDC
 * ================================================================================
 * Copyright (C) 2019 AT&T Intellectual Property. All rights reserved.
 * ================================================================================
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * ============LICENSE_END=========================================================
 */

package org.onap.sdc.toscaparser.api;

import com.google.common.collect.Lists;
import org.onap.sdc.toscaparser.api.elements.constraints.Constraint;
import org.onap.sdc.toscaparser.api.elements.constraints.Schema;
import org.onap.sdc.toscaparser.api.functions.Function;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import java.util.ArrayList;
import java.util.Collections;
import java.util.LinkedHashMap;
import java.util.List;
import java.util.Map;
import java.util.Objects;
import java.util.stream.Collectors;

public class Property {
    // TOSCA built-in Property type
    private static final Logger LOGGER = LoggerFactory.getLogger(Property.class.getName());

    private static final String TYPE = "type";
    private static final String REQUIRED = "required";
    private static final String DESCRIPTION = "description";
    private static final String DEFAULT = "default";
    private static final String CONSTRAINTS = "constraints";
    private static String entrySchema = "entry_schema";
    private static String dataType = "datatypes";

    private static final String[] PROPERTY_KEYS = {
            TYPE, REQUIRED, DESCRIPTION, DEFAULT, CONSTRAINTS};

    private static final String ENTRYTYPE = "type";
    private static final String ENTRYPROPERTIES = "properties";
    private static final String PATH_DELIMITER = "#";
    private static final String[] ENTRY_SCHEMA_KEYS = {
            ENTRYTYPE, ENTRYPROPERTIES};

    private String name;
    private Object value;
    private Schema schema;
    private LinkedHashMap<String, Object> customDef;

    public Property(Map.Entry<String, Object> propertyEntry) {
        name = propertyEntry.getKey();
        value = propertyEntry.getValue();
    }

    public Property(String propname,
                    Object propvalue,
                    LinkedHashMap<String, Object> propschemaDict,
                    LinkedHashMap<String, Object> propcustomDef) {

        name = propname;
        value = propvalue;
        customDef = propcustomDef;
        schema = new Schema(propname, propschemaDict);
    }

    public String getType() {
        return schema.getType();
    }

    public boolean isRequired() {
        return schema.isRequired();
    }

    public String getDescription() {
        return schema.getDescription();
    }

    public Object getDefault() {
        return schema.getDefault();
    }

    public ArrayList<Constraint> getConstraints() {
        return schema.getConstraints();
    }

    public LinkedHashMap<String, Object> getEntrySchema() {
        return schema.getEntrySchema();
    }


    public String getName() {
        return name;
    }

    public Object getValue() {
        return value;
    }

    // setter
    public Object setValue(Object vob) {
        value = vob;
        return value;
    }

    public void validate() {
        // Validate if not a reference property
        if (!Function.isFunction(value)) {
            if (getType().equals(Schema.STRING)) {
                value = value.toString();
            }
            value = DataEntity.validateDatatype(getType(), value,
                    getEntrySchema(),
                    customDef,
                    name);
            validateConstraints();
        }
    }

    private void validateConstraints() {
        if (getConstraints() != null) {
            for (Constraint constraint : getConstraints()) {
                constraint.validate(value);
            }
        }
    }

    @Override
    public String toString() {
        return "Property{"
                + "name='" + name + '\''
                + ", value=" + value
                + ", schema=" + schema
                + ", customDef=" + customDef
                + '}';
    }

    /**
     * Retrieves property value as list of strings if<br>
     * - the value is simple<br>
     * - the value is list of simple values<br>
     * - the provided path refers to a simple property inside a data type<br>
     *
     * @param propertyPath valid name of property for search.<br>
     *                     If a name refers to a simple field inside a datatype, the property name should be defined with # delimiter.<br>
     * @return List of property values. If not found, empty list will be returned.<br>
     * If property value is a list either of simple fields or of simple fields inside a datatype, all values from the list should be returned
     */
    public List<String> getLeafPropertyValue(String propertyPath) {
        List<String> propertyValueList = Collections.emptyList();

        if (LOGGER.isDebugEnabled()) {
            LOGGER.debug("getLeafPropertyValue=> A new request: propertyPath: {}, value: {}", propertyPath, getValue());
        }
        if (propertyPath == null || getValue() == null
                //if entry_schema disappears, it is datatype,
                // otherwise it is map of simple types - should be ignored
                || isValueMapOfSimpleTypes()) {
            LOGGER.error("It is a wrong request - ignoring! propertyPath: {}, value: {}", propertyPath, getValue());
            return propertyValueList;
        }
        String[] path = propertyPath.split(PATH_DELIMITER);

        if (Schema.isRequestedTypeSimple(getPropertyTypeByPath(path))) {
            //the internal property type in the path is either simple or list of simple types
            if (isValueInsideDataType()) {
                if (LOGGER.isDebugEnabled()) {
                    LOGGER.debug("The requested is an internal simple property inside of a data type");
                }
                //requested value is an internal simple property inside of a data type
                propertyValueList = getSimplePropertyValueForComplexType(path);
            } else {
                if (LOGGER.isDebugEnabled()) {
                    LOGGER.debug("The requested property has simple type or list of simple types");
                }
                //the requested property is simple type or list of simple types
                propertyValueList = getSimplePropertyValueForSimpleType();
            }
        }
        return propertyValueList;
    }

    private boolean isValueMapOfSimpleTypes() {
        if (getValue() instanceof Map && getEntrySchema() != null) {
            LOGGER.warn("This property value is a map of simple types");
            return true;
        }
        return false;
    }

    private boolean isValueInsideDataType() {
        //value is either a list of values for data type
        //or data type
        return (Schema.LIST.equals(getType()) && isDataTypeInEntrySchema())
                || (getEntrySchema() == null && getType().contains(dataType));
    }

    private Object getSimpleValueFromComplexObject(Object current, String[] path) {
        if (current == null) {
            return null;
        }
        int index = 0;

        if (path.length > index) {
            for (int i = index; i < path.length; i++) {
                if (current instanceof Map) {
                    current = ((Map<String, Object>) current).get(path[i]);
                } else if (current instanceof List) {
                    current = ((List) current).get(0);
                    i--;
                } else {
                    return null;
                }
            }
        }
        if (current != null) {
            return current;
        }
        return null;
    }

    private List<String> getSimplePropertyValueForSimpleType() {
        if (getValue() instanceof List || getValue() instanceof Map) {
            return getSimplePropertyValueForComplexType(null);
        }
        return Lists.newArrayList(String.valueOf(value));
    }

    private List<String> getSimplePropertyValueForComplexType(String[] path) {
        if (getValue() instanceof List) {
            return ((List<Object>) getValue()).stream()
                    .map(v -> {
                        if (path != null) {
                            return getSimpleValueFromComplexObject(v, path);
                        } else {
                            return v;
                        }
                    })
                    //it might be null when get_input can't be resolved
                    // e.g.:
                    // - get_input has two parameters: 1. list and 2. index in this list
                    //and list has no value
                    // - neither value no default is defined for get_input
                    .filter(Objects::nonNull)
                    .map(String::valueOf)
                    .collect(Collectors.toList());
        }
        //it is data type
        List<String> valueList = Lists.newArrayList();
        String valueString = String.valueOf(getSimpleValueFromComplexObject(getValue(), path));
        if (Objects.nonNull(valueString)) {
            valueList.add(valueString);
        }
        return valueList;
    }

    private String getPropertyTypeByPath(String[] path) {
        String propertyType = calculatePropertyType();

        if (path.length > 0 && !path[0].isEmpty()) {
            return getInternalPropertyType(propertyType, path, 0);
        }
        return propertyType;
    }

    private String calculatePropertyType() {
        String propertyType = getType();
        if (Schema.LIST.equals(propertyType)) {
            //if it is list, return entry schema type
            return (String) getEntrySchema().get(ENTRYTYPE);
        }
        return propertyType;
    }

    private String calculatePropertyType(LinkedHashMap<String, Object> property) {
        String type = (String) property.get(TYPE);
        if (Schema.LIST.equals(type)) {
            //it might be a data type
            return getEntrySchemaType(property);
        }
        return type;
    }

    private String getInternalPropertyType(String dataTypeName, String[] path, int index) {
        if (path.length > index) {
            LinkedHashMap<String, Object> complexProperty = (LinkedHashMap<String, Object>) customDef.get(dataTypeName);
            if (complexProperty != null) {
                LinkedHashMap<String, Object> dataTypeProperties = (LinkedHashMap<String, Object>) complexProperty.get(ENTRYPROPERTIES);
                return getPropertyTypeFromCustomDefDeeply(path, index, dataTypeProperties);
            }
        }
        //stop searching - seems as wrong flow: the path is finished but the value is not found yet
        return null;
    }

    private String getEntrySchemaType(LinkedHashMap<String, Object> property) {
        LinkedHashMap<String, Object> entrySchema = (LinkedHashMap<String, Object>) property.get(Property.entrySchema);
        if (entrySchema != null) {
            return (String) entrySchema.get(TYPE);
        }
        return null;
    }

    private String getPropertyTypeFromCustomDefDeeply(String[] path, int index, LinkedHashMap<String, Object> properties) {
        if (properties != null) {
            LinkedHashMap<String, Object> foundProperty = (LinkedHashMap<String, Object>) (properties).get(path[index]);
            if (foundProperty != null) {
                String propertyType = calculatePropertyType(foundProperty);
                if (propertyType == null || index == path.length - 1) {
                    return propertyType;
                }
                return getInternalPropertyType(propertyType, path, index + 1);
            }
        }
        return null;
    }

    private boolean isDataTypeInEntrySchema() {
        String entrySchemaType = (String) getEntrySchema().get(ENTRYTYPE);
        return entrySchemaType != null && entrySchemaType.contains(dataType);
    }


}

/*python

class Property(object):
    '''TOSCA built-in Property type.'''

    PROPERTY_KEYS = (
        TYPE, REQUIRED, DESCRIPTION, DEFAULT, CONSTRAINTS
    ) = (
        'type', 'required', 'description', 'default', 'constraints'
    )

    ENTRY_SCHEMA_KEYS = (
        ENTRYTYPE, ENTRYPROPERTIES
    ) = (
        'type', 'properties'
    )

    def __init__(self, property_name, value, schema_dict, custom_def=None):
        self.name = property_name
        self.value = value
        self.custom_def = custom_def
        self.schema = Schema(property_name, schema_dict)

    @property
    def type(self):
        return self.schema.type

    @property
    def required(self):
        return self.schema.required

    @property
    def description(self):
        return self.schema.description

    @property
    def default(self):
        return self.schema.default

    @property
    def constraints(self):
        return self.schema.constraints

    @property
    def entry_schema(self):
        return self.schema.entry_schema

    def validate(self):
        '''Validate if not a reference property.'''
        if not is_function(self.value):
            if self.type == Schema.STRING:
                self.value = str(self.value)
            self.value = DataEntity.validate_datatype(self.type, self.value,
                                                      self.entry_schema,
                                                      self.custom_def,
                                                      self.name)
            self._validate_constraints()

    def _validate_constraints(self):
        if self.constraints:
            for constraint in self.constraints:
                constraint.validate(self.value)
*/