ru.yandex.clickhouse.util.ClickHouseRowBinaryInputStream Maven / Gradle / Ivy
package ru.yandex.clickhouse.util;
import com.google.common.io.LittleEndianDataInputStream;
import com.google.common.primitives.UnsignedLong;
import ru.yandex.clickhouse.settings.ClickHouseProperties;
import ru.yandex.clickhouse.util.guava.StreamUtils;
import java.io.Closeable;
import java.io.EOFException;
import java.io.IOException;
import java.io.InputStream;
import java.math.BigInteger;
import java.nio.ByteBuffer;
import java.nio.ByteOrder;
import java.sql.Date;
import java.sql.Timestamp;
import java.util.TimeZone;
import java.util.UUID;
import java.util.concurrent.TimeUnit;
import static ru.yandex.clickhouse.util.ClickHouseRowBinaryStream.MILLIS_IN_DAY;
public class ClickHouseRowBinaryInputStream implements Closeable {
private final LittleEndianDataInputStream in;
private final TimeZone timeZone;
public ClickHouseRowBinaryInputStream(InputStream is, TimeZone timeZone, ClickHouseProperties properties) {
this.in = new LittleEndianDataInputStream(is);
if (properties.isUseServerTimeZoneForDates()) {
this.timeZone = timeZone;
} else {
this.timeZone = TimeZone.getDefault();
}
}
public int readUnsignedLeb128() throws IOException {
int value = 0;
int read;
int count = 0;
do {
read = in.readByte() & 0xff;
value |= (read & 0x7f) << (count * 7);
count++;
} while (((read & 0x80) == 0x80) && count < 5);
if ((read & 0x80) == 0x80) {
throw new IOException("invalid LEB128 sequence");
}
return value;
}
public void readBytes(byte[] bytes) throws IOException {
readBytes(bytes, 0, bytes.length);
}
public void readBytes(byte[] bytes, int offset, int length) throws IOException {
while (length > 0) {
int read = in.read(bytes, offset, length);
if (read == -1)
throw new EOFException();
offset += read;
length -= read;
}
}
public int readByte() throws IOException {
return in.read();
}
public boolean readIsNull() throws IOException {
int value = readByte();
if (value == -1)
throw new EOFException();
validateInt(value, 0, 1, "nullable");
return value != 0;
}
public String readString() throws IOException {
int length = readUnsignedLeb128();
byte[] bytes = new byte[length];
readBytes(bytes);
return new String(bytes, StreamUtils.UTF_8);
}
private void validateInt(int value, int minValue, int maxValue, String dataType) {
if (value < minValue || value > maxValue) {
throw new IllegalStateException("Not a " + dataType + " value: " + value);
}
}
public boolean readBoolean() throws IOException {
int value = readUInt8();
validateInt(value, 0, 1, "boolean");
return value != 0;
}
public short readUInt8() throws IOException {
return (short) in.readUnsignedByte();
}
/**
* Warning: the result is negative in Java if UInt8 > 0x7f
* @return next UInt8 value as a byte
* @throws IOException
*/
public byte readUInt8AsByte() throws IOException {
return in.readByte();
}
public byte readInt8() throws IOException {
return in.readByte();
}
public int readUInt16() throws IOException {
return in.readUnsignedShort();
}
/**
* Warning: the result is negative in Java if UInt16 > 0x7fff
* @return next UInt16 value as a short
* @throws IOException
*/
public short readUInt16AsShort() throws IOException {
return in.readShort();
}
public short readInt16() throws IOException {
return in.readShort();
}
public long readUInt32() throws IOException {
return ((long) in.readInt()) & 0xffffffffL;
}
/**
* Warning: the result is negative in Java if UInt32 > 0x7fffffff
* @return next UInt32 value as an int
* @throws IOException
*/
public int readUInt32AsInt() throws IOException {
return in.readInt();
}
public int readInt32() throws IOException {
return in.readInt();
}
/**
* Warning: the result is negative in Java if UInt64 > 0x7fffffffffffffff
* @return next UInt64 value as a long
* @throws IOException
*/
public long readUInt64AsLong() throws IOException {
return in.readLong();
}
public UnsignedLong readUInt64AsUnsignedLong() throws IOException {
return UnsignedLong.fromLongBits(in.readLong());
}
public BigInteger readUInt64() throws IOException {
byte[] bytes = new byte[8];
readBytes(bytes);
return new BigInteger(bytes);
}
public long readInt64() throws IOException {
return in.readLong();
}
public Timestamp readDateTime() throws IOException {
long value = readUInt32();
return new Timestamp(TimeUnit.SECONDS.toMillis(value));
}
public Date readDate() throws IOException {
int daysSinceEpoch = readUInt16();
long utcMillis = daysSinceEpoch * MILLIS_IN_DAY;
long localMillis = utcMillis - timeZone.getOffset(utcMillis);
return new Date(localMillis);
}
public float readFloat32() throws IOException {
return in.readFloat();
}
public double readFloat64() throws IOException {
return in.readDouble();
}
public Date[] readDateArray() throws IOException {
int length = readUnsignedLeb128();
Date[] dates = new Date[length];
for (int i = 0; i < length; i++) {
dates[i] = readDate();
}
return dates;
}
public Timestamp[] readDateTimeArray() throws IOException {
int length = readUnsignedLeb128();
Timestamp[] dates = new Timestamp[length];
for (int i = 0; i < length; i++) {
dates[i] = readDateTime();
}
return dates;
}
public String[] readStringArray() throws IOException {
int length = readUnsignedLeb128();
String[] strings = new String[length];
for (int i = 0; i < length; i++) {
strings[i] = readString();
}
return strings;
}
public byte[] readInt8Array() throws IOException {
int length = readUnsignedLeb128();
byte[] bytes = new byte[length];
for (int i = 0; i < length; i++) {
bytes[i] = readInt8();
}
return bytes;
}
public byte[] readUInt8ArrayAsByte() throws IOException {
int length = readUnsignedLeb128();
byte[] bytes = new byte[length];
for (int i = 0; i < length; i++) {
bytes[i] = readUInt8AsByte();
}
return bytes;
}
public short[] readUInt8Array() throws IOException {
int length = readUnsignedLeb128();
short[] shorts = new short[length];
for (int i = 0; i < length; i++) {
shorts[i] = readUInt8();
}
return shorts;
}
public short[] readInt16Array() throws IOException {
int length = readUnsignedLeb128();
short[] shorts = new short[length];
for (int i = 0; i < length; i++) {
shorts[i] = readInt16();
}
return shorts;
}
public short[] readUInt16ArrayAsShort() throws IOException {
int length = readUnsignedLeb128();
short[] shorts = new short[length];
for (int i = 0; i < length; i++) {
shorts[i] = readUInt16AsShort();
}
return shorts;
}
public int[] readUInt16Array() throws IOException {
int length = readUnsignedLeb128();
int[] ints = new int[length];
for (int i = 0; i < length; i++) {
ints[i] = readUInt16();
}
return ints;
}
public int[] readInt32Array() throws IOException {
int length = readUnsignedLeb128();
int[] ints = new int[length];
for (int i = 0; i < length; i++) {
ints[i] = readInt32();
}
return ints;
}
public int[] readUInt32ArrayAsInt() throws IOException {
int length = readUnsignedLeb128();
int[] ints = new int[length];
for (int i = 0; i < length; i++) {
ints[i] = readUInt32AsInt();
}
return ints;
}
public long[] readUInt32Array() throws IOException {
int length = readUnsignedLeb128();
long[] longs = new long[length];
for (int i = 0; i < length; i++) {
longs[i] = readUInt32();
}
return longs;
}
public long[] readInt64Array() throws IOException {
int length = readUnsignedLeb128();
long[] longs = new long[length];
for (int i = 0; i < length; i++) {
longs[i] = readInt64();
}
return longs;
}
public long[] readUInt64ArrayAsLong() throws IOException {
int length = readUnsignedLeb128();
long[] longs = new long[length];
for (int i = 0; i < length; i++) {
longs[i] = readUInt64AsLong();
}
return longs;
}
public UnsignedLong[] readUInt64ArrayAsUnsignedLong() throws IOException {
int length = readUnsignedLeb128();
UnsignedLong[] longs = new UnsignedLong[length];
for (int i = 0; i < length; i++) {
longs[i] = readUInt64AsUnsignedLong();
}
return longs;
}
public BigInteger[] readUInt64Array() throws IOException {
int length = readUnsignedLeb128();
BigInteger[] bigs = new BigInteger[length];
for (int i = 0; i < length; i++) {
bigs[i] = readUInt64();
}
return bigs;
}
public float[] readFloat32Array() throws IOException {
int length = readUnsignedLeb128();
float[] floats = new float[length];
for (int i = 0; i < length; i++) {
floats[i] = readFloat32();
}
return floats;
}
public double[] readFloat64Array() throws IOException {
int length = readUnsignedLeb128();
double[] doubles = new double[length];
for (int i = 0; i < length; i++) {
doubles[i] = readFloat64();
}
return doubles;
}
public UUID readUUID() throws IOException {
byte[] array = new byte[16];
readBytes(array);
ByteBuffer bb = ByteBuffer.wrap(array).order(ByteOrder.LITTLE_ENDIAN);
return new UUID(bb.getLong(), bb.getLong());
}
@Override
public void close() throws IOException {
in.close();
}
}