blob: 45f10d11d0c0e9cd7324b71365b3e0b85a7ff7c5 [file] [log] [blame]
package org.projectfloodlight.openflow.types;
public class IPv4AddressWithMask extends Masked<IPv4Address> {
public final static IPv4AddressWithMask NONE = of(IPv4Address.NONE, IPv4Address.NONE);
private IPv4AddressWithMask(int rawValue, int rawMask) {
super(IPv4Address.of(rawValue), IPv4Address.of(rawMask));
}
private IPv4AddressWithMask(IPv4Address value, IPv4Address mask) {
super(value, mask);
}
public static IPv4AddressWithMask of(int rawValue, int rawMask) {
return new IPv4AddressWithMask(rawValue, rawMask);
}
public static IPv4AddressWithMask of(IPv4Address value, IPv4Address mask) {
return new IPv4AddressWithMask(value, mask);
}
@Override
public String toString() {
StringBuilder res = new StringBuilder();
res.append(value.toString());
int maskint = mask.getInt();
res.append('/');
if (Integer.bitCount((~maskint) + 1) == 1) {
// CIDR notation
res.append(Integer.bitCount(maskint));
} else {
// Full address mask
res.append(mask.toString());
}
return res.toString();
}
public static IPv4AddressWithMask of(final String string) {
int slashPos;
String ip = string;
int maskBits = 0;
IPv4Address maskAddress = null;
// Read mask suffix
if ((slashPos = string.indexOf('/')) != -1) {
ip = string.substring(0, slashPos);
try {
String suffix = string.substring(slashPos + 1);
if (suffix.length() == 0)
throw new IllegalArgumentException("IP Address not well formed: " + string);
if (suffix.indexOf('.') != -1) {
// Full mask
maskAddress = IPv4Address.of(suffix);
} else {
// CIDR Suffix
maskBits = Integer.parseInt(suffix);
}
} catch (NumberFormatException e) {
throw new IllegalArgumentException("IP Address not well formed: " + string);
}
if (maskBits < 0 || maskBits > 32) {
throw new IllegalArgumentException("IP Address not well formed: " + string);
}
}
// Read IP
IPv4Address ipv4 = IPv4Address.of(ip);
if (maskAddress != null) {
// Full address mask
return IPv4AddressWithMask.of(ipv4, maskAddress);
} else if (maskBits == 0) {
// No mask
return IPv4AddressWithMask.of(ipv4, IPv4Address.NO_MASK);
} else {
// With mask
int mask = (-1) << (32 - maskBits);
return IPv4AddressWithMask.of(ipv4, IPv4Address.of(mask));
}
}
}