RTC Toolkit  2.0.0
optCmdsImpl.hpp
Go to the documentation of this file.
1 
12 #ifndef RTCTK_COMPONENTFRAMEWORK_OPTCMDSIMPL_HPP
13 #define RTCTK_COMPONENTFRAMEWORK_OPTCMDSIMPL_HPP
14 
15 #include <Rtctkif.hpp>
17 #include <rtctk/componentFramework/events.rad.hpp>
21 
22 #include <mal/Cii.hpp>
23 
24 #include <memory>
25 #include <string>
26 
27 namespace rtctk::componentFramework {
28 
32 class OptCmdsImpl : public rtctkif::AsyncOptCmds {
33 public:
34  static void Register(CommandReplier& replier, StateMachineEngine& engine) {
35  std::shared_ptr<elt::mal::rr::RrEntity> rr_service = std::make_shared<OptCmdsImpl>(engine);
36  replier.RegisterService<rtctkif::AsyncOptCmds>("OptCmds", rr_service);
37  }
38 
39  OptCmdsImpl(StateMachineEngine& engine) : m_engine(engine) {
40  }
41 
42  ::elt::mal::future<std::string> Optimise(std::string const& args) override {
43  LOG4CPLUS_TRACE(GetLogger(), "Received command 'Optimise' with payload '" + args + "'");
44  return InjectReqRepEvent<events::Optimise>(this->m_engine, args);
45  }
46 
47 private:
48  StateMachineEngine& m_engine;
49 };
50 
51 } // namespace rtctk::componentFramework
52 
53 #endif
commandReplier.hpp
Receive commands via MAL.
stateMachineEngine.hpp
Wrapper around the SCXML State Machine Engine.
rtctk::componentFramework::OptCmdsImpl::Register
static void Register(CommandReplier &replier, StateMachineEngine &engine)
Definition: optCmdsImpl.hpp:34
rtctk::componentFramework
Definition: commandReplier.cpp:20
rtctk::componentFramework::OptCmdsImpl
Class that handles reception of command Optimise using MAL.
Definition: optCmdsImpl.hpp:32
rtctk::componentFramework::StateMachineEngine
Definition: stateMachineEngine.hpp:31
rtctk::componentFramework::GetLogger
log4cplus::Logger & GetLogger(const std::string &name="")
Get handle to a specific logger (used with logging macros)
rtctk::componentFramework::OptCmdsImpl::Optimise
::elt::mal::future< std::string > Optimise(std::string const &args) override
Definition: optCmdsImpl.hpp:42
rtctk::componentFramework::CommandReplier
Class that handles reception of commands using MAL.
Definition: commandReplier.hpp:26
logger.hpp
Logging Support Library based on log4cplus.
rtctk::componentFramework::CommandReplier::RegisterService
void RegisterService(std::string const &name, std::shared_ptr< elt::mal::rr::RrEntity > &service)
Definition: commandReplier.hpp:33
malEventInjector.hpp
Provides core functionality of an RTC Component.
rtctk::componentFramework::OptCmdsImpl::OptCmdsImpl
OptCmdsImpl(StateMachineEngine &engine)
Definition: optCmdsImpl.hpp:39