Implement Attributes/Outputs BE (part 2)
[sdc.git] / catalog-be / src / main / java / org / openecomp / sdc / be / tosca / utils / OutputConverter.java
1 /*
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2021 Nordix Foundation
4  *  ================================================================================
5  *  Licensed under the Apache License, Version 2.0 (the "License");
6  *  you may not use this file except in compliance with the License.
7  *  You may obtain a copy of the License at
8  *
9  *        http://www.apache.org/licenses/LICENSE-2.0
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  *  SPDX-License-Identifier: Apache-2.0
17  *  ============LICENSE_END=========================================================
18  */
19
20 package org.openecomp.sdc.be.tosca.utils;
21
22 import java.util.Collections;
23 import java.util.HashMap;
24 import java.util.List;
25 import java.util.Map;
26 import org.apache.commons.collections.CollectionUtils;
27 import org.openecomp.sdc.be.model.DataTypeDefinition;
28 import org.openecomp.sdc.be.model.OutputDefinition;
29 import org.openecomp.sdc.be.tosca.AttributeConverter;
30 import org.openecomp.sdc.be.tosca.model.ToscaAttribute;
31 import org.openecomp.sdc.be.tosca.model.ToscaOutput;
32 import org.openecomp.sdc.be.tosca.model.ToscaProperty;
33 import org.springframework.beans.factory.ObjectProvider;
34 import org.springframework.beans.factory.annotation.Autowired;
35 import org.springframework.stereotype.Component;
36
37 @Component
38 public class OutputConverter {
39
40     private final ObjectProvider<AttributeConverter> attributeConverterProvider;
41
42     @Autowired
43     public OutputConverter(final ObjectProvider<AttributeConverter> attributeConverterProvider) {
44         this.attributeConverterProvider = attributeConverterProvider;
45     }
46
47     public Map<String, ToscaProperty> convert(final List<OutputDefinition> outputDefinitionList,
48                                               final Map<String, DataTypeDefinition> dataTypes) {
49         final AttributeConverter attributeConverter = this.attributeConverterProvider.getObject(dataTypes);
50         final Map<String, ToscaProperty> outputMap = new HashMap<>();
51         if (CollectionUtils.isEmpty(outputDefinitionList)) {
52             return Collections.emptyMap();
53         }
54         outputDefinitionList.forEach(outputDefinition -> {
55             final ToscaAttribute toscaAttribute = attributeConverter.convert(outputDefinition);
56             final ToscaProperty toscaProperty = new ToscaOutput(toscaAttribute);
57             outputMap.put(outputDefinition.getName(), toscaProperty);
58         });
59         return outputMap;
60     }
61 }
62
63
64