![]() |
GM6000 Digital Heater Controller Branch: main
SDX-1330
|
This partially concrete class provides functionality that is common to all Frame handlers. More...
This partially concrete class provides functionality that is common to all Frame handlers.
Most notably, this class implements the self-registration of a Frame handler. All concrete Frame Handler classes should inherit from this class.
#include <RxFrameHandler.h>
Public Member Functions | |
const char * | getVerb () const noexcept |
See Driver::TPipe::RxFrameHandlerApi. | |
![]() | |
virtual void | execute (char *decodedFrameText) noexcept=0 |
This method is execute when an valid frame is received AND the frame begins with the frame handler' verb (as defined by its getVerb() method). | |
virtual | ~RxFrameHandlerApi () |
Virtual destructor. | |
![]() | |
bool | insert_ (void *newContainerPtr) |
Helper method to trap when inserting an item in multiple containers. | |
bool | isInContainer_ (const void *containerPtr) const noexcept |
Returns 'true' if the instance is in the specified container. | |
Protected Member Functions | |
RxFrameHandler (Cpl::Container::Map< RxFrameHandlerApi > &handlerList, const char *verb) noexcept | |
Constructor. | |
const Cpl::Container::Key & | getKey () const noexcept |
See Cpl::Container::Key. | |
![]() | |
MapItem () | |
Constructor. | |
MapItem (const char *ignoreThisParameter_usedToCreateAUniqueConstructor) | |
Constructor -->special constructor to allow a Map to be statically allocated. | |
void | initialize (MapItem *parent) |
Initialize the node when being inserted in the tree. | |
MapItem * | getParent () const |
Get tree connection/pointer. | |
void | setParent (MapItem *n) |
Set tree connection/pointer. | |
MapItem * | getLeft () const |
Get tree connection/pointer. | |
void | setLeft (MapItem *n) |
Set tree connection/pointer. | |
MapItem * | getRight () const |
Get tree connection/pointer. | |
void | setRight (MapItem *n) |
Set tree connection/pointer. | |
![]() | |
DictItem () | |
Constructor. | |
DictItem (const char *ignoreThisParameter_usedToCreateAUniqueConstructor) | |
Constructor used ONLY with the child class MapItem: -->special constructor to allow a Map to be statically allocated. | |
![]() | |
ExtendedItem () | |
Constructor. | |
ExtendedItem (const char *ignoreThisParameter_usedToCreateAUniqueConstructor) | |
Constructor used ONLY with the child class MapItem: -->special constructor to allow a Map to be statically allocated. | |
![]() | |
Item () | |
Constructor. | |
Item (const char *) | |
Constructor used ONLY with the child class MapItem: -->special constructor to allow a Map to be statically allocated. | |
Protected Attributes | |
Cpl::Container::KeyLiteralString | m_mapKey |
Verb. | |
![]() | |
void * | m_parentPtr_ |
Link field to the parent node. | |
bool | m_is_NOT_root_ |
I am the root node. | |
Balance_T | m_balance_ |
Balance status. | |
![]() | |
unsigned int | m_hashCode_ |
Remember which hash bucket I am stored in. | |
Additional Inherited Members | |
![]() | |
static void | remove_ (Item *itemPtr) noexcept |
Helper method to do the proper 'clean-up' for the multiple-containers-error-trap when removing an item from a container. | |
![]() | |
void * | m_prevPtr_ |
The previous link field. | |
![]() | |
void * | m_nextPtr_ |
The link field. | |
void * | m_inListPtr_ |
Debug field. | |
![]() | |
enum | Balance_T { eLEFT_ =-1 , eEVEN_ =0 , eRIGHT_ =1 } |
Magic values for balance status. More... | |
|
protectednoexcept |
Constructor.
|
protectedvirtualnoexcept |
See Cpl::Container::Key.
Implements Cpl::Container::DictItem.
|
virtualnoexcept |
See Driver::TPipe::RxFrameHandlerApi.
Implements Driver::TPipe::RxFrameHandlerApi.
|
protected |
Verb.