HLR  0.0.1
RobotDriverHandler.hpp
1 #ifndef KINEMATICS_ROSROBOTDRIVERHANDLER_HPP
2 #define KINEMATICS_ROSROBOTDRIVERHANDLER_HPP
3 
4 #include <atomic>
5 #include <unordered_map>
6 
7 #include <ros/ros.h>
8 #include "std_msgs/UInt64.h"
9 #include "RobotDriverHandler.hpp"
10 #include <Kinematics/Matrix.hpp>
11 
12 namespace HLR
13 {
14 namespace Kinematics
15 {
20 {
21 public:
24 
26  virtual ~RobotDriverHandler() = default;
27 
32  RobotDriverHandler(const RobotDriverHandler& rdh) = delete;
33 
38  RobotDriverHandler(RobotDriverHandler&& rdh) = delete;
39 
45  RobotDriverHandler& operator=(const RobotDriverHandler& rdh) = delete;
46 
53 
59  Matrix<double, 5, 1> get_arm_state() const noexcept;
60 
70  void move(const std::vector<Matrix<double, 5, 1>>& path, double speed);
71 
77  void stop();
78 
84  void set_move_complete_handler(const std::function<void()>& handler);
85 
86 private:
92  void sub_move_complete(const std_msgs::UInt64::ConstPtr& id);
93 
97  std::function<void()> move_complete_handler;
98 
102  ros::NodeHandle nh;
103 
107  ros::Subscriber id_subscriber;
108 
112  ros::ServiceClient driver_stop;
113 
117  ros::ServiceClient driver_add;
118 
122  std::atomic<Matrix<double, 5, 1>> current_arm_state;
123 
128  std::uint64_t id_to_wait = std::numeric_limits<std::uint64_t>::max();
129 
134  std::unordered_map<std::uint64_t, Matrix<double, 5, 1>> moves_being_handled;
135 };
136 
137 } // namespace Kinematics
138 } // namespace HLR
139 
140 #endif
void stop()
Stop the robot arm.
RobotDriverHandler & operator=(const RobotDriverHandler &rdh)=delete
Copy assignment operator, deleted.
void set_move_complete_handler(const std::function< void()> &handler)
Set the move complete handler.
virtual ~RobotDriverHandler()=default
Destructor.
Concrete handle on the robot using the ROS interface.
Definition: RobotDriverHandler.hpp:19
Matrix< double, 5, 1 > get_arm_state() const noexcept
Get the current arm position.
void move(const std::vector< Matrix< double, 5, 1 >> &path, double speed)
Move the robot arm along a path.
Create a matrix with numerical values.
Definition: Matrix.hpp:22