4fca3119b198148a3a6fc8a29d9c52e6cfeaffbf
[integration/csit.git] / plans / so / integration-etsi-testing / so-simulators / aai-simulator / src / main / java / org / onap / so / aai / simulator / 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.aai.simulator.service.providers;
21
22 import static org.onap.so.aai.simulator.utils.Constants.PROJECT_CACHE;
23 import static org.onap.so.aai.simulator.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.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 ProjectCacheServiceProviderImpl extends AbstractCacheServiceProvider
41         implements ProjectCacheServiceProvider {
42
43     private static final String RELATIONSHIPS_LABEL = "org.onap.relationships.inventory.Uses";
44
45     private static final Logger LOGGER = LoggerFactory.getLogger(ProjectCacheServiceProviderImpl.class);
46
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);
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);
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);
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);
100     }
101 }