f5c0e597218764cc80c1b237101489a7f559f6ff
[hc2vpp.git] /
1 /*
2  * Copyright (c) 2016 Cisco and/or its affiliates.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at:
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 package io.fd.honeycomb.v3po.translate.v3po.interfacesstate;
18
19 import static com.google.common.base.Preconditions.checkState;
20 import static java.util.Objects.requireNonNull;
21
22 import io.fd.honeycomb.v3po.translate.read.ReadContext;
23 import io.fd.honeycomb.v3po.translate.read.ReadFailedException;
24 import io.fd.honeycomb.v3po.translate.v3po.util.NamingContext;
25 import io.fd.honeycomb.v3po.translate.v3po.util.TranslateUtils;
26 import java.util.Optional;
27 import java.util.concurrent.CompletableFuture;
28 import javax.annotation.Nonnull;
29 import javax.annotation.Nullable;
30 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.v3po.rev150105.l2.base.attributes.Interconnection;
31 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.v3po.rev150105.l2.base.attributes.interconnection.BridgeBasedBuilder;
32 import org.opendaylight.yangtools.yang.binding.InstanceIdentifier;
33 import org.openvpp.jvpp.VppBaseCallException;
34 import org.openvpp.jvpp.dto.BridgeDomainDetails;
35 import org.openvpp.jvpp.dto.BridgeDomainDetailsReplyDump;
36 import org.openvpp.jvpp.dto.BridgeDomainDump;
37 import org.openvpp.jvpp.dto.BridgeDomainSwIfDetails;
38 import org.openvpp.jvpp.dto.SwInterfaceDetails;
39 import org.openvpp.jvpp.future.FutureJVpp;
40 import org.slf4j.Logger;
41 import org.slf4j.LoggerFactory;
42
43 /**
44  * Utility class providing Interconnection read support.
45  */
46 // FIXME this should be customizer, but it is not possible because Interconnection is not a DataObject
47 final class InterconnectionReadUtils {
48
49     private static final Logger LOG = LoggerFactory.getLogger(InterconnectionReadUtils.class);
50
51     private final FutureJVpp futureJvpp;
52     private final NamingContext interfaceContext;
53     private final NamingContext bridgeDomainContext;
54
55     InterconnectionReadUtils(@Nonnull final FutureJVpp futureJvpp,
56                              @Nonnull final NamingContext interfaceContext,
57                              @Nonnull final NamingContext bridgeDomainContext) {
58         this.futureJvpp = requireNonNull(futureJvpp, "futureJvpp should not be null");
59         this.interfaceContext = requireNonNull(interfaceContext, "interfaceContext should not be null");
60         this.bridgeDomainContext = requireNonNull(bridgeDomainContext, "bridgeDomainContext should not be null");
61     }
62
63     @Nullable
64     Interconnection readInterconnection(@Nonnull final InstanceIdentifier<?> id, @Nonnull final String ifaceName, @Nonnull final ReadContext ctx)
65             throws ReadFailedException {
66         final int ifaceId = interfaceContext.getIndex(ifaceName, ctx.getMappingContext());
67
68         final SwInterfaceDetails iface = InterfaceUtils.getVppInterfaceDetails(futureJvpp, id, ifaceName,
69                 ifaceId, ctx.getModificationCache());
70         LOG.debug("Interface details for interface: {}, details: {}", ifaceName, iface);
71
72         final BridgeDomainDetailsReplyDump dumpReply = getDumpReply(id);
73         final Optional<BridgeDomainSwIfDetails> bdForInterface = getBridgeDomainForInterface(ifaceId, dumpReply);
74         if (bdForInterface.isPresent()) {
75             final BridgeDomainSwIfDetails bdSwIfDetails = bdForInterface.get();
76             final BridgeBasedBuilder bbBuilder = new BridgeBasedBuilder();
77             bbBuilder.setBridgeDomain(bridgeDomainContext.getName(bdSwIfDetails.bdId, ctx.getMappingContext()));
78
79             // Set BVI if the bridgeDomainDetails.bviSwIfIndex == current sw if index
80             final Optional<BridgeDomainDetails> bridgeDomainForInterface =
81                     getBridgeDomainForInterface(dumpReply, bdForInterface.get().bdId);
82             // Since we already found an interface assigned to a bridge domain, the details for BD must be present
83             checkState(bridgeDomainForInterface.isPresent());
84             if (bridgeDomainForInterface.get().bviSwIfIndex == ifaceId) {
85                 bbBuilder.setBridgedVirtualInterface(true);
86             }
87
88             if (bdSwIfDetails.shg != 0) {
89                 bbBuilder.setSplitHorizonGroup((short) bdSwIfDetails.shg);
90             }
91             return bbBuilder.build();
92         }
93         // TODO is there a way to check if interconnection is XconnectBased?
94
95         return null;
96     }
97
98     private Optional<BridgeDomainSwIfDetails> getBridgeDomainForInterface(final int ifaceId,
99                                                                           final BridgeDomainDetailsReplyDump reply) {
100         if (null == reply || null == reply.bridgeDomainSwIfDetails || reply.bridgeDomainSwIfDetails.isEmpty()) {
101             return Optional.empty();
102         }
103         // interface can be added to only one BD only
104         return reply.bridgeDomainSwIfDetails.stream().filter(a -> a.swIfIndex == ifaceId).findFirst();
105     }
106
107     private Optional<BridgeDomainDetails> getBridgeDomainForInterface(final BridgeDomainDetailsReplyDump reply,
108                                                                       int bdId) {
109         return reply.bridgeDomainDetails.stream().filter(a -> a.bdId == bdId).findFirst();
110     }
111
112     private BridgeDomainDetailsReplyDump getDumpReply(@Nonnull final InstanceIdentifier<?> id) throws ReadFailedException {
113         try {
114             // We need to perform full bd dump, because there is no way
115             // to ask VPP for BD details given interface id/name (TODO add it to vpp.api?)
116             // TODO cache dump result
117             final BridgeDomainDump request = new BridgeDomainDump();
118             request.bdId = -1;
119
120             final CompletableFuture<BridgeDomainDetailsReplyDump> bdCompletableFuture =
121                     futureJvpp.bridgeDomainSwIfDump(request).toCompletableFuture();
122             return TranslateUtils.getReply(bdCompletableFuture);
123         } catch (VppBaseCallException e) {
124             throw new ReadFailedException(id,e);
125         }
126     }
127 }