/* * 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. */ #include "FloatArrayBuffer.h" using namespace decaf; using namespace decaf::lang; using namespace decaf::lang::exceptions; using namespace decaf::internal; using namespace decaf::internal::nio; using namespace decaf::internal::util; using namespace decaf::nio; /////////////////////////////////////////////////////////////////////////////// FloatArrayBuffer::FloatArrayBuffer( int size, bool readOnly ) : FloatBuffer(size), _array(), offset(0), length(size), readOnly(readOnly) { // Allocate using the ByteArray, not read-only initially. Take a reference to it. // The capacity is the given capacity times the size of the stored datatype this->_array.reset( new ByteArrayAdapter( size * (int)sizeof(float) ) ); } /////////////////////////////////////////////////////////////////////////////// FloatArrayBuffer::FloatArrayBuffer( float* array, int size, int offset, int length, bool readOnly ) : FloatBuffer(length), _array(), offset(offset), length(length), readOnly(readOnly) { try{ if( offset < 0 || offset > size ) { throw IndexOutOfBoundsException( __FILE__, __LINE__, "Offset parameter if out of bounds, %d", offset ); } if( length < 0 || offset + length > size ) { throw IndexOutOfBoundsException( __FILE__, __LINE__, "length parameter if out of bounds, %d", length ); } // Allocate using the ByteArray, not read-only initially. this->_array.reset( new ByteArrayAdapter( array, size, false ) ); } DECAF_CATCH_RETHROW( NullPointerException ) DECAF_CATCH_RETHROW( IndexOutOfBoundsException ) DECAF_CATCH_EXCEPTION_CONVERT( Exception, NullPointerException ) DECAF_CATCHALL_THROW( NullPointerException ) } /////////////////////////////////////////////////////////////////////////////// FloatArrayBuffer::FloatArrayBuffer( const Pointer& array, int offset, int length, bool readOnly ) : FloatBuffer(length), _array(array), offset(offset), length(length), readOnly(readOnly) { try{ if( offset < 0 || offset > array->getCapacity() ) { throw IndexOutOfBoundsException( __FILE__, __LINE__, "Offset parameter if out of bounds, %d", offset ); } if( length < 0 || offset + length > array->getCapacity() ) { throw IndexOutOfBoundsException( __FILE__, __LINE__, "length parameter if out of bounds, %d", length ); } } DECAF_CATCH_RETHROW( NullPointerException ) DECAF_CATCH_RETHROW( IndexOutOfBoundsException ) DECAF_CATCH_EXCEPTION_CONVERT( Exception, NullPointerException ) DECAF_CATCHALL_THROW( NullPointerException ) } /////////////////////////////////////////////////////////////////////////////// FloatArrayBuffer::FloatArrayBuffer( const FloatArrayBuffer& other ) : FloatBuffer(other), _array(other._array), offset(other.offset), length(other.length), readOnly(other.readOnly) { } //////////////////////////////////////////////////////////////////////////////// FloatArrayBuffer::~FloatArrayBuffer() { } /////////////////////////////////////////////////////////////////////////////// float* FloatArrayBuffer::array() { try{ if( !this->hasArray() ) { throw UnsupportedOperationException( __FILE__, __LINE__, "FloatArrayBuffer::arrayOffset() - This Buffer has no backing array." ); } if( this->isReadOnly() ) { throw ReadOnlyBufferException( __FILE__, __LINE__, "FloatArrayBuffer::array - Buffer is Read-Only" ); } return this->_array->getFloatArray(); } DECAF_CATCH_RETHROW( ReadOnlyBufferException ) DECAF_CATCH_RETHROW( UnsupportedOperationException ) DECAF_CATCH_EXCEPTION_CONVERT( Exception, UnsupportedOperationException ) DECAF_CATCHALL_THROW( UnsupportedOperationException ) } /////////////////////////////////////////////////////////////////////////////// int FloatArrayBuffer::arrayOffset() { try{ if( !this->hasArray() ) { throw UnsupportedOperationException( __FILE__, __LINE__, "FloatArrayBuffer::arrayOffset() - This Buffer has no backing array." ); } if( this->isReadOnly() ) { throw decaf::nio::ReadOnlyBufferException( __FILE__, __LINE__, "FloatArrayBuffer::arrayOffset() - Buffer is Read Only." ); } return this->offset; } DECAF_CATCH_RETHROW( ReadOnlyBufferException ) DECAF_CATCH_RETHROW( UnsupportedOperationException ) DECAF_CATCH_EXCEPTION_CONVERT( Exception, UnsupportedOperationException ) DECAF_CATCHALL_THROW( UnsupportedOperationException ) } /////////////////////////////////////////////////////////////////////////////// FloatBuffer* FloatArrayBuffer::asReadOnlyBuffer() const { try{ FloatArrayBuffer* buffer = new FloatArrayBuffer( *this ); buffer->setReadOnly( true ); return buffer; } DECAF_CATCH_RETHROW( Exception ) DECAF_CATCHALL_THROW( Exception ) } /////////////////////////////////////////////////////////////////////////////// FloatBuffer& FloatArrayBuffer::compact() { try{ if( this->isReadOnly() ) { throw decaf::nio::ReadOnlyBufferException( __FILE__, __LINE__, "FloatArrayBuffer::compact() - Buffer is Read Only." ); } // copy from the current pos to the beginning all the remaining bytes // the set pos to the for( int ix = 0; ix < this->remaining(); ++ix ) { this->put( ix, this->get( this->position() + ix ) ); } this->position( this->limit() - this->position() ); this->limit( this->capacity() ); this->_markSet = false; return *this; } DECAF_CATCH_RETHROW( decaf::nio::ReadOnlyBufferException ) DECAF_CATCH_EXCEPTION_CONVERT( Exception, decaf::nio::ReadOnlyBufferException ) DECAF_CATCHALL_THROW( decaf::nio::ReadOnlyBufferException ) } /////////////////////////////////////////////////////////////////////////////// FloatBuffer* FloatArrayBuffer::duplicate() { try{ return new FloatArrayBuffer( *this ); } DECAF_CATCH_RETHROW( Exception ) DECAF_CATCHALL_THROW( Exception ) } /////////////////////////////////////////////////////////////////////////////// float FloatArrayBuffer::get() { try{ return this->get( this->_position++ ); } DECAF_CATCH_RETHROW( BufferUnderflowException ) DECAF_CATCH_EXCEPTION_CONVERT( Exception, BufferUnderflowException ) DECAF_CATCHALL_THROW( BufferUnderflowException ) } /////////////////////////////////////////////////////////////////////////////// float FloatArrayBuffer::get( int index ) const { try{ if( index >= this->limit() ) { throw IndexOutOfBoundsException( __FILE__, __LINE__, "FloatArrayBuffer::get - Not enough data to fill request." ); } return this->_array->getFloat( offset + index ); } DECAF_CATCH_RETHROW( IndexOutOfBoundsException ) DECAF_CATCH_EXCEPTION_CONVERT( Exception, IndexOutOfBoundsException ) DECAF_CATCHALL_THROW( IndexOutOfBoundsException ) } //////////////////////////////////////////////////////////////////////////////// FloatBuffer& FloatArrayBuffer::put( float value ) { try{ this->put( this->_position++, value ); return *this; } DECAF_CATCH_RETHROW( decaf::nio::ReadOnlyBufferException ) DECAF_CATCH_RETHROW( decaf::nio::BufferOverflowException ) DECAF_CATCH_EXCEPTION_CONVERT( Exception, decaf::nio::BufferOverflowException ) DECAF_CATCHALL_THROW( decaf::nio::BufferOverflowException ) } //////////////////////////////////////////////////////////////////////////////// FloatBuffer& FloatArrayBuffer::put( int index, float value ) { try{ if( this->isReadOnly() ) { throw decaf::nio::ReadOnlyBufferException( __FILE__, __LINE__, "FloatArrayBuffer::put(i,i) - Buffer is Read Only." ); } if( index >= this->limit() ) { throw IndexOutOfBoundsException( __FILE__, __LINE__, "FloatArrayBuffer::put(i,i) - Not enough data to fill request." ); } this->_array->putFloat( index + offset, value ); return *this; } DECAF_CATCH_RETHROW( decaf::nio::ReadOnlyBufferException ) DECAF_CATCH_RETHROW( IndexOutOfBoundsException ) DECAF_CATCH_EXCEPTION_CONVERT( Exception, IndexOutOfBoundsException ) DECAF_CATCHALL_THROW( IndexOutOfBoundsException ) } //////////////////////////////////////////////////////////////////////////////// FloatBuffer* FloatArrayBuffer::slice() const { try{ return new FloatArrayBuffer( this->_array, this->offset + this->position(), this->remaining(), this->isReadOnly() ); } DECAF_CATCH_RETHROW( Exception ) DECAF_CATCHALL_THROW( Exception ) }