java.nio.ShortArrayBuffer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of android-all Show documentation
Show all versions of android-all Show documentation
A library jar that provides APIs for Applications written for the Google Android Platform.
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package java.nio;
/**
* ShortArrayBuffer implements short[]-based ShortBuffers.
*/
final class ShortArrayBuffer extends ShortBuffer {
private final short[] backingArray;
private final int arrayOffset;
private final boolean isReadOnly;
ShortArrayBuffer(short[] array) {
this(array.length, array, 0, false);
}
private ShortArrayBuffer(int capacity, short[] backingArray, int arrayOffset, boolean isReadOnly) {
super(capacity, 0);
this.backingArray = backingArray;
this.arrayOffset = arrayOffset;
this.isReadOnly = isReadOnly;
}
private static ShortArrayBuffer copy(ShortArrayBuffer other, int markOfOther, boolean isReadOnly) {
ShortArrayBuffer buf = new ShortArrayBuffer(other.capacity(), other.backingArray, other.arrayOffset, isReadOnly);
buf.limit = other.limit;
buf.position = other.position();
buf.mark = markOfOther;
return buf;
}
@Override public ShortBuffer asReadOnlyBuffer() {
return copy(this, mark, true);
}
@Override public ShortBuffer compact() {
if (isReadOnly) {
throw new ReadOnlyBufferException();
}
System.arraycopy(backingArray, position + arrayOffset, backingArray, arrayOffset, remaining());
position = limit - position;
limit = capacity;
mark = UNSET_MARK;
return this;
}
@Override public ShortBuffer duplicate() {
return copy(this, mark, isReadOnly);
}
@Override public ShortBuffer slice() {
return new ShortArrayBuffer(remaining(), backingArray, arrayOffset + position, isReadOnly);
}
@Override public boolean isReadOnly() {
return isReadOnly;
}
@Override short[] protectedArray() {
if (isReadOnly) {
throw new ReadOnlyBufferException();
}
return backingArray;
}
@Override int protectedArrayOffset() {
if (isReadOnly) {
throw new ReadOnlyBufferException();
}
return arrayOffset;
}
@Override boolean protectedHasArray() {
if (isReadOnly) {
return false;
}
return true;
}
@Override public final short get() {
if (position == limit) {
throw new BufferUnderflowException();
}
return backingArray[arrayOffset + position++];
}
@Override public final short get(int index) {
checkIndex(index);
return backingArray[arrayOffset + index];
}
@Override public final ShortBuffer get(short[] dst, int dstOffset, int shortCount) {
if (shortCount > remaining()) {
throw new BufferUnderflowException();
}
System.arraycopy(backingArray, arrayOffset + position, dst, dstOffset, shortCount);
position += shortCount;
return this;
}
@Override public final boolean isDirect() {
return false;
}
@Override public final ByteOrder order() {
return ByteOrder.nativeOrder();
}
@Override public ShortBuffer put(short c) {
if (isReadOnly) {
throw new ReadOnlyBufferException();
}
if (position == limit) {
throw new BufferOverflowException();
}
backingArray[arrayOffset + position++] = c;
return this;
}
@Override public ShortBuffer put(int index, short c) {
if (isReadOnly) {
throw new ReadOnlyBufferException();
}
checkIndex(index);
backingArray[arrayOffset + index] = c;
return this;
}
@Override public ShortBuffer put(short[] src, int srcOffset, int shortCount) {
if (isReadOnly) {
throw new ReadOnlyBufferException();
}
if (shortCount > remaining()) {
throw new BufferOverflowException();
}
System.arraycopy(src, srcOffset, backingArray, arrayOffset + position, shortCount);
position += shortCount;
return this;
}
}