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

gg.jte.output.Utf8ByteOutput Maven / Gradle / Ivy

There is a newer version: 3.1.12
Show newest version
package gg.jte.output;

import gg.jte.TemplateOutput;

import java.io.IOException;
import java.io.OutputStream;
import java.nio.charset.StandardCharsets;
import java.util.ArrayList;
import java.util.List;

/**
 * UTF-8 template output, designed to be CPU and memory friendly.
 * You may want to use this class, if you write to a low-level binary output stream, and you need the exact content-size of the output.
 *
 * CAUTION: You must enable {@link gg.jte.TemplateEngine#setBinaryStaticContent(boolean)}, otherwise this class won't provide any benefits over {@link StringOutput}!
 */
public final class Utf8ByteOutput implements TemplateOutput {

    private final List chunks;
    private int contentLength;

    public Utf8ByteOutput() {
        this(512);
    }

    public Utf8ByteOutput(int initialCapacity) {
        chunks = new ArrayList<>(initialCapacity);
    }

    /**
     * @return The amount of bytes written to this output.
     */
    public int getContentLength() {
        return contentLength;
    }

    /**
     * Passes all collected bytes to the given output stream. Does not close the stream.
     * @param os the output stream
     * @throws IOException in case the stream operation fails
     */
    public void writeTo(OutputStream os) throws IOException {
        writeTo(os::write);
    }

    /**
     * Passes all collected bytes to the given data consumer.
     * CAUTION: For performance reasons no copy of the byte arrays is made. It is the consumer's duty to never alter their content!
     * @param dataConsumer the data consumer
     * @throws IOException in case the consume operation fails
     */
    public void writeTo(DataConsumer dataConsumer) throws IOException {
        for (byte[] chunk : chunks) {
            dataConsumer.accept(chunk, 0, chunk.length);
        }
    }

    public byte[] toByteArray() {
        byte[] result = new byte[contentLength];

        int index = 0;
        for (byte[] chunk : chunks) {
            System.arraycopy(chunk, 0, result, index, chunk.length);
            index += chunk.length;
        }

        return result;
    }

    @Override
    public void writeContent(String s) {
        addChunk(s.getBytes(StandardCharsets.UTF_8));
    }

    @Override
    public void writeContent(String s, int beginIndex, int endIndex) {
        addChunk(s.substring(beginIndex, endIndex).getBytes(StandardCharsets.UTF_8));
    }

    @Override
    public void writeBinaryContent(byte[] value) {
        addChunk(value);
    }

    private void addChunk(byte[] chunk) {
        chunks.add(chunk);
        contentLength += chunk.length;
    }

    @FunctionalInterface
    public interface DataConsumer {
        void accept(byte[] bytes, int startIndex, int length) throws IOException;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy