FACT++  1.0
bool StateMachineImp::HandleEvent ( const EventImp evt)
protected

This is the event handler. Depending on the type of event it calles the function associated with the event, the Transition() or Configure() function.

It first checks if the given even is valid in the current state. If it is not valid the function returns with true.

If it is valid, it is checked whether a function is associated with the event. If this is the case, evt.Exec() is called and HandleNewState called with its return value.

If the event's target state is negative (unnamed Event) the Configure() function is called with the event as argument and HandleNewState with its returned new state.

If the event's target state is 0 or positive (named Event) the Transition() function is called with the event as argument and HandleNewState with its returned new state.

In all three cases the return value of HandleNewState is returned.

Any of the three commands should usually return the current state or (in case of the Transition() command) return the new state. However, all three command can issue a state change by returning a new state. However, this will just change the internal state. Any action which is connected with the state change must have been executed already.

Parameters
evta reference to the event which should be handled
Returns
false in case one of the commands changed the state to kSM_FataError, true otherwise

Definition at line 882 of file StateMachineImp.cc.

References MessageImp::Debug(), EventImp::ExecFunc(), fCurrentState, EventImp::GetName(), EventImp::GetSize(), GetStateDescription(), HandleNewState(), EventImp::HasFunc(), EventImp::IsStateAllowed(), and MessageImp::Warn().

Referenced by PostEvent(), Run(), and Wrapper().

883 {
884  if (!evt.HasFunc())
885  {
886  Warn(evt.GetName()+": No function assigned... ignored.");
887  return true;
888 
889  }
890 
891 #ifdef DEBUG
892  ostringstream out;
893  out << "Handle: " << evt.GetName() << "[" << evt.GetSize() << "]";
894  Debug(out);
895 #endif
896 
897  // Check if the received command is allow in the current state
898  if (!evt.IsStateAllowed(fCurrentState))
899  {
900  Warn(evt.GetName()+": Not allowed in state "+GetStateDescription()+"... ignored.");
901  return true;
902  }
903 
904  return HandleNewState(evt.ExecFunc(), &evt,
905  "by ExecFunc function-call");
906 }
int fCurrentState
Name of the state-machine / server (e.g. DRIVE)
int Debug(const std::string &str)
Definition: MessageImp.h:45
bool HasFunc() const
Definition: EventImp.h:31
bool HandleNewState(int newstate, const EventImp *evt, const char *txt)
int ExecFunc() const
Definition: EventImp.h:32
bool IsStateAllowed(int state) const
Definition: EventImp.cc:174
int Warn(const std::string &str)
Definition: MessageImp.h:48
const std::string GetStateDescription() const
virtual std::string GetName() const
Definition: EventImp.h:51
virtual size_t GetSize() const
Definition: EventImp.h:55

+ Here is the call graph for this function:

+ Here is the caller graph for this function: