NavigateTo.cpp
Go to the documentation of this file.
1 #include "NavigateTo.h"
2 
3 #include <chrono>
4 #include <future>
5 #include <string>
6 
7 #include <Eigen/Core>
8 #include <Eigen/Geometry>
9 
13 
16 
23 
25 {
26  template <typename R>
27  bool
28  is_ready(std::future<R> const& f)
29  {
30  if (!f.valid())
31  {
32  return true;
33  }
34  std::future_status status = f.wait_for(std::chrono::seconds(0));
35  if (status == std::future_status::ready)
36  {
37  return true;
38  }
39  else if (status == std::future_status::deferred)
40  {
41  // if the task has not been started --> start the task
42  f.wait();
43  return true;
44  }
45  else
46  {
47  return false;
48  }
49  }
50 
51  NavigateTo::NavigateTo(const Services& srv) : Base(DefaultSkillDescription())
52  {
53  srv_.emplace(srv);
54  }
55 
57  NavigateTo::init(const Base::SpecializedInitInput& in)
58  {
59 
61  trajControllerParams{};
62 
63  client::GeneralConfig generalParams{};
64 
65  if (in.parameters.velocityLimitLinear.has_value())
66  {
67  trajControllerParams.limits.linear = in.parameters.velocityLimitLinear.value();
68  generalParams.maxVel.linear = in.parameters.velocityLimitLinear.value();
69  }
70 
71  if (in.parameters.velocityLimitAngular.has_value())
72  {
73  trajControllerParams.limits.angular = in.parameters.velocityLimitAngular.value();
74  generalParams.maxVel.angular = in.parameters.velocityLimitAngular.value();
75  }
76 
77  ARMARX_INFO << "Configuring navigator to respect the velocity limits:";
78  ARMARX_INFO << "linear: " << trajControllerParams.limits.linear;
79  ARMARX_INFO << "angular: " << trajControllerParams.limits.angular;
80 
81  // parameterize the navigation stack
82  client::NavigationStackConfig cfg;
83  cfg.general(generalParams);
85  cfg.trajectoryController(trajControllerParams);
86 
87  const std::string configId = DefaultSkillDescription().skillId.skillName;
88 
89  // configure the `navigator` which provides a simplified and typed interface to the navigation server
90  memorySubscriber.emplace(configId, srv_->memoryNameSystem);
91 
92  // register our config
93  ARMARX_INFO << "Registering config";
94  srv_->iceNavigator.createConfig(cfg, configId);
95 
96  navigator.emplace(client::Navigator::InjectedServices{
97  .navigator = &srv_->iceNavigator, .subscriber = &memorySubscriber.value()});
98 
99  return ::armarx::skills::Skill::InitResult{
100  .status = ::armarx::skills::TerminatedSkillStatus::Succeeded};
101  }
102 
104  NavigateTo::main(const Base::SpecializedMainInput& in)
105  {
106  const Eigen::Isometry3f globalTarget(in.parameters.targetPose);
107 
108  ARMARX_INFO << "moving to target " << VAROUT(globalTarget.matrix());
109 
110  // execute
111  ARMARX_INFO << "Sending navigation request";
112  navigator->moveTo(globalTarget, core::NavigationFrame::Absolute);
113 
114  // Wait until goal is reached
115  ARMARX_INFO << "Waiting until goal is reached.";
116 
117  auto future = std::async(std::launch::async, [this]() { return navigator->waitForStop(); });
118  while (not is_ready(future))
119  {
120  if (shouldSkillTerminate())
121  {
122  ARMARX_INFO << "Skill was aborted by user " << stopped << ", " << timeoutReached;
123  navigator->stop();
124  break;
125  }
126  }
127 
128  auto se = future.get();
129  if (se)
130  {
131  ARMARX_INFO << "Goal `" << Eigen::Isometry3f(in.parameters.targetPose).translation()
132  << "`reached.";
133  }
134  else
135  {
136  if (se.isSafetyStopTriggeredEvent())
137  {
138  ARMARX_ERROR << "Safety stop was triggered!";
139 
140  return ::armarx::skills::Skill::MainResult{
141  .status = ::armarx::skills::TerminatedSkillStatus::Failed};
142  }
143  if (se.isUserAbortTriggeredEvent())
144  {
145  ARMARX_ERROR << "Aborted by user!";
146 
147  return ::armarx::skills::Skill::MainResult{
148  .status = ::armarx::skills::TerminatedSkillStatus::Failed};
149  }
150  if (se.isInternalErrorEvent())
151  {
152  ARMARX_ERROR << "Unknown internal error occured! "
153  << se.toInternalErrorEvent().message;
154 
155  return ::armarx::skills::Skill::MainResult{
156  .status = ::armarx::skills::TerminatedSkillStatus::Failed};
157  }
158  }
159 
160 
161  return ::armarx::skills::Skill::MainResult{
162  .status = ::armarx::skills::TerminatedSkillStatus::Succeeded};
163  }
164 
165  void
166  NavigateTo::onStopRequested()
167  {
168  if (navigator.has_value())
169  {
170  ARMARX_CHECK(navigator.has_value());
171  navigator->stop();
172  }
173  }
174 
175 
176 } // namespace armarx::navigation::skills
armarx::skills::SimpleSpecializedSkill< arondto::NavigateToParams >::init
Skill::InitResult init() final
Definition: SimpleSpecializedSkill.h:62
SPFA.h
Navigator.h
SkillStatusUpdate.h
armarx::navigation::traj_ctrl::local::TrajectoryFollowingControllerParams
Definition: TrajectoryFollowingController.h:40
armarx::skills::SkillID::skillName
std::string skillName
Definition: SkillID.h:41
armarx::navigation::client::GeneralConfig::maxVel
core::TwistLimits maxVel
max ...
Definition: NavigationStackConfig.h:42
armarx::navigation::core::TwistLimits::linear
float linear
Definition: types.h:82
armarx::skills::Skill::timeoutReached
std::atomic_bool timeoutReached
Definition: Skill.h:312
armarx::navigation::skills::NavigateTo::NavigateTo
NavigateTo(const Services &srv)
Definition: NavigateTo.cpp:51
StringHelpers.h
ARMARX_CHECK
#define ARMARX_CHECK(expression)
Shortcut for ARMARX_CHECK_EXPRESSION.
Definition: ExpressionException.h:82
armarx::skills::Skill::stopped
std::atomic_bool stopped
Definition: Skill.h:311
armarx::navigation::skills::NavigateTo::Services
Definition: NavigateTo.h:47
armarx::navigation::core::NavigationFrame::Absolute
@ Absolute
armarx::status
status
Definition: FiniteStateMachine.h:244
NavigationStackConfig.h
Skill.h
NavigateTo.h
IceNavigator.h
TrajectoryFollowingController.h
armarx::skills::SkillDescription::skillId
SkillID skillId
Definition: SkillDescription.h:19
armarx::skills::SimpleSpecializedSkill
Definition: SimpleSpecializedSkill.h:10
ARMARX_ERROR
#define ARMARX_ERROR
Definition: Logging.h:196
armarx::skills::Skill::MainResult
A result struct for th main method of a skill.
Definition: Skill.h:39
ExpressionException.h
ARMARX_INFO
#define ARMARX_INFO
Definition: Logging.h:181
armarx::skills::SimpleSpecializedSkill< arondto::NavigateToParams >::main
Skill::MainResult main() final
Definition: SimpleSpecializedSkill.h:71
VAROUT
#define VAROUT(x)
Definition: StringHelpers.h:198
armarx::skills::Skill::shouldSkillTerminate
bool shouldSkillTerminate() const
Returns whether the skill should terminate as soon as possible.
Definition: Skill.cpp:385
armarx::skills::Skill::InitResult
A result struct for skill initialization.
Definition: Skill.h:27
armarx::navigation::skills::is_ready
bool is_ready(std::future< R > const &f)
Definition: NavigateRelativeSkill.h:29
Logging.h
armarx::navigation::skills::NavigateTo::DefaultSkillDescription
static armarx::skills::SkillDescription DefaultSkillDescription()
Definition: NavigateTo.h:65
armarx::navigation::client::GeneralConfig
Definition: NavigationStackConfig.h:36
types.h
armarx::navigation::skills
Definition: constants.cpp:25
armarx::navigation::global_planning::SPFAParams
Parameters for AStar.
Definition: SPFA.h:41