Categories:
Audio (13)
Biotech (29)
Bytecode (36)
Database (77)
Framework (7)
Game (7)
General (507)
Graphics (53)
I/O (35)
IDE (2)
JAR Tools (102)
JavaBeans (21)
JDBC (121)
JDK (426)
JSP (20)
Logging (108)
Mail (58)
Messaging (8)
Network (84)
PDF (97)
Report (7)
Scripting (84)
Security (32)
Server (121)
Servlet (26)
SOAP (24)
Testing (54)
Web (15)
XML (322)
Collections:
Other Resources:
Apache ZooKeeper 3.7.0 Server Source Code
Apache ZooKeeper is an open-source server which enables highly
reliable distributed coordination.
Apache ZooKeeper Server Source Code files are provided in the source packge (apache-zookeeper-3.7.0.tar.gz). You can download it at Apache ZooKeeper Website.
You can also browse Apache ZooKeeper Server Source Code below:
✍: FYIcenter.com
⏎ org/apache/zookeeper/common/NetUtils.java
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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 org.apache.zookeeper.common;
import java.net.Inet6Address;
import java.net.InetAddress;
import java.net.InetSocketAddress;
/**
* This class contains common utilities for netstuff. Like printing IPv6 literals correctly
*/
public class NetUtils {
public static String formatInetAddr(InetSocketAddress addr) {
InetAddress ia = addr.getAddress();
if (ia == null) {
return String.format("%s:%s", addr.getHostString(), addr.getPort());
}
if (ia instanceof Inet6Address) {
return String.format("[%s]:%s", ia.getHostAddress(), addr.getPort());
} else {
return String.format("%s:%s", ia.getHostAddress(), addr.getPort());
}
}
/**
* Separates host and port from given host port string if host port string is enclosed
* within square bracket.
*
* @param hostPort host port string
* @return String[]{host, port} if host port string is host:port
* or String[] {host, port:port} if host port string is host:port:port
* or String[] {host} if host port string is host
* or String[]{} if not a ipv6 host port string.
*/
public static String[] getIPV6HostAndPort(String hostPort) {
if (hostPort.startsWith("[")) {
int i = hostPort.lastIndexOf(']');
if (i < 0) {
throw new IllegalArgumentException(
hostPort + " starts with '[' but has no matching ']'");
}
String host = hostPort.substring(1, i);
if (host.isEmpty()) {
throw new IllegalArgumentException(host + " is empty.");
}
if (hostPort.length() > i + 1) {
return getHostPort(hostPort, i, host);
}
return new String[] { host };
} else {
//Not an IPV6 host port string
return new String[] {};
}
}
private static String[] getHostPort(String hostPort, int indexOfClosingBracket, String host) {
// [127::1]:2181 , check separator : exits
if (hostPort.charAt(indexOfClosingBracket + 1) != ':') {
throw new IllegalArgumentException(hostPort + " does not have : after ]");
}
// [127::1]: scenario
if (indexOfClosingBracket + 2 == hostPort.length()) {
throw new IllegalArgumentException(hostPort + " doesn't have a port after colon.");
}
//do not include
String port = hostPort.substring(indexOfClosingBracket + 2);
return new String[] { host, port };
}
}
⏎ org/apache/zookeeper/common/NetUtils.java
Or download all of them as a single archive file:
File name: zookeeper-server-3.7.0-fyi.zip File size: 871011 bytes Release date: 2021-05-17 Download
⇒ Apache ZooKeeper 3.7.0 Jute Source Code
⇐ Download Apache ZooKeeper 3.7.0 Source Package
2022-11-16, ≈71🔥, 0💬
Popular Posts:
How to download and install JDK (Java Development Kit) 6? If you want to write Java applications, yo...
maven-core-3.8.6.jar is the JAR file for Apache Maven 3.8.6 Core module. Apache Maven is a software ...
What is the sax\Writer.java provided in the Apache Xerces package? I have Apache Xerces 2.11.0 insta...
JDK 17 jdk.compiler.jmod is the JMOD file for JDK 17 Compiler tool, which can be invoked by the "jav...
kernel.jar is a component in iText Java library to provide low-level functionalities. iText Java lib...