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

org.xbill.DNS.config.PropertyResolverConfigProvider Maven / Gradle / Ivy

There is a newer version: 3.6.2_1
Show newest version
// SPDX-License-Identifier: BSD-2-Clause
package org.xbill.DNS.config;

import java.net.InetSocketAddress;
import java.net.URI;
import java.net.URISyntaxException;
import java.util.StringTokenizer;
import org.xbill.DNS.SimpleResolver;

/**
 * The properties {@link #DNS_SERVER_PROP}, {@link #DNS_SEARCH_PROP} (comma delimited lists) are
 * checked. The servers can either be IP addresses or hostnames (which are resolved using Java's
 * built in DNS support).
 */
public class PropertyResolverConfigProvider extends BaseResolverConfigProvider {
  public static final String DNS_SERVER_PROP = "dns.server";
  public static final String DNS_SEARCH_PROP = "dns.search";
  public static final String DNS_NDOTS_PROP = "dns.ndots";

  private int ndots;

  @Override
  public void initialize() {
    initialize(DNS_SERVER_PROP, DNS_SEARCH_PROP, DNS_NDOTS_PROP);
  }

  /**
   * Initializes the servers, search path and ndots setting with from the property names passed as
   * the arguments.
   *
   * @param serverName the property name for the DNS servers
   * @param searchName the property name for the search path
   * @param ndotsName the property name for the ndots setting
   * @since 3.2
   */
  protected void initialize(String serverName, String searchName, String ndotsName) {
    String servers = System.getProperty(serverName);
    if (servers != null) {
      StringTokenizer st = new StringTokenizer(servers, ",");
      while (st.hasMoreTokens()) {
        String server = st.nextToken();
        try {
          URI uri = new URI("dns://" + server);
          // assume this is an IPv6 address without brackets
          if (uri.getHost() == null) {
            addNameserver(new InetSocketAddress(server, SimpleResolver.DEFAULT_PORT));
          } else {
            int port = uri.getPort();
            if (port == -1) {
              port = SimpleResolver.DEFAULT_PORT;
            }

            addNameserver(new InetSocketAddress(uri.getHost(), port));
          }
        } catch (URISyntaxException e) {
          log.warn("Ignored invalid server {}", server);
        }
      }
    }

    String searchPathProperty = System.getProperty(searchName);
    parseSearchPathList(searchPathProperty, ",");

    String ndotsProperty = System.getProperty(ndotsName);
    ndots = parseNdots(ndotsProperty);
  }

  @Override
  public int ndots() {
    return ndots;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy