casacore
|
#include <BaseSinkSource.h>
Public Member Functions | |
TypeIO & | typeIO () |
This functions returns a reference to itsTypeIO. More... | |
const TypeIO & | typeIO () const |
Int64 | seek (Int64 offset, ByteIO::SeekOption=ByteIO::Begin) |
This function sets the position on the given offset. More... | |
Int64 | seek (Int offset, ByteIO::SeekOption=ByteIO::Begin) |
Bool | isReadable () const |
Is the SinkSource readable? More... | |
Bool | isWritable () const |
Is the SinkSource writable? More... | |
Bool | isSeekable () const |
Is the SinkSource seekable? More... | |
Bool | isNull () const |
Is the BaseSinkSource unusable? More... | |
Protected Member Functions | |
BaseSinkSource () | |
BaseSinkSource (TypeIO *typeIO, Bool takeOver=False) | |
Construct using the given TypeIO. More... | |
BaseSinkSource (const BaseSinkSource &BaseSinkSource) | |
The copy constructor uses reference semantics. More... | |
BaseSinkSource & | operator= (const BaseSinkSource &BaseSinkSource) |
The assignment operator uses reference semantics. More... | |
virtual | ~BaseSinkSource () |
Protected Attributes | |
CountedPtr< TypeIO > | itsTypeIO |
This variable keeps a pointer to a TypeIO. More... | |
Shared base class for ByteSink and ByteSource.
Public interface
This class provides the common functionality for the classes ByteSink and ByteSource.
The object is constructed using a typed byte stream. This stream is an instance of a class derived from class TypeIO. This makes it possible to store the data in any format (e.g. CanonicalIO or RawIO). Class CanonicalIO makes it possible to store the data in a canonical (machine-independent) format, so it can be read on any machine and operating system. The canonical format is big-endian IEEE, where a (unsigned) long is stored as 8 bytes. This means that on common 32-bit big-endian machines like SUN and HP only longs have to be converted and that CanonicalIO is as fast as RawIO. Class RawIO stores the data in native format, so the IO-process is faster on especially little-endian machines (PC, DEC-alpha). Note that RawIO can also be used to read bytes and interprete or convert them thereafter (e.g. using the conversion functions in the Conversion Conversion framework.
In its turn TypeIO uses an instance of a class derived from class ByteIO. This makes it possible to use any output stream (e.g. file, memory).
The design of the ByteSink and ByteSource classes resembles the design of the iostream classes in the standard library. A shared base class is needed to allow multiple inheritance needed for class ByteSinkSource.
Definition at line 83 of file BaseSinkSource.h.
|
protected |
Construct using the given TypeIO.
If takeOver is true the this class will delete the supplied pointer. Otherwise the caller is responsible for this.
|
protected |
The copy constructor uses reference semantics.
|
protectedvirtual |
Bool casacore::BaseSinkSource::isNull | ( | ) | const |
Is the BaseSinkSource unusable?
Bool casacore::BaseSinkSource::isReadable | ( | ) | const |
Is the SinkSource readable?
Bool casacore::BaseSinkSource::isSeekable | ( | ) | const |
Is the SinkSource seekable?
Bool casacore::BaseSinkSource::isWritable | ( | ) | const |
Is the SinkSource writable?
|
protected |
The assignment operator uses reference semantics.
Int64 casacore::BaseSinkSource::seek | ( | Int | offset, |
ByteIO::SeekOption | = ByteIO::Begin |
||
) |
Int64 casacore::BaseSinkSource::seek | ( | Int64 | offset, |
ByteIO::SeekOption | = ByteIO::Begin |
||
) |
This function sets the position on the given offset.
The seek option defines from which position the seek is done.
TypeIO& casacore::BaseSinkSource::typeIO | ( | ) |
This functions returns a reference to itsTypeIO.
const TypeIO& casacore::BaseSinkSource::typeIO | ( | ) | const |
|
protected |
This variable keeps a pointer to a TypeIO.
Definition at line 129 of file BaseSinkSource.h.