Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* Copyright 2015-2024 the original author or authors
*
* This software is licensed under the Apache License, Version 2.0,
* the GNU Lesser General Public License version 2 or later ("LGPL")
* and the WTFPL.
* You may choose either license to govern your use of this software only
* upon the condition that you accept all of the terms of either
* the Apache License 2.0, the LGPL 2.1+ or the WTFPL.
*/
package org.minidns.util;
import java.net.Inet4Address;
import java.net.Inet6Address;
import java.net.InetAddress;
import java.net.UnknownHostException;
import java.util.regex.Pattern;
import org.minidns.dnsname.DnsName;
public class InetAddressUtil {
public static Inet4Address ipv4From(CharSequence cs) {
InetAddress inetAddress;
try {
inetAddress = InetAddress.getByName(cs.toString());
} catch (UnknownHostException e) {
throw new IllegalArgumentException(e);
}
if (inetAddress instanceof Inet4Address) {
return (Inet4Address) inetAddress;
}
throw new IllegalArgumentException();
}
public static Inet6Address ipv6From(CharSequence cs) {
InetAddress inetAddress;
try {
inetAddress = InetAddress.getByName(cs.toString());
} catch (UnknownHostException e) {
throw new IllegalArgumentException(e);
}
if (inetAddress instanceof Inet6Address) {
return (Inet6Address) inetAddress;
}
throw new IllegalArgumentException();
}
// IPV4_REGEX from http://stackoverflow.com/a/46168/194894 by Kevin Wong (http://stackoverflow.com/users/4792/kevin-wong) licensed under
// CC BY-SA 3.0.
private static final Pattern IPV4_PATTERN = Pattern.compile("\\A(25[0-5]|2[0-4]\\d|[0-1]?\\d?\\d)(\\.(25[0-5]|2[0-4]\\d|[0-1]?\\d?\\d)){3}\\z");
public static boolean isIpV4Address(CharSequence address) {
if (address == null) {
return false;
}
return IPV4_PATTERN.matcher(address).matches();
}
// IPv6 Regular Expression from http://stackoverflow.com/a/17871737/194894 by David M. Syzdek
// (http://stackoverflow.com/users/903194/david-m-syzdek) licensed under CC BY-SA 3.0.
private static final Pattern IPV6_PATTERN = Pattern.compile(
"(([0-9a-fA-F]{1,4}:){7,7}[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,7}:|([0-9a-fA-F]{1,4}:){1,6}:[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,5}(:[0-9a-fA-F]{1,4}){1,2}|([0-9a-fA-F]{1,4}:){1,4}(:[0-9a-fA-F]{1,4}){1,3}|([0-9a-fA-F]{1,4}:){1,3}(:[0-9a-fA-F]{1,4}){1,4}|([0-9a-fA-F]{1,4}:){1,2}(:[0-9a-fA-F]{1,4}){1,5}|[0-9a-fA-F]{1,4}:((:[0-9a-fA-F]{1,4}){1,6})|:((:[0-9a-fA-F]{1,4}){1,7}|:)|fe80:(:[0-9a-fA-F]{0,4}){0,4}%[0-9a-zA-Z]{1,}|::(ffff(:0{1,4}){0,1}:){0,1}((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])|([0-9a-fA-F]{1,4}:){1,4}:((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9]))");
public static boolean isIpV6Address(CharSequence address) {
if (address == null) {
return false;
}
return IPV6_PATTERN.matcher(address).matches();
}
public static boolean isIpAddress(CharSequence address) {
return isIpV6Address(address) || isIpV4Address(address);
}
public static InetAddress convertToInetAddressIfPossible(CharSequence address) {
if (!isIpAddress(address)) {
return null;
}
String addressString = address.toString();
try {
return InetAddress.getByName(addressString);
} catch (UnknownHostException e) {
// Should never happen.
throw new AssertionError(e);
}
}
public static DnsName reverseIpAddressOf(Inet6Address inet6Address) {
final String ipAddress = inet6Address.getHostAddress();
final String[] ipAddressParts = ipAddress.split(":");
String[] parts = new String[32];
int currentPartNum = 0;
for (int i = ipAddressParts.length - 1; i >= 0; i--) {
final String currentPart = ipAddressParts[i];
final int missingPlaces = 4 - currentPart.length();
for (int j = 0; j < missingPlaces; j++) {
parts[currentPartNum++] = "0";
}
for (int j = 0; j < currentPart.length(); j++) {
parts[currentPartNum++] = Character.toString(currentPart.charAt(j));
}
}
return DnsName.from(parts);
}
public static DnsName reverseIpAddressOf(Inet4Address inet4Address) {
final String[] ipAddressParts = inet4Address.getHostAddress().split("\\.");
assert ipAddressParts.length == 4;
return DnsName.from(ipAddressParts);
}
}