ros2_control - rolling
Loading...
Searching...
No Matches
generic_system.hpp
1// Copyright (c) 2021 PickNik, Inc.
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14//
15// Author: Jafar Abdi, Denis Stogl
16
17#ifndef MOCK_COMPONENTS__GENERIC_SYSTEM_HPP_
18#define MOCK_COMPONENTS__GENERIC_SYSTEM_HPP_
19
20#include <string>
21#include <vector>
22#include "hardware_interface/handle.hpp"
23#include "hardware_interface/hardware_info.hpp"
24#include "hardware_interface/system_interface.hpp"
25#include "hardware_interface/types/hardware_interface_return_values.hpp"
26#include "hardware_interface/types/hardware_interface_type_values.hpp"
27
28using hardware_interface::return_type;
29
30namespace mock_components
31{
32using CallbackReturn = rclcpp_lifecycle::node_interfaces::LifecycleNodeInterface::CallbackReturn;
33
34static constexpr size_t POSITION_INTERFACE_INDEX = 0;
35static constexpr size_t VELOCITY_INTERFACE_INDEX = 1;
36static constexpr size_t ACCELERATION_INTERFACE_INDEX = 2;
37
39{
40public:
41 CallbackReturn on_init(
43
44 hardware_interface::CallbackReturn on_configure(
45 const rclcpp_lifecycle::State & previous_state) override;
46
47 std::vector<hardware_interface::InterfaceDescription>
49
51 const std::vector<std::string> & start_interfaces,
52 const std::vector<std::string> & stop_interfaces) override;
53
55 const std::vector<std::string> & start_interfaces,
56 const std::vector<std::string> & stop_interfaces) override;
57
58 return_type read(const rclcpp::Time & time, const rclcpp::Duration & period) override;
59
60 return_type write(const rclcpp::Time & /*time*/, const rclcpp::Duration & /*period*/) override
61 {
62 return return_type::OK;
63 }
64
65protected:
67
76 std::vector<std::string> skip_interfaces_;
77
78private:
79 bool populate_interfaces(
80 const std::vector<hardware_interface::ComponentInfo> & components,
81 std::vector<hardware_interface::InterfaceDescription> & command_interface_descriptions) const;
82
83 bool use_mock_gpio_command_interfaces_;
84 bool use_mock_sensor_command_interfaces_;
85
86 double position_state_following_offset_;
87 std::string custom_interface_with_following_offset_;
88
89 bool calculate_dynamics_;
90 std::vector<size_t> joint_control_mode_;
91
92 bool command_propagation_disabled_;
93};
94
95typedef GenericSystem GenericRobot;
96
97} // namespace mock_components
98
99#endif // MOCK_COMPONENTS__GENERIC_SYSTEM_HPP_
Virtual Class to implement when integrating a complex system into ros2_control.
Definition system_interface.hpp:67
Definition generic_system.hpp:39
CallbackReturn on_init(const hardware_interface::HardwareComponentInterfaceParams &params) override
Initialization of the hardware interface from data parsed from the robot's URDF.
Definition generic_system.cpp:34
return_type write(const rclcpp::Time &, const rclcpp::Duration &) override
Write the current command values to the hardware.
Definition generic_system.hpp:60
return_type perform_command_mode_switch(const std::vector< std::string > &start_interfaces, const std::vector< std::string > &stop_interfaces) override
Definition generic_system.cpp:264
return_type read(const rclcpp::Time &time, const rclcpp::Duration &period) override
Read the current state values from the hardware.
Definition generic_system.cpp:331
const std::vector< std::string > standard_interfaces_
Use standard interfaces for joints because they are relevant for dynamic behavior.
Definition generic_system.hpp:73
return_type prepare_command_mode_switch(const std::vector< std::string > &start_interfaces, const std::vector< std::string > &stop_interfaces) override
Prepare for a new command interface switch.
Definition generic_system.cpp:184
std::vector< hardware_interface::InterfaceDescription > export_unlisted_command_interface_descriptions() override
Definition generic_system.cpp:166
constexpr char HW_IF_EFFORT[]
Constant defining effort interface name.
Definition hardware_interface_type_values.hpp:27
constexpr char HW_IF_ACCELERATION[]
Constant defining acceleration interface name.
Definition hardware_interface_type_values.hpp:25
constexpr char HW_IF_VELOCITY[]
Constant defining velocity interface name.
Definition hardware_interface_type_values.hpp:23
constexpr char HW_IF_POSITION[]
Constant defining position interface name.
Definition hardware_interface_type_values.hpp:21
Parameters required for the initialization of a specific hardware component plugin....
Definition hardware_component_interface_params.hpp:32