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

mousio.client.util.SRV2URIs Maven / Gradle / Ivy

There is a newer version: 2.18.0
Show newest version
/*
 * Copyright (c) 2015, Jurriaan Mous and contributors as indicated by the @author tags.
 *
 * 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 mousio.client.util;

import javax.naming.NamingEnumeration;
import javax.naming.NamingException;
import javax.naming.directory.Attribute;
import javax.naming.directory.Attributes;
import javax.naming.directory.DirContext;
import javax.naming.directory.InitialDirContext;

import java.net.URI;
import java.util.ArrayList;
import java.util.Hashtable;
import java.util.List;

/**
 * Utility class to convert SRV records to array of URIs
 */
public final class SRV2URIs {

  /**
   * Convert given DNS SRV address to array of URIs
   *
   * @param service complete DNS name to resolve to URIs
   * @return Array of URIs
   * @throws NamingException if DNS name was invalid
   */
  public static URI[] fromService(String service) throws NamingException {
    return fromDNSName("_etcd-server._tcp." + service);
  }

  /**
   * Convert given DNS SRV address to array of URIs
   *
   * @param srvName complete DNS name to resolve to URIs
   * @return Array of URIs
   * @throws NamingException if DNS name was invalid
   */
  public static URI[] fromDNSName(String srvName) throws NamingException {
    List uris = new ArrayList<>();
    Hashtable env = new Hashtable<>();
    env.put("java.naming.factory.initial", "com.sun.jndi.dns.DnsContextFactory");
    env.put("java.naming.provider.url", "dns:");

    DirContext ctx = new InitialDirContext(env);
    Attributes attributes = ctx.getAttributes(srvName, new String[]{"SRV"});
    NamingEnumeration records = attributes.getAll();

    while (records.hasMore()) {
      Attribute next = records.next();

      @SuppressWarnings("unchecked")
      NamingEnumeration values = (NamingEnumeration) next.getAll();
      while (values.hasMore()) {
        String dns = values.next();
        String[] split = dns.split(" ");
        String port = split[2];
        String host = split[3];
        if (host.endsWith(".")) {
          host = host.substring(0, host.length() - 1);
        }
        URI uri = URI.create("http://" + host + ":" + port);
        uris.add(uri);
      }
    }
    return uris.toArray(new URI[uris.size()]);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy