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

kg.apc.jmeter.samplers.DNSJavaDecoder Maven / Gradle / Ivy

There is a newer version: 0.4
Show newest version
package kg.apc.jmeter.samplers;

import org.apache.jorphan.util.JOrphanUtils;
import org.xbill.DNS.*;

import java.io.IOException;
import java.nio.ByteBuffer;

public class DNSJavaDecoder implements UDPTrafficDecoder {

    public static final String NL = "\n";
    public static final String SPACE = " ";

    @Override
    public ByteBuffer encode(String data) {
        return ByteBuffer.wrap(getMessageBytes(data));
    }

    protected byte[] getMessageBytes(String data) {
        Message msg = new Message();
        String recs[] = data.split(NL);
        for (String rec : recs) {
            if (rec.length() <= 3) {
                Header head = msg.getHeader();
                int val = Integer.parseInt(rec.trim());
                if (val < 0) {
                    head.unsetFlag(-val);
                } else {
                    head.setFlag(val);
                }
                msg.setHeader(head);
            } else {
                msg.addRecord(getRecord(rec.trim()), Section.QUESTION);
            }
        }
        return msg.toWire();
    }

    protected Record getRecord(String recstr) {
        String[] fields = recstr.split(SPACE);
        if (fields.length != 3) {
            throw new IllegalArgumentException("Wrong DNS query string: " + recstr);
        }
        return Record.newRecord(Name.fromConstantString(fields[0]), Type.value(fields[1]), DClass.value(fields[2]));
    }

    @Override
    public byte[] decode(byte[] buf) {
        Message m;
        try {
            m = new Message(buf);
        } catch (IOException ex) {
            throw new RuntimeException("Cannot decode DNS message: " + JOrphanUtils.baToHexString(buf), ex);
        }
        return m.toString().getBytes();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy