OpenRTM-aist-Python 2.0.0
Public Member Functions | List of all members
OpenRTM_aist.FsmActionListener.FsmStructureListener Class Reference

More...

Public Member Functions

def __init__ (self)
 
def __del__ (self)
 
def __call__ (self, pprof)
 
def toString (status)
 

Detailed Description

FsmStructureListener class

PostFsmActionListener class is a base class for the listener objects which realize callback to hook FSM structure profile related actions. To hook execution just before a FSM action, the callback object should be defined as follows, and set to RTObject through appropriate callback set function.

 class MyListener
   : public FsmStructureListener
 {
   std::string m_name;
 public:
   MyListener(const char* name) : m_name(name) {}
   virtual ~MyListener() {}
   virtual void operator()(::RTC::FsmStructure& pprof)
   {
     std::cout << "Listner name:  " m_name << std::endl;
   };
 };
 

The listener class defined above is set to RTObject as follows.

 RTC::ReturnCode_t ConsoleIn::onInitialize()
 {
     addFsmStructureListener(SET_FSM_STRUCTURE,
                             new MyListener("set structure listener"),
                             true);
    :
 

The first argument "SET_FSM_STRUCTURE" specifies callback hook point, and the following values are available. Not all the callback points are implemented. It depends on the FSM implementations.

The second argument is a pointers to the listener object. The third argument is a flag for automatic object destruction. When "true" is given to the third argument, the given object in second argument is automatically destructed with RTObject. In the "false " case, the ownership of the object is left in the caller side, and then destruction of the object must be done by users' responsibility.

It is good for setting "true" as third argument, if the listener object life span is equals to the RTObject's life cycle. On the otehr hand, if callbacks are required to set/unset depending on its situation, the third argument could be "false". In that case, listener objects pointers must be stored to member variables, and set/unset of the listener objects shoud be paerformed throguh RTObject_impl::addPostFsmActionListener()/removePostFsmActionListener() functions.

Constructor & Destructor Documentation

◆ __init__()

def OpenRTM_aist.FsmActionListener.FsmStructureListener.__init__ (   self)

Constructor

◆ __del__()

def OpenRTM_aist.FsmActionListener.FsmStructureListener.__del__ (   self)

Destructor

Member Function Documentation

◆ __call__()

def OpenRTM_aist.FsmActionListener.FsmStructureListener.__call__ (   self,
  pprof 
)

Virtual Callback function

This is a the Callback function for FsmStructureListener.

virtual void operator()(const ::RTC::FsmStructure& fsmprof) = 0;

◆ toString()

def OpenRTM_aist.FsmActionListener.FsmStructureListener.toString (   status)

Convert FsmStructureListenerType into the string.

Convert FsmStructureListenerType into the string.

Parameters
typeThe target FsmStructureListenerType for transformation
Returns
Trnasformation result of string representation

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