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
9 * http://www.apache.org/licenses/LICENSE-2.0
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.
17 * SPDX-License-Identifier: Apache-2.0
18 * ============LICENSE_END=========================================================
21 package org.onap.cps.ncmp.impl.inventory;
23 import static org.onap.cps.ncmp.impl.inventory.CmHandleQueryParametersValidator.validateCpsPathConditionProperties;
24 import static org.onap.cps.ncmp.impl.inventory.CmHandleQueryParametersValidator.validateModuleNameConditionProperties;
25 import static org.onap.cps.ncmp.impl.inventory.NcmpPersistence.NCMP_DMI_REGISTRY_PARENT;
26 import static org.onap.cps.ncmp.impl.inventory.models.CmHandleQueryConditions.HAS_ALL_MODULES;
27 import static org.onap.cps.ncmp.impl.inventory.models.CmHandleQueryConditions.HAS_ALL_PROPERTIES;
28 import static org.onap.cps.ncmp.impl.inventory.models.CmHandleQueryConditions.WITH_CPS_PATH;
29 import static org.onap.cps.ncmp.impl.inventory.models.CmHandleQueryConditions.WITH_TRUST_LEVEL;
30 import static org.onap.cps.spi.FetchDescendantsOption.DIRECT_CHILDREN_ONLY;
31 import static org.onap.cps.spi.FetchDescendantsOption.OMIT_DESCENDANTS;
33 import java.util.ArrayList;
34 import java.util.Collection;
35 import java.util.Collections;
36 import java.util.HashMap;
37 import java.util.List;
39 import java.util.function.Function;
40 import java.util.stream.Collectors;
41 import lombok.RequiredArgsConstructor;
42 import org.onap.cps.cpspath.parser.PathParsingException;
43 import org.onap.cps.ncmp.api.inventory.models.CmHandleQueryServiceParameters;
44 import org.onap.cps.ncmp.impl.inventory.models.InventoryQueryConditions;
45 import org.onap.cps.ncmp.impl.inventory.models.PropertyType;
46 import org.onap.cps.ncmp.impl.inventory.models.YangModelCmHandle;
47 import org.onap.cps.ncmp.impl.utils.YangDataConverter;
48 import org.onap.cps.spi.exceptions.DataValidationException;
49 import org.onap.cps.spi.model.ConditionProperties;
50 import org.onap.cps.spi.model.DataNode;
51 import org.springframework.stereotype.Service;
54 @RequiredArgsConstructor
55 public class ParameterizedCmHandleQueryServiceImpl implements ParameterizedCmHandleQueryService {
57 private static final Collection<String> NO_QUERY_TO_EXECUTE = null;
58 private final CmHandleQueryService cmHandleQueryService;
59 private final InventoryPersistence inventoryPersistence;
62 public Collection<String> queryCmHandleIds(
63 final CmHandleQueryServiceParameters cmHandleQueryServiceParameters) {
64 return executeQueries(cmHandleQueryServiceParameters,
65 this::executeCpsPathQuery,
66 this::queryCmHandlesByPublicProperties,
67 this::executeModuleNameQuery,
68 this::queryCmHandlesByTrustLevel);
72 public Collection<String> queryCmHandleIdsForInventory(
73 final CmHandleQueryServiceParameters cmHandleQueryServiceParameters) {
74 return executeQueries(cmHandleQueryServiceParameters,
75 this::executeCpsPathQuery,
76 this::queryCmHandlesByPublicProperties,
77 this::queryCmHandlesByPrivateProperties,
78 this::queryCmHandlesByDmiPlugin);
82 public Collection<YangModelCmHandle> queryCmHandles(
83 final CmHandleQueryServiceParameters cmHandleQueryServiceParameters) {
84 if (cmHandleQueryServiceParameters.getCmHandleQueryParameters().isEmpty()) {
85 return getAllCmHandles();
87 final Collection<String> cmHandleIds = queryCmHandleIds(cmHandleQueryServiceParameters);
88 return inventoryPersistence.getYangModelCmHandles(cmHandleIds);
91 private Collection<YangModelCmHandle> getAllCmHandles() {
92 final DataNode dataNode = inventoryPersistence.getDataNode(NCMP_DMI_REGISTRY_PARENT).iterator().next();
93 return dataNode.getChildDataNodes().stream().map(YangDataConverter::toYangModelCmHandle).toList();
96 private Collection<String> queryCmHandlesByDmiPlugin(
97 final CmHandleQueryServiceParameters cmHandleQueryServiceParameters) {
98 final Map<String, String> dmiPropertyQueryPairs =
99 getPropertyPairs(cmHandleQueryServiceParameters.getCmHandleQueryParameters(),
100 InventoryQueryConditions.CM_HANDLE_WITH_DMI_PLUGIN.getName());
101 if (dmiPropertyQueryPairs.isEmpty()) {
102 return NO_QUERY_TO_EXECUTE;
105 final String dmiPluginIdentifierValue = dmiPropertyQueryPairs
106 .get(PropertyType.DMI_PLUGIN.getYangContainerName());
108 return cmHandleQueryService.getCmHandleIdsByDmiPluginIdentifier(dmiPluginIdentifierValue);
111 private Collection<String> queryCmHandlesByPrivateProperties(
112 final CmHandleQueryServiceParameters cmHandleQueryServiceParameters) {
114 final Map<String, String> privatePropertyQueryPairs =
115 getPropertyPairs(cmHandleQueryServiceParameters.getCmHandleQueryParameters(),
116 InventoryQueryConditions.HAS_ALL_ADDITIONAL_PROPERTIES.getName());
118 if (privatePropertyQueryPairs.isEmpty()) {
119 return NO_QUERY_TO_EXECUTE;
121 return cmHandleQueryService.queryCmHandleAdditionalProperties(privatePropertyQueryPairs);
124 private Collection<String> queryCmHandlesByPublicProperties(
125 final CmHandleQueryServiceParameters cmHandleQueryServiceParameters) {
127 final Map<String, String> publicPropertyQueryPairs =
128 getPropertyPairs(cmHandleQueryServiceParameters.getCmHandleQueryParameters(),
129 HAS_ALL_PROPERTIES.getConditionName());
131 if (publicPropertyQueryPairs.isEmpty()) {
132 return NO_QUERY_TO_EXECUTE;
134 return cmHandleQueryService.queryCmHandlePublicProperties(publicPropertyQueryPairs);
137 private Collection<String> queryCmHandlesByTrustLevel(final CmHandleQueryServiceParameters
138 cmHandleQueryServiceParameters) {
140 final Map<String, String> trustLevelPropertyQueryPairs =
141 getPropertyPairs(cmHandleQueryServiceParameters.getCmHandleQueryParameters(),
142 WITH_TRUST_LEVEL.getConditionName());
144 if (trustLevelPropertyQueryPairs.isEmpty()) {
145 return NO_QUERY_TO_EXECUTE;
147 return cmHandleQueryService.queryCmHandlesByTrustLevel(trustLevelPropertyQueryPairs);
150 private Collection<String> executeModuleNameQuery(
151 final CmHandleQueryServiceParameters cmHandleQueryServiceParameters) {
152 final Collection<String> moduleNamesForQuery =
153 getModuleNamesForQuery(cmHandleQueryServiceParameters.getCmHandleQueryParameters());
154 if (moduleNamesForQuery.isEmpty()) {
155 return NO_QUERY_TO_EXECUTE;
157 return inventoryPersistence.getCmHandleIdsWithGivenModules(moduleNamesForQuery);
160 private Collection<String> executeCpsPathQuery(
161 final CmHandleQueryServiceParameters cmHandleQueryServiceParameters) {
162 final Map<String, String> cpsPathCondition
163 = getCpsPathCondition(cmHandleQueryServiceParameters.getCmHandleQueryParameters());
164 if (!validateCpsPathConditionProperties(cpsPathCondition)) {
165 return Collections.emptySet();
167 final Collection<String> cpsPathQueryResult;
168 if (cpsPathCondition.isEmpty()) {
169 return NO_QUERY_TO_EXECUTE;
172 cpsPathQueryResult = collectCmHandleIdsFromDataNodes(
173 cmHandleQueryService.queryCmHandleAncestorsByCpsPath(
174 cpsPathCondition.get("cpsPath"), OMIT_DESCENDANTS));
175 } catch (final PathParsingException pathParsingException) {
176 throw new DataValidationException(pathParsingException.getMessage(), pathParsingException.getDetails(),
177 pathParsingException);
179 return cpsPathQueryResult;
182 private Collection<String> getModuleNamesForQuery(final List<ConditionProperties> conditionProperties) {
183 final List<String> result = new ArrayList<>();
184 getConditions(conditionProperties, HAS_ALL_MODULES.getConditionName()).forEach(
185 conditionProperty -> {
186 validateModuleNameConditionProperties(conditionProperty);
187 result.add(conditionProperty.get("moduleName"));
192 private Map<String, String> getCpsPathCondition(final List<ConditionProperties> conditionProperties) {
193 final Map<String, String> result = new HashMap<>();
194 getConditions(conditionProperties, WITH_CPS_PATH.getConditionName()).forEach(result::putAll);
198 private Map<String, String> getPropertyPairs(final List<ConditionProperties> conditionProperties,
199 final String queryProperty) {
200 final Map<String, String> result = new HashMap<>();
201 getConditions(conditionProperties, queryProperty).forEach(result::putAll);
205 private List<Map<String, String>> getConditions(final List<ConditionProperties> conditionProperties,
207 for (final ConditionProperties conditionProperty : conditionProperties) {
208 if (conditionProperty.getConditionName().equals(name)) {
209 return conditionProperty.getConditionParameters();
212 return Collections.emptyList();
215 private Collection<String> getAllCmHandleIds() {
216 final DataNode dataNode = inventoryPersistence.getDataNode(NCMP_DMI_REGISTRY_PARENT, DIRECT_CHILDREN_ONLY)
218 return collectCmHandleIdsFromDataNodes(dataNode.getChildDataNodes());
221 private Collection<String> executeQueries(final CmHandleQueryServiceParameters cmHandleQueryServiceParameters,
222 final Function<CmHandleQueryServiceParameters, Collection<String>>...
224 if (cmHandleQueryServiceParameters.getCmHandleQueryParameters().isEmpty()) {
225 return getAllCmHandleIds();
227 Collection<String> combinedQueryResult = NO_QUERY_TO_EXECUTE;
228 for (final Function<CmHandleQueryServiceParameters, Collection<String>> queryFunction : queryFunctions) {
229 final Collection<String> queryResult = queryFunction.apply(cmHandleQueryServiceParameters);
230 if (noEntriesFoundCanStopQuerying(queryResult)) {
231 return Collections.emptySet();
233 combinedQueryResult = combineCmHandleQueryResults(combinedQueryResult, queryResult);
235 return combinedQueryResult;
238 private boolean noEntriesFoundCanStopQuerying(final Collection<String> queryResult) {
239 return queryResult != NO_QUERY_TO_EXECUTE && queryResult.isEmpty();
242 private Collection<String> combineCmHandleQueryResults(final Collection<String> firstQuery,
243 final Collection<String> secondQuery) {
244 if (firstQuery == NO_QUERY_TO_EXECUTE && secondQuery == NO_QUERY_TO_EXECUTE) {
245 return NO_QUERY_TO_EXECUTE;
246 } else if (firstQuery == NO_QUERY_TO_EXECUTE) {
248 } else if (secondQuery == NO_QUERY_TO_EXECUTE) {
251 firstQuery.retainAll(secondQuery);
256 private Collection<String> collectCmHandleIdsFromDataNodes(final Collection<DataNode> dataNodes) {
257 return dataNodes.stream().map(dataNode -> (String) dataNode.getLeaves().get("id")).collect(Collectors.toSet());