summaryrefslogtreecommitdiffstats
path: root/v3po/v3po2vpp/src/main/java/io/fd/hc2vpp/v3po/interfacesstate/cache/InterfaceNamesDumpManagerImpl.java
blob: b0210b6b1cbc451d0fea031047b2ea646c83862e (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
/*
 * Copyright (c) 2019 Cisco and/or its affiliates.
 *
 * 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.
 */


package io.fd.hc2vpp.v3po.interfacesstate.cache;

import static io.fd.hc2vpp.common.translate.util.JvppReplyConsumer.INSTANCE;
import static java.util.stream.Collectors.toMap;

import io.fd.honeycomb.translate.ModificationCache;
import io.fd.honeycomb.translate.read.ReadFailedException;
import io.fd.honeycomb.translate.util.read.cache.DumpCacheManager;
import io.fd.honeycomb.translate.util.read.cache.EntityDumpExecutor;
import io.fd.honeycomb.translate.util.read.cache.StaticCacheKeyFactory;
import io.fd.jvpp.stats.dto.InterfaceName;
import io.fd.jvpp.stats.dto.InterfaceNamesDetailsReplyDump;
import io.fd.jvpp.stats.dto.InterfaceNamesDump;
import io.fd.jvpp.stats.future.FutureJVppStatsFacade;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import java.util.Map;
import java.util.concurrent.CompletableFuture;
import javax.annotation.Nonnull;
import org.opendaylight.yangtools.yang.binding.InstanceIdentifier;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

public class InterfaceNamesDumpManagerImpl implements InterfaceNamesDumpManager {
    // byNameIndex must be cached, not held as reference here, to have it destroyed with cache after transaction
    static final String BY_NAME_INDEX_KEY = InterfaceNamesDumpManagerImpl.class.getName() + "_byNameIndex";
    private static final Logger LOG = LoggerFactory.getLogger(InterfaceNamesDumpManagerImpl.class);
    private final FutureJVppStatsFacade jvppStats;

    private final DumpCacheManager<InterfaceNamesDetailsReplyDump, Void> fullDumpManager;

    public InterfaceNamesDumpManagerImpl(final FutureJVppStatsFacade jvppStats) {
        this.jvppStats = jvppStats;
        fullDumpManager = fullInterfaceDumpManager(this.jvppStats,
                new StaticCacheKeyFactory(InterfaceNamesDumpManagerImpl.class.getName() + "_dump",
                        InterfaceNamesDetailsReplyDump.class));
    }

    private static DumpCacheManager<InterfaceNamesDetailsReplyDump, Void> fullInterfaceDumpManager(
            final FutureJVppStatsFacade jvppStats,
            final StaticCacheKeyFactory cacheKeyFactory) {
        return new DumpCacheManager.DumpCacheManagerBuilder<InterfaceNamesDetailsReplyDump, Void>()
                .withExecutor(fullInterfaceDumpExecutor(jvppStats))
                .withCacheKeyFactory(cacheKeyFactory)
                .acceptOnly(InterfaceNamesDetailsReplyDump.class)
                .build();
    }

    private static EntityDumpExecutor<InterfaceNamesDetailsReplyDump, Void> fullInterfaceDumpExecutor(
            final FutureJVppStatsFacade api) {
        return (identifier, params) -> {
            final InterfaceNamesDump request = new InterfaceNamesDump();

            final CompletableFuture<InterfaceNamesDetailsReplyDump>
                    interfaceNamesDetailsReplyDumpCompletableFuture =
                    api.interfaceNamesDump(request).toCompletableFuture();
            return INSTANCE.getReplyForRead(interfaceNamesDetailsReplyDumpCompletableFuture, identifier);
        };
    }

    @Nonnull
    @Override
    public List<InterfaceName> getInterfaceNames(@Nonnull final InstanceIdentifier<?> identifier,
                                                 @Nonnull final ModificationCache cache)
            throws ReadFailedException {
        LOG.debug("Reading all interface names[{}]", identifier);
        return new ArrayList<>(initMapAndGet(identifier, cache).values());
    }

    private Map<String, InterfaceName> initMapAndGet(final InstanceIdentifier<?> identifier,
                                                     final ModificationCache cache)
            throws ReadFailedException {

        if (!cache.containsKey(BY_NAME_INDEX_KEY)) {
            LOG.debug("Performing dump[{}]", identifier);
            final InterfaceNamesDetailsReplyDump dump =
                    fullDumpManager.getDump(identifier, cache).orElse(new InterfaceNamesDetailsReplyDump());

            // naming context initialization must be done here, as it is uses getName in next step, therefore it would
            // create artificial mapping for every interface, because this happens before interface dump is processed
            Arrays.stream(dump.interfaceNamesDetails.interfaceNames).forEach((elt) -> {
                // Store interface name from VPP in context if not yet present
                LOG.trace("Interface with VPP name: {} and index: {} found in VPP", elt.name, elt.swIfIndex);
            });

            final Map<String, InterfaceName> freshIndex = Arrays.stream(dump.interfaceNamesDetails.interfaceNames)
                    .collect(toMap(detail -> detail.name, detail -> detail));
            putMap(freshIndex, cache);
        }

        return getMap(cache);
    }

    private static Map<String, InterfaceName> getMap(final ModificationCache cache) {
        return (Map<String, InterfaceName>) cache.get(BY_NAME_INDEX_KEY);
    }

    private static void putMap(final Map<String, InterfaceName> map, final ModificationCache cache) {
        cache.put(BY_NAME_INDEX_KEY, map);
    }
}