summaryrefslogtreecommitdiffstats
path: root/routing/routing-impl/src/main/java/io/fd/hc2vpp/routing/naming/Ipv4RouteNamesFactory.java
blob: 996f781b6b41ef6ccfaef54f637d07c589a67f27 (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
/*
 * 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.hc2vpp.routing.naming;

import io.fd.hc2vpp.common.translate.util.NamingContext;
import io.fd.hc2vpp.routing.trait.RouteMapper;
import io.fd.hc2vpp.routing.write.trait.RouteRequestProducer;
import io.fd.honeycomb.translate.MappingContext;
import io.fd.vpp.jvpp.core.dto.IpFibDetails;
import io.fd.vpp.jvpp.core.types.FibPath;
import java.net.InetAddress;
import java.net.UnknownHostException;
import java.util.Arrays;
import javax.annotation.Nonnull;
import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.Ipv4Address;
import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.Ipv4Prefix;
import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.ipv4.unicast.routing.rev180313.routing.control.plane.protocols.control.plane.protocol._static.routes.ipv4.Route;
import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.ipv4.unicast.routing.rev180313.routing.control.plane.protocols.control.plane.protocol._static.routes.ipv4.route.next.hop.NextHop1;
import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.routing.rev180313.next.hop.content.next.hop.options.next.hop.list.next.hop.list.NextHop;
import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.vpp.ipv4.unicast.routing.rev180319.VppIpv4NextHopAugmentation;

public final class Ipv4RouteNamesFactory implements RouteMapper, RouteRequestProducer {

    private static final String DOT = ".";
    private static final String DASH = "-";
    private static final String UNDERSCORE = "_";

    private final NamingContext interfaceContext;
    private final NamingContext routingProtocolContext;

    public Ipv4RouteNamesFactory(@Nonnull final NamingContext interfaceContext,
                                 @Nonnull final NamingContext routingProtocolContext) {
        this.interfaceContext = interfaceContext;
        this.routingProtocolContext = routingProtocolContext;
    }

    /**
     * Construct unique name from provided {@code Route}
     */
    public String uniqueRouteName(@Nonnull final String parentProtocolName, @Nonnull final Route route) {
        return bindName(parentProtocolName, dotlessAddress(route.getDestinationPrefix()),
                        String.valueOf(extractPrefix(route.getDestinationPrefix())));
    }

    /**
     * Construct unique name from provided {@code IpFibDetails}
     */
    public String uniqueRouteName(@Nonnull final IpFibDetails details, @Nonnull final MappingContext mappingContext) {
        return bindName(routingProtocolContext.getName(details.tableId, mappingContext),
                        dotlessAddress(details.address), String.valueOf(details.addressLength));
    }

    /**
     * Construct unique name from provided parentProtocolName and {@code Ipv4Prefix}
     */
    public String uniqueRouteName(@Nonnull final String parentProtocolName, @Nonnull final Ipv4Prefix prefix) {
        return bindName(parentProtocolName, dotlessAddress(prefix),
                String.valueOf(Byte.toUnsignedInt(extractPrefix(prefix))));
    }

    public Ipv4Prefix ipv4PrefixFromUniqueRouteName(@Nonnull final String uniqueName) {
        String[] parts = uniqueName.split(UNDERSCORE);
        return new Ipv4Prefix(dotted(parts[1]) + "/" + parts[2]);
    }

    public String uniqueRouteHopName(@Nonnull final NextHop hop) {
        return bindName(hop.getOutgoingInterface(),
                        dotlessAddress(hop.augmentation(NextHop1.class).getNextHopAddress()),
                        String.valueOf(hop.augmentation(VppIpv4NextHopAugmentation.class).getWeight()));
    }

    public String uniqueRouteHopName(@Nonnull final FibPath path, @Nonnull final MappingContext mappingContext) {
        return bindName(interfaceContext.getName(path.swIfIndex, mappingContext), dotlessAddress(path.nextHop),
                        String.valueOf(path.weight));
    }

    private String dotlessAddress(final byte[] address) {
        // trimming in case of ipv4 address beeing sent as 16 byte array
        byte[] trimmed = address;
        if (trimmed.length > 4) {
            trimmed = Arrays.copyOfRange(trimmed, 0, 4);
        }

        //no reverting, just takes address as it is and converts it
        try {
            return dotless(InetAddress.getByAddress(trimmed).getHostAddress());
        } catch (UnknownHostException e) {
            throw new IllegalArgumentException(e);
        }
    }

    private String dotlessAddress(@Nonnull final Ipv4Prefix address) {
        final String addressValue = address.getValue();
        return dotless(addressValue.substring(0, addressValue.indexOf("/")));
    }

    private String dotlessAddress(@Nonnull final Ipv4Address address) {
        return dotless(address.getValue());
    }

    private String dotless(@Nonnull final String input) {
        return input.replace(DOT, DASH);
    }

    private String dotted(@Nonnull final String input) {
        return input.replace(DASH, DOT);
    }
}