aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-be/src/main/java/org/openecomp/sdc/be/tosca/utils/ForwardingPathToscaUtil.java
blob: f72673de398262f651826b46e1a2195602c31330 (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
/*-
 * ============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.openecomp.sdc.be.tosca.utils;

import fj.data.Either;
import org.apache.commons.collections.MapUtils;
import org.openecomp.sdc.be.datatypes.elements.ForwardingPathDataDefinition;
import org.openecomp.sdc.be.datatypes.elements.ForwardingPathElementDataDefinition;
import org.openecomp.sdc.be.model.CapabilityDefinition;
import org.openecomp.sdc.be.model.Component;
import org.openecomp.sdc.be.model.ComponentInstance;
import org.openecomp.sdc.be.model.Service;
import org.openecomp.sdc.be.model.jsonjanusgraph.operations.ToscaOperationFacade;
import org.openecomp.sdc.be.tosca.CapabilityRequirementConverter;
import org.openecomp.sdc.be.tosca.model.ToscaNodeTemplate;
import org.openecomp.sdc.be.tosca.model.ToscaTemplateRequirement;

import java.util.*;
import java.util.Collection;

/**
 * @author KATYR
 * @since November 19, 2017
 */

public class ForwardingPathToscaUtil {
    public static final String FORWARDS_TO_TOSCA_NAME =
            "org.openecomp.relationships.ForwardsTo";
    public static final String PROTOCOL = "protocol";
    public static final String PORTS_RANGE = "target_range";
    public static final String FORWARDER = "forwarder";

    public static void addForwardingPaths(Service service, Map<String, ToscaNodeTemplate>
            nodeTemplates, CapabilityRequirementConverter capabiltyRequirementConvertor, Map<String, Component> originComponents, ToscaOperationFacade toscaOperationFacade) {
        for (String forwardingPathName : service.getForwardingPaths().keySet()) {
            ToscaNodeTemplate forwardingPathNodeTemplate =
                    new ToscaNodeTemplate();
            final ForwardingPathDataDefinition path =
                    service.getForwardingPaths().get(forwardingPathName);
            forwardingPathNodeTemplate.setType(path.getToscaResourceName());

            if (Objects.nonNull(path.getDescription())) {
                forwardingPathNodeTemplate.setDescription(path
                        .getDescription());
            }
            Map<String, Object> props = new HashMap<>();
            if (Objects.nonNull(path.getDestinationPortNumber())) {
                props.put(PORTS_RANGE, Collections.singletonList(path.getDestinationPortNumber()));
            }
            if (Objects.nonNull(path.getProtocol())) {
                props.put(PROTOCOL, path.getProtocol());
            }
            if (MapUtils.isNotEmpty(props)) {
                forwardingPathNodeTemplate.setProperties(props);
            }

            final List<ForwardingPathElementDataDefinition> pathElements =
                    path.getPathElements()
                            .getListToscaDataDefinition();
            forwardingPathNodeTemplate.setRequirements(convertPathElementsToRequirements(pathElements,
                    service, capabiltyRequirementConvertor, originComponents, toscaOperationFacade));

            nodeTemplates.put(path.getName(), forwardingPathNodeTemplate);
        }

    }

    private static List<Map<String, ToscaTemplateRequirement>> convertPathElementsToRequirements(
            List<ForwardingPathElementDataDefinition> pathElements, Service service, CapabilityRequirementConverter capabiltyRequirementConvertor, Map<String, Component> originComponents, ToscaOperationFacade toscaOperationFacade) {
        List<Map<String, ToscaTemplateRequirement>> toscaRequirements = new ArrayList<>();
        for (int i = 0; i <= pathElements.size() -1 ; i++) {
                final ForwardingPathElementDataDefinition element = pathElements.get(i);
                toscaRequirements.add(handleSingleReq(fetchCPName(service, element.getFromNode(), element.getFromCP(), capabiltyRequirementConvertor, originComponents, toscaOperationFacade), fetchNodeName(service, element.getFromNode())));
                if ( i == pathElements.size() -1) {
                    toscaRequirements.add(handleSingleReq(fetchCPName(service, element.getToNode(), element.getToCP(), capabiltyRequirementConvertor, originComponents, toscaOperationFacade), fetchNodeName(service, element
                            .getToNode())));
                }
       }
        return toscaRequirements;

    }

    private static String fetchNodeName(Service service, String nodeId) {
        if (service.getComponentInstanceByName(nodeId).isPresent()) {
            return service.getComponentInstanceByName(nodeId).get().getName();
        } else {
            return "";
        }
    }


    private static Map<String, ToscaTemplateRequirement> handleSingleReq(
            String fromCP, String fromNode) {
        Map<String, ToscaTemplateRequirement> toscaReqMap = new HashMap<>();
        ToscaTemplateRequirement firstReq = new ToscaTemplateRequirement();
        firstReq.setRelationship(FORWARDS_TO_TOSCA_NAME); //todo
        firstReq.setCapability(fromCP);
        firstReq.setNode(fromNode);
        toscaReqMap.put(FORWARDER, firstReq);

        return toscaReqMap;
    }

    /**
     * @todo handle errors.
     */
    private static String fetchCPName(Service service, String nodeID, String cpName, CapabilityRequirementConverter capabiltyRequirementConvertor, Map<String, Component> originComponents, ToscaOperationFacade toscaOperationFacade) {
        Optional<ComponentInstance> componentInstance = service.getComponentInstanceByName(nodeID);
        ComponentInstance componentInstanceVal = componentInstance.get();
        String name = componentInstanceVal.getNormalizedName();
        Component component = originComponents.get(componentInstanceVal.getComponentUid());
        if(componentInstanceVal.getIsProxy()){
            component = originComponents.get(componentInstanceVal.getSourceModelUid());
            if (component == null) {
                component = toscaOperationFacade.getToscaFullElement(componentInstanceVal.getSourceModelUid()).left().value();
            }

        }
        CapabilityDefinition capability = componentInstanceVal.getCapabilities().values().stream().flatMap(Collection::stream)
                .filter(capabilityDefinition -> capabilityDefinition.getName().equals(cpName)).findAny().get();
        List<String> path = capability.getPath();
        List<String> reducedPath = new ArrayList<>(path);
        reducedPath.remove(reducedPath.size() - 1);
        Either<String, Boolean> stringBooleanEither = capabiltyRequirementConvertor.buildSubstitutedName(originComponents, component, reducedPath, capability.getName(), null);
        return name + "." + stringBooleanEither.left().value();
    }
}