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

kg.apc.jmeter.samplers.DNSJavaDecoderToRawData 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.Message;
import org.xbill.DNS.Section;

import java.io.*;
import java.nio.ByteBuffer;

@Deprecated
public class DNSJavaDecoderToRawData extends DNSJavaDecoder {

    protected OutputStream os = null;

    @Override
    public ByteBuffer encode(String data) {
        if (os == null) {
            try {
                os = new FileOutputStream(new File("DNSJavaDecoderToRawData.out"));
            } catch (FileNotFoundException ex) {
                throw new RuntimeException(ex);
            }
        }

        Message msg = new Message();
        String recs[] = data.split(NL);
        for (String rec : recs) {
            msg.addRecord(getRecord(rec), Section.QUESTION);
        }

        try {
            final byte[] ba1 = msg.toWire();
            os.write(Integer.toString(ba1.length * 2).getBytes("cp866"));
            os.write('\n');
            os.write(JOrphanUtils.baToHexBytes(ba1));
            os.write('\n');
        } catch (IOException ex) {
            throw new RuntimeException(ex);
        }

        return ByteBuffer.wrap(msg.toWire());
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy