activemq-cpp-3.6.0
decaf::nio::LongBuffer Class Reference

This class defines four categories of operations upon long long buffers: More...

#include <src/main/decaf/nio/LongBuffer.h>

Inheritance diagram for decaf::nio::LongBuffer:

Public Member Functions

virtual ~LongBuffer ()
virtual std::string toString () const
virtual long long * array ()=0
 Returns the long long array that backs this buffer (optional operation).
virtual int arrayOffset ()=0
 Returns the offset within this buffer's backing array of the first element of the buffer (optional operation).
virtual LongBufferasReadOnlyBuffer () const =0
 Creates a new, read-only long long buffer that shares this buffer's content.
virtual LongBuffercompact ()=0
 Compacts this buffer.
virtual LongBufferduplicate ()=0
 Creates a new long long buffer that shares this buffer's content.
virtual long long get ()=0
 Relative get method.
virtual long long get (int index) const =0
 Absolute get method.
LongBufferget (std::vector< long long > buffer)
 Relative bulk get method.
LongBufferget (long long *buffer, int size, int offset, int length)
 Relative bulk get method.
virtual bool hasArray () const =0
 Tells whether or not this buffer is backed by an accessible long long array.
LongBufferput (LongBuffer &src)
 This method transfers the long longs remaining in the given source buffer long longo this buffer.
LongBufferput (const long long *buffer, int size, int offset, int length)
 This method transfers long longs long longo this buffer from the given source array.
LongBufferput (std::vector< long long > &buffer)
 This method transfers the entire content of the given source long longs array long longo this buffer.
virtual LongBufferput (long long value)=0
 Writes the given long longs long longo this buffer at the current position, and then increments the position.
virtual LongBufferput (int index, long long value)=0
 Writes the given long longs long longo this buffer at the given index.
virtual LongBufferslice () const =0
 Creates a new LongBuffer whose content is a shared subsequence of this buffer's content.
virtual int compareTo (const LongBuffer &value) const
 
virtual bool equals (const LongBuffer &value) const
 
virtual bool operator== (const LongBuffer &value) const
 
virtual bool operator< (const LongBuffer &value) const
 
- Public Member Functions inherited from decaf::nio::Buffer
 Buffer (int capactiy)
 Buffer (const Buffer &other)
virtual ~Buffer ()
virtual int capacity () const
virtual int position () const
virtual Bufferposition (int newPosition)
 Sets this buffer's position.
virtual int limit () const
virtual Bufferlimit (int newLimit)
 Sets this buffer's limit.
virtual Buffermark ()
 Sets this buffer's mark at its position.
virtual Bufferreset ()
 Resets this buffer's position to the previously-marked position.
virtual Bufferclear ()
 Clears this buffer.
virtual Bufferflip ()
 Flips this buffer.
virtual Bufferrewind ()
 Rewinds this buffer.
virtual int remaining () const
 Returns the number of elements between the current position and the limit.
virtual bool hasRemaining () const
 Tells whether there are any elements between the current position and the limit.
virtual bool isReadOnly () const =0
 Tells whether or not this buffer is read-only.
- Public Member Functions inherited from decaf::lang::Comparable< LongBuffer >
virtual ~Comparable ()
virtual int compareTo (const LongBuffer &value) const =0
 Compares this object with the specified object for order.
virtual bool equals (const LongBuffer &value) const =0
virtual bool operator== (const LongBuffer &value) const =0
 Compares equality between this object and the one passed.
virtual bool operator< (const LongBuffer &value) const =0
 Compares this object to another and returns true if this object is considered to be less than the one passed.

Static Public Member Functions

static LongBufferallocate (int capacity)
 Allocates a new Double buffer.
static LongBufferwrap (long long *array, int size, int offset, int length)
 Wraps the passed buffer with a new LongBuffer.
static LongBufferwrap (std::vector< long long > &buffer)
 Wraps the passed STL long long Vector in a LongBuffer.

Protected Member Functions

 LongBuffer (int capacity)
 Creates a LongBuffer object that has its backing array allocated long longernally and is then owned and deleted when this object is deleted.

Additional Inherited Members

- Protected Attributes inherited from decaf::nio::Buffer
int _position
int _capacity
int _limit
int _mark
bool _markSet

Detailed Description

This class defines four categories of operations upon long long buffers:

o Absolute and relative get and put methods that read and write single long longs; o Relative bulk get methods that transfer contiguous sequences of long longs from this buffer long longo an array; and o Relative bulk put methods that transfer contiguous sequences of long longs from a long long array or some other long long buffer long longo this buffer o Methods for compacting, duplicating, and slicing a long long buffer.

Double buffers can be created either by allocation, which allocates space for the buffer's content, by wrapping an existing long long array long longo a buffer, or by creating a view of an existing byte buffer

Methods in this class that do not otherwise have a value to return are specified to return the buffer upon which they are invoked. This allows method invocations to be chained.

Constructor & Destructor Documentation

decaf::nio::LongBuffer::LongBuffer ( int  capacity)
protected

Creates a LongBuffer object that has its backing array allocated long longernally and is then owned and deleted when this object is deleted.

The array is initially created with all elements initialized to zero.

Parameters
capacityThe size and limit of the Buffer in long longs.
Exceptions
IllegalArguementExceptionif capacity is negative.
virtual decaf::nio::LongBuffer::~LongBuffer ( )
inlinevirtual

Member Function Documentation

static LongBuffer* decaf::nio::LongBuffer::allocate ( int  capacity)
static

Allocates a new Double buffer.

The new buffer's position will be zero, its limit will be its capacity, and its mark will be undefined. It will have a backing array, and its array offset will be zero.

Parameters
capacityThe size of the Double buffer in long longs.
Returns
the LongBuffer that was allocated, caller owns.
virtual long long* decaf::nio::LongBuffer::array ( )
pure virtual

Returns the long long array that backs this buffer (optional operation).

Modifications to this buffer's content will cause the returned array's content to be modified, and vice versa.

Invoke the hasArray method before invoking this method in order to ensure that this buffer has an accessible backing array.

Returns
the array that backs this Buffer.
Exceptions
ReadOnlyBufferExceptionif this Buffer is read only.
UnsupportedOperationExceptionif the underlying store has no array.

Implemented in decaf::internal::nio::LongArrayBuffer.

virtual int decaf::nio::LongBuffer::arrayOffset ( )
pure virtual

Returns the offset within this buffer's backing array of the first element of the buffer (optional operation).

Invoke the hasArray method before invoking this method in order to ensure that this buffer has an accessible backing array.

Returns
The offset long longo the backing array where index zero starts.
Exceptions
ReadOnlyBufferExceptionif this Buffer is read only.
UnsupportedOperationExceptionif the underlying store has no array.

Implemented in decaf::internal::nio::LongArrayBuffer.

virtual LongBuffer* decaf::nio::LongBuffer::asReadOnlyBuffer ( ) const
pure virtual

Creates a new, read-only long long buffer that shares this buffer's content.

The content of the new buffer will be that of this buffer. Changes to this buffer's content will be visible in the new buffer; the new buffer itself, however, will be read-only and will not allow the shared content to be modified. The two buffers' position, limit, and mark values will be independent.

If this buffer is itself read-only then this method behaves in exactly the same way as the duplicate method.

The new buffer's capacity, limit, position, and mark values will be identical to those of this buffer.

Returns
The new, read-only long long buffer which the caller then owns.

Implemented in decaf::internal::nio::LongArrayBuffer.

virtual LongBuffer& decaf::nio::LongBuffer::compact ( )
pure virtual

Compacts this buffer.

The bytes between the buffer's current position and its limit, if any, are copied to the beginning of the buffer. That is, the byte at index p = position() is copied to index zero, the byte at index p + 1 is copied to index one, and so forth until the byte at index limit() - 1 is copied to index n = limit() - 1 - p. The buffer's position is then set to n+1 and its limit is set to its capacity. The mark, if defined, is discarded.

The buffer's position is set to the number of bytes copied, rather than to zero, so that an invocation of this method can be followed immediately by an invocation of another relative put method.

Returns
a reference to this LongBuffer.
Exceptions
ReadOnlyBufferExceptionif this buffer is read-only.

Implemented in decaf::internal::nio::LongArrayBuffer.

virtual int decaf::nio::LongBuffer::compareTo ( const LongBuffer value) const
virtual

virtual LongBuffer* decaf::nio::LongBuffer::duplicate ( )
pure virtual

Creates a new long long buffer that shares this buffer's content.

The content of the new buffer will be that of this buffer. Changes to this buffer's content will be visible in the new buffer, and vice versa; the two buffers' position, limit, and mark values will be independent.

The new buffer's capacity, limit, position, and mark values will be identical to those of this buffer. The new buffer will be read-only if, and only if, this buffer is read-only.

Returns
a new long long Buffer which the caller owns.

Implemented in decaf::internal::nio::LongArrayBuffer.

virtual bool decaf::nio::LongBuffer::equals ( const LongBuffer value) const
virtual

virtual long long decaf::nio::LongBuffer::get ( )
pure virtual

Relative get method.

Reads the value at this buffer's current position, and then increments the position.

Returns
the long long at the current position.
Exceptions
BufferUnderflowExceptionif there no more data to return.

Implemented in decaf::internal::nio::LongArrayBuffer.

virtual long long decaf::nio::LongBuffer::get ( int  index) const
pure virtual

Absolute get method.

Reads the value at the given index.

Parameters
indexThe index in the Buffer where the long long is to be read.
Returns
the long long that is located at the given index.
Exceptions
IndexOutOfBoundsExceptionif index is not smaller than the buffer's limit, or index is negative.

Implemented in decaf::internal::nio::LongArrayBuffer.

LongBuffer& decaf::nio::LongBuffer::get ( std::vector< long long >  buffer)

Relative bulk get method.

This method transfers values from this buffer long longo the given destination vector. An invocation of this method of the form src.get(a) behaves in exactly the same way as the invocation. The vector must be sized to the amount of data that is to be read, that is to say, the caller should call buffer.resize( N ) before calling this get method.

Returns
a reference to this Buffer.
Exceptions
BufferUnderflowExceptionif there are fewer than length long longs remaining in this buffer.
LongBuffer& decaf::nio::LongBuffer::get ( long long *  buffer,
int  size,
int  offset,
int  length 
)

Relative bulk get method.

This method transfers long longs from this buffer long longo the given destination array. If there are fewer long longs remaining in the buffer than are required to satisfy the request, that is, if length > remaining(), then no bytes are transferred and a BufferUnderflowException is thrown.

Otherwise, this method copies length long longs from this buffer long longo the given array, starting at the current position of this buffer and at the given offset in the array. The position of this buffer is then incremented by length.

Parameters
bufferThe pointer to an allocated long long buffer to fill.
sizeThe size of the passed in buffer.
offsetThe position in the buffer to start filling.
lengthThe amount of data to put in the passed buffer.
Returns
a reference to this Buffer.
Exceptions
BufferUnderflowExceptionif there are fewer than length long longs remaining in this buffer
NullPolonglongerException if the passed buffer is null.
IndexOutOfBoundsExceptionif the preconditions of size, offset, or length are not met.
virtual bool decaf::nio::LongBuffer::hasArray ( ) const
pure virtual

Tells whether or not this buffer is backed by an accessible long long array.

If this method returns true then the array and arrayOffset methods may safely be invoked. Subclasses should override this method if they do not have a backing array as this class always returns true.

Returns
true if, and only if, this buffer is backed by an array and is not read-only.

Implemented in decaf::internal::nio::LongArrayBuffer.

virtual bool decaf::nio::LongBuffer::operator< ( const LongBuffer value) const
virtual

virtual bool decaf::nio::LongBuffer::operator== ( const LongBuffer value) const
virtual

LongBuffer& decaf::nio::LongBuffer::put ( LongBuffer src)

This method transfers the long longs remaining in the given source buffer long longo this buffer.

If there are more long longs remaining in the source buffer than in this buffer, that is, if src.remaining() > remaining(), then no long longs are transferred and a BufferOverflowException is thrown.

Otherwise, this method copies n = src.remaining() long longs from the given buffer long longo this buffer, starting at each buffer's current position. The positions of both buffers are then incremented by n.

Parameters
srcThe buffer to take long longs from an place in this one.
Returns
a reference to this buffer.
Exceptions
BufferOverflowExceptionif there is insufficient space in this buffer for the remaining long longs in the source buffer
IllegalArgumentExceptionif the source buffer is this buffer
ReadOnlyBufferExceptionif this buffer is read-only
LongBuffer& decaf::nio::LongBuffer::put ( const long long *  buffer,
int  size,
int  offset,
int  length 
)

This method transfers long longs long longo this buffer from the given source array.

If there are more long longs to be copied from the array than remain in this buffer, that is, if length > remaining(), then no long longs are transferred and a BufferOverflowException is thrown.

Otherwise, this method copies length bytes from the given array long longo this buffer, starting at the given offset in the array and at the current position of this buffer. The position of this buffer is then incremented by length.

Parameters
bufferThe array from which long longs are to be read.
sizeThe size of the buffer passed.
offsetThe offset within the array of the first char to be read.
lengthThe number of long longs to be read from the given array.
Returns
a reference to this buffer.
Exceptions
BufferOverflowExceptionif there is insufficient space in this buffer
ReadOnlyBufferExceptionif this buffer is read-only
NullPolonglongerException if the passed buffer is null.
IndexOutOfBoundsExceptionif the preconditions of size, offset, or length are not met.
LongBuffer& decaf::nio::LongBuffer::put ( std::vector< long long > &  buffer)

This method transfers the entire content of the given source long longs array long longo this buffer.

This is the same as calling put( &buffer[0], 0, buffer.size().

Parameters
bufferThe buffer whose contents are copied to this LongBuffer.
Returns
a reference to this buffer.
Exceptions
BufferOverflowExceptionif there is insufficient space in this buffer.
ReadOnlyBufferExceptionif this buffer is read-only.
virtual LongBuffer& decaf::nio::LongBuffer::put ( long long  value)
pure virtual

Writes the given long longs long longo this buffer at the current position, and then increments the position.

Parameters
valueThe long longs value to be written.
Returns
a reference to this buffer.
Exceptions
BufferOverflowExceptionif this buffer's current position is not smaller than its limit
ReadOnlyBufferExceptionif this buffer is read-only

Implemented in decaf::internal::nio::LongArrayBuffer.

virtual LongBuffer& decaf::nio::LongBuffer::put ( int  index,
long long  value 
)
pure virtual

Writes the given long longs long longo this buffer at the given index.

Parameters
indexThe position in the Buffer to write the data
valueThe long longs to write.
Returns
a reference to this buffer.
Exceptions
IndexOutOfBoundsExceptionif index greater than the buffer's limit minus the size of the type being written.
ReadOnlyBufferExceptionif this buffer is read-only

Implemented in decaf::internal::nio::LongArrayBuffer.

virtual LongBuffer* decaf::nio::LongBuffer::slice ( ) const
pure virtual

Creates a new LongBuffer whose content is a shared subsequence of this buffer's content.

The content of the new buffer will start at this buffer's current position. Changes to this buffer's content will be visible in the new buffer, and vice versa; the two buffers' position, limit, and mark values will be independent.

The new buffer's position will be zero, its capacity and its limit will be the number of bytes remaining in this buffer, and its mark will be undefined. The new buffer will be read-only if, and only if, this buffer is read-only.

Returns
the newly create LongBuffer which the caller owns.

Implemented in decaf::internal::nio::LongArrayBuffer.

virtual std::string decaf::nio::LongBuffer::toString ( ) const
virtual
Returns
a std::string describing this object
static LongBuffer* decaf::nio::LongBuffer::wrap ( long long *  array,
int  size,
int  offset,
int  length 
)
static

Wraps the passed buffer with a new LongBuffer.

The new buffer will be backed by the given long long array; that is, modifications to the buffer will cause the array to be modified and vice versa. The new buffer's capacity will be array.length, its position will be offset, its limit will be offset + length, and its mark will be undefined. Its backing array will be the given array, and its array offset will be zero.

Parameters
arrayThe array that will back the new buffer.
sizeThe size of the passed in array.
offsetThe offset of the subarray to be used.
lengthThe length of the subarray to be used.
Returns
a new LongBuffer that is backed by buffer, caller owns.
Exceptions
NullPointerExceptionif the array pointer is NULL.
IndexOutOfBoundsExceptionif the preconditions of size, offset, or length are not met.
static LongBuffer* decaf::nio::LongBuffer::wrap ( std::vector< long long > &  buffer)
static

Wraps the passed STL long long Vector in a LongBuffer.

The new buffer will be backed by the given long long array; modifications to the buffer will cause the array to be modified and vice versa. The new buffer's capacity and limit will be buffer.size(), its position will be zero, and its mark will be undefined. Its backing array will be the given array, and its array offset will be zero.

Parameters
bufferThe vector that will back the new buffer, the vector must have been sized to the desired size already by calling vector.resize( N ).
Returns
a new LongBuffer that is backed by buffer, caller owns.

The documentation for this class was generated from the following file: