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 
69  void move(const std::vector<Matrix<double, 5, 1>>& path, double speed);
70 
76  void stop();
77 
83  void set_move_complete_handler(const std::function<void()>& handler);
84 
85 private:
91  void sub_move_complete(const std_msgs::UInt64::ConstPtr& id);
92 
96  std::function<void()> move_complete_handler;
97 
101  ros::NodeHandle nh;
102 
106  ros::Subscriber id_subscriber;
107 
111  ros::ServiceClient driver_stop;
112 
116  ros::ServiceClient driver_add;
117 
121  std::atomic<Matrix<double, 5, 1>> current_arm_state;
122 
127  std::uint64_t id_to_wait = 0;
128 
133  std::unordered_map<std::uint64_t, Matrix<double, 5, 1>> moves_being_handled;
134 };
135 
136 } // namespace Kinematics
137 } // namespace HLR
138 
139 #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