1 #ifndef __STG_SGCONF_API_ACTION_H__
2 #define __STG_SGCONF_API_ACTION_H__
15 typedef bool (* API_FUNCTION) (const CONFIG &,
17 const std::map<std::string, std::string> &);
22 COMMAND(API_FUNCTION funPtr,
23 const std::string & arg,
24 const std::map<std::string, std::string> & options)
29 bool Execute(const SGCONF::CONFIG & config) const
31 return m_funPtr(config, m_arg, m_options);
35 API_FUNCTION m_funPtr;
37 std::map<std::string, std::string> m_options;
43 void Add(API_FUNCTION funPtr,
44 const std::string & arg,
45 const std::map<std::string, std::string> & options) { m_commands.push_back(COMMAND(funPtr, arg, options)); }
46 bool Execute(const SGCONF::CONFIG & config) const
48 std::vector<COMMAND>::const_iterator it(m_commands.begin());
50 while (it != m_commands.end() && res)
52 res = res && it->Execute(config);
58 std::vector<COMMAND> m_commands;
61 class API_ACTION : public ACTION
67 std::string shortDescr;
68 std::string longDescr;
71 API_ACTION(COMMANDS & commands,
72 const std::string & paramDescription,
74 const std::vector<PARAM> & params,
76 API_ACTION(COMMANDS & commands,
77 const std::string & paramDescription,
80 : m_commands(commands),
81 m_description(paramDescription),
82 m_argument(needArgument ? "1" : ""), // Hack
86 virtual ACTION * Clone() const { return new API_ACTION(*this); }
88 virtual std::string ParamDescription() const { return m_description; }
89 virtual std::string DefaultDescription() const { return ""; }
90 virtual OPTION_BLOCK & Suboptions() { return m_suboptions; }
91 virtual PARSER_STATE Parse(int argc, char ** argv);
94 COMMANDS & m_commands;
95 std::string m_description;
96 std::string m_argument;
97 OPTION_BLOCK m_suboptions;
98 std::map<std::string, std::string> m_params;
99 API_FUNCTION m_funPtr;
103 ACTION * MakeAPIAction(COMMANDS & commands,
104 const std::string & paramDescription,
105 const std::vector<API_ACTION::PARAM> & params,
108 return new API_ACTION(commands, paramDescription, true, params, funPtr);
112 ACTION * MakeAPIAction(COMMANDS & commands,
113 const std::string & paramDescription,
116 return new API_ACTION(commands, paramDescription, true, funPtr);
120 ACTION * MakeAPIAction(COMMANDS & commands,
123 return new API_ACTION(commands, "", false, funPtr);