Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ jobs:
- uses: actions/setup-java@v2
with:
distribution: 'adopt-hotspot'
java-version: '11'
java-version: '8'
- name: Build
working-directory: kotlin
run: ./gradlew jvmMainClasses jvmTest
Expand Down
7 changes: 3 additions & 4 deletions java/com/google/flatbuffers/ByteBufferReadWriteBuf.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

import java.nio.ByteBuffer;
import java.nio.ByteOrder;
import java.nio.Buffer;

public class ByteBufferReadWriteBuf implements ReadWriteBuf {

Expand All @@ -15,7 +14,7 @@ public ByteBufferReadWriteBuf(ByteBuffer bb) {

@Override
public void clear() {
((Buffer) buffer).clear();
buffer.clear();
}

@Override
Expand Down Expand Up @@ -118,9 +117,9 @@ public void set(int index, byte value) {
public void set(int index, byte[] value, int start, int length) {
requestCapacity(index + (length - start));
int curPos = buffer.position();
((Buffer) buffer).position(index);
buffer.position(index);
buffer.put(value, start, length);
((Buffer) buffer).position(curPos);
buffer.position(curPos);
}

@Override
Expand Down
5 changes: 2 additions & 3 deletions java/com/google/flatbuffers/ByteBufferUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
import static com.google.flatbuffers.Constants.*;

import java.nio.ByteBuffer;
import java.nio.Buffer;

/// @file
/// @addtogroup flatbuffers_java_api
Expand Down Expand Up @@ -49,9 +48,9 @@ public static int getSizePrefix(ByteBuffer bb) {
* size prefix
*/
public static ByteBuffer removeSizePrefix(ByteBuffer bb) {
Buffer s = ((Buffer) bb).duplicate();
ByteBuffer s = bb.duplicate();
s.position(s.position() + SIZE_PREFIX_LENGTH);
return (ByteBuffer) s;
return s;
}

}
Expand Down
32 changes: 16 additions & 16 deletions java/com/google/flatbuffers/FlatBufferBuilder.java
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ public FlatBufferBuilder(int initial_size, ByteBufferFactory bb_factory,
this.bb_factory = bb_factory;
if (existing_bb != null) {
bb = existing_bb;
((Buffer) bb).clear();
bb.clear();
bb.order(ByteOrder.LITTLE_ENDIAN);
} else {
bb = bb_factory.newByteBuffer(initial_size);
Expand Down Expand Up @@ -154,7 +154,7 @@ public FlatBufferBuilder(ByteBuffer existing_bb) {
public FlatBufferBuilder init(ByteBuffer existing_bb, ByteBufferFactory bb_factory){
this.bb_factory = bb_factory;
bb = existing_bb;
((Buffer) bb).clear();
bb.clear();
bb.order(ByteOrder.LITTLE_ENDIAN);
minalign = 1;
space = bb.capacity();
Expand Down Expand Up @@ -235,7 +235,7 @@ public static boolean isFieldPresent(Table table, int offset) {
*/
public void clear(){
space = bb.capacity();
((Buffer) bb).clear();
bb.clear();
minalign = 1;
while(vtable_in_use > 0) vtable[--vtable_in_use] = 0;
vtable_in_use = 0;
Expand Down Expand Up @@ -273,10 +273,10 @@ static ByteBuffer growByteBuffer(ByteBuffer bb, ByteBufferFactory bb_factory) {
new_buf_size = (old_buf_size & 0xC0000000) != 0 ? MAX_BUFFER_SIZE : old_buf_size << 1;
}

((Buffer) bb).position(0);
bb.position(0);
ByteBuffer nbb = bb_factory.newByteBuffer(new_buf_size);
new_buf_size = ((Buffer) nbb).clear().capacity(); // Ensure the returned buffer is treated as empty
((Buffer) nbb).position(new_buf_size - old_buf_size);
new_buf_size = nbb.clear().capacity(); // Ensure the returned buffer is treated as empty
nbb.position(new_buf_size - old_buf_size);
nbb.put(bb);
return nbb;
}
Expand Down Expand Up @@ -527,7 +527,7 @@ public ByteBuffer createUnintializedVector(int elem_size, int num_elems, int ali
int length = elem_size * num_elems;
startVector(elem_size, num_elems, alignment);

((Buffer) bb).position(space -= length);
bb.position(space -= length);

// Slice and limit the copy vector to point to the 'array'
ByteBuffer copy = bb.slice().order(ByteOrder.LITTLE_ENDIAN);
Expand Down Expand Up @@ -602,7 +602,7 @@ public int createString(CharSequence s) {
int length = utf8.encodedLength(s);
addByte((byte)0);
startVector(1, length, 1);
((Buffer) bb).position(space -= length);
bb.position(space -= length);
utf8.encodeUtf8(s, bb);
return endVector();
}
Expand All @@ -617,7 +617,7 @@ public int createString(ByteBuffer s) {
int length = s.remaining();
addByte((byte)0);
startVector(1, length, 1);
((Buffer) bb).position(space -= length);
bb.position(space -= length);
bb.put(s);
return endVector();
}
Expand All @@ -631,7 +631,7 @@ public int createString(ByteBuffer s) {
public int createByteVector(byte[] arr) {
int length = arr.length;
startVector(1, length, 1);
((Buffer) bb).position(space -= length);
bb.position(space -= length);
bb.put(arr);
return endVector();
}
Expand All @@ -646,7 +646,7 @@ public int createByteVector(byte[] arr) {
*/
public int createByteVector(byte[] arr, int offset, int length) {
startVector(1, length, 1);
((Buffer) bb).position(space -= length);
bb.position(space -= length);
bb.put(arr, offset, length);
return endVector();
}
Expand All @@ -663,7 +663,7 @@ public int createByteVector(byte[] arr, int offset, int length) {
public int createByteVector(ByteBuffer byteBuffer) {
int length = byteBuffer.remaining();
startVector(1, length, 1);
((Buffer) bb).position(space -= length);
bb.position(space -= length);
bb.put(byteBuffer);
return endVector();
}
Expand Down Expand Up @@ -953,7 +953,7 @@ protected void finish(int root_table, boolean size_prefix) {
if (size_prefix) {
addInt(bb.capacity() - space);
}
((Buffer) bb).position(space);
bb.position(space);
finished = true;
}

Expand Down Expand Up @@ -1067,7 +1067,7 @@ private int dataStart() {
public byte[] sizedByteArray(int start, int length){
finished();
byte[] array = new byte[length];
((Buffer) bb).position(start);
bb.position(start);
bb.get(array);
return array;
}
Expand All @@ -1089,10 +1089,10 @@ public byte[] sizedByteArray() {
*/
public InputStream sizedInputStream() {
finished();
Buffer duplicate = ((Buffer) bb).duplicate();
ByteBuffer duplicate = bb.duplicate();
duplicate.position(space);
duplicate.limit(bb.capacity());
return new ByteBufferBackedInputStream((ByteBuffer) duplicate);
return new ByteBufferBackedInputStream(duplicate);
}

/**
Expand Down
3 changes: 1 addition & 2 deletions java/com/google/flatbuffers/FlexBuffers.java
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@

import java.math.BigInteger;
import java.nio.ByteBuffer;
import java.nio.Buffer;
import java.nio.charset.StandardCharsets;

/// @file
Expand Down Expand Up @@ -689,7 +688,7 @@ public static Blob empty() {
*/
public ByteBuffer data() {
ByteBuffer dup = ByteBuffer.wrap(bb.data());
((Buffer) dup).position(end);
dup.position(end);
dup.limit(end + size());
return dup.asReadOnlyBuffer().slice();
}
Expand Down
5 changes: 2 additions & 3 deletions java/com/google/flatbuffers/Table.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@

import static com.google.flatbuffers.Constants.*;
import java.nio.ByteBuffer;
import java.nio.Buffer;
import java.nio.ByteOrder;

/// @cond FLATBUFFERS_INTERNAL
Expand Down Expand Up @@ -151,7 +150,7 @@ protected int __vector(int offset) {
protected ByteBuffer __vector_as_bytebuffer(int vector_offset, int elem_size) {
int o = __offset(vector_offset);
if (o == 0) return null;
ByteBuffer bb = ((ByteBuffer) (((Buffer) this.bb).duplicate())).order(ByteOrder.LITTLE_ENDIAN);
ByteBuffer bb = this.bb.duplicate().order(ByteOrder.LITTLE_ENDIAN);
int vectorstart = __vector(o);
bb.position(vectorstart);
bb.limit(vectorstart + __vector_len(o) * elem_size);
Expand All @@ -175,7 +174,7 @@ protected ByteBuffer __vector_in_bytebuffer(ByteBuffer bb, int vector_offset, in
int vectorstart = __vector(o);
bb.rewind();
bb.limit(vectorstart + __vector_len(o) * elem_size);
((Buffer) bb).position(vectorstart);
bb.position(vectorstart);
return bb;
}

Expand Down
13 changes: 6 additions & 7 deletions java/com/google/flatbuffers/Utf8Old.java
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
package com.google.flatbuffers;

import java.nio.ByteBuffer;
import java.nio.Buffer;
import java.nio.CharBuffer;
import java.nio.charset.CharacterCodingException;
import java.nio.charset.CharsetDecoder;
Expand Down Expand Up @@ -56,7 +55,7 @@ public int encodedLength(CharSequence in) {
if (cache.lastOutput == null || cache.lastOutput.capacity() < estimated) {
cache.lastOutput = ByteBuffer.allocate(Math.max(128, estimated));
}
((Buffer) cache.lastOutput).clear();
cache.lastOutput.clear();
cache.lastInput = in;
CharBuffer wrap = (in instanceof CharBuffer) ?
(CharBuffer) in : CharBuffer.wrap(in);
Expand All @@ -68,7 +67,7 @@ public int encodedLength(CharSequence in) {
throw new IllegalArgumentException("bad character encoding", e);
}
}
((Buffer) cache.lastOutput).flip();
cache.lastOutput.flip();
return cache.lastOutput.remaining();
}

Expand All @@ -87,11 +86,11 @@ public void encodeUtf8(CharSequence in, ByteBuffer out) {
public String decodeUtf8(ByteBuffer buffer, int offset, int length) {
CharsetDecoder decoder = CACHE.get().decoder;
decoder.reset();
Buffer b = ((Buffer) buffer).duplicate();
b.position(offset);
b.limit(offset + length);
buffer = buffer.duplicate();
buffer.position(offset);
buffer.limit(offset + length);
try {
CharBuffer result = decoder.decode((ByteBuffer) b);
CharBuffer result = decoder.decode(buffer);
return result.toString();
} catch (CharacterCodingException e) {
throw new IllegalArgumentException("Bad encoding", e);
Expand Down
7 changes: 3 additions & 4 deletions java/com/google/flatbuffers/Utf8Safe.java
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@
package com.google.flatbuffers;

import java.nio.ByteBuffer;
import java.nio.Buffer;
import static java.lang.Character.MAX_SURROGATE;
import static java.lang.Character.MIN_SUPPLEMENTARY_CODE_POINT;
import static java.lang.Character.MIN_SURROGATE;
Expand Down Expand Up @@ -311,7 +310,7 @@ private static void encodeUtf8Buffer(CharSequence in, ByteBuffer out) {
}
if (inIx == inLength) {
// Successfully encoded the entire string.
((Buffer) out).position(outIx + inIx);
out.position(outIx + inIx);
return;
}

Expand Down Expand Up @@ -354,7 +353,7 @@ private static void encodeUtf8Buffer(CharSequence in, ByteBuffer out) {
}

// Successfully encoded the entire string.
((Buffer) out).position(outIx);
out.position(outIx);
} catch (IndexOutOfBoundsException e) {
// TODO(nathanmittler): Consider making the API throw IndexOutOfBoundsException instead.

Expand Down Expand Up @@ -435,7 +434,7 @@ public void encodeUtf8(CharSequence in, ByteBuffer out) {
int start = out.arrayOffset();
int end = encodeUtf8Array(in, out.array(), start + out.position(),
out.remaining());
((Buffer) out).position(end - start);
out.position(end - start);
} else {
encodeUtf8Buffer(in, out);
}
Expand Down