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

com.github.housepower.buffer.ByteArrayWriter Maven / Gradle / Ivy

There is a newer version: 2.7.1
Show newest version
/*
 * Licensed 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 com.github.housepower.buffer;

import java.io.IOException;
import java.nio.ByteBuffer;
import java.util.Deque;
import java.util.LinkedList;
import java.util.List;

public class ByteArrayWriter implements BuffedWriter {
    private final int blockSize;
    private ByteBuffer buffer;

    private final List byteBufferList = new LinkedList<>();

    // LIFO queue
    private final Deque freeList = new LinkedList<>();
    
    public ByteArrayWriter(int blockSize) {
        this.blockSize = blockSize;
        
        reuseOrAllocateByteBuffer();
    }

    @Override
    public void writeBinary(byte byt) throws IOException {
        buffer.put(byt);
        flushToTarget(false);
    }

    @Override
    public void writeBinary(byte[] bytes) throws IOException {
        writeBinary(bytes, 0, bytes.length);
    }

    @Override
    public void writeBinary(byte[] bytes, int offset, int length) throws IOException {

        while (buffer.remaining() < length) {
            int num = buffer.remaining();
            buffer.put(bytes, offset, num);
            flushToTarget(true);

            offset += num;
            length -= num;
        }

        buffer.put(bytes, offset, length);
        flushToTarget(false);
    }

    @Override
    public void flushToTarget(boolean force) throws IOException {
        if (buffer.hasRemaining() && !force) {
            return;
        }
        reuseOrAllocateByteBuffer();
    }

    public List getBufferList() {
        return byteBufferList;
    }
    
    public void reset() {
        byteBufferList.forEach(b -> {
            b.clear();
            freeList.addLast(b);
        });
        byteBufferList.clear();
        
        reuseOrAllocateByteBuffer();
    }
    
    private ByteBuffer reuseOrAllocateByteBuffer() {
        ByteBuffer newBuffer = freeList.pollLast();
        if (newBuffer == null) {
            newBuffer = ByteBuffer.allocate(blockSize);
        }
        
        buffer = newBuffer;
        byteBufferList.add(buffer);
        return buffer;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy