casacore
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Public Member Functions | List of all members
casacore::RecordTransformable Class Referenceabstract

Interface class for converting to/from records. More...

#include <RecordTransformable.h>

Inheritance diagram for casacore::RecordTransformable:
casacore::FunctionHolder< T > casacore::FunctionOrder< T > casacore::ImageInfo casacore::LSQMatrix casacore::MeasureHolder casacore::ObsInfo casacore::QuantumHolder casacore::FunctionHolder< DComplex > casacore::FunctionHolder< Double >

Public Member Functions

virtual ~RecordTransformable ()
 The destructor must be virtual so that the destructor of derived classes is actually used. More...
 
virtual Bool toRecord (String &error, RecordInterface &outRecord) const =0
 Convert the class to an Record representation. More...
 
virtual Bool fromRecord (String &error, const RecordInterface &inRecord)=0
 Initialise the class from a Record representation. More...
 
virtual Bool fromString (String &error, const String &inString)
 Initialise the class from a String representation. More...
 
virtual const Stringident () const
 Specify the identification of the record (e.g. More...
 

Detailed Description

Interface class for converting to/from records.

Intended use:

Public interface

Review Status

Reviewed By:
UNKNOWN
Date Reviewed:
before2004/08/25
Test programs:
tRecordTransformable

Prerequisite

Etymology

This class defines the interface that a class should use if the can be transformed into a record representation.

Synopsis

This abstract base class is intended to be publicly inherited by classes that contain functions which can represent the object as a record (these functions should be called toRecord and fromRecord). Examples of records are:

This interface defines two functions that convert between a RecordInterface and the class that inherits these functions. These functions are often used to parse input that is beyond the programs control e.g. user input from glish or Table records that may have been generated elsewhere. Hence exceptions should not thrown be thrown by these functions. Instead the function should return False and append an error message to the supplied String when the transformation cannot be accomplished.


Warning: Converting to/from a GlishRecord requires an extra step; First a Record should be used which can thereafter be converted to/from a GlishRecord using the appropriate GlishRecord functions;

Example

The following example prints out a class using its record representation. This example is in the file tRecordTransformable.cc

void printAsRecord(const RecordTransformable & myClass) {
String errorMessage;
Record rec;
if (!myClass.toRecord(errorMessage, rec)) {
cout << "Cannot convert class to a Record. The reason is:" << endl;
cout << errorMessage << endl;
} else {
cout << rec.ndefined() << endl;
}
}

Motivation

This class was designed to standardise the function interface for converting between an object and its record representation.

To Do

Definition at line 106 of file RecordTransformable.h.

Constructor & Destructor Documentation

virtual casacore::RecordTransformable::~RecordTransformable ( )
virtual

The destructor must be virtual so that the destructor of derived classes is actually used.

Member Function Documentation

virtual Bool casacore::RecordTransformable::fromRecord ( String error,
const RecordInterface inRecord 
)
pure virtual

Initialise the class from a Record representation.

The input record should contain the fields that are required by the class. Other fields will be ignored. If the transformation succeeds then the error String is unchanged and the function returns True. Otherwise the function returns False and appends an error message to the supplied String giving the reason why the conversion failed.

Implemented in casacore::QuantumHolder, casacore::MeasureHolder, casacore::LSQMatrix, casacore::ObsInfo, casacore::FunctionHolder< T >, casacore::FunctionHolder< Double >, casacore::FunctionHolder< DComplex >, casacore::ImageInfo, and casacore::FunctionOrder< T >.

virtual Bool casacore::RecordTransformable::fromString ( String error,
const String inString 
)
virtual

Initialise the class from a String representation.

A string cannot contain enough information for many objects. Hence the default implementation of this class returns False, indicating that the class could not be initialised and an error message is appended to the supplied string. If the class can be initialised from a string then this function should be overridden.

Reimplemented in casacore::QuantumHolder, casacore::MeasureHolder, casacore::FunctionHolder< T >, casacore::FunctionHolder< Double >, casacore::FunctionHolder< DComplex >, and casacore::FunctionOrder< T >.

virtual const String& casacore::RecordTransformable::ident ( ) const
virtual

Specify the identification of the record (e.g.

'meas', 'quant'). The default implementation returns a empty string.

Reimplemented in casacore::QuantumHolder, casacore::MeasureHolder, casacore::LSQMatrix, casacore::FunctionHolder< T >, casacore::FunctionHolder< Double >, casacore::FunctionHolder< DComplex >, and casacore::FunctionOrder< T >.

virtual Bool casacore::RecordTransformable::toRecord ( String error,
RecordInterface outRecord 
) const
pure virtual

Convert the class to an Record representation.

The input record may already contain fields and these fields may be silently overridden. New fields may be added to the input Record. If the transformation succeeds then the error String is unchanged and the function returns True. Otherwise the function returns False and appends an error message to the supplied String giving the reason why the conversion failed.

Implemented in casacore::QuantumHolder, casacore::MeasureHolder, casacore::LSQMatrix, casacore::FunctionHolder< T >, casacore::FunctionHolder< Double >, casacore::FunctionHolder< DComplex >, casacore::ObsInfo, casacore::ImageInfo, and casacore::FunctionOrder< T >.


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