Main Page Class Hierarchy Alphabetical List Compound List File List Compound Members
|
#include <FXStream.h>
Inheritance diagram for FX::FXStream:
Public Member Functions | |
FXStream (const FXObject *cont=NULL) | |
FXbool | open (FXStreamDirection save_or_load, unsigned long size=8192, FXuchar *data=NULL) |
virtual FXbool | close () |
virtual FXbool | flush () |
unsigned long | getSpace () const |
void | setSpace (unsigned long sp) |
FXStreamStatus | status () const |
FXbool | eof () const |
void | setError (FXStreamStatus err) |
FXStreamDirection | direction () const |
const FXObject * | container () const |
unsigned long | position () const |
virtual FXbool | position (long offset, FXWhence whence=FXFromStart) |
void | swapBytes (FXbool s) |
FXbool | swapBytes () const |
FXStream & | operator<< (const FXuchar &v) |
FXStream & | operator<< (const FXchar &v) |
FXStream & | operator<< (const FXushort &v) |
FXStream & | operator<< (const FXshort &v) |
FXStream & | operator<< (const FXuint &v) |
FXStream & | operator<< (const FXint &v) |
FXStream & | operator<< (const FXfloat &v) |
FXStream & | operator<< (const FXdouble &v) |
FXStream & | save (const FXuchar *p, unsigned long n) |
FXStream & | save (const FXchar *p, unsigned long n) |
FXStream & | save (const FXushort *p, unsigned long n) |
FXStream & | save (const FXshort *p, unsigned long n) |
FXStream & | save (const FXuint *p, unsigned long n) |
FXStream & | save (const FXint *p, unsigned long n) |
FXStream & | save (const FXfloat *p, unsigned long n) |
FXStream & | save (const FXdouble *p, unsigned long n) |
FXStream & | operator>> (FXuchar &v) |
FXStream & | operator>> (FXchar &v) |
FXStream & | operator>> (FXushort &v) |
FXStream & | operator>> (FXshort &v) |
FXStream & | operator>> (FXuint &v) |
FXStream & | operator>> (FXint &v) |
FXStream & | operator>> (FXfloat &v) |
FXStream & | operator>> (FXdouble &v) |
FXStream & | load (FXuchar *p, unsigned long n) |
FXStream & | load (FXchar *p, unsigned long n) |
FXStream & | load (FXushort *p, unsigned long n) |
FXStream & | load (FXshort *p, unsigned long n) |
FXStream & | load (FXuint *p, unsigned long n) |
FXStream & | load (FXint *p, unsigned long n) |
FXStream & | load (FXfloat *p, unsigned long n) |
FXStream & | load (FXdouble *p, unsigned long n) |
FXStream & | saveObject (const FXObject *v) |
FXStream & | loadObject (FXObject *&v) |
virtual | ~FXStream () |
Static Public Member Functions | |
FXbool | isLittleEndian () |
Each item of data that is saved or loaded from the stream may be byte-swapped, thus allowing little-endian machines to read data produced on big endian ones and vice-versa. Data is serialized exactly as-is. There are no tags or other markers inserted into the stream; thus, the stream may be used to save or load arbitrary binary data. Objects derived from FXObjects may be serialized also; whenever a reference to an object is serialized, a table is consulted to determine if the same object has been encountered previously; if not, the object is added to the table and then its contents are serialized. If the object has been encountered before, only a reference to the object is serialized. When loading back a serialized object, new instances are constructed using the default constructor, and subsequently the object's contents are loaded. A special container object may be passed in which is placed in the table as if it had been encountered before; this will cause only references to this object to be saved. The container object is typically the top-level document object which manages all objects contained by it.
See also:
|
Construct stream with given container object. The container object is an object that will itself not be saved to or loaded from the stream, but which may be referenced by other objects. These references will be properly saved and restored. |
|
Destructor.
|
|
Open stream for reading (FXStreamLoad) or for writing (FXStreamSave). An initial buffer size may be given, which must be at least 16 bytes. If data is not NULL, it is expected to point to an external data buffer of length size; otherwise stream will use an internally managed buffer. Reimplemented in FX::FXMemoryStream. |
|
Close; return TRUE if OK.
Reimplemented in FX::FXFileStream, and FX::FXMemoryStream. |
|
Flush buffer.
|
|
Get available buffer space.
|
|
Set available buffer space.
|
|
Get status code.
|
|
Return TRUE if at end of file or error.
|
|
Set status code.
|
|
Obtain stream direction.
|
|
Get parent object.
|
|
Get position.
|
|
Move to position relative to head, tail, or current location.
Reimplemented in FX::FXFileStream, and FX::FXMemoryStream. |
|
Change swap bytes flag.
|
|
Get state of the swap bytes flag.
|
|
Return implementation's endianness.
|
|
Save single items to stream.
Reimplemented in FX::FXFileStream, and FX::FXMemoryStream. |
|
Save arrays of items to stream.
Reimplemented in FX::FXFileStream, and FX::FXMemoryStream. |
|
Load single items from stream.
Reimplemented in FX::FXFileStream, and FX::FXMemoryStream. |
|
Load arrays of items from stream.
Reimplemented in FX::FXFileStream, and FX::FXMemoryStream. |
|
Save object.
Reimplemented in FX::FXFileStream, and FX::FXMemoryStream. |
|
Load object.
Reimplemented in FX::FXFileStream, and FX::FXMemoryStream. |
Copyright © 1997-2004 Jeroen van der Zijp |