Chaining.cpp
Go to the documentation of this file.
1 
2 
3 #include "Chaining.h"
4 
6 {
7 
8  ChainingSkill::ChainingSkill() : SimpleSkill(GetSkillDescription())
9  {
10  }
11 
14  {
15  return SkillDescription{
16  .skillId = armarx::skills::SkillID{.skillName = "Chaining"},
17  .description = "This skill calls the Timeout skill several times. At some point the "
18  "execution is aborted due to a timeout of this skill.",
19 
20  .rootProfileDefaults = armarx::aron::make_dict(),
22  }
23 
25  ChainingSkill::main(const MainInput& in)
26  {
27  SkillProxy prx(
28  manager,
29  skills::SkillID{.providerId = *getSkillId().providerId, .skillName = "Timeout"});
30 
31  for (int i = 0; i < 25; i++)
32  {
34 
35  ARMARX_INFO << "Call subskill number " << i;
36  callSubskill(prx); // Call the Timeout skill and wait for it to finish
37  }
38 
40 
41  return {TerminatedSkillStatus::Succeeded, nullptr};
42  }
43 } // namespace armarx::skills::provider
armarx::skills::Skill::manager
manager::dti::SkillManagerInterfacePrx manager
Definition: Skill.h:291
armarx::skills::TerminatedSkillStatus::Succeeded
@ Succeeded
armarx::aron::make_dict
aron::data::DictPtr make_dict(_Args &&... args)
Definition: Dict.h:107
armarx::skills::SkillID::skillName
std::string skillName
Definition: SkillID.h:41
armarx::skills::SkillDescription
Definition: SkillDescription.h:17
armarx::skills::provider::ChainingSkill::ChainingSkill
ChainingSkill()
Definition: Chaining.cpp:8
armarx::skills::SkillID::providerId
std::optional< ProviderID > providerId
Definition: SkillID.h:40
armarx::skills::Skill::callSubskill
std::optional< TerminatedSkillStatusUpdate > callSubskill(const skills::SkillProxy &proxy)
Call a subskill with default parameters and block until the subskill terminates.
Definition: Skill.cpp:32
armarx::skills::SkillProxy
Definition: SkillProxy.h:13
armarx::skills::SkillDescription::skillId
SkillID skillId
Definition: SkillDescription.h:19
armarx::skills::provider::ChainingSkill::GetSkillDescription
static SkillDescription GetSkillDescription()
Definition: Chaining.cpp:13
armarx::skills::provider
Definition: BusyWaiting.cpp:6
armarx::skills::Skill::MainResult
A result struct for th main method of a skill.
Definition: Skill.h:39
armarx::skills::SimpleSkill
Definition: SimpleSkill.h:9
armarx::skills::SimpleSkill::main
MainResult main() final
Override this method with the actual implementation. The callback is for status updates to the callin...
Definition: SimpleSkill.cpp:15
ARMARX_INFO
#define ARMARX_INFO
Definition: Logging.h:181
armarx::skills::Skill::throwIfSkillShouldTerminate
void throwIfSkillShouldTerminate(const std::string &abortedMessage="")
Definition: Skill.cpp:305
armarx::skills::SkillID
Definition: SkillID.h:14
armarx::skills::Skill::getSkillId
SkillID getSkillId() const
Get the id of the skill.
Definition: Skill.cpp:497
armarx::core::time::Duration::MilliSeconds
static Duration MilliSeconds(std::int64_t milliSeconds)
Constructs a duration in milliseconds.
Definition: Duration.cpp:48
Chaining.h