Merge "[ADMIN] Add Illia Halych in INFO.yaml "
[integration/csit.git] / plans / usecases-pnf-sw-upgrade / pnf-sw-upgrade / sorch / simulator / aai-simulator / src / main / java / org / onap / aaisimulator / service / providers / ServiceInstanceCacheProviderImpl.java
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2020 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.aaisimulator.service.providers;
21
22 import static org.onap.aaisimulator.utils.CacheName.SERVICE_INSTANCE_CACHE;
23
24 import java.util.Optional;
25 import org.onap.aai.domain.yang.ServiceInstance;
26 import org.onap.aaisimulator.cache.provider.AbstractCacheServiceProvider;
27 import org.onap.aaisimulator.utils.ShallowBeanCopy;
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 @Service
36 public class ServiceInstanceCacheProviderImpl extends AbstractCacheServiceProvider implements
37     ServiceInstanceCacheProvider {
38
39     private static final Logger LOGGER = LoggerFactory.getLogger(ServiceInstanceCacheProviderImpl.class);
40
41     private final Cache cache;
42
43     @Autowired
44     public ServiceInstanceCacheProviderImpl(final CacheManager cacheManager) {
45         super(cacheManager);
46         cache = getCache(SERVICE_INSTANCE_CACHE.getName());
47     }
48
49     @Override
50     public boolean patchServiceInstance(String globalCustomerId, ServiceInstance serviceInstance) {
51         final Optional<ServiceInstance> svcInstance = getServiceInstance(globalCustomerId);
52         if (svcInstance.isPresent()) {
53             final ServiceInstance cachedSvcInstance = svcInstance.get();
54             try {
55                 ShallowBeanCopy.copy(serviceInstance, cachedSvcInstance);
56                 return true;
57             } catch (final Exception exception) {
58                 LOGGER.error("Unable to update ServiceInstance for globalCustomerId: {}", globalCustomerId, exception);
59             }
60         }
61         LOGGER.error("Unable to find ServiceInstance for globalCustomerId : {}", globalCustomerId);
62         return false;
63     }
64
65     @Override
66     public Optional<ServiceInstance> getServiceInstance(final String globalCustomerId) {
67         LOGGER.info("Getting Service Instance with key: {} in cache ...", globalCustomerId);
68         final ServiceInstance svcInstance = cache.get(globalCustomerId, ServiceInstance.class);
69         return Optional.ofNullable(svcInstance);
70     }
71
72     @Override
73     public boolean putServiceInstance(String globalCustomerId, ServiceInstance serviceInstance) {
74         LOGGER.info("Adding ServiceInstance: {} with key: {} in cache ...", serviceInstance, globalCustomerId);
75         cache.put(globalCustomerId, serviceInstance);
76         return true;
77     }
78 }