aboutsummaryrefslogtreecommitdiffstats
path: root/test/mocks/aai-simulator/aai-sim/src/main/java/org/onap/aaisimulator/service/providers/PnfCacheServiceProviderImpl.java
blob: 3f33883b14c3e9432e54017dab0f4abb93028d4c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
/*-
 * ============LICENSE_START=======================================================
 *  Copyright (C) 2020 Nordix Foundation.
 * ================================================================================
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 *
 * SPDX-License-Identifier: Apache-2.0
 * ============LICENSE_END=========================================================
 */
package org.onap.aaisimulator.service.providers;

import org.onap.aai.domain.yang.v15.Pnf;
import org.onap.aaisimulator.utils.ShallowBeanCopy;
import org.onap.aaisimulator.cache.provider.AbstractCacheServiceProvider;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.cache.Cache;
import org.springframework.cache.CacheManager;
import org.springframework.stereotype.Service;

import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.Optional;
import java.util.concurrent.ConcurrentHashMap;

import static org.onap.aaisimulator.utils.CacheName.PNF_CACHE;

/**
 * @author Raj Gumma (raj.gumma@est.tech)
 */
@Service
public class PnfCacheServiceProviderImpl extends AbstractCacheServiceProvider implements PnfCacheServiceProvider {


    private static final Logger LOGGER = LoggerFactory.getLogger(PnfCacheServiceProvider.class);

    private final Cache cache;

    @Autowired
    public PnfCacheServiceProviderImpl(final CacheManager cacheManager) {
        super(cacheManager);
        cache = getCache(PNF_CACHE.getName());
    }

    @Override
    public void putPnf(final String pnfId, final Pnf pnf) {
        LOGGER.info("Adding pnf: {} with key: {} in cache ...", pnf, pnfId);
        cache.put(pnfId, pnf);
    }

    @Override
    public Optional<Pnf> getPnf(final String pnfId) {
        LOGGER.info("getting Pnf from cache using key: {}", pnfId);
        final Pnf value = cache.get(pnfId, Pnf.class);
        return Optional.ofNullable(value);
    }

    @Override
    public Optional<String> getPnfId(final String pnfName) {
        final Object nativeCache = cache.getNativeCache();
        if (nativeCache instanceof ConcurrentHashMap) {
            @SuppressWarnings("unchecked") final ConcurrentHashMap<Object, Object> concurrentHashMap =
                    (ConcurrentHashMap<Object, Object>) nativeCache;
            for (final Object key : concurrentHashMap.keySet()) {
                final Optional<Pnf> optional = getPnf(key.toString());
                if (optional.isPresent()) {
                    final String cachedPnfName = optional.get().getPnfName();
                    if (cachedPnfName != null && cachedPnfName.equals(cachedPnfName)) {
                        final String pnfId = optional.get().getPnfId();
                        LOGGER.info("Found matching pnf for name: {}, pnf-id: {}", cachedPnfName, pnfId);
                        return Optional.of(pnfId);
                    }
                }
            }
        }
        return Optional.empty();
    }

    @Override
    public boolean patchPnf(final String pnfId, final Pnf pnf) {
        final Optional<Pnf> optional = getPnf(pnfId);
        if (optional.isPresent()) {
            final Pnf cachedPnf = optional.get();
            try {
                ShallowBeanCopy.copy(pnf, cachedPnf);
                return true;
            } catch (final Exception exception) {
                LOGGER.error("Unable to update Pnf for pnfId: {}", pnfId, exception);
            }
        }
        LOGGER.error("Unable to find Pnf for pnfID : {}", pnfId);
        return false;
    }

    @Override
    public List<Pnf> getPnfs(String selfLink) {
        final Object nativeCache = cache.getNativeCache();
        if (nativeCache instanceof ConcurrentHashMap) {
            @SuppressWarnings("unchecked") final ConcurrentHashMap<Object, Object> concurrentHashMap =
                    (ConcurrentHashMap<Object, Object>) nativeCache;
            final List<Pnf> result = new ArrayList<>();

            concurrentHashMap.keySet().stream().forEach(key -> {
                final Optional<Pnf> optional = getPnf(key.toString());
                if (optional.isPresent()) {
                    final Pnf pnf = optional.get();
                    final String pnfSelfLink = pnf.getSelflink();
                    final String pnfId = pnf.getSelflink();

                    if (pnfSelfLink != null && pnfSelfLink.equals(selfLink)) {
                        LOGGER.info("Found matching pnf for selflink: {}, pnf-id: {}", pnfSelfLink,
                                pnfId);
                        result.add(pnf);
                    }
                }
            });
            return result;
        }
        LOGGER.error("No match found for selflink: {}", selfLink);
        return Collections.emptyList();
    }

    @Override
    public boolean deletePnf(String pnfId, String resourceVersion) {
        final Optional<Pnf> optional = getPnf(pnfId);
        if (optional.isPresent()) {
            final Pnf pnf = optional.get();
            if (pnf.getResourceVersion() != null && pnf.getResourceVersion().equals(resourceVersion)) {
                LOGGER.info("Will evict pnf from cache with pnfId: {}", pnf.getPnfId());
                cache.evict(pnfId);
                return true;
            }
        }
        LOGGER.error("Unable to find Pnf for pnfId: {} and resourceVersion: {} ...", pnfId, resourceVersion);
        return false;
    }

    @Override
    public void clearAll() {
        clearCache(cache.getName());
    }
}