Skip to content
Snippets Groups Projects
Commit 5605ce6d authored by stepan's avatar stepan
Browse files

readBin supports 2-byte size

parent ff55ea0f
No related branches found
No related tags found
No related merge requests found
......@@ -54,6 +54,7 @@ import java.nio.ByteBuffer;
import java.nio.ByteOrder;
import java.nio.DoubleBuffer;
import java.nio.IntBuffer;
import java.nio.ShortBuffer;
import java.nio.channels.ByteChannel;
import java.nio.charset.Charset;
import java.nio.charset.IllegalCharsetNameException;
......@@ -860,7 +861,7 @@ public abstract class ConnectionFunctions {
if (size == RRuntime.INT_NA) {
size = 4;
}
if (size == 1 || size == 4) {
if (size == 1 || size == 4 || size == 2) {
result = readInteger(connection, n, size, swap, signed);
} else {
throw RError.nyi(RError.SHOW_CALLER, "readBin \"int\" size not implemented");
......@@ -917,6 +918,11 @@ public abstract class ConnectionFunctions {
int d = signed ? b : b & 0xFF;
data[i] = d;
}
} else if (size == 2) {
ShortBuffer shortBuffer = buffer.asShortBuffer();
for (int i = 0; i < nInts; i++) {
data[i] = shortBuffer.get();
}
}
return RDataFactory.createIntVector(data, complete);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment