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

org.xbill.DNS.U16NameBase Maven / Gradle / Ivy

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

package org.xbill.DNS;

import java.io.IOException;

/**
 * Implements common functionality for the many record types whose format is an unsigned 16 bit
 * integer followed by a name.
 *
 * @author Brian Wellington
 */
abstract class U16NameBase extends Record {
  protected int u16Field;
  protected Name nameField;

  protected U16NameBase() {}

  protected U16NameBase(Name name, int type, int dclass, long ttl) {
    super(name, type, dclass, ttl);
  }

  protected U16NameBase(
      Name name,
      int type,
      int dclass,
      long ttl,
      int u16Field,
      String u16Description,
      Name nameField,
      String nameDescription) {
    super(name, type, dclass, ttl);
    this.u16Field = checkU16(u16Description, u16Field);
    this.nameField = checkName(nameDescription, nameField);
  }

  @Override
  protected void rrFromWire(DNSInput in) throws IOException {
    u16Field = in.readU16();
    nameField = new Name(in);
  }

  @Override
  protected void rdataFromString(Tokenizer st, Name origin) throws IOException {
    u16Field = st.getUInt16();
    nameField = st.getName(origin);
  }

  @Override
  protected String rrToString() {
    StringBuilder sb = new StringBuilder();
    sb.append(u16Field);
    sb.append(" ");
    sb.append(nameField);
    return sb.toString();
  }

  protected int getU16Field() {
    return u16Field;
  }

  protected Name getNameField() {
    return nameField;
  }

  @Override
  protected void rrToWire(DNSOutput out, Compression c, boolean canonical) {
    out.writeU16(u16Field);
    nameField.toWire(out, null, canonical);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy