Skip to content

Commit c90e523

Browse files
author
Brian Burkhalter
committedMar 17, 2020
8238920: Better Buffer support
Reviewed-by: alanb, ahgross, rhalade, psandoz
1 parent 800f133 commit c90e523

File tree

1 file changed

+17
-13
lines changed

1 file changed

+17
-13
lines changed
 

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

+17-13
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2000, 2019, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2000, 2020, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -364,8 +364,8 @@ public Buffer limit(int newLimit) {
364364
if (newLimit > capacity | newLimit < 0)
365365
throw createLimitException(newLimit);
366366
limit = newLimit;
367-
if (position > limit) position = limit;
368-
if (mark > limit) mark = -1;
367+
if (position > newLimit) position = newLimit;
368+
if (mark > newLimit) mark = -1;
369369
return this;
370370
}
371371

@@ -689,16 +689,18 @@ public final boolean hasRemaining() {
689689
* @return The current position value, before it is incremented
690690
*/
691691
final int nextGetIndex() { // package-private
692-
if (position >= limit)
692+
int p = position;
693+
if (p >= limit)
693694
throw new BufferUnderflowException();
694-
return position++;
695+
position = p + 1;
696+
return p;
695697
}
696698

697699
final int nextGetIndex(int nb) { // package-private
698-
if (limit - position < nb)
699-
throw new BufferUnderflowException();
700700
int p = position;
701-
position += nb;
701+
if (limit - p < nb)
702+
throw new BufferUnderflowException();
703+
position = p + nb;
702704
return p;
703705
}
704706

@@ -710,16 +712,18 @@ final int nextGetIndex(int nb) { // package-private
710712
* @return The current position value, before it is incremented
711713
*/
712714
final int nextPutIndex() { // package-private
713-
if (position >= limit)
715+
int p = position;
716+
if (p >= limit)
714717
throw new BufferOverflowException();
715-
return position++;
718+
position = p + 1;
719+
return p;
716720
}
717721

718722
final int nextPutIndex(int nb) { // package-private
719-
if (limit - position < nb)
720-
throw new BufferOverflowException();
721723
int p = position;
722-
position += nb;
724+
if (limit - p < nb)
725+
throw new BufferOverflowException();
726+
position = p + nb;
723727
return p;
724728
}
725729

0 commit comments

Comments
 (0)
Please sign in to comment.