aboutsummaryrefslogtreecommitdiffstats
path: root/cps-ncmp-service/src/main/java/org/onap/cps/ncmp/api/impl/NetworkCmProxyDataServicePropertyHandler.java
diff options
context:
space:
mode:
Diffstat (limited to 'cps-ncmp-service/src/main/java/org/onap/cps/ncmp/api/impl/NetworkCmProxyDataServicePropertyHandler.java')
-rw-r--r--cps-ncmp-service/src/main/java/org/onap/cps/ncmp/api/impl/NetworkCmProxyDataServicePropertyHandler.java171
1 files changed, 171 insertions, 0 deletions
diff --git a/cps-ncmp-service/src/main/java/org/onap/cps/ncmp/api/impl/NetworkCmProxyDataServicePropertyHandler.java b/cps-ncmp-service/src/main/java/org/onap/cps/ncmp/api/impl/NetworkCmProxyDataServicePropertyHandler.java
new file mode 100644
index 000000000..359921349
--- /dev/null
+++ b/cps-ncmp-service/src/main/java/org/onap/cps/ncmp/api/impl/NetworkCmProxyDataServicePropertyHandler.java
@@ -0,0 +1,171 @@
+/*
+ * ============LICENSE_START=======================================================
+ * Copyright (C) 2022 Nordix Foundation
+ * ================================================================================
+ * 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.
+ *
+ * SPDX-License-Identifier: Apache-2.0
+ * ============LICENSE_END=========================================================
+ */
+
+package org.onap.cps.ncmp.api.impl;
+
+import static org.onap.cps.ncmp.api.impl.NetworkCmProxyDataServicePropertyHandler.PropertyType.DMI_PROPERTY;
+import static org.onap.cps.ncmp.api.impl.NetworkCmProxyDataServicePropertyHandler.PropertyType.PUBLIC_PROPERTY;
+import static org.onap.cps.ncmp.api.impl.constants.DmiRegistryConstants.NCMP_DATASPACE_NAME;
+import static org.onap.cps.ncmp.api.impl.constants.DmiRegistryConstants.NCMP_DMI_REGISTRY_ANCHOR;
+import static org.onap.cps.ncmp.api.impl.constants.DmiRegistryConstants.NCMP_DMI_REGISTRY_PARENT;
+import static org.onap.cps.ncmp.api.impl.constants.DmiRegistryConstants.NO_TIMESTAMP;
+
+import com.google.common.collect.ImmutableMap;
+import java.util.Collection;
+import java.util.HashSet;
+import java.util.LinkedHashMap;
+import java.util.Map;
+import java.util.regex.Matcher;
+import java.util.regex.Pattern;
+import lombok.RequiredArgsConstructor;
+import lombok.extern.slf4j.Slf4j;
+import org.onap.cps.api.CpsDataService;
+import org.onap.cps.ncmp.api.models.CmHandle;
+import org.onap.cps.spi.FetchDescendantsOption;
+import org.onap.cps.spi.exceptions.DataNodeNotFoundException;
+import org.onap.cps.spi.model.DataNode;
+import org.onap.cps.spi.model.DataNodeBuilder;
+import org.springframework.stereotype.Service;
+
+@Slf4j
+@Service
+@RequiredArgsConstructor
+//Accepting the security hotspot as the string checked is generated from inside code and not user input.
+@SuppressWarnings("squid:S5852")
+public class NetworkCmProxyDataServicePropertyHandler {
+
+ private static final String CM_HANDLE_XPATH_TEMPLATE = NCMP_DMI_REGISTRY_PARENT + "/cm-handles[@id='%s']";
+
+ private final CpsDataService cpsDataService;
+
+ /**
+ * Iterates over incoming cmHandles and update the dataNodes based on the updated attributes.
+ * The attributes which are not passed will remain as is.
+ *
+ * @param cmHandles collection of cmHandles
+ */
+ public void updateCmHandleProperties(final Collection<CmHandle> cmHandles) throws DataNodeNotFoundException {
+ for (final CmHandle cmHandle : cmHandles) {
+ try {
+ final String cmHandleXpath = String.format(CM_HANDLE_XPATH_TEMPLATE, cmHandle.getCmHandleID());
+ final DataNode existingCmHandleDataNode =
+ cpsDataService.getDataNode(NCMP_DATASPACE_NAME, NCMP_DMI_REGISTRY_ANCHOR, cmHandleXpath,
+ FetchDescendantsOption.INCLUDE_ALL_DESCENDANTS);
+ processUpdates(existingCmHandleDataNode, cmHandle);
+ } catch (final DataNodeNotFoundException e) {
+ log.error("Unable to find dataNode for cmHandleId : {} , caused by : {}", cmHandle.getCmHandleID(),
+ e.getMessage());
+ throw e;
+ }
+ }
+ }
+
+ private void processUpdates(final DataNode existingCmHandleDataNode, final CmHandle incomingCmHandle) {
+ if (!incomingCmHandle.getPublicProperties().isEmpty()) {
+ updateProperties(existingCmHandleDataNode, PUBLIC_PROPERTY, incomingCmHandle.getPublicProperties());
+ }
+ if (!incomingCmHandle.getDmiProperties().isEmpty()) {
+ updateProperties(existingCmHandleDataNode, DMI_PROPERTY, incomingCmHandle.getDmiProperties());
+ }
+ }
+
+ private void updateProperties(final DataNode existingCmHandleDataNode, final PropertyType propertyType,
+ final Map<String, String> incomingProperties) {
+ final Collection<DataNode> replacementPropertyDataNodes =
+ getReplacementDataNodes(existingCmHandleDataNode, propertyType, incomingProperties);
+ replacementPropertyDataNodes.addAll(
+ getUnchangedPropertyDataNodes(existingCmHandleDataNode, propertyType, incomingProperties));
+ if (replacementPropertyDataNodes.isEmpty()) {
+ removeAllProperties(existingCmHandleDataNode, propertyType);
+ } else {
+ cpsDataService.replaceListContent(NCMP_DATASPACE_NAME, NCMP_DMI_REGISTRY_ANCHOR,
+ existingCmHandleDataNode.getXpath(), replacementPropertyDataNodes, NO_TIMESTAMP);
+ }
+ }
+
+ private void removeAllProperties(final DataNode existingCmHandleDataNode, final PropertyType propertyType) {
+ existingCmHandleDataNode.getChildDataNodes().forEach(dataNode -> {
+ final Matcher matcher = propertyType.propertyXpathPattern.matcher(dataNode.getXpath());
+ if (matcher.find()) {
+ log.info("Deleting dataNode with xpath : [{}]", dataNode.getXpath());
+ cpsDataService.deleteDataNode(NCMP_DATASPACE_NAME, NCMP_DMI_REGISTRY_ANCHOR, dataNode.getXpath(),
+ NO_TIMESTAMP);
+ }
+ });
+ }
+
+ private Collection<DataNode> getUnchangedPropertyDataNodes(final DataNode existingCmHandleDataNode,
+ final PropertyType propertyType, final Map<String, String> incomingProperties) {
+ final Collection<DataNode> unchangedPropertyDataNodes = new HashSet<>();
+ for (final DataNode existingPropertyDataNode : existingCmHandleDataNode.getChildDataNodes()) {
+ final Matcher matcher = propertyType.propertyXpathPattern.matcher(existingPropertyDataNode.getXpath());
+ if (matcher.find()) {
+ final String keyName = matcher.group(2);
+ if (!incomingProperties.containsKey(keyName)) {
+ unchangedPropertyDataNodes.add(existingPropertyDataNode);
+ }
+ }
+ }
+ return unchangedPropertyDataNodes;
+ }
+
+ private Collection<DataNode> getReplacementDataNodes(final DataNode existingCmHandleDataNode,
+ final PropertyType propertyType, final Map<String, String> incomingProperties) {
+ final Collection<DataNode> replacementPropertyDataNodes = new HashSet<>();
+ incomingProperties.forEach((updatedAttributeKey, updatedAttributeValue) -> {
+ final String propertyXpath = getAttributeXpath(existingCmHandleDataNode, propertyType, updatedAttributeKey);
+ if (updatedAttributeValue != null) {
+ log.info("Creating a new DataNode with xpath {} , key : {} and value : {}", propertyXpath,
+ updatedAttributeKey, updatedAttributeValue);
+ replacementPropertyDataNodes.add(
+ buildDataNode(propertyXpath, updatedAttributeKey, updatedAttributeValue));
+ }
+ });
+ return replacementPropertyDataNodes;
+ }
+
+ private String getAttributeXpath(final DataNode cmHandle, final PropertyType propertyType,
+ final String attributeKey) {
+ return cmHandle.getXpath() + "/" + propertyType.xpathPrefix + String.format("[@name='%s']", attributeKey);
+ }
+
+ private DataNode buildDataNode(final String xpath, final String attributeKey, final String attributeValue) {
+ final Map<String, String> updatedLeaves = new LinkedHashMap<>(1);
+ updatedLeaves.put("name", attributeKey);
+ updatedLeaves.put("value", attributeValue);
+ log.debug("Building a new node with xpath {} with leaves (name : {} , value : {})", xpath, attributeKey,
+ attributeValue);
+ return new DataNodeBuilder().withXpath(xpath).withLeaves(ImmutableMap.copyOf(updatedLeaves)).build();
+ }
+
+ enum PropertyType {
+ DMI_PROPERTY("additional-properties"), PUBLIC_PROPERTY("public-properties");
+
+ private static final String LIST_INDEX_PATTERN = "\\[@(\\w+)[^\\/]'([^']+)']";
+
+ final String xpathPrefix;
+ final Pattern propertyXpathPattern;
+
+ PropertyType(final String xpathPrefix) {
+ this.xpathPrefix = xpathPrefix;
+ this.propertyXpathPattern = Pattern.compile(xpathPrefix + LIST_INDEX_PATTERN);
+ }
+ }
+}