Navigator.h
Go to the documentation of this file.
1 /**
2  * This file is part of ArmarX.
3  *
4  * ArmarX is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License version 2 as
6  * published by the Free Software Foundation.
7  *
8  * ArmarX is distributed in the hope that it will be useful, but
9  * WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11  * GNU General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public License
14  * along with this program. If not, see <http://www.gnu.org/licenses/>.
15  *
16  * @author Fabian Reister ( fabian dot reister at kit dot edu )
17  * @author Christian R. G. Dreher ( c dot dreher at kit dot edu )
18  * @date 2021
19  * @copyright http://www.gnu.org/licenses/gpl-2.0.txt
20  * GNU General Public License
21  */
22 
23 #pragma once
24 
25 #include <condition_variable>
26 #include <cstdint>
27 #include <functional>
28 #include <mutex>
29 #include <optional>
30 #include <string>
31 #include <variant>
32 #include <vector>
33 
39 
41 {
42 
43  class StopEvent
44  {
45 
46  public:
47  template <class T>
48  StopEvent(T t) : event{t}
49  {
50  }
51 
52  bool
54  {
55  return std::holds_alternative<core::GoalReachedEvent>(event);
56  }
57 
60  {
61  return std::get<core::GoalReachedEvent>(event);
62  }
63 
64  bool
66  {
67  return std::holds_alternative<core::SafetyStopTriggeredEvent>(event);
68  }
69 
72  {
73  return std::get<core::SafetyStopTriggeredEvent>(event);
74  }
75 
76  bool
78  {
79  return std::holds_alternative<core::UserAbortTriggeredEvent>(event);
80  }
81 
84  {
85  return std::get<core::UserAbortTriggeredEvent>(event);
86  }
87 
88  bool
90  {
91  return std::holds_alternative<core::InternalErrorEvent>(event);
92  }
93 
96  {
97  return std::get<core::InternalErrorEvent>(event);
98  }
99 
100  operator bool() const
101  {
102  return isGoalReachedEvent();
103  }
104 
105  private:
106  using StopEventVar = std::variant<core::GoalReachedEvent,
111  StopEventVar event;
112  };
113 
114  class PathBuilder;
115 
116  class Navigator
117  {
118 
119  public:
121  {
124  };
125 
126  Navigator(const InjectedServices& services);
127 
128  void moveTo(const core::Pose& pose, core::NavigationFrame frame);
129 
130  void moveTo(const std::vector<core::Pose>& waypoints, core::NavigationFrame frame);
131 
132  void moveTo(const PathBuilder& builder, core::NavigationFrame frame);
133 
134  void moveTowards(const core::Direction& direction, core::NavigationFrame frame);
135 
136  void moveToLocation(const std::string& location);
137 
138  void update(const std::vector<core::Pose>& waypoints, core::NavigationFrame frame);
139 
140  void pause();
141 
142  void resume();
143 
144  void stop();
145 
146  void onGoalReached(const std::function<void(void)>& callback);
147 
148  void onGoalReached(const std::function<void(const core::GoalReachedEvent&)>& callback);
149 
150  void onWaypointReached(const std::function<void(int)>& callback);
151 
152  StopEvent waitForStop(std::int64_t timeoutMs = -1);
153 
154  protected:
155  private:
156  void stopped(const StopEvent&);
157 
158  struct
159  {
160  std::mutex m;
161  std::condition_variable cv;
162  std::optional<StopEvent> event;
163  } stoppedInfo;
164 
165  InjectedServices srv;
166  };
167 
168 } // namespace armarx::navigation::client
armarx::navigation::client::Navigator::onGoalReached
void onGoalReached(const std::function< void(void)> &callback)
Definition: Navigator.cpp:144
armarx::navigation::client::StopEvent::isGoalReachedEvent
bool isGoalReachedEvent() const
Definition: Navigator.h:53
armarx::navigation::client::Navigator::waitForStop
StopEvent waitForStop(std::int64_t timeoutMs=-1)
Definition: Navigator.cpp:161
armarx::navigation::client::Navigator
Definition: Navigator.h:116
armarx::navigation::core::NavigationFrame
NavigationFrame
Definition: types.h:42
armarx::navigation::client::Navigator::InjectedServices
Definition: Navigator.h:120
armarx::navigation::core::Pose
Eigen::Isometry3f Pose
Definition: basic_types.h:31
basic_types.h
armarx::navigation::client::StopEvent::toSafetyStopTriggeredEvent
core::SafetyStopTriggeredEvent & toSafetyStopTriggeredEvent()
Definition: Navigator.h:71
armarx::navigation::client::PathBuilder
Definition: PathBuilder.h:39
armarx::navigation::client::StopEvent::isInternalErrorEvent
bool isInternalErrorEvent() const
Definition: Navigator.h:89
armarx::navigation::client::StopEvent::toGoalReachedEvent
core::GoalReachedEvent & toGoalReachedEvent()
Definition: Navigator.h:59
armarx::navigation::core::InternalErrorEvent
Event describing the occurance of an internal unhandled error.
Definition: events.h:104
armarx::navigation::client::StopEvent::toInternalErrorEvent
core::InternalErrorEvent & toInternalErrorEvent()
Definition: Navigator.h:95
armarx::navigation::core::NavigatorInterface
Navigator interface for PointGoal navigation (with waypoints) and relative movement.
Definition: NavigatorInterface.h:17
armarx::navigation::client
This file is part of ArmarX.
Definition: ComponentPlugin.cpp:21
EventSubscriptionInterface.h
armarx::navigation::client::Navigator::InjectedServices::navigator
core::NavigatorInterface * navigator
Definition: Navigator.h:122
armarx::navigation::client::Navigator::cv
std::condition_variable cv
Definition: Navigator.h:161
events.h
armarx::navigation::client::Navigator::update
void update(const std::vector< core::Pose > &waypoints, core::NavigationFrame frame)
Definition: Navigator.cpp:81
armarx::navigation::client::StopEvent::toUserAbortTriggeredEvent
core::UserAbortTriggeredEvent & toUserAbortTriggeredEvent()
Definition: Navigator.h:83
armarx::navigation::client::Navigator::onWaypointReached
void onWaypointReached(const std::function< void(int)> &callback)
Definition: Navigator.cpp:156
armarx::navigation::client::Navigator::event
std::optional< StopEvent > event
Definition: Navigator.h:162
armarx::navigation::client::StopEvent
Definition: Navigator.h:43
armarx::navigation::client::StopEvent::isUserAbortTriggeredEvent
bool isUserAbortTriggeredEvent() const
Definition: Navigator.h:77
armarx::navigation::client::StopEvent::isSafetyStopTriggeredEvent
bool isSafetyStopTriggeredEvent() const
Definition: Navigator.h:65
armarx::navigation::client::Navigator::Navigator
Navigator(const InjectedServices &services)
Definition: Navigator.cpp:25
armarx::navigation::core::SafetyStopTriggeredEvent
Event describing that for security reasons, the robot was stopped completely.
Definition: events.h:87
armarx::navigation::client::Navigator::resume
void resume()
Definition: Navigator.cpp:128
armarx::navigation::client::Navigator::moveToLocation
void moveToLocation(const std::string &location)
Definition: Navigator.cpp:105
armarx::navigation::client::StopEvent::StopEvent
StopEvent(T t)
Definition: Navigator.h:48
armarx::navigation::client::Navigator::moveTowards
void moveTowards(const core::Direction &direction, core::NavigationFrame frame)
Definition: Navigator.cpp:90
armarx::navigation::core::UserAbortTriggeredEvent
Event describing that the user aborted the current execution.
Definition: events.h:96
armarx::navigation::core::GlobalPlanningFailedEvent
Definition: events.h:34
armarx::navigation::core::GoalReachedEvent
Event describing that the targeted goal was successfully reached.
Definition: events.h:52
armarx::navigation::client::Navigator::pause
void pause()
Definition: Navigator.cpp:120
armarx::navigation::core::Direction
Eigen::Vector3f Direction
Definition: basic_types.h:39
armarx::navigation::client::EventSubscriptionInterface
Definition: EventSubscriptionInterface.h:33
armarx::navigation::client::Navigator::stop
void stop()
Definition: Navigator.cpp:136
armarx::navigation::client::Navigator::m
std::mutex m
Definition: Navigator.h:160
T
float T
Definition: UnscentedKalmanFilterTest.cpp:38
NavigatorInterface.h
armarx::navigation::client::Navigator::InjectedServices::subscriber
EventSubscriptionInterface * subscriber
Definition: Navigator.h:123
types.h
armarx::navigation::client::Navigator::moveTo
void moveTo(const core::Pose &pose, core::NavigationFrame frame)
Definition: Navigator.cpp:42