Main Page | Class Hierarchy | Alphabetical List | Class List | File List | Class Members | File Members | Related Pages

GrowableBuffer Class Reference

Inheritance diagram for GrowableBuffer:

Buffer List of all members.

Public Member Functions

 this (uint size)

Protected Member Functions

override bool grow (uint size)

Private Member Functions

 this (void[] data)
 this (void[] data, uint readable)
IBuffer create ()
void[] getContent ()
IBuffer setValidContent (void[] data)
IBuffer setContent (void[] data, uint readable)
void copy (void *src, uint size)
void[] get (uint size, bool eat=true)
IBuffer append (void[] src)
char[] toString ()
bool skip (int size)
uint readable ()
uint writable ()
int write (int(*dg)(void[]))
int read (int(*dg)(void[]))
IBuffer compress ()
void flush ()
IBuffer clear ()
uint getLimit ()
uint getCapacity ()
uint getPosition ()
IConduit getConduit ()
void setConduit (IConduit conduit)

Static Private Member Functions

 this ()

Static Private Attributes

package EofException eof
package IOException udf
package IOException ovf

Detailed Description

Subclass to provide support for content growth. This is handy when you want to keep a buffer around as a scratchpad.

Definition at line 629 of file Buffer.d.


Member Function Documentation

this uint  size  )  [inline]
 

Create a GrowableBuffer with the specified initial size.

Reimplemented from Buffer.

Definition at line 637 of file Buffer.d.

override bool grow uint  size  )  [inline, protected]
 

Overridable method to grow the buffer size when it becomes full. Default is to not grow at all.

Reimplemented from Buffer.

Definition at line 649 of file Buffer.d.

this  )  [inline, static, inherited]
 

Construct an overflow exception for later use.

Reimplemented in MappedBuffer.

Definition at line 176 of file Buffer.d.

this void[]  data  )  [inline, inherited]
 

Prime buffer with an application-supplied array. There is no readable data present, and writing begins at position 0.

Definition at line 201 of file Buffer.d.

this void[]  data,
uint  readable
[inline, inherited]
 

Prime buffer with an application-supplied array, and indicate how much readable data is already there. A write operation will begin writing immediately after the existing content.

Definition at line 215 of file Buffer.d.

References Buffer::setContent().

IBuffer create  )  [inline, inherited]
 

Create an instance of an IBuffer. Use this when you don't know anything about the concrete implementation, and have only the IBuffer interface available

Returns a Buffer with no content.

Reimplemented from IBuffer.

Definition at line 230 of file Buffer.d.

void [] getContent  )  [inline, inherited]
 

Return the backing array

Reimplemented from IBuffer.

Definition at line 241 of file Buffer.d.

IBuffer setValidContent void[]  data  )  [inline, inherited]
 

Set the backing array with all content readable. Writing to this will either flush it to an associated conduit, or raise an Eof condition. Use IBuffer.clear() to reset the content (make it all writable).

Reimplemented from IBuffer.

Definition at line 255 of file Buffer.d.

References Buffer::setContent().

Referenced by StartLine::VersionUseTokenizer::parse(), ResponseLine::parse(), MappedFile::VersionWindows::this(), and FileBucket::Record::write().

IBuffer setContent void[]  data,
uint  readable
[inline, inherited]
 

Set the backing array with some content readable. Writing to this will either flush it to an associated conduit, or raise an Eof condition. Use IBuffer.clear() to reset the content (make it all writable).

Reimplemented from IBuffer.

Definition at line 269 of file Buffer.d.

Referenced by Buffer::append(), FileBucket::Record::read(), Buffer::setValidContent(), and Buffer::this().

void copy void *  src,
uint  size
[inline, protected, inherited]
 

Bulk copy of data from 'src'. Limit is adjusted by 'size' bytes.

Reimplemented in MappedBuffer.

Definition at line 300 of file Buffer.d.

Referenced by Buffer::append().

void [] get uint  size,
bool  eat = true
[inline, inherited]
 

Read a chunk of data from the buffer, loading from the conduit as necessary. The specified number of bytes is loaded into the buffer, and marked as having been read when the 'eat' parameter is set true. When 'eat' is set false, the read position is not adjusted.

Returns the corresponding buffer slice when successful, or null if there's not enough data available (Eof; Eob).

Reimplemented from IBuffer.

Definition at line 319 of file Buffer.d.

References Buffer::compress().

Referenced by Buffer::skip().

IBuffer append void[]  src  )  [inline, inherited]
 

Append an array of data to this buffer, and flush to the conduit as necessary. Returns a chaining reference if all data was written; throws an IOException indicating eof or eob if not.

This is often used in lieu of a Writer.

Reimplemented from IBuffer.

Definition at line 360 of file Buffer.d.

References Buffer::copy(), IBuffer::flush(), Buffer::grow(), and Buffer::setContent().

Referenced by FilePath::toString().

char [] toString  )  [inline, inherited]
 

Return a char[] slice of the buffer up to the limit of valid content.

Reimplemented from IBuffer.

Definition at line 397 of file Buffer.d.

Referenced by VirtualCache::put().

bool skip int  size  )  [inline, inherited]
 

Skip ahead by the specified number of bytes, streaming from the associated conduit as necessary.

Can also reverse the read position by 'size' bytes. This may be used to support lookahead-type operations.

Returns true if successful, false otherwise.

Reimplemented from IBuffer.

Definition at line 414 of file Buffer.d.

References Buffer::get().

uint readable  )  [inline, inherited]
 

Return count of readable bytes remaining in buffer. This is calculated simply as limit() - position()

Reimplemented from IBuffer.

Definition at line 436 of file Buffer.d.

Referenced by Buffer::compress().

uint writable  )  [inline, inherited]
 

Return count of writable bytes available in buffer. This is calculated simply as capacity() - limit()

Reimplemented from IBuffer.

Reimplemented in MappedBuffer.

Definition at line 448 of file Buffer.d.

int write int(*  dg)(void[])  )  [inline, inherited]
 

Exposes the raw data buffer at the current write position, The delegate is provided with a void[] representing space available within the buffer at the current write position.

The delegate should return the appropriate number of bytes if it writes valid content, or IConduit.Eof on error.

Returns whatever the delegate returns.

Reimplemented from IBuffer.

Reimplemented in MappedBuffer.

Definition at line 466 of file Buffer.d.

References assert().

int read int(*  dg)(void[])  )  [inline, inherited]
 

Exposes the raw data buffer at the current read position. The delegate is provided with a void[] representing the available data, and should return zero to leave the current read position intact.

If the delegate consumes data, it should return the number of bytes consumed; or IConduit.Eof to indicate an error.

Returns whatever the delegate returns.

Reimplemented from IBuffer.

Definition at line 492 of file Buffer.d.

References assert().

IBuffer compress  )  [inline, inherited]
 

If we have some data left after an export, move it to front-of-buffer and set position to be just after the remains. This is for supporting certain conduits which choose to write just the initial portion of a request.

Limit is set to the amount of data remaining. Position is always reset to zero.

Reimplemented from IBuffer.

Reimplemented in MappedBuffer.

Definition at line 517 of file Buffer.d.

References Buffer::readable().

Referenced by Buffer::get().

void flush  )  [inline, inherited]
 

flush the contents of this buffer to the related conduit. Throws an IOException on premature eof.

Reimplemented from IBuffer.

Reimplemented in MappedBuffer.

Definition at line 537 of file Buffer.d.

IBuffer clear  )  [inline, inherited]
 

Reset 'position' and 'limit' to zero

Reimplemented from IBuffer.

Reimplemented in MappedBuffer.

Definition at line 549 of file Buffer.d.

Referenced by Cluster::broadcast(), VirtualCache::put(), and HttpMessage::setConduit().

uint getLimit  )  [inline, inherited]
 

Returns the limit of readable content within this buffer

Reimplemented from IBuffer.

Definition at line 561 of file Buffer.d.

uint getCapacity  )  [inline, inherited]
 

Returns the total capacity of this buffer

Reimplemented from IBuffer.

Definition at line 572 of file Buffer.d.

uint getPosition  )  [inline, inherited]
 

Returns the current read-position within this buffer

Reimplemented from IBuffer.

Definition at line 583 of file Buffer.d.

Referenced by Cluster::broadcast(), and ResponseLine::parse().

IConduit getConduit  )  [inline, inherited]
 

Returns the conduit associated with this buffer. Returns null if the buffer is purely memory based; that is, it's not backed by some external medium.

Buffers do not require an external conduit to operate, but it can be convenient to associate one. For example, methods read and write use it to import/export content as necessary.

Reimplemented from IBuffer.

Definition at line 600 of file Buffer.d.

Referenced by HttpMessage::getConduit().

void setConduit IConduit  conduit  )  [inline, inherited]
 

Sets the external conduit associated with this buffer.

Buffers do not require an external conduit to operate, but it can be convenient to associate one. For example, methods read and write use it to import/export content as necessary.

Reimplemented from IBuffer.

Reimplemented in MappedBuffer.

Definition at line 615 of file Buffer.d.

Referenced by SocketConduit::createBuffer(), HttpMessage::setConduit(), and FileBucket::this().


Member Data Documentation

package EofException eof [static, inherited]
 

Definition at line 158 of file Buffer.d.

package IOException udf [static, inherited]
 

Definition at line 159 of file Buffer.d.

package IOException ovf [static, inherited]
 

Definition at line 160 of file Buffer.d.


The documentation for this class was generated from the following file:
Generated on Sun Mar 6 00:31:08 2005 for Mango by doxygen 1.3.6