StateMachineProcessor.hpp
00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038 #ifndef ORO_STATE_MACHINE_PROCESSOR_HPP
00039 #define ORO_STATE_MACHINE_PROCESSOR_HPP
00040
00041 #include "RunnableInterface.hpp"
00042 #include "StateMachine.hpp"
00043 #include "ProgramExceptions.hpp"
00044
00045 #include <map>
00046 #include <string>
00047 #include <vector>
00048 #include "List.hpp"
00049
00050 #include "rtt-config.h"
00051
00052 namespace RTT
00053 {
00068 class RTT_API StateMachineProcessor
00069 : public RunnableInterface
00070 {
00071 public:
00075 typedef StateMachine::Status Status;
00076
00080 StateMachineProcessor();
00081
00082 virtual ~StateMachineProcessor();
00083
00088 bool loadStateMachine( StateMachinePtr sc );
00089
00095 bool unloadStateMachine( const std::string& name );
00096
00103 bool deleteStateMachine( const std::string& name );
00104
00108 void clear();
00109
00113 Status::StateMachineStatus getStateMachineStatus(const std::string& name) const;
00114
00118 std::string getStateMachineStatusStr(const std::string& name) const;
00119
00120 virtual bool initialize();
00121 virtual void step();
00122 virtual void finalize();
00123
00127 std::vector<std::string> getStateMachineList() const;
00128
00132 const StateMachinePtr getStateMachine(const std::string& name) const;
00133
00137 StateMachinePtr getStateMachine(const std::string& name);
00138
00139 protected:
00140 void recursiveLoadStateMachine( StateMachinePtr sc );
00141 bool recursiveCheckLoadStateMachine( StateMachinePtr sc );
00142 void recursiveUnloadStateMachine( StateMachinePtr sc );
00143 bool recursiveCheckUnloadStateMachine( StateMachinePtr si );
00144
00145 typedef List<StateMachinePtr> StateMap;
00146 StateMap* states;
00147
00148 };
00149
00150 }
00151
00152 #endif