blob: 31b44552b7c2a15c4cd7bc825c17cff9d5e38d01 [file] [log] [blame]
Yotam Harcholf3f11152013-09-05 16:47:16 -07001package org.projectfloodlight.openflow.types;
2
Ronald Liaf8d3e72014-07-05 01:26:28 -07003import javax.annotation.Nonnull;
4
Sovietaced9dfc1ef2014-06-27 11:13:57 -07005import com.google.common.base.Preconditions;
6
Yotam Harchol4d634682013-09-26 13:21:06 -07007
8public class IPv4AddressWithMask extends IPAddressWithMask<IPv4Address> {
Andreas Wundsamb75c4ad2013-09-23 14:45:35 -07009 public final static IPv4AddressWithMask NONE = of(IPv4Address.NONE, IPv4Address.NONE);
Yotam Harcholf3f11152013-09-05 16:47:16 -070010
Yotam Harchol9a617aa2013-09-16 14:10:17 -070011 private IPv4AddressWithMask(int rawValue, int rawMask) {
Yotam Harchola289d552013-09-16 10:10:40 -070012 super(IPv4Address.of(rawValue), IPv4Address.of(rawMask));
Yotam Harcholf3f11152013-09-05 16:47:16 -070013 }
Yotam Harchol9a617aa2013-09-16 14:10:17 -070014
15 private IPv4AddressWithMask(IPv4Address value, IPv4Address mask) {
Yotam Harcholf3f11152013-09-05 16:47:16 -070016 super(value, mask);
17 }
Yotam Harchol9a617aa2013-09-16 14:10:17 -070018
Yotam Harchol4d634682013-09-26 13:21:06 -070019 @Override
Yotam Harcholeb023dc2013-09-26 15:45:44 -070020 public IPVersion getIpVersion() {
21 return IPVersion.IPv4;
Yotam Harchol4d634682013-09-26 13:21:06 -070022 }
23
Ronald Liaf8d3e72014-07-05 01:26:28 -070024 /**
25 * Returns an {@code IPv4AddressWithMask} object that represents the given
26 * raw IP address masked by the given raw IP address mask, with both
27 * represented as 32-bit integers.
28 *
29 * @param rawValue the raw IP address to be masked
30 * @param rawMask the raw IP address mask
31 * @return an {@code IPv4AddressWithMask} object that represents
32 * the given raw IP address masked by the given raw IP
33 * address mask
34 */
35 @Nonnull
36 public static IPv4AddressWithMask of(final int rawValue, final int rawMask) {
Yotam Harchol9a617aa2013-09-16 14:10:17 -070037 return new IPv4AddressWithMask(rawValue, rawMask);
Yotam Harcholf3f11152013-09-05 16:47:16 -070038 }
Yotam Harchol9a617aa2013-09-16 14:10:17 -070039
Ronald Liaf8d3e72014-07-05 01:26:28 -070040 /**
41 * Returns an {@code IPv4AddressWithMask} object that represents the given
42 * IP address masked by the given IP address mask, with both represented
43 * as {@code IPv4Address} objects.
44 *
45 * @param value the IP address to be masked
46 * @param mask the IP address mask
47 * @return an {@code IPv4AddressWithMask} object that represents
48 * the given IP address masked by the given IP address mask
49 * @throws NullPointerException if any of the given {@code IPv4Address}
50 * objects were {@code null}
51 */
52 @Nonnull
53 public static IPv4AddressWithMask of(
54 @Nonnull final IPv4Address value,
55 @Nonnull final IPv4Address mask) {
Sovietaced9dfc1ef2014-06-27 11:13:57 -070056 Preconditions.checkNotNull(value, "value must not be null");
57 Preconditions.checkNotNull(mask, "mask must not be null");
58
Yotam Harchol9a617aa2013-09-16 14:10:17 -070059 return new IPv4AddressWithMask(value, mask);
Yotam Harcholf3f11152013-09-05 16:47:16 -070060 }
Yotam Harchol9a617aa2013-09-16 14:10:17 -070061
Ronald Liaf8d3e72014-07-05 01:26:28 -070062 /**
63 * Returns an {@code IPv4AddressWithMask} object that corresponds to
64 * the given string in CIDR notation or other notations as specified
65 * below
66 * <p>
67 * The following notations are accepted.
68 * <table><tr>
69 * <th>Notation</th><th>Example</th><th>Notes</th>
70 * </tr><tr>
71 * <td>IPv4 address only</td><td>{@code 1.2.3.4}</td><td>The subnet mask of
72 * prefix length 32 (i.e. {@code 255.255.255.255}) is assumed.</td>
73 * </tr><tr>
74 * <td>IPv4 address/mask</td><td>{@code 1.2.3.4/255.255.255.0}</td>
75 * </tr><tr>
76 * <td>CIDR notation</td><td>{@code 1.2.3.4/24}</td>
77 * </tr></table>
78 *
79 * @param string the string in acceptable notations
80 * @return an {@code IPv4AddressWithMask} object that corresponds to
81 * the given string in acceptable notations
82 * @throws NullPointerException if the given string was {@code null}
83 * @throws IllegalArgumentException if the given string was malformed
84 */
85 @Nonnull
86 public static IPv4AddressWithMask of(@Nonnull final String string) {
Sovietaced9dfc1ef2014-06-27 11:13:57 -070087 Preconditions.checkNotNull(string, "string must not be null");
88
Yotam Harcholf3f11152013-09-05 16:47:16 -070089 int slashPos;
90 String ip = string;
Ronald Lia780c372014-07-03 17:34:50 -070091 int cidrMaskLength = 32;
Yotam Harchola289d552013-09-16 10:10:40 -070092 IPv4Address maskAddress = null;
Yotam Harcholf3f11152013-09-05 16:47:16 -070093
94 // Read mask suffix
95 if ((slashPos = string.indexOf('/')) != -1) {
96 ip = string.substring(0, slashPos);
97 try {
98 String suffix = string.substring(slashPos + 1);
99 if (suffix.length() == 0)
100 throw new IllegalArgumentException("IP Address not well formed: " + string);
101 if (suffix.indexOf('.') != -1) {
102 // Full mask
Yotam Harchola289d552013-09-16 10:10:40 -0700103 maskAddress = IPv4Address.of(suffix);
Yotam Harcholf3f11152013-09-05 16:47:16 -0700104 } else {
105 // CIDR Suffix
Ronald Lia780c372014-07-03 17:34:50 -0700106 cidrMaskLength = Integer.parseInt(suffix);
Yotam Harcholf3f11152013-09-05 16:47:16 -0700107 }
108 } catch (NumberFormatException e) {
109 throw new IllegalArgumentException("IP Address not well formed: " + string);
110 }
Yotam Harcholf3f11152013-09-05 16:47:16 -0700111 }
Yotam Harchol9a617aa2013-09-16 14:10:17 -0700112
Yotam Harcholf3f11152013-09-05 16:47:16 -0700113 // Read IP
Yotam Harchola289d552013-09-16 10:10:40 -0700114 IPv4Address ipv4 = IPv4Address.of(ip);
Yotam Harchol9a617aa2013-09-16 14:10:17 -0700115
Yotam Harcholf3f11152013-09-05 16:47:16 -0700116 if (maskAddress != null) {
117 // Full address mask
Yotam Harchol9a617aa2013-09-16 14:10:17 -0700118 return IPv4AddressWithMask.of(ipv4, maskAddress);
Yotam Harcholf3f11152013-09-05 16:47:16 -0700119 } else {
Ronald Lia780c372014-07-03 17:34:50 -0700120 return IPv4AddressWithMask.of(
121 ipv4, IPv4Address.ofCidrMaskLength(cidrMaskLength));
Yotam Harcholf3f11152013-09-05 16:47:16 -0700122 }
123 }
Sovietaced77d99492014-06-24 12:58:47 -0700124
Sovietaced07cc8eb2014-06-24 11:55:26 -0700125 @Override
126 public boolean contains(IPAddress<?> ip) {
Sovietaced9dfc1ef2014-06-27 11:13:57 -0700127 Preconditions.checkNotNull(ip, "ip must not be null");
Sovietaced77d99492014-06-24 12:58:47 -0700128
129 if(ip.getIpVersion() == IPVersion.IPv4) {
130 IPv4Address ipv4 = (IPv4Address) ip;
131 return this.matches(ipv4);
132 }
133
134 return false;
Sovietaced07cc8eb2014-06-24 11:55:26 -0700135 }
Yotam Harcholf3f11152013-09-05 16:47:16 -0700136}