32cfb89418c91c5fba20d5da8e769d28cd007a6b
[sdc.git] /
1 /*
2  * Copyright © 2016-2017 European Support Limited
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 package org.openecomp.core.impl;
18
19 import org.apache.commons.collections4.CollectionUtils;
20 import org.openecomp.core.converter.errors.CreateToscaObjectErrorBuilder;
21 import org.openecomp.sdc.common.errors.CoreException;
22 import org.openecomp.sdc.common.utils.CommonUtil;
23
24 import java.util.HashSet;
25 import java.util.Map;
26 import java.util.Objects;
27 import java.util.Optional;
28 import java.util.Set;
29 import java.util.stream.Collectors;
30 import java.util.stream.Stream;
31
32 public class ToscaConverterUtil {
33
34   private static final String DEFAULT = "default";
35   private static final String DEFAULT_CAPITAL = "Default";
36   private static final Set<String> DEFAULT_VALUE_KEYS;
37
38   static {
39     DEFAULT_VALUE_KEYS =
40         Stream.of(DEFAULT, DEFAULT_CAPITAL).collect(Collectors.toSet());
41   }
42
43   private ToscaConverterUtil() {
44     // static utility methods only, prevent instantiation
45   }
46
47   static <T> Optional<T> createObjectFromClass(String objectId,
48                                                       Object objectCandidate,
49                                                       Class<T> classToCreate) {
50     try {
51       return CommonUtil.createObjectUsingSetters(objectCandidate, classToCreate);
52     } catch (Exception ex) {
53       throw new CoreException(
54           new CreateToscaObjectErrorBuilder(classToCreate.getSimpleName(), objectId)
55               .build(), ex);
56     }
57   }
58
59
60   static Optional<Object> getDefaultValue(Object entryValue,
61                                        Object objectToAssignDefaultValue) {
62     if (!(entryValue instanceof Map)
63         || Objects.isNull(objectToAssignDefaultValue)) {
64       return Optional.empty();
65     }
66
67     return Optional.ofNullable(getDefaultParameterValue((Map<String, Object>) entryValue));
68   }
69
70   private static Object getDefaultParameterValue(Map<String, Object> entryValue) {
71     Object defaultValue = null;
72     Set<String> keys = new HashSet<>(entryValue.keySet());
73     keys.retainAll(DEFAULT_VALUE_KEYS);
74
75     if (CollectionUtils.isNotEmpty(keys)) {
76       defaultValue = entryValue.get(keys.iterator().next());
77     }
78
79     return defaultValue;
80   }
81 }