com.wl4g.infra.common.net.HostUtils Maven / Gradle / Ivy
The newest version!
/*
* Copyright 2017 ~ 2025 the original author or authors. James Wong
*
* 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 com.wl4g.infra.common.net;
import static com.wl4g.infra.common.lang.StringUtils2.eqIgnCase;
import static com.wl4g.infra.common.log.SmartLoggerFactory.getLogger;
import static java.lang.String.format;
import java.net.InetAddress;
import java.net.UnknownHostException;
import com.wl4g.infra.common.log.SmartLogger;
/**
* {@link HostUtils}
*
* @author James Wong <[email protected]>
* @version 2021-07-20 v1.0.0
* @since v1.0.0
*/
public abstract class HostUtils {
protected static final SmartLogger log = getLogger(HostUtils.class);
public static boolean isSameHost(String host1, String host2) {
if (eqIgnCase(host1, host2)) {
return true;
}
try {
InetAddress h1 = InetAddress.getByName(host1);
InetAddress h2 = InetAddress.getByName(host2);
if (eqIgnCase(h1.getHostName(), h2.getHostName())) {
return true;
} else {
return eqIgnCase(h1.getCanonicalHostName(), h2.getCanonicalHostName());
}
} catch (UnknownHostException e) {
return false;
} catch (Exception e) {
log.warn(format("Unable to compare hosts. '%s' and '%s', reason: %s", host1, host2, e.getMessage()));
}
return false;
}
}