3954142976787cc100f6aa08335691a099b1a501
[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.Collection;
24 import java.util.LinkedHashMap;
25 import java.util.List;
26 import java.util.Map;
27 import java.util.regex.Matcher;
28 import java.util.regex.Pattern;
29 import java.util.stream.Collectors;
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.setModuleSetTag(yangModelCmHandle.getModuleSetTag());
58         ncmpServiceCmHandle.setAlternateId(yangModelCmHandle.getAlternateId());
59         setDmiProperties(dmiProperties, ncmpServiceCmHandle);
60         setPublicProperties(publicProperties, ncmpServiceCmHandle);
61         return ncmpServiceCmHandle;
62     }
63
64     /**
65      * This method convert yang model cm handle properties to simple map.
66      * @param properties the yang model cm handle properties
67      * @param propertiesMap the String, String map for the results
68      */
69     public static void asPropertiesMap(final List<YangModelCmHandle.Property> properties,
70                                        final Map<String, String> propertiesMap) {
71         for (final YangModelCmHandle.Property property : properties) {
72             propertiesMap.put(property.getName(), property.getValue());
73         }
74     }
75
76     /**
77      * This method convert cm handle data node to yang model cm handle.
78      * @param cmHandleDataNode the datanode of the cm handle
79      * @return yang model cm handle
80      */
81     public static YangModelCmHandle convertCmHandleToYangModel(final DataNode cmHandleDataNode) {
82         final NcmpServiceCmHandle ncmpServiceCmHandle = new NcmpServiceCmHandle();
83         final String cmHandleId = cmHandleDataNode.getLeaves().get("id").toString();
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         return cmHandleDataNodes.stream().map(YangDataConverter::convertCmHandleToYangModel)
104                 .collect(Collectors.toList());
105     }
106
107     /**
108      * This method extract cm handle id from xpath of data node.
109      * @param xpath for data node of the cm handle
110      * @return cm handle Id
111      */
112     public static String extractCmHandleIdFromXpath(final String xpath) {
113         final Matcher matcher = cmHandleIdInXpathPattern.matcher(xpath);
114         matcher.find();
115         return matcher.group(1);
116     }
117
118
119     private static void populateCmHandleDetails(final DataNode cmHandleDataNode,
120                                                 final NcmpServiceCmHandle ncmpServiceCmHandle) {
121         final Map<String, String> dmiProperties = new LinkedHashMap<>();
122         final Map<String, String> publicProperties = new LinkedHashMap<>();
123         final CompositeStateBuilder compositeStateBuilder = new CompositeStateBuilder();
124         CompositeState compositeState = compositeStateBuilder.build();
125         for (final DataNode childDataNode: cmHandleDataNode.getChildDataNodes()) {
126             if (childDataNode.getXpath().contains("/additional-properties[@name=")) {
127                 addProperty(childDataNode, dmiProperties);
128             } else if (childDataNode.getXpath().contains("/public-properties[@name=")) {
129                 addProperty(childDataNode, publicProperties);
130             } else if (childDataNode.getXpath().endsWith("/state")) {
131                 compositeState = compositeStateBuilder.fromDataNode(childDataNode).build();
132             }
133         }
134         ncmpServiceCmHandle.setDmiProperties(dmiProperties);
135         ncmpServiceCmHandle.setPublicProperties(publicProperties);
136         ncmpServiceCmHandle.setCompositeState(compositeState);
137     }
138
139     private static void addProperty(final DataNode propertyDataNode, final Map<String, String> propertiesAsMap) {
140         propertiesAsMap.put(String.valueOf(propertyDataNode.getLeaves().get("name")),
141                 String.valueOf(propertyDataNode.getLeaves().get("value")));
142     }
143
144     private static void setDmiProperties(final List<YangModelCmHandle.Property> dmiProperties,
145                                          final NcmpServiceCmHandle ncmpServiceCmHandle) {
146         final Map<String, String> dmiPropertiesMap = new LinkedHashMap<>(dmiProperties.size());
147         asPropertiesMap(dmiProperties, dmiPropertiesMap);
148         ncmpServiceCmHandle.setDmiProperties(dmiPropertiesMap);
149     }
150
151     private static void setPublicProperties(final List<YangModelCmHandle.Property> publicProperties,
152                                             final NcmpServiceCmHandle ncmpServiceCmHandle) {
153         final Map<String, String> publicPropertiesMap = new LinkedHashMap<>();
154         asPropertiesMap(publicProperties, publicPropertiesMap);
155         ncmpServiceCmHandle.setPublicProperties(publicPropertiesMap);
156     }
157 }