ParsedStateMachine.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
00039 #ifndef CURRENT_INCLUDE_PARSEDSTATECONTEXT_HPP
00040 #define CURRENT_INCLUDE_PARSEDSTATECONTEXT_HPP
00041
00042 #include "../StateMachine.hpp"
00043 #include "../DataSource.hpp"
00044 #include <boost/shared_ptr.hpp>
00045
00046 namespace RTT
00047 {
00048 class TaskObject;
00049 class StateMachineTask;
00050
00051 class ParsedStateMachine;
00052 typedef boost::shared_ptr<ParsedStateMachine> ParsedStateMachinePtr;
00053 typedef boost::weak_ptr<ParsedStateMachine> ParsedStateMachineWPtr;
00054
00058 class ParsedStateMachine
00059 : public StateMachine
00060 {
00061 typedef std::map<std::string, AttributeBase*> VisibleWritableValuesMap;
00062 protected:
00063 virtual void handleUnload();
00064 public:
00065 ParsedStateMachine();
00066 virtual ~ParsedStateMachine();
00067
00071 ParsedStateMachinePtr copy( std::map<const DataSourceBase*, DataSourceBase*>& replacements, bool instantiate = false ) const;
00072
00073 void addParameter( const std::string& name, AttributeBase* var );
00074
00075 AttributeBase* getParameter( const std::string& name ) const;
00076 VisibleWritableValuesMap getParameters() const;
00077 std::vector<std::string> getParameterNames() const;
00078
00084 void setName( const std::string& name, bool recursive );
00085
00086 std::string getText() const;
00087
00088 void setText( std::string text);
00089
00090 StateMachineTask* getTaskObject() const;
00091
00092 void setTaskObject(StateMachineTask* tc);
00093
00094 bool inState( const std::string& name );
00098 void finish();
00099 private:
00100 VisibleWritableValuesMap parametervalues;
00101
00102 boost::shared_ptr<std::string> _text;
00103
00104 StateMachineTask* object;
00105 };
00106 }
00107
00108 #endif