sas
Modularised monitoring, logging, and control of robots.
Loading...
Searching...
No Matches
sas_robot_kinematics_server.hpp
1#pragma once
2/*
3# Copyright (c) 2020-2023 Murilo Marques Marinho
4#
5# This file is part of sas_robot_kinematics.
6#
7# sas_robot_kinematics is free software: you can redistribute it and/or modify
8# it under the terms of the GNU Lesser General Public License as published by
9# the Free Software Foundation, either version 3 of the License, or
10# (at your option) any later version.
11#
12# sas_robot_driver is distributed in the hope that it will be useful,
13# but WITHOUT ANY WARRANTY; without even the implied warranty of
14# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15# GNU Lesser General Public License for more details.
16#
17# You should have received a copy of the GNU Lesser General Public License
18# along with sas_robot_kinematics. If not, see <https://www.gnu.org/licenses/>.
19#
20# ################################################################
21#
22# Author: Murilo M. Marinho, email: murilomarinho@ieee.org
23#
24# ################################################################*/
25
26#include <atomic>
27
28#include <dqrobotics/DQ.h>
29
30#include <rclcpp/rclcpp.hpp>
31#include <geometry_msgs/msg/pose_stamped.hpp>
33#include <sas_msgs/msg/float64.hpp>
34
35using namespace rclcpp;
36using namespace DQ_robotics;
37
38namespace sas
39{
40
42{
43protected:
44 std::shared_ptr<Node> node_;
45
46 std::atomic_bool enabled_;
47 const std::string topic_prefix_;
48
49 Publisher<geometry_msgs::msg::PoseStamped>::SharedPtr publisher_pose_;
50 Publisher<geometry_msgs::msg::PoseStamped>::SharedPtr publisher_reference_frame_;
51
52 Subscription<geometry_msgs::msg::PoseStamped>::SharedPtr subscriber_desired_pose_;
53 DQ desired_pose_;
54 Subscription<sas_msgs::msg::Float64>::SharedPtr subscriber_desired_interpolator_speed_;
55 double desired_interpolator_speed_;
56
57 void _callback_desired_pose(const geometry_msgs::msg::PoseStamped& msg);
58 void _callback_desired_interpolator_speed(const sas_msgs::msg::Float64& msg);
59public:
60 RobotKinematicsServer()=delete;
62
63#ifdef IS_SAS_PYTHON_BUILD
64 RobotKinematicsServer(const std::string& topic_prefix);
65#endif
66 RobotKinematicsServer(const std::shared_ptr<Node>& node, const std::string& topic_prefix);
67
68 DQ get_desired_pose() const;
69 double get_desired_interpolator_speed() const;
70
71 bool is_enabled() const;
72
73 void send_pose(const DQ& pose) const;
74 void send_reference_frame(const DQ& reference_frame) const;
75
76};
77
78}
Definition sas_object.hpp:39
Definition sas_robot_kinematics_server.hpp:42
Base object class for identification and license utilities.