summaryrefslogtreecommitdiffstats
path: root/vpp-common/vpp-translate-utils/src/main/java/io/fd/hc2vpp/common/translate/util/AddressTranslator.java
blob: 3f5a56fb2b0a1b4070f377260606047ddaedbd3a (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
/*
 * 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.common.translate.util;

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

import java.util.Arrays;
import javax.annotation.Nonnull;
import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.IpAddress;
import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.IpAddressNoZone;
import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.IpPrefix;
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.Ipv4AddressNoZone;
import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.Ipv6Address;
import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.Ipv6AddressNoZone;

/**
 * Aggregation trait providing logic for converting address based data
 */
public interface AddressTranslator extends Ipv4Translator, Ipv6Translator, MacTranslator {

    AddressTranslator INSTANCE = new AddressTranslator() {
    };

    default byte[] ipAddressToArray(IpAddress address) {
        checkNotNull(address, "Cannot resolve null address");

        if (isIpv6(address)) {
            return ipv6AddressNoZoneToArray(new Ipv6AddressNoZone(address.getIpv6Address()));
        } else {
            return ipv4AddressNoZoneToArray(new Ipv4AddressNoZone(address.getIpv4Address()));
        }
    }


    /**
     * Converts {@link IpAddress} to array representing {@link Ipv4Address} or {@link Ipv6Address}
     */
    default byte[] ipAddressToArray(boolean isIpv6, @Nonnull IpAddress address) {
        checkNotNull(address, "Cannot convert null Address");

        if (isIpv6) {
            return ipv6AddressNoZoneToArray(new Ipv6AddressNoZone(address.getIpv6Address()));
        } else {
            return ipv4AddressNoZoneToArray(new Ipv4AddressNoZone(address.getIpv4Address()));
        }
    }

    default byte[] ipAddressToArray(IpAddressNoZone address) {
        checkNotNull(address, "Cannot resolve null address");

        if (isIpv6(address)) {
            return ipv6AddressNoZoneToArray(address.getIpv6AddressNoZone());
        } else {
            return ipv4AddressNoZoneToArray(address.getIpv4AddressNoZone());
        }
    }

    /**
     * Converts array bytes to {@link IpAddress}.
     */
    @Nonnull
    default IpAddress arrayToIpAddress(boolean isIpv6, byte[] ip) {
        if (isIpv6) {
            return new IpAddress(arrayToIpv6AddressNoZone(ip));
        } else {
            return new IpAddress(arrayToIpv4AddressNoZone(ip));
        }
    }

    // safest way to compare addresses - prevents returning false while using different types from hierarchy
    // Ex. Key for MapResolver contains Ipv4Address as value but we translate addresses from binary data to Ipv4AddressNoZone
    default boolean addressesEqual(final IpAddress left, final IpAddress right) {
        return left.stringValue().equalsIgnoreCase(right.stringValue());
    }

    /**
     * Extract mask length from prefixed address
     */
    default byte extractPrefix(IpPrefix ipPrefix) {
        if (isIpv6(ipPrefix)) {
            return extractPrefix(ipPrefix.getIpv6Prefix());
        } else {
            return extractPrefix(ipPrefix.getIpv4Prefix());
        }
    }

    /**
     * Convert address part of prefix to byte array
     */
    default byte[] ipPrefixToArray(IpPrefix ipPrefix) {
        if (isIpv6(ipPrefix)) {
            return ipv6AddressPrefixToArray(ipPrefix.getIpv6Prefix());
        } else {
            return ipv4AddressPrefixToArray(ipPrefix.getIpv4Prefix());
        }
    }
}