com.clickhouse.data.stream.IterableObjectInputStream Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of clickhouse-data Show documentation
Show all versions of clickhouse-data Show documentation
Data processing utilities for ClickHouse
The newest version!
package com.clickhouse.data.stream;
import java.io.IOException;
import java.util.Iterator;
import java.util.function.Function;
import com.clickhouse.data.ClickHouseByteBuffer;
import com.clickhouse.data.ClickHouseChecker;
public class IterableObjectInputStream extends AbstractByteArrayInputStream {
private final Function func;
private final Iterator it;
public IterableObjectInputStream(Iterable source, Function converter, Runnable postCloseAction) {
super(null, null, postCloseAction);
func = ClickHouseChecker.nonNull(converter, "Converter");
it = ClickHouseChecker.nonNull(source, "Source").iterator();
}
@Override
protected int updateBuffer() throws IOException {
position = 0;
while (it.hasNext()) {
T obj = it.next();
byte[] bytes = obj != null ? func.apply(obj) : null;
if (bytes != null && bytes.length > 0) {
buffer = bytes;
if (copyTo != null) {
copyTo.write(bytes);
}
return limit = bytes.length;
}
}
buffer = ClickHouseByteBuffer.EMPTY_BYTES;
return limit = 0;
}
}