32590cb0e562b267942ecd26499b7d1f4f6fce27
[integration/csit.git] / plans / so / integration-etsi-testing / so-simulators / aai-simulator / src / main / java / org / onap / so / aaisimulator / service / providers / OwnEntityCacheServiceProviderImpl.java
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2019 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 package org.onap.so.aaisimulator.service.providers;
21
22 import static org.onap.so.aaisimulator.utils.Constants.OWNING_ENTITY_CACHE;
23 import static org.onap.so.aaisimulator.utils.Constants.SERVICE_RESOURCE_TYPE;
24 import java.util.Optional;
25 import org.onap.aai.domain.yang.OwningEntity;
26 import org.onap.aai.domain.yang.Relationship;
27 import org.onap.aai.domain.yang.RelationshipList;
28 import org.slf4j.Logger;
29 import org.slf4j.LoggerFactory;
30 import org.springframework.beans.factory.annotation.Autowired;
31 import org.springframework.cache.Cache;
32 import org.springframework.cache.CacheManager;
33 import org.springframework.stereotype.Service;
34
35 /**
36  * @author waqas.ikram@ericsson.com
37  *
38  */
39 @Service
40 public class OwnEntityCacheServiceProviderImpl extends AbstractCacheServiceProvider
41         implements OwnEntityCacheServiceProvider {
42
43     private static final Logger LOGGER = LoggerFactory.getLogger(OwnEntityCacheServiceProviderImpl.class);
44     private static final String RELATIONSHIPS_LABEL = "org.onap.relationships.inventory.BelongsTo";
45
46     @Autowired
47     public OwnEntityCacheServiceProviderImpl(final CacheManager cacheManager) {
48         super(cacheManager);
49     }
50
51     @Override
52     public void putOwningEntity(final String owningEntityId, final OwningEntity owningEntity) {
53         LOGGER.info("Adding OwningEntity: {} with name to cache", owningEntityId, owningEntity);
54         final Cache cache = getCache(OWNING_ENTITY_CACHE);
55         cache.put(owningEntityId, owningEntity);
56     }
57
58     @Override
59     public Optional<OwningEntity> getOwningEntity(final String owningEntityId) {
60         LOGGER.info("getting OwningEntity from cache using key: {}", owningEntityId);
61         final Cache cache = getCache(OWNING_ENTITY_CACHE);
62         final OwningEntity value = cache.get(owningEntityId, OwningEntity.class);
63         if (value != null) {
64             return Optional.of(value);
65         }
66         return Optional.empty();
67     }
68
69     @Override
70     public boolean putOwningEntityRelationShip(final String owningEntityId, final Relationship relationship) {
71         final Cache cache = getCache(OWNING_ENTITY_CACHE);
72         final OwningEntity value = cache.get(owningEntityId, OwningEntity.class);
73         if (value != null) {
74             RelationshipList relationshipList = value.getRelationshipList();
75             if (relationshipList == null) {
76                 relationshipList = new RelationshipList();
77                 value.setRelationshipList(relationshipList);
78             }
79
80             if (relationship.getRelatedTo() == null) {
81                 relationship.setRelatedTo(SERVICE_RESOURCE_TYPE);
82             }
83             if (relationship.getRelationshipLabel() == null) {
84                 relationship.setRelationshipLabel(RELATIONSHIPS_LABEL);
85             }
86
87             return relationshipList.getRelationship().add(relationship);
88         }
89         LOGGER.error("OwningEntity not found in cache for {}", owningEntityId);
90         return false;
91     }
92
93     @Override
94     public void clearAll() {
95         clearCahce(OWNING_ENTITY_CACHE);
96     }
97
98 }