Switched from Dropwizard to Springboot
[holmes/common.git] / holmes-actions / src / main / java / org / onap / holmes / common / aai / CorrelationUtil.java
1 /**
2  * Copyright 2017-2021 ZTE Corporation.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
5  * in compliance with the License. You may obtain a copy of the License at
6  *
7  * http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software distributed under the License
10  * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
11  * or implied. See the License for the specific language governing permissions and limitations under
12  * the License.
13  */
14 package org.onap.holmes.common.aai;
15
16 import lombok.extern.slf4j.Slf4j;
17 import org.onap.holmes.common.aai.entity.RelationshipList.Relationship;
18 import org.onap.holmes.common.aai.entity.VmEntity;
19 import org.onap.holmes.common.exception.CorrelationException;
20 import org.onap.holmes.common.utils.SpringContextUtil;
21
22 import java.util.List;
23 import java.util.Optional;
24
25 @Slf4j
26 public class CorrelationUtil {
27
28     private static AaiQuery aaiQuery;
29
30     private static class LazyHolder {
31         private static final CorrelationUtil INSTANCE = new CorrelationUtil();
32     }
33     private CorrelationUtil (){}
34
35     public static final CorrelationUtil getInstance() {
36         if (aaiQuery == null) {
37             aaiQuery = SpringContextUtil.getBean(AaiQuery.class);
38         }
39         return LazyHolder.INSTANCE;
40     }
41
42     public boolean isTopologicallyRelated(String sourceId, String rootSourceId, String rootSourceName) {
43         return Optional.ofNullable(getVmEntity(rootSourceId, rootSourceName)).map(vmEntity ->
44                 getIsRelated(sourceId, vmEntity)).orElse(false);
45     }
46
47     private boolean getIsRelated(String sourceId, VmEntity vmEntity) {
48         List<Relationship> relationships = vmEntity.getRelationshipList().getRelationships();
49         for (Relationship relationship : relationships) {
50             boolean isRelated = relationship.getRelationshipDataList().stream().anyMatch(
51                     relationshipData -> relationshipData.getRelationshipValue().equals(sourceId));
52             if (isRelated) {
53                 return true;
54             }
55         }
56         return  false;
57     }
58
59     private VmEntity getVmEntity(String rootSourceId, String rootSourceName) {
60         VmEntity vmEntity = null;
61         try {
62             vmEntity = aaiQuery.getAaiVmData(rootSourceId, rootSourceName);
63         } catch (CorrelationException e) {
64             log.error("Failed to get the VM data.", e);
65         }
66         return vmEntity;
67     }
68 }