All Downloads are FREE. Search and download functionalities are using the official Maven repository.

co.cask.cdap.common.utils.Networks Maven / Gradle / Ivy

There is a newer version: 5.1.2
Show newest version
/*
 * Copyright © 2014 Cask Data, Inc.
 *
 * 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 co.cask.cdap.common.utils;

import com.google.common.base.Charsets;

import java.io.IOException;
import java.io.UnsupportedEncodingException;
import java.net.InetAddress;
import java.net.ServerSocket;
import java.net.URLEncoder;
import java.net.UnknownHostException;

/**
 * Utility class to provide methods for common network related operations.
 */
public final class Networks {

  /**
   * Resolves the given hostname into {@link InetAddress}.
   *
   * @param hostname The hostname in String. If {@code null}, return localhost.
   * @param onErrorAddress InetAddress to return if the given hostname cannot be resolved.
   * @return An {@link InetAddress} of the resolved hostname.
   */
  public static InetAddress resolve(String hostname, InetAddress onErrorAddress) {
    try {
      if (hostname != null) {
        return InetAddress.getByName(hostname);
      } else {
        return InetAddress.getLocalHost();
      }
    } catch (UnknownHostException e) {
      return onErrorAddress;
    }
  }

  /**
   * Find a random free port in localhost for binding.
   * @return A port number or -1 for failure.
   */
  public static int getRandomPort() {
    try {
      try (ServerSocket socket = new ServerSocket(0)) {
        return socket.getLocalPort();
      }
    } catch (IOException e) {
      return -1;
    }
  }

  private Networks() {
  }

  /**
   * Normalizes the name by doing the following:
   * 
    *
  • Remove trailing slashes.
  • *
  • Remove :80 from end of the host part if any.
  • *
  • Replace '.', ':', '/' and '-' with '_'.
  • *
  • URL encode the name.
  • *
* @param name discovery name that needs to be normalized. * @return the normalized discovery name. */ public static String normalizeWebappDiscoveryName(String name) throws UnsupportedEncodingException { if (name.endsWith("/")) { name = name.replaceAll("/+$", ""); } if (name.contains(":80/")) { name = name.replace(":80/", "/"); } else if (name.endsWith(":80")) { name = name.substring(0, name.length() - 3); } name = name.replace('.', '_'); name = name.replace('-', '_'); name = name.replace(':', '_'); name = name.replace('/', '_'); return URLEncoder.encode(name, Charsets.UTF_8.name()); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy