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

com.couchbase.client.core.deps.org.xbill.DNS.ARecord Maven / Gradle / Ivy

There is a newer version: 3.7.2
Show newest version
// SPDX-License-Identifier: BSD-3-Clause
// Copyright (c) 1999-2004 Brian Wellington ([email protected])

package com.couchbase.client.core.deps.org.xbill.DNS;

import java.io.IOException;
import java.net.InetAddress;
import java.net.UnknownHostException;

/**
 * Address Record - maps a domain name to an Internet address
 *
 * @author Brian Wellington
 * @see RFC 1035: Domain Names - Implementation and
 *     Specification
 */
public class ARecord extends Record {
  private int addr;

  ARecord() {}

  private static int fromArray(byte[] array) {
    return ((array[0] & 0xFF) << 24)
        | ((array[1] & 0xFF) << 16)
        | ((array[2] & 0xFF) << 8)
        | (array[3] & 0xFF);
  }

  private static byte[] toArray(int addr) {
    byte[] bytes = new byte[4];
    bytes[0] = (byte) ((addr >>> 24) & 0xFF);
    bytes[1] = (byte) ((addr >>> 16) & 0xFF);
    bytes[2] = (byte) ((addr >>> 8) & 0xFF);
    bytes[3] = (byte) (addr & 0xFF);
    return bytes;
  }

  /**
   * Creates an A Record from the given data
   *
   * @param address The address that the name refers to
   */
  public ARecord(Name name, int dclass, long ttl, InetAddress address) {
    super(name, Type.A, dclass, ttl);
    if (Address.familyOf(address) != Address.IPv4) {
      throw new IllegalArgumentException("invalid IPv4 address");
    }
    addr = fromArray(address.getAddress());
  }

  @Override
  protected void rrFromWire(DNSInput in) throws IOException {
    addr = fromArray(in.readByteArray(4));
  }

  @Override
  protected void rdataFromString(Tokenizer st, Name origin) throws IOException {
    addr = fromArray(st.getAddressBytes(Address.IPv4));
  }

  /** Converts rdata to a String */
  @Override
  protected String rrToString() {
    return Address.toDottedQuad(toArray(addr));
  }

  /** Returns the Internet address */
  public InetAddress getAddress() {
    try {
      if (name == null) {
        return InetAddress.getByAddress(toArray(addr));
      } else {
        return InetAddress.getByAddress(name.toString(), toArray(addr));
      }
    } catch (UnknownHostException e) {
      return null;
    }
  }

  @Override
  protected void rrToWire(DNSOutput out, Compression c, boolean canonical) {
    out.writeU32((long) addr & 0xFFFFFFFFL);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy