Generic hardware access library
HAL::AbstractCommandFactory Class Reference

#include <AbstractCommandFactory.hh>

Inheritance diagram for HAL::AbstractCommandFactory:
HAL::AddFactory HAL::CheckFactory HAL::DefineFactory HAL::GotoFactory HAL::LabelFactory HAL::PollItemFactory HAL::PrintFactory HAL::ReadFactory HAL::ResetBitFactory HAL::SetBitFactory HAL::UnmaskedReadFactory HAL::UnmaskedWriteFactory HAL::WriteFactory

List of all members.

Public Member Functions

virtual ~AbstractCommandFactory ()
virtual SequencerCommandcreate (std::list< std::string > &arguments, const AddressTableInterface &addressTable, CommandSequence &sequence)=0 throw (SequencerSyntaxError, NoSuchItemException)
 Create an instantiation of a specific SequencerCommand.

Protected Member Functions

uint32_t stringToNumber (std::string numberString) throw (SequencerSyntaxError)
 A helper function to convert constant parameters.

Detailed Description

Definition at line 40 of file AbstractCommandFactory.hh.


Constructor & Destructor Documentation

Definition at line 44 of file AbstractCommandFactory.hh.


Member Function Documentation

virtual SequencerCommand* HAL::AbstractCommandFactory::create ( std::list< std::string > &  arguments,
const AddressTableInterface addressTable,
CommandSequence sequence 
) throw (SequencerSyntaxError, NoSuchItemException) [pure virtual]

Create an instantiation of a specific SequencerCommand.

Parameters:
addressTablemight be used in the implementations of this. interface.
sequenceis forwarded to the contructor of the command.

Implemented in HAL::AddFactory, HAL::UnmaskedWriteFactory, HAL::WriteFactory, HAL::PollItemFactory, HAL::DefineFactory, HAL::ResetBitFactory, HAL::SetBitFactory, HAL::UnmaskedReadFactory, HAL::CheckFactory, HAL::GotoFactory, HAL::LabelFactory, HAL::PrintFactory, and HAL::ReadFactory.

uint32_t HAL::AbstractCommandFactory::stringToNumber ( std::string  numberString) throw (SequencerSyntaxError) [protected]

A helper function to convert constant parameters.

Often parameters are numbers which can be given in hexadecimal notation (e.g. "0xfe") or in decimal notation (e.g. "254"). This function converts the strings apropriately to a number.

Definition at line 6 of file AbstractCommandFactory.cc.


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