com.xxdb.io.LittleEndianDataInputStream Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of api-java Show documentation
Show all versions of api-java Show documentation
The messaging and data conversion protocol between Java and DolphinDB server
package com.xxdb.io;
import java.io.IOException;
import java.io.InputStream;
public class LittleEndianDataInputStream extends AbstractExtendedDataInputStream {
public LittleEndianDataInputStream(InputStream in) {
super(in);
}
@Override
public int readInt() throws IOException {
byte b1 = readAndCheckByte();
byte b2 = readAndCheckByte();
byte b3 = readAndCheckByte();
byte b4 = readAndCheckByte();
return fromBytes( b4, b3, b2, b1);
}
@Override
public long readLong() throws IOException {
byte b1 = readAndCheckByte();
byte b2 = readAndCheckByte();
byte b3 = readAndCheckByte();
byte b4 = readAndCheckByte();
byte b5 = readAndCheckByte();
byte b6 = readAndCheckByte();
byte b7 = readAndCheckByte();
byte b8 = readAndCheckByte();
return fromBytes( b8, b7, b6, b5, b4, b3, b2, b1);
}
@Override
public int readUnsignedShort() throws IOException {
byte b1 = readAndCheckByte();
byte b2 = readAndCheckByte();
return fromBytes((byte)0, (byte)0, b2, b1);
}
@Override
public boolean isLittleEndian() {
return true;
}
}