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

io.netty.handler.codec.dns.DnsResource Maven / Gradle / Ivy

The newest version!
/*
 * Copyright 2013 The Netty Project
 *
 * The Netty Project licenses this file to you 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 io.netty.handler.codec.dns;

import io.netty.buffer.ByteBuf;
import io.netty.buffer.ByteBufHolder;

/**
 * Represents any resource record (answer, authority, or additional resource
 * records).
 */
public final class DnsResource extends DnsEntry implements ByteBufHolder {

    private final long ttl;
    private final ByteBuf content;

    /**
     * Constructs a resource record.
     *
     * @param name
     *            the domain name
     * @param type
     *            the type of record being returned
     * @param aClass
     *            the class for this resource record
     * @param ttl
     *            the time to live after reading
     * @param content
     *            the data contained in this record
     */
    public DnsResource(String name, DnsType type, DnsClass aClass, long ttl, ByteBuf content) {
        super(name, type, aClass);
        this.ttl = ttl;
        this.content = content;
    }

    /**
     * Returns the time to live after reading for this resource record.
     */
    public long timeToLive() {
        return ttl;
    }

    /**
     * Returns the data contained in this resource record.
     */
    @Override
    public ByteBuf content() {
        return content;
    }

    /**
     * Returns a deep copy of this resource record.
     */
    @Override
    public DnsResource copy() {
        return new DnsResource(name(), type(), dnsClass(), ttl, content.copy());
    }

    /**
     * Returns a duplicate of this resource record.
     */
    @Override
    public DnsResource duplicate() {
        return new DnsResource(name(), type(), dnsClass(), ttl, content.duplicate());
    }

    @Override
    public int refCnt() {
        return content.refCnt();
    }

    @Override
    public DnsResource retain() {
        content.retain();
        return this;
    }

    @Override
    public DnsResource retain(int increment) {
        content.retain(increment);
        return this;
    }

    @Override
    public boolean release() {
        return content.release();
    }

    @Override
    public boolean release(int decrement) {
        return content.release(decrement);
    }

    @Override
    public DnsResource touch() {
        content.touch();
        return this;
    }

    @Override
    public DnsResource touch(Object hint) {
        content.touch(hint);
        return this;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy