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