Add alternateId to legacy lcm-event
[cps.git] / cps-ncmp-service / src / main / java / org / onap / cps / ncmp / api / impl / utils / YangDataConverter.java
1 /*
2  *  ============LICENSE_START=======================================================
3  *  Copyright (C) 2022-2024 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  *
11  *  Unless required by applicable law or agreed to in writing, software
12  *  distributed under the License is distributed on an "AS IS" BASIS,
13  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  *  See the License for the specific language governing permissions and
15  *  limitations under the License.
16  *
17  *  SPDX-License-Identifier: Apache-2.0
18  *  ============LICENSE_END=========================================================
19  */
20
21 package org.onap.cps.ncmp.api.impl.utils;
22
23 import java.util.ArrayList;
24 import java.util.Collection;
25 import java.util.LinkedHashMap;
26 import java.util.List;
27 import java.util.Map;
28 import java.util.regex.Matcher;
29 import java.util.regex.Pattern;
30 import lombok.AccessLevel;
31 import lombok.NoArgsConstructor;
32 import lombok.extern.slf4j.Slf4j;
33 import org.onap.cps.ncmp.api.impl.inventory.CompositeState;
34 import org.onap.cps.ncmp.api.impl.inventory.CompositeStateBuilder;
35 import org.onap.cps.ncmp.api.impl.yangmodels.YangModelCmHandle;
36 import org.onap.cps.ncmp.api.models.NcmpServiceCmHandle;
37 import org.onap.cps.spi.model.DataNode;
38
39 @NoArgsConstructor(access = AccessLevel.PRIVATE)
40 @Slf4j
41 public class YangDataConverter {
42
43     private static final Pattern cmHandleIdInXpathPattern = Pattern.compile("\\[@id='(.*?)']");
44
45     /**
46      * This method convert yang model cm handle to ncmp service cm handle.
47      * @param yangModelCmHandle the yang model of the cm handle
48      * @return ncmp service cm handle
49      */
50     public static NcmpServiceCmHandle convertYangModelCmHandleToNcmpServiceCmHandle(
51             final YangModelCmHandle yangModelCmHandle) {
52         final NcmpServiceCmHandle ncmpServiceCmHandle = new NcmpServiceCmHandle();
53         final List<YangModelCmHandle.Property> dmiProperties = yangModelCmHandle.getDmiProperties();
54         final List<YangModelCmHandle.Property> publicProperties = yangModelCmHandle.getPublicProperties();
55         ncmpServiceCmHandle.setCmHandleId(yangModelCmHandle.getId());
56         ncmpServiceCmHandle.setCompositeState(yangModelCmHandle.getCompositeState());
57         ncmpServiceCmHandle.setAlternateId(yangModelCmHandle.getAlternateId());
58         setDmiProperties(dmiProperties, ncmpServiceCmHandle);
59         setPublicProperties(publicProperties, ncmpServiceCmHandle);
60         return ncmpServiceCmHandle;
61     }
62
63     /**
64      * This method convert yang model cm handle properties to simple map.
65      * @param properties the yang model cm handle properties
66      * @param propertiesMap the String, String map for the results
67      */
68     public static void asPropertiesMap(final List<YangModelCmHandle.Property> properties,
69                                        final Map<String, String> propertiesMap) {
70         for (final YangModelCmHandle.Property property : properties) {
71             propertiesMap.put(property.getName(), property.getValue());
72         }
73     }
74
75     /**
76      * This method convert cm handle data node to yang model cm handle.
77      * @param cmHandleDataNode the datanode of the cm handle
78      * @param cmHandleId the id of the cm handle
79      * @return yang model cm handle
80      */
81     public static YangModelCmHandle convertCmHandleToYangModel(final DataNode cmHandleDataNode,
82                                                                final String cmHandleId) {
83         final NcmpServiceCmHandle ncmpServiceCmHandle = new NcmpServiceCmHandle();
84         ncmpServiceCmHandle.setCmHandleId(cmHandleId);
85         populateCmHandleDetails(cmHandleDataNode, ncmpServiceCmHandle);
86         return YangModelCmHandle.toYangModelCmHandle(
87                 (String) cmHandleDataNode.getLeaves().get("dmi-service-name"),
88                 (String) cmHandleDataNode.getLeaves().get("dmi-data-service-name"),
89                 (String) cmHandleDataNode.getLeaves().get("dmi-model-service-name"),
90                 ncmpServiceCmHandle,
91                 (String) cmHandleDataNode.getLeaves().get("module-set-tag"),
92                 (String) cmHandleDataNode.getLeaves().get("alternate-id")
93         );
94     }
95
96     /**
97      * This method convert cm handle data nodes to yang model cm handles.
98      * @param cmHandleDataNodes the datanode of the cm handle
99      * @return yang model cm handles
100      */
101     public static Collection<YangModelCmHandle> convertDataNodesToYangModelCmHandles(
102             final Collection<DataNode> cmHandleDataNodes) {
103         final Collection<YangModelCmHandle> yangModelCmHandles = new ArrayList<>(cmHandleDataNodes.size());
104         cmHandleDataNodes.forEach(dataNode -> {
105             final String cmHandleId = extractCmHandleIdFromXpath(dataNode.getXpath());
106             yangModelCmHandles.add(convertCmHandleToYangModel(dataNode, cmHandleId));
107         });
108         return yangModelCmHandles;
109     }
110
111     /**
112      * This method extract cm handle id from xpath of data node.
113      * @param xpath for data node of the cm handle
114      * @return cm handle Id
115      */
116     public static String extractCmHandleIdFromXpath(final String xpath) {
117         final Matcher matcher = cmHandleIdInXpathPattern.matcher(xpath);
118         matcher.find();
119         return matcher.group(1);
120     }
121
122
123     private static void populateCmHandleDetails(final DataNode cmHandleDataNode,
124                                                 final NcmpServiceCmHandle ncmpServiceCmHandle) {
125         final Map<String, String> dmiProperties = new LinkedHashMap<>();
126         final Map<String, String> publicProperties = new LinkedHashMap<>();
127         final CompositeStateBuilder compositeStateBuilder = new CompositeStateBuilder();
128         CompositeState compositeState = compositeStateBuilder.build();
129         for (final DataNode childDataNode: cmHandleDataNode.getChildDataNodes()) {
130             if (childDataNode.getXpath().contains("/additional-properties[@name=")) {
131                 addProperty(childDataNode, dmiProperties);
132             } else if (childDataNode.getXpath().contains("/public-properties[@name=")) {
133                 addProperty(childDataNode, publicProperties);
134             } else if (childDataNode.getXpath().endsWith("/state")) {
135                 compositeState = compositeStateBuilder.fromDataNode(childDataNode).build();
136             }
137         }
138         ncmpServiceCmHandle.setDmiProperties(dmiProperties);
139         ncmpServiceCmHandle.setPublicProperties(publicProperties);
140         ncmpServiceCmHandle.setCompositeState(compositeState);
141     }
142
143     private static void addProperty(final DataNode propertyDataNode, final Map<String, String> propertiesAsMap) {
144         propertiesAsMap.put(String.valueOf(propertyDataNode.getLeaves().get("name")),
145                 String.valueOf(propertyDataNode.getLeaves().get("value")));
146     }
147
148     private static void setDmiProperties(final List<YangModelCmHandle.Property> dmiProperties,
149                                          final NcmpServiceCmHandle ncmpServiceCmHandle) {
150         final Map<String, String> dmiPropertiesMap = new LinkedHashMap<>(dmiProperties.size());
151         asPropertiesMap(dmiProperties, dmiPropertiesMap);
152         ncmpServiceCmHandle.setDmiProperties(dmiPropertiesMap);
153     }
154
155     private static void setPublicProperties(final List<YangModelCmHandle.Property> publicProperties,
156                                             final NcmpServiceCmHandle ncmpServiceCmHandle) {
157         final Map<String, String> publicPropertiesMap = new LinkedHashMap<>();
158         asPropertiesMap(publicProperties, publicPropertiesMap);
159         ncmpServiceCmHandle.setPublicProperties(publicPropertiesMap);
160     }
161 }