Rudiments
|
Inherits bytebuffer.
Public Member Functions | |
stringbuffer () | |
stringbuffer (size_t initialsize) | |
stringbuffer (char *initialcontents, size_t initialsize) | |
stringbuffer (const stringbuffer &s) | |
stringbuffer & | operator= (const stringbuffer &s) |
~stringbuffer () | |
void | setPosition (size_t pos) |
size_t | getPosition () |
ssize_t | write (const unsigned char *string) |
ssize_t | write (const unsigned char *string, size_t size) |
ssize_t | write (const char *string) |
ssize_t | write (const char *string, size_t length) |
ssize_t | write (char character) |
ssize_t | write (int16_t number) |
ssize_t | write (int32_t number) |
ssize_t | write (int64_t number) |
ssize_t | write (unsigned char character) |
ssize_t | write (uint16_t number) |
ssize_t | write (uint32_t number) |
ssize_t | write (uint64_t number) |
ssize_t | write (float number) |
ssize_t | write (float number, uint16_t scale) |
ssize_t | write (float number, uint16_t precision, uint16_t scale) |
ssize_t | write (double number) |
ssize_t | write (double number, uint16_t scale) |
ssize_t | write (double number, uint16_t precision, uint16_t scale) |
stringbuffer * | append (const unsigned char *string) |
stringbuffer * | append (const unsigned char *string, size_t size) |
stringbuffer * | append (const char *string) |
stringbuffer * | append (const char *string, size_t length) |
stringbuffer * | append (char character) |
stringbuffer * | append (int16_t number) |
stringbuffer * | append (int32_t number) |
stringbuffer * | append (int64_t number) |
stringbuffer * | append (unsigned char character) |
stringbuffer * | append (uint16_t number) |
stringbuffer * | append (uint32_t number) |
stringbuffer * | append (uint64_t number) |
stringbuffer * | append (int16_t number, uint16_t zeropadding) |
stringbuffer * | append (int32_t number, uint16_t zeropadding) |
stringbuffer * | append (int64_t number, uint16_t zeropadding) |
stringbuffer * | append (uint16_t number, uint16_t zeropadding) |
stringbuffer * | append (uint32_t number, uint16_t zeropadding) |
stringbuffer * | append (uint64_t number, uint16_t zeropadding) |
stringbuffer * | append (float number) |
stringbuffer * | append (float number, uint16_t scale) |
stringbuffer * | append (float number, uint16_t precision, uint16_t scale) |
stringbuffer * | append (double number) |
stringbuffer * | append (double number, uint16_t scale) |
stringbuffer * | append (double number, uint16_t precision, uint16_t scale) |
void | truncate (size_t pos) |
void | truncate () |
void | clear () |
void | clear (size_t initialsize) |
void | clear (char *initialcontents, size_t initialsize) |
const char * | getString () |
char * | detachString () |
size_t | getStringLength () |
![]() | |
bytebuffer () | |
bytebuffer (size_t initialsize) | |
bytebuffer (unsigned char *initialcontents, size_t initialsize) | |
bytebuffer (const bytebuffer &v) | |
bytebuffer & | operator= (const bytebuffer &v) |
virtual | ~bytebuffer () |
void | setPosition (size_t pos) |
size_t | getPosition () |
ssize_t | write (const wchar_t *string, size_t length) |
ssize_t | write (const wchar_t *string) |
ssize_t | write (wchar_t character) |
ssize_t | writeFormatted (const char *format,...) |
ssize_t | writeFormatted (const char *format, va_list *argp) |
ssize_t | writeFormatted (const wchar_t *format,...) |
ssize_t | writeFormatted (const wchar_t *format, va_list *argp) |
bytebuffer * | append (const unsigned char *data, size_t size) |
bytebuffer * | append (const char *string, size_t length) |
bytebuffer * | append (const char *string) |
bytebuffer * | append (const wchar_t *string, size_t length) |
bytebuffer * | append (const wchar_t *string) |
bytebuffer * | append (char character) |
bytebuffer * | append (wchar_t character) |
bytebuffer * | append (int16_t number) |
bytebuffer * | append (int32_t number) |
bytebuffer * | append (int64_t number) |
bytebuffer * | append (unsigned char character) |
bytebuffer * | append (uint16_t number) |
bytebuffer * | append (uint32_t number) |
bytebuffer * | append (uint64_t number) |
bytebuffer * | append (float number) |
bytebuffer * | append (double number) |
bytebuffer * | appendFormatted (const char *format,...) |
bytebuffer * | appendFormatted (const char *format, va_list *argp) |
bytebuffer * | appendFormatted (const wchar_t *format,...) |
bytebuffer * | appendFormatted (const wchar_t *format, va_list *argp) |
ssize_t | read (unsigned char *data, size_t size) |
void | clear () |
void | clear (size_t initialsize) |
void | clear (unsigned char *initialcontents, size_t initialsize) |
const unsigned char * | getBuffer () |
size_t | getSize () |
size_t | getActualSize () |
size_t | getInitialSize () |
unsigned char * | detachBuffer () |
![]() | |
virtual ssize_t | write (const unsigned char *string, size_t size, int32_t sec, int32_t usec) |
virtual ssize_t | write (const char *string, int32_t sec, int32_t usec) |
virtual ssize_t | write (const char *string, size_t length, int32_t sec, int32_t usec) |
virtual ssize_t | write (char character, int32_t sec, int32_t usec) |
virtual ssize_t | write (int16_t number, int32_t sec, int32_t usec) |
virtual ssize_t | write (int32_t number, int32_t sec, int32_t usec) |
virtual ssize_t | write (int64_t number, int32_t sec, int32_t usec) |
virtual ssize_t | write (unsigned char character, int32_t sec, int32_t usec) |
virtual ssize_t | write (uint16_t number, int32_t sec, int32_t usec) |
virtual ssize_t | write (uint32_t number, int32_t sec, int32_t usec) |
virtual ssize_t | write (uint64_t number, int32_t sec, int32_t usec) |
virtual ssize_t | write (float number, int32_t sec, int32_t usec) |
virtual ssize_t | write (double number, int32_t sec, int32_t usec) |
The stringbuffer class can be used to store strings of arbitrary length.
It is generally more efficient to reuse the same stringbuffer over and over than to allocate a new one for each operation.
|
inline |
Creates an instance of the stringbuffer class with default initial size.
|
inline |
Creates an instance of the stringbuffer class with the specified "initialsize".
|
inline |
Creates an instance of the stringbuffer class. The buffer "initialcontents" will be attached to the instance and used as the initial contents. This buffer should not be freed by the calling program. The initial size may be specified by the "initialsize" parameter.
|
inline |
Creates an instance of the stringbuffer class that is a copy of "s".
|
inline |
Deletes this instance of the stringbuffer class.
|
inline |
Appends "character" to the stringbuffer, growing the internal buffer as necessary to accommodate the new data.
Returns a pointer to "this" to enable chaining such as: sb->append("numbers: ")->append(5)->append(5.5);
|
inline |
Appends "string" to the stringbuffer, growing the internal buffer as necessary to accommodate the new data.
Returns a pointer to "this" to enable chaining such as: sb->append("numbers: ")->append(5)->append(5.5);
|
inline |
Appends the first "length" characters of "string" to the stringbuffer, growing the internal buffer as necessary to accommodate the new data.
Returns a pointer to "this" to enable chaining such as: sb->append("numbers: ")->append(5)->append(5.5);
|
inline |
Appends "string" to the stringbuffer, growing the internal buffer as necessary to accommodate the new data.
Returns a pointer to "this" to enable chaining such as: sb->append("numbers: ")->append(5)->append(5.5);
|
inline |
Appends the first "size" bytes of "string" to the stringbuffer, growing the internall buffer as necessary to accommodate the new data.
Returns a pointer to "this" to enable chaining such as: sb->append("numbers: ")->append(5)->append(5.5);
|
inline |
Converts "number" to a string (using a default scale of 4) and appends it to the stringbuffer, growing the internal buffer as necessary to accommodate the new data.
Returns a pointer to "this" to enable chaining such as: sb->append("numbers: ")->append(5)->append(5.5);
|
inline |
Converts "number" to a string using the specified "precision" and "scale" and appends it to the stringbuffer, growing the internal buffer as necessary to accommodate the new data.
Returns a pointer to "this" to enable chaining such as: sb->append("numbers: ")->append(5)->append(5.5);
|
inline |
Converts "number" to a string using the specified "scale" and appends it to the stringbuffer, growing the internal buffer as necessary to accommodate the new data.
Returns a pointer to "this" to enable chaining such as: sb->append("numbers: ")->append(5)->append(5.5);
|
inline |
Converts "number" to a string (using a default scale of 4) and appends it to the stringbuffer, growing the internal buffer as necessary to accommodate the new data.
Returns a pointer to "this" to enable chaining such as: sb->append("numbers: ")->append(5)->append(5.5);
|
inline |
Converts "number" to a string using the specified "precision" and "scale" and appends it to the stringbuffer, growing the internal buffer as necessary to accommodate the new data.
Returns a pointer to "this" to enable chaining such as: sb->append("numbers: ")->append(5)->append(5.5);
|
inline |
Converts "number" to a string using the specified "scale" and appends it to the stringbuffer, growing the internal buffer as necessary to accommodate the new data.
Returns a pointer to "this" to enable chaining such as: sb->append("numbers: ")->append(5)->append(5.5);
|
inline |
Converts "number" to a string and appends it to the stringbuffer, growing the internal buffer as necessary to accommodate the new data.
Returns a pointer to "this" to enable chaining such as: sb->append("numbers: ")->append(5)->append(5.5);
|
inline |
Converts "number" to a string with the specified amount of zeropadding and appends it to the stringbuffer, growing the internal buffer as necessary to accommodate the new data.
Returns a pointer to "this" to enable chaining such as: sb->append("numbers: ")->append(5)->append(5.5);
|
inline |
Converts "number" to a string and appends it to the stringbuffer, growing the internal buffer as necessary to accommodate the new data.
Returns a pointer to "this" to enable chaining such as: sb->append("numbers: ")->append(5)->append(5.5);
|
inline |
Converts "number" to a string with the specified amount of zeropadding and appends it to the stringbuffer, growing the internal buffer as necessary to accommodate the new data.
Returns a pointer to "this" to enable chaining such as: sb->append("numbers: ")->append(5)->append(5.5);
|
inline |
Converts "number" to a string and appends it to the stringbuffer, growing the internal buffer as necessary to accommodate the new data.
Returns a pointer to "this" to enable chaining such as: sb->append("numbers: ")->append(5)->append(5.5);
|
inline |
Converts "number" to a string with the specified amount of zeropadding and appends it to the stringbuffer, growing the internal buffer as necessary to accommodate the new data.
Returns a pointer to "this" to enable chaining such as: sb->append("numbers: ")->append(5)->append(5.5);
|
inline |
Converts "number" to a string and appends it to the stringbuffer, growing the internal buffer as necessary to accommodate the new data.
Returns a pointer to "this" to enable chaining such as: sb->append("numbers: ")->append(5)->append(5.5);
|
inline |
Converts "number" to a string with the specified amount of zeropadding and appends it to the stringbuffer, growing the internal buffer as necessary to accommodate the new data.
Returns a pointer to "this" to enable chaining such as: sb->append("numbers: ")->append(5)->append(5.5);
|
inline |
Converts "number" to a string and appends it to the stringbuffer, growing the internal buffer as necessary to accommodate the new data.
Returns a pointer to "this" to enable chaining such as: sb->append("numbers: ")->append(5)->append(5.5);
|
inline |
Converts "number" to a string with the specified amount of zeropadding and appends it to the stringbuffer, growing the internal buffer as necessary to accommodate the new data.
Returns a pointer to "this" to enable chaining such as: sb->append("numbers: ")->append(5)->append(5.5);
|
inline |
Converts "number" to a string and appends it to the stringbuffer, growing the internal buffer as necessary to accommodate the new data.
Returns a pointer to "this" to enable chaining such as: sb->append("numbers: ")->append(5)->append(5.5);
|
inline |
Converts "number" to a string with the specified amount of zeropadding and appends it to the stringbuffer, growing the internal buffer as necessary to accommodate the new data.
Returns a pointer to "this" to enable chaining such as: sb->append("numbers: ")->append(5)->append(5.5);
|
inline |
Appends "character" to the stringbuffer, growing the internal buffer as necessary to accommodate the new data.
Returns a pointer to "this" to enable chaining such as: sb->append("numbers: ")->append(5)->append(5.5);
|
inline |
Empties the stringbuffer.
|
inline |
Empties the bytebuffer and attaches the buffer "initialcontents" to the instance as the initial contents. This buffer should not be freed by the calling program. Also resets the specified "initialsize" parameter.
|
inline |
Empties the bytebuffer and resets the specified "initialsize" parameter.
|
inline |
Returns a pointer to the string currently stored in the stringbuffer, then resets the stringbuffer such that it will no longer use that string.
The calling program must deallocate the string returned from this method.
|
inline |
Returns the position in the internal buffer at which the next write will occur.
|
inline |
Returns the string currently stored in the stringbuffer.
|
inline |
Returns the length of the string currently stored in the stringbuffer.
|
inline |
Makes this instance of the stringbuffer class identical to "s".
|
inline |
Sets the position in the internal buffer at which the next write will occur to "pos". If the position is set beyond the end of the buffer, the buffer will grow but the data between the current end of the buffer and the new position will be undefined.
|
inlinevirtual |
Trucnates the stringbuffer at the current position.
Reimplemented from bytebuffer.
|
inlinevirtual |
Trucnates the stringbuffer at position "pos".
Reimplemented from bytebuffer.
|
inlinevirtual |
Writes "character" to the stringbuffer at the current position and increments the current position to the next byte after the data that was written. If necessary, the internal buffer will grow to accommodate the new data.
Returns a pointer to "this" to enable chaining such as: sb->write("numbers: ")->write(5)->write(5.5);
Reimplemented from bytebuffer.
|
inlinevirtual |
Writes "string" to the stringbuffer at the current position and increments the current position to the next byte after the data that was written. If necessary, the internal buffer will grow to accommodate the new data.
Returns a pointer to "this" to enable chaining such as: sb->write("numbers: ")->write(5)->write(5.5);
Reimplemented from bytebuffer.
|
inlinevirtual |
Writes the first "length" characters of "string" to the stringbuffer at the current position and increments the current position to the next byte after the data that was written. If necessary, the internal buffer will grow to accommodate the new data.
Returns a pointer to "this" to enable chaining such as: sb->write("numbers: ")->write(5)->write(5.5);
Reimplemented from bytebuffer.
|
inline |
Writes "string" to the stringbuffer at the current position and increments the current position to the next byte after the data that was written. If necessary, the internal buffer will grow to accommodate the new data.
Returns a pointer to "this" to enable chaining such as: sb->write("numbers: ")->write(5)->write(5.5);
|
inlinevirtual |
Writes the first "size" bytes of "string" to the stringbuffer at the current position and increments the current position to the next byte after the data that was written. If necessary, the internal buffer will grow to accommodate the new data.
Returns a pointer to "this" to enable chaining such as: sb->write("numbers: ")->write(5)->write(5.5);
Reimplemented from bytebuffer.
|
inlinevirtual |
Converts "number" to a string (using a default scale of 4) and writes it to the stringbuffer at the current position and increments the current position to the next byte after the data that was written. If necessary, the internal buffer will grow to accommodate the new data.
Returns a pointer to "this" to enable chaining such as: sb->write("numbers: ")->write(5)->write(5.5);
Reimplemented from bytebuffer.
|
inline |
Converts "number" to a string using the specified "precision" and "scale" and writes it to the stringbuffer at the current position and increments the current position to the next byte after the data that was written. If necessary, the internal buffer will grow to accommodate the new data.
Returns a pointer to "this" to enable chaining such as: sb->write("numbers: ")->write(5)->write(5.5);
|
inline |
Converts "number" to a string using the specified "scale" and writes it to the stringbuffer at the current position and increments the current position to the next byte after the data that was written. If necessary, the internal buffer will grow to accommodate the new data.
Returns a pointer to "this" to enable chaining such as: sb->write("numbers: ")->write(5)->write(5.5);
|
inlinevirtual |
Converts "number" to a string (using a default scale of 4) and writes it to the stringbuffer at the current position and increments the current position to the next byte after the data that was written. If necessary, the interna buffer will grow to accommodate the new data.
Returns a pointer to "this" to enable chaining such as: sb->write("numbers: ")->write(5)->write(5.5);
Reimplemented from bytebuffer.
|
inline |
Converts "number" to a string using the specified "precision" and "scale" and writes it to the stringbuffer at the current position and increments the current position to the next byte after the data that was written. If necessary, the internal buffer will grow to accommodate the new data.
Returns a pointer to "this" to enable chaining such as: sb->write("numbers: ")->write(5)->write(5.5);
|
inline |
Converts "number" to a string using the specified "scale" and writes it to the stringbuffer at the current position and increments the current position to the next byte after the data that was written. If necessary, the internal buffer will grow to accommodate the new data.
Returns a pointer to "this" to enable chaining such as: sb->write("numbers: ")->write(5)->write(5.5);
|
inlinevirtual |
Converts "number" to a string and writes it to the stringbuffer at the current position and increments the current position to the next byte after the data that was written. If necessary, the internal buffer will grow to accommodate the new data.
Returns a pointer to "this" to enable chaining such as: sb->write("numbers: ")->write(5)->write(5.5);
Reimplemented from bytebuffer.
|
inlinevirtual |
Converts "number" to a string and writes it to the stringbuffer at the current position and increments the current position to the next byte after the data that was written. If necessary, the internal buffer will grow to accommodate the new data.
Returns a pointer to "this" to enable chaining such as: sb->write("numbers: ")->write(5)->write(5.5);
Reimplemented from bytebuffer.
|
inlinevirtual |
Converts "number" to a string and writes it to the stringbuffer at the current position and increments the current position to the next byte after the data that was written. If necessary, the inernal buffer will grow to accommodate the new data.
Returns a pointer to "this" to enable chaining such as: sb->write("numbers: ")->write(5)->write(5.5);
Reimplemented from bytebuffer.
|
inlinevirtual |
Converts "number" to a string and writes it to the stringbuffer at the current position and increments the current position to the next byte after the data that was written. If necessary, the internal buffer will grow to accommodate the new data.
Returns a pointer to "this" to enable chaining such as: sb->write("numbers: ")->write(5)->write(5.5);
Reimplemented from bytebuffer.
|
inlinevirtual |
Converts "number" to a string and writes it to the stringbuffer at the current position and increments the current position to the next byte after the data that was written. If necessary, the internal buffer will grow to accommodate the new data.
Returns a pointer to "this" to enable chaining such as: sb->write("numbers: ")->write(5)->write(5.5);
Reimplemented from bytebuffer.
|
inlinevirtual |
Converts "number" to a string and writes it to the stringbuffer at the current position and increments the current position to the next byte after the data that was written. If necessary, the internal buffer will grow to accommodate the new data.
Returns a pointer to "this" to enable chaining such as: sb->write("numbers: ")->write(5)->write(5.5);
Reimplemented from bytebuffer.
|
inlinevirtual |
Writes "character" to the stringbuffer at the current position and increments the current position to the next byte after the data that was written. If necessary, the internal buffer will grow to accommodate the new data.
Returns a pointer to "this" to enable chaining such as: sb->write("numbers: ")->write(5)->write(5.5);
Reimplemented from bytebuffer.