com.github.housepower.buffer.ByteArrayWriter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of clickhouse-native-jdbc Show documentation
Show all versions of clickhouse-native-jdbc Show documentation
ClickHouse Native Protocol JDBC implementation
The 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.Buffer;
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, 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 -> {
// upcast is necessary, see detail at:
// https://bitbucket.org/ijabz/jaudiotagger/issues/313/java-8-javalangnosuchmethoderror
((Buffer) 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 - 2025 Weber Informatics LLC | Privacy Policy