summaryrefslogtreecommitdiffstats
path: root/lisp/lisp2vpp/src/main/java/io/fd/honeycomb/lisp/translate/read/InterfaceCustomizer.java
blob: d12c730a2244094d59c9597316c62bf60cdeb8f2 (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
155
156
157
158
159
/*
 * Copyright (c) 2016 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.honeycomb.lisp.translate.read;


import static com.google.common.base.Preconditions.checkNotNull;
import static com.google.common.base.Preconditions.checkState;

import com.google.common.base.Optional;
import io.fd.honeycomb.lisp.translate.read.dump.check.LocatorDumpCheck;
import io.fd.honeycomb.lisp.translate.read.dump.executor.LocatorDumpExecutor;
import io.fd.honeycomb.lisp.translate.read.dump.executor.params.LocatorDumpParams;
import io.fd.honeycomb.translate.read.ReadContext;
import io.fd.honeycomb.translate.read.ReadFailedException;
import io.fd.honeycomb.translate.spi.read.ListReaderCustomizer;
import io.fd.honeycomb.translate.util.RWUtils;
import io.fd.honeycomb.translate.v3po.util.FutureJVppCustomizer;
import io.fd.honeycomb.translate.v3po.util.NamingContext;
import io.fd.honeycomb.translate.v3po.util.cache.DumpCacheManager;
import io.fd.honeycomb.translate.v3po.util.cache.exceptions.execution.DumpExecutionFailedException;
import java.util.Collections;
import java.util.List;
import java.util.stream.Collectors;
import javax.annotation.Nonnull;
import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.lisp.rev160520.locator.sets.grouping.locator.sets.LocatorSet;
import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.lisp.rev160520.locator.sets.grouping.locator.sets.LocatorSetBuilder;
import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.lisp.rev160520.locator.sets.grouping.locator.sets.locator.set.Interface;
import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.lisp.rev160520.locator.sets.grouping.locator.sets.locator.set.InterfaceBuilder;
import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.lisp.rev160520.locator.sets.grouping.locator.sets.locator.set.InterfaceKey;
import org.opendaylight.yangtools.concepts.Builder;
import org.opendaylight.yangtools.yang.binding.DataObject;
import org.opendaylight.yangtools.yang.binding.InstanceIdentifier;
import org.openvpp.jvpp.core.dto.LispLocatorDetails;
import org.openvpp.jvpp.core.dto.LispLocatorDetailsReplyDump;
import org.openvpp.jvpp.core.future.FutureJVppCore;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;


/**
 * Customizer for reading {@code Interface}<br> Currently not supported by jvpp
 */
public class InterfaceCustomizer
        extends FutureJVppCustomizer
        implements ListReaderCustomizer<Interface, InterfaceKey, InterfaceBuilder> {

    private static final Logger LOG = LoggerFactory.getLogger(InterfaceCustomizer.class);
    private static final String KEY_BASE = InterfaceCustomizer.class.getName();

    private final NamingContext interfaceContext;
    private final NamingContext locatorSetContext;
    private final DumpCacheManager<LispLocatorDetailsReplyDump, LocatorDumpParams> dumpCacheManager;

    public InterfaceCustomizer(
            @Nonnull final FutureJVppCore futureJvpp,
            @Nonnull final NamingContext interfaceContext,
            @Nonnull final NamingContext locatorSetContext) {
        super(futureJvpp);
        this.interfaceContext = checkNotNull(interfaceContext, "Interface context cannot be null");
        this.locatorSetContext = checkNotNull(locatorSetContext, "Locator set context cannot be null");
        this.dumpCacheManager =
                new DumpCacheManager.DumpCacheManagerBuilder<LispLocatorDetailsReplyDump, LocatorDumpParams>()
                        .withExecutor(new LocatorDumpExecutor(futureJvpp))
                        .withNonEmptyPredicate(new LocatorDumpCheck())
                        .build();
    }

    @Override
    public InterfaceBuilder getBuilder(InstanceIdentifier<Interface> id) {
        return new InterfaceBuilder();
    }

    @Override
    public void readCurrentAttributes(InstanceIdentifier<Interface> id, InterfaceBuilder builder, ReadContext ctx)
            throws ReadFailedException {
        checkState(id.firstKeyOf(LocatorSet.class) != null, "Cannot find reference to parent locator set");
        final String name = id.firstKeyOf(LocatorSet.class).getName();

        checkState(locatorSetContext.containsIndex(name, ctx.getMappingContext()));
        final int interfaceIndex = locatorSetContext.getIndex(name, ctx.getMappingContext());
        final LocatorDumpParams params = new LocatorDumpParams.LocatorDumpParamsBuilder()
                .setFilter(LocatorDumpParams.LocatorDumpFilter.LOCAL)
                .setLocatorSetIndex(interfaceIndex)
                .build();

        Optional<LispLocatorDetailsReplyDump> reply;
        try {
            reply = dumpCacheManager.getDump(KEY_BASE, ctx.getModificationCache(), params);
        } catch (DumpExecutionFailedException e) {
            throw new ReadFailedException(id, e);
        }

        if (reply.isPresent()) {
            final LispLocatorDetails details = reply.get()
                    .lispLocatorDetails
                    .stream()
                    .filter(a -> a.swIfIndex == interfaceIndex)
                    .collect(RWUtils.singleItemCollector());

            final String interfaceRef = interfaceContext.getName(details.swIfIndex, ctx.getMappingContext());

            builder.setPriority(Byte.valueOf(details.priority).shortValue());
            builder.setWeight(Byte.valueOf(details.weight).shortValue());
            builder.setInterfaceRef(interfaceRef);
            builder.setKey(new InterfaceKey(interfaceRef));
        }
    }

    @Override
    public List<InterfaceKey> getAllIds(InstanceIdentifier<Interface> id, ReadContext context)
            throws ReadFailedException {

        checkState(id.firstKeyOf(LocatorSet.class) != null, "Cannot find reference to parent locator set");
        final String name = id.firstKeyOf(LocatorSet.class).getName();

        checkState(locatorSetContext.containsIndex(name, context.getMappingContext()), "No mapping for %s", name);
        final LocatorDumpParams params = new LocatorDumpParams.LocatorDumpParamsBuilder()
                .setFilter(LocatorDumpParams.LocatorDumpFilter.LOCAL)
                .setLocatorSetIndex(locatorSetContext.getIndex(name, context.getMappingContext()))
                .build();


        Optional<LispLocatorDetailsReplyDump> reply;
        try {
            reply = dumpCacheManager.getDump(KEY_BASE, context.getModificationCache(), params);
        } catch (DumpExecutionFailedException e) {
            throw new ReadFailedException(id, e);
        }

        if (reply.isPresent()) {
            return reply.get()
                    .lispLocatorDetails
                    .stream()
                    .map(a -> new InterfaceKey(interfaceContext.getName(a.swIfIndex, context.getMappingContext())))
                    .collect(Collectors.toList());
        } else {
            return Collections.emptyList();
        }
    }

    @Override
    public void merge(Builder<? extends DataObject> builder, List<Interface> readData) {
        ((LocatorSetBuilder) builder).setInterface(readData);
    }
}