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

AMOS::IBankable_t Class Reference

Interface for classes that can be stored in an AMOS bank. More...

#include <Bank_AMOS.hh>

Inheritance diagram for AMOS::IBankable_t:

Inheritance graph
[legend]
Collaboration diagram for AMOS::IBankable_t:

Collaboration graph
[legend]
List of all members.

Public Member Functions

 IBankable_t ()
 Constructs an empty IBankable_t object.
 IBankable_t (const IBankable_t &source)
 Copy constructor.
virtual ~IBankable_t ()
 Virtual destructor.
virtual void clear ()
 Clears all object data, reinitializes the object.
const std::string & getEID () const
 Get the external ID.
ID_t getIID () const
 Get the internal ID.
virtual NCode_t getNCode () const =0
 Get the AMOS NCode type identifier.
bool isRemoved () const
 Check if the object is waiting to be removed from the bank.
bool isModified () const
 Check if the object has been modified.
bool isFlagA () const
 Check the value of flag A.
bool isFlagB () const
 Check the value of flag B.
void setEID (const std::string &eid)
 Set the external ID.
void setFlagA (bool flag)
 Set flag A.
void setFlagB (bool flag)
 Set flag B.
void setIID (ID_t iid)
 Set the internal ID.

Protected Member Functions

virtual void readRecord (std::istream &fix, std::istream &var)=0
 Read selected class members from a biserial record.
virtual void writeRecord (std::ostream &fix, std::ostream &var) const =0
 Write selected class members to a biserial record.

Protected Attributes

ID_t iid_m
 internal ID (integer AMOS identifier)
std::string eid_m
 external ID (anything you want sans newlines)
BankFlags_t flags_m
 bank flags, derived classes may use "nibble"

Detailed Description

Interface for classes that can be stored in an AMOS bank.

All classes derived from this interface class may be stored in a AMOS bank. Derived classes from this type that you wish to include in an AMOS Bank_t. This will assure all data types being "banked" will have an iid, eid and flags field, and will be able to read and write themselves to a bank. To derive new types, the developer must implement the virtual functions to ensure the new class can be correctly stored and recovered from a bank. Each IBankable class should return a unique (static) NCode when getNCode is called upon, so that the bank dynamically identify the types of virtual objects.

Definition at line 56 of file Bank_AMOS.hh.


Constructor & Destructor Documentation

AMOS::IBankable_t::IBankable_t  )  [inline]
 

Constructs an empty IBankable_t object.

Set IID to NULL_ID, comment to empty string and all flags to false. Definition at line 116 of file Bank_AMOS.hh.

References iid_m, and AMOS::NULL_ID.

AMOS::IBankable_t::IBankable_t const IBankable_t source  )  [inline]
 

Copy constructor.

Definition at line 125 of file Bank_AMOS.hh.

virtual AMOS::IBankable_t::~IBankable_t  )  [inline, virtual]
 

Virtual destructor.

Definition at line 134 of file Bank_AMOS.hh.


Member Function Documentation

virtual void AMOS::IBankable_t::clear  )  [inline, virtual]
 

Clears all object data, reinitializes the object.

Reimplemented in AMOS::Contig_t, AMOS::ContigEdge_t, AMOS::ContigLink_t, AMOS::Edge_t, AMOS::Feature_t, AMOS::Fragment_t, AMOS::Group_t, AMOS::Index_t, AMOS::Kmer_t, AMOS::Layout_t, AMOS::Library_t, AMOS::Link_t, AMOS::Overlap_t, AMOS::Read_t, AMOS::Scaffold_t, AMOS::ScaffoldEdge_t, AMOS::ScaffoldLink_t, AMOS::Sequence_t, and AMOS::Universal_t.

Definition at line 143 of file Bank_AMOS.hh.

References eid_m, flags_m, iid_m, and AMOS::NULL_ID.

const std::string& AMOS::IBankable_t::getEID  )  const [inline]
 

Get the external ID.

Returns:
The external ID
Definition at line 156 of file Bank_AMOS.hh.

References eid_m.

Referenced by AMOS::Contig_t::writeUMD().

ID_t AMOS::IBankable_t::getIID  )  const [inline]
 

Get the internal ID.

Returns:
The internal ID
Definition at line 167 of file Bank_AMOS.hh.

References AMOS::ID_t, and iid_m.

Referenced by AMOS::Index_t::buildContigFeature(), AMOS::Index_t::buildContigScaffold(), AMOS::Index_t::buildReadContig(), AMOS::Index_t::buildReadLibrary(), AMOS::Index_t::buildScaffoldFeature(), and AMOS::operator<<().

virtual NCode_t AMOS::IBankable_t::getNCode  )  const [pure virtual]
 

Get the AMOS NCode type identifier.

Returns:
The AMOS NCode type identifier

Implemented in AMOS::Contig_t, AMOS::ContigEdge_t, AMOS::ContigLink_t, AMOS::Edge_t, AMOS::Feature_t, AMOS::Fragment_t, AMOS::Group_t, AMOS::Index_t, AMOS::Kmer_t, AMOS::Layout_t, AMOS::Library_t, AMOS::Link_t, AMOS::Overlap_t, AMOS::Read_t, AMOS::Scaffold_t, AMOS::ScaffoldEdge_t, AMOS::ScaffoldLink_t, AMOS::Sequence_t, and AMOS::Universal_t.

Referenced by AMOS::Bank_t::appendBID(), AMOS::Bank_t::fetchBID(), AMOS::BankStream_t::operator<<(), AMOS::BankStream_t::operator>>(), and AMOS::Bank_t::replaceBID().

bool AMOS::IBankable_t::isFlagA  )  const [inline]
 

Check the value of flag A.

Returns:
The value of flag A
Definition at line 210 of file Bank_AMOS.hh.

References flags_m.

Referenced by AMOS::Universal_t::writeMessage(), and AMOS::Overlap_t::writeMessage().

bool AMOS::IBankable_t::isFlagB  )  const [inline]
 

Check the value of flag B.

Returns:
The value of flag B
Definition at line 221 of file Bank_AMOS.hh.

References flags_m.

Referenced by AMOS::Universal_t::writeMessage(), and AMOS::Overlap_t::writeMessage().

bool AMOS::IBankable_t::isModified  )  const [inline]
 

Check if the object has been modified.

Returns:
true if modified, otherwise false
Definition at line 199 of file Bank_AMOS.hh.

References flags_m.

bool AMOS::IBankable_t::isRemoved  )  const [inline]
 

Check if the object is waiting to be removed from the bank.

Note:
Useful for debugging only
Returns:
true if removed, otherwise false
Definition at line 188 of file Bank_AMOS.hh.

References flags_m.

virtual void AMOS::IBankable_t::readRecord std::istream &  fix,
std::istream &  var
[protected, pure virtual]
 

Read selected class members from a biserial record.

Reads the fixed and variable length streams from a biserial record and initializes the class members to the values stored within. Used in translating a biserial IBankable object, and needed to retrieve objects from a bank.

Note:
This method must be able to interpret the biserial record produced by its related function writeRecord.
Parameters:
fix The fixed length stream (stores all fixed length members)
var The variable length stream (stores all var length members)
Precondition:
The get pointer of fix is at the beginning of the record

The get pointer of var is at the beginning of the record

Returns:
void

Implemented in AMOS::Contig_t, AMOS::ContigEdge_t, AMOS::ContigLink_t, AMOS::Edge_t, AMOS::Feature_t, AMOS::Fragment_t, AMOS::Group_t, AMOS::Index_t, AMOS::Kmer_t, AMOS::Layout_t, AMOS::Library_t, AMOS::Link_t, AMOS::Overlap_t, AMOS::Read_t, AMOS::Scaffold_t, AMOS::ScaffoldEdge_t, AMOS::ScaffoldLink_t, AMOS::Sequence_t, and AMOS::Universal_t.

void AMOS::IBankable_t::setEID const std::string &  eid  )  [inline]
 

Set the external ID.

Will only use the characters up to but not including the first newline.

Returns:
void
Definition at line 234 of file Bank_AMOS.hh.

References eid_m, and AMOS::NL_CHAR.

Referenced by AMOS::Contig_t::readUMD().

void AMOS::IBankable_t::setFlagA bool  flag  )  [inline]
 

Set flag A.

Has no effect on the actual object in memory other than setting a flag. This is one of two user accessible flags to be used as needed, the other is flag B.

Parameters:
flag The new flag A value
Returns:
void
Definition at line 254 of file Bank_AMOS.hh.

References flags_m.

Referenced by AMOS::Universal_t::readMessage(), and AMOS::Overlap_t::readMessage().

void AMOS::IBankable_t::setFlagB bool  flag  )  [inline]
 

Set flag B.

Has no effect on the actual object in memory other than setting a flag. This is one of two user accessible flags to be used as needed, the other is flag A.

Parameters:
flag The new flag B value
Returns:
void
Definition at line 270 of file Bank_AMOS.hh.

References flags_m.

Referenced by AMOS::Universal_t::readMessage(), and AMOS::Overlap_t::readMessage().

void AMOS::IBankable_t::setIID ID_t  iid  )  [inline]
 

Set the internal ID.

Parameters:
iid The new internal ID
Returns:
void
Definition at line 282 of file Bank_AMOS.hh.

References AMOS::ID_t, and iid_m.

virtual void AMOS::IBankable_t::writeRecord std::ostream &  fix,
std::ostream &  var
const [protected, pure virtual]
 

Write selected class members to a biserial record.

Writes the fixed and variable length streams to a biserial record. Used in generating a biserial IBankable object, and needed to commit objects to a bank. Should not write the flags, EID, or IID of the object because the bank will handle the storage of these fields on its own.

Note:
This method must be able to produce a biserial record that can be read by its related funtion readRecord.
Parameters:
fix The fixed length stream (stores all fixed length members)
var The variable length stream (stores all var length members)
Returns:
void

Implemented in AMOS::Contig_t, AMOS::ContigEdge_t, AMOS::ContigLink_t, AMOS::Edge_t, AMOS::Feature_t, AMOS::Fragment_t, AMOS::Group_t, AMOS::Index_t, AMOS::Kmer_t, AMOS::Layout_t, AMOS::Library_t, AMOS::Link_t, AMOS::Overlap_t, AMOS::Read_t, AMOS::Scaffold_t, AMOS::ScaffoldEdge_t, AMOS::ScaffoldLink_t, AMOS::Sequence_t, and AMOS::Universal_t.


Member Data Documentation

std::string AMOS::IBankable_t::eid_m [protected]
 

external ID (anything you want sans newlines)

Definition at line 66 of file Bank_AMOS.hh.

Referenced by clear(), getEID(), and setEID().

BankFlags_t AMOS::IBankable_t::flags_m [protected]
 

bank flags, derived classes may use "nibble"

Definition at line 68 of file Bank_AMOS.hh.

Referenced by clear(), isFlagA(), isFlagB(), isModified(), isRemoved(), setFlagA(), and setFlagB().

ID_t AMOS::IBankable_t::iid_m [protected]
 

internal ID (integer AMOS identifier)

Definition at line 64 of file Bank_AMOS.hh.

Referenced by clear(), getIID(), IBankable_t(), and setIID().


The documentation for this class was generated from the following file:
Generated on Tue May 17 15:19:41 2005 for libAMOS by doxygen 1.3.8