blob: 7dcf6fd51977c230924a56351f675d9897a3e73a [file] [log] [blame]
/*
* Copyright 2012 Google Inc.
*
* Licensed 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 com.google.gwt.typedarrays.server;
import com.google.gwt.typedarrays.shared.ArrayBuffer;
import com.google.gwt.typedarrays.shared.Float64Array;
/**
* Pure Java implementation of {@link Float64Array}.
*/
public final class Float64ArrayImpl extends ArrayBufferViewImpl implements Float64Array {
/**
* @param buffer
* @param byteOffset
* @param length
*/
public Float64ArrayImpl(ArrayBuffer buffer, int byteOffset, int length) {
super(buffer, byteOffset, length * BYTES_PER_ELEMENT);
}
@Override
public double get(int index) {
return arrayBuf.getFloat64(checkRange(index, BYTES_PER_ELEMENT), USE_LITTLE_ENDIAN);
}
@Override
public int length() {
return byteLength() / BYTES_PER_ELEMENT;
}
@Override
public void set(double[] array) {
set(array, 0);
}
@Override
public void set(double[] array, int offset) {
int len = array.length;
if (offset + len > length()) {
throw new IndexOutOfBoundsException();
}
for (int i = 0; i < len; ++i) {
set(offset++, array[i]);
}
}
@Override
public void set(Float64Array array) {
set(array, 0);
}
@Override
public void set(Float64Array array, int offset) {
int len = array.length();
if (offset + len > length()) {
throw new IndexOutOfBoundsException();
}
for (int i = 0; i < len; ++i) {
set(offset++, array.get(i));
}
}
@Override
public void set(int index, double value) {
arrayBuf.setFloat64(checkRange(index, BYTES_PER_ELEMENT), value, USE_LITTLE_ENDIAN);
}
@Override
public Float64Array subarray(int begin) {
int count = (byteLength() - byteOffset()) / BYTES_PER_ELEMENT;
return subarray(begin, count);
}
@Override
public Float64Array subarray(int begin, int end) {
int count = (byteLength() - byteOffset()) / BYTES_PER_ELEMENT;
if (begin < 0) {
begin += count;
if (begin < 0) {
begin = 0;
}
} else if (begin > count) {
begin = count;
}
if (end < 0) {
end += count;
if (end < 0) {
end = 0;
}
} else if (end > count) {
end = count;
}
if (end < begin) {
end = begin;
}
return new Float64ArrayImpl(arrayBuf, begin * BYTES_PER_ELEMENT, end * BYTES_PER_ELEMENT);
}
}