org.neo4j.configuration.helpers.SocketAddress Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of neo4j-configuration Show documentation
Show all versions of neo4j-configuration Show documentation
Code responsible for parsing the Neo4j configuration.
The newest version!
/*
* Copyright (c) "Neo4j"
* Neo4j Sweden AB [https://neo4j.com]
*
* This file is part of Neo4j.
*
* Neo4j is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see .
*/
package org.neo4j.configuration.helpers;
import static java.util.Arrays.asList;
import static org.apache.commons.lang3.StringUtils.EMPTY;
import java.net.InetSocketAddress;
import java.util.HashSet;
import java.util.Objects;
import java.util.Set;
import org.neo4j.annotations.api.PublicApi;
/**
* Socket address derived from configuration.
* There is no network awareness at all, just stores the raw configuration exactly as it comes.
*/
@PublicApi
public class SocketAddress {
private static final Set WILDCARDS = new HashSet<>(asList("0.0.0.0", "::"));
private final String hostname;
private final int port;
public SocketAddress(String hostname) {
this(hostname, -1);
}
public SocketAddress(int port) {
this(null, port);
}
public SocketAddress(String hostname, int port) {
if (hostname != null && (hostname.contains("[") || hostname.contains("]"))) {
throw new IllegalArgumentException("hostname cannot contain '[' or ']'");
}
this.hostname = hostname != null ? hostname : "";
this.port = port;
}
/**
* @return hostname or IP address; we don't care.
*/
public String getHostname() {
return hostname;
}
public int getPort() {
return port;
}
public InetSocketAddress socketAddress() {
return new InetSocketAddress(hostname, port);
}
public boolean isWildcard() {
return WILDCARDS.contains(hostname);
}
public boolean isIPv6() {
return isHostnameIPv6(hostname);
}
@Override
public String toString() {
return format(hostname, port);
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
SocketAddress that = (SocketAddress) o;
return port == that.port && Objects.equals(hostname, that.hostname);
}
@Override
public int hashCode() {
return Objects.hash(hostname, port);
}
public static String format(java.net.SocketAddress address) {
if (address instanceof InetSocketAddress inetSocketAddress) {
return format(inetSocketAddress.getHostString(), inetSocketAddress.getPort());
}
return address == null ? EMPTY : address.toString();
}
public static String format(String hostname, int port) {
String portStr = port >= 0 ? String.format(":%s", port) : "";
String hostnameStr = "";
if (hostname != null) {
hostnameStr = isHostnameIPv6(hostname) ? String.format("[%s]", hostname) : hostname;
}
return hostnameStr + portStr;
}
private static boolean isHostnameIPv6(String hostname) {
return hostname.contains(":");
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy