Skip to content

Commit a5367cb

Browse files
Brian Burkhalterslowhog
Brian Burkhalter
authored andcommittedJan 21, 2021
8247619: Improve Direct Buffering of Characters
Reviewed-by: alanb, ahgross, rhalade, psandoz
1 parent 0408b23 commit a5367cb

File tree

3 files changed

+27
-12
lines changed

3 files changed

+27
-12
lines changed
 

‎src/java.base/share/classes/java/nio/Buffer.java

+3-2
Original file line numberDiff line numberDiff line change
@@ -313,8 +313,8 @@ public final int position() {
313313
public Buffer position(int newPosition) {
314314
if (newPosition > limit | newPosition < 0)
315315
throw createPositionException(newPosition);
316+
if (mark > newPosition) mark = -1;
316317
position = newPosition;
317-
if (mark > position) mark = -1;
318318
return this;
319319
}
320320

@@ -503,7 +503,8 @@ public Buffer rewind() {
503503
* @return The number of elements remaining in this buffer
504504
*/
505505
public final int remaining() {
506-
return limit - position;
506+
int rem = limit - position;
507+
return rem > 0 ? rem : 0;
507508
}
508509

509510
/**

‎src/java.base/share/classes/java/nio/Heap-X-Buffer.java.template

+3-1
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,9 @@ class Heap$Type$Buffer$RW$
292292
public $Type$Buffer compact() {
293293
#if[rw]
294294
int pos = position();
295-
int rem = limit() - pos;
295+
int lim = limit();
296+
assert (pos <= lim);
297+
int rem = (pos <= lim ? lim - pos : 0);
296298
System.arraycopy(hb, ix(pos), hb, ix(0), rem);
297299
position(rem);
298300
limit(capacity());

‎src/java.base/share/classes/java/nio/X-Buffer.java.template

+21-9
Original file line numberDiff line numberDiff line change
@@ -452,15 +452,23 @@ public abstract class $Type$Buffer
452452
*/
453453
public int read(CharBuffer target) throws IOException {
454454
// Determine the number of bytes n that can be transferred
455-
int targetRemaining = target.remaining();
456455
int limit = limit();
457-
int remaining = limit - position();
458-
if (remaining == 0)
456+
int pos = position();
457+
int remaining = limit - pos;
458+
assert remaining >= 0;
459+
if (remaining <= 0) // include equality condition when remaining == 0
459460
return -1;
461+
462+
int targetRemaining = target.remaining();
463+
assert targetRemaining >= 0;
464+
if (targetRemaining <= 0) // include condition targetRemaining == 0
465+
return 0;
466+
460467
int n = Math.min(remaining, targetRemaining);
468+
461469
// Set source limit to prevent target overflow
462470
if (targetRemaining < remaining)
463-
limit(position() + n);
471+
limit(pos + n);
464472
try {
465473
if (n > 0)
466474
target.put(this);
@@ -951,15 +959,19 @@ public abstract class $Type$Buffer
951959
throw new ReadOnlyBufferException();
952960

953961
int srcPos = src.position();
954-
int n = src.limit() - srcPos;
962+
int srcLim = src.limit();
963+
int srcRem = (srcPos <= srcLim ? srcLim - srcPos : 0);
955964
int pos = position();
956-
if (n > limit() - pos)
965+
int lim = limit();
966+
int rem = (pos <= lim ? lim - pos : 0);
967+
968+
if (srcRem > rem)
957969
throw new BufferOverflowException();
958970

959-
putBuffer(pos, src, srcPos, n);
971+
putBuffer(pos, src, srcPos, srcRem);
960972

961-
position(pos + n);
962-
src.position(srcPos + n);
973+
position(pos + srcRem);
974+
src.position(srcPos + srcRem);
963975

964976
return this;
965977
}

0 commit comments

Comments
 (0)
Please sign in to comment.