ros2_control - jazzy
Loading...
Searching...
No Matches
resource_manager.hpp
1// Copyright 2020 Open Source Robotics Foundation, 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#ifndef HARDWARE_INTERFACE__RESOURCE_MANAGER_HPP_
16#define HARDWARE_INTERFACE__RESOURCE_MANAGER_HPP_
17
18#include <memory>
19#include <string>
20#include <unordered_map>
21#include <vector>
22
23#include "hardware_interface/actuator.hpp"
24#include "hardware_interface/hardware_component_info.hpp"
25#include "hardware_interface/hardware_info.hpp"
26#pragma GCC diagnostic push
27#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
28#include "hardware_interface/loaned_command_interface.hpp"
29#include "hardware_interface/loaned_state_interface.hpp"
30#pragma GCC diagnostic pop
31#include "hardware_interface/sensor.hpp"
32#include "hardware_interface/system.hpp"
33#include "hardware_interface/system_interface.hpp"
34#include "hardware_interface/types/hardware_interface_return_values.hpp"
35#include "hardware_interface/types/resource_manager_params.hpp"
36#include "rclcpp/duration.hpp"
37#include "rclcpp/executor.hpp"
38#include "rclcpp/node_interfaces/node_logging_interface.hpp"
39#include "rclcpp/time.hpp"
40
41namespace hardware_interface
42{
43class ResourceStorage;
44class ControllerManager;
45
47{
48 return_type result;
49 std::vector<std::string> failed_hardware_names;
50};
51
53{
54public:
56 explicit ResourceManager(
57 rclcpp::node_interfaces::NodeClockInterface::SharedPtr clock_interface,
58 rclcpp::node_interfaces::NodeLoggingInterface::SharedPtr logger_interface);
59
61 explicit ResourceManager(rclcpp::Clock::SharedPtr clock, rclcpp::Logger logger);
62
64
78 explicit ResourceManager(
79 const std::string & urdf,
80 rclcpp::node_interfaces::NodeClockInterface::SharedPtr clock_interface,
81 rclcpp::node_interfaces::NodeLoggingInterface::SharedPtr logger_interface,
82 bool activate_all = false, const unsigned int update_rate = 100);
83
85
99 explicit ResourceManager(
100 const std::string & urdf, rclcpp::Clock::SharedPtr clock, rclcpp::Logger logger,
101 bool activate_all = false, const unsigned int update_rate = 100);
102
104
114 explicit ResourceManager(const hardware_interface::ResourceManagerParams & params, bool load);
115
116 ResourceManager(const ResourceManager &) = delete;
117
118 virtual ~ResourceManager();
119
121
125 bool shutdown_components();
126
128
137 [[deprecated(
138 "Use load_and_initialize_components(const ResourceManagerParams & params) "
139 "instead")]] virtual bool
140 load_and_initialize_components(const std::string & urdf, const unsigned int update_rate = 100);
141
143
154
159 void import_joint_limiters(const std::string & urdf);
160
169 bool are_components_initialized() const;
170
172
180 LoanedStateInterface claim_state_interface(const std::string & key);
181
183
187 std::vector<std::string> state_interface_keys() const;
188
190
194 std::vector<std::string> available_state_interfaces() const;
195
197
200 bool state_interface_is_available(const std::string & name) const;
201
203
208 std::string get_state_interface_data_type(const std::string & name) const;
209
211
221 const std::string & controller_name, std::vector<StateInterface::ConstSharedPtr> & interfaces);
222
224
230 std::vector<std::string> get_controller_exported_state_interface_names(
231 const std::string & controller_name);
232
234
242 void make_controller_exported_state_interfaces_available(const std::string & controller_name);
243
245
252 void make_controller_exported_state_interfaces_unavailable(const std::string & controller_name);
253
255
261 void remove_controller_exported_state_interfaces(const std::string & controller_name);
262
264
274 const std::string & controller_name,
275 const std::vector<hardware_interface::CommandInterface::SharedPtr> & interfaces);
276
278
284 std::vector<std::string> get_controller_reference_interface_names(
285 const std::string & controller_name);
286
288
295 void make_controller_reference_interfaces_available(const std::string & controller_name);
296
298
305 void make_controller_reference_interfaces_unavailable(const std::string & controller_name);
306
308
314 void remove_controller_reference_interfaces(const std::string & controller_name);
315
317
325 const std::string & controller_name, const std::vector<std::string> & interfaces);
326
328
335 std::vector<std::string> get_cached_controllers_to_hardware(const std::string & hardware_name);
336
338
346 bool command_interface_is_claimed(const std::string & key) const;
347
349
357 LoanedCommandInterface claim_command_interface(const std::string & key);
358
360
364 std::vector<std::string> command_interface_keys() const;
365
367
371 std::vector<std::string> available_command_interfaces() const;
372
374
378 bool command_interface_is_available(const std::string & interface) const;
379
381
386 std::string get_command_interface_data_type(const std::string & name) const;
387
389
392 size_t actuator_components_size() const;
393
395
398 size_t sensor_components_size() const;
399
401
404 size_t system_components_size() const;
405
407
419 [[deprecated(
420 "Use import_component(std::unique_ptr<ActuatorInterface> actuator, "
421 "const HardwareComponentParams & params) instead")]] void
422 import_component(std::unique_ptr<ActuatorInterface> actuator, const HardwareInfo & hardware_info);
423
425
437 [[deprecated(
438 "Use import_component(std::unique_ptr<SensorInterface> sensor, "
439 "const HardwareComponentParams & params) instead")]] void
440 import_component(std::unique_ptr<SensorInterface> sensor, const HardwareInfo & hardware_info);
441
443
455 [[deprecated(
456 "Use import_component(std::unique_ptr<SystemInterface> system, "
457 "const HardwareComponentParams & params) instead")]] void
458 import_component(std::unique_ptr<SystemInterface> system, const HardwareInfo & hardware_info);
459
461
474 void import_component(
475 std::unique_ptr<ActuatorInterface> actuator, const HardwareComponentParams & params);
476
478
491 void import_component(
492 std::unique_ptr<SensorInterface> sensor, const HardwareComponentParams & params);
493
495
508 void import_component(
509 std::unique_ptr<SystemInterface> system, const HardwareComponentParams & params);
510
512
515 const std::unordered_map<std::string, HardwareComponentInfo> & get_components_status();
516
518
521 const std::unordered_map<std::string, joint_limits::JointLimits> & get_hard_joint_limits() const;
522
524
527 const std::unordered_map<std::string, joint_limits::SoftJointLimits> & get_soft_joint_limits()
528 const;
529
531
548 const std::vector<std::string> & start_interfaces,
549 const std::vector<std::string> & stop_interfaces);
550
552
565 const std::vector<std::string> & start_interfaces,
566 const std::vector<std::string> & stop_interfaces);
567
569
581 return_type set_component_state(
582 const std::string & component_name, rclcpp_lifecycle::State & target_state);
583
590 bool enforce_command_limits(const rclcpp::Duration & period);
591
593
599 HardwareReadWriteStatus read(const rclcpp::Time & time, const rclcpp::Duration & period);
600
602
608 HardwareReadWriteStatus write(const rclcpp::Time & time, const rclcpp::Duration & period);
609
611
615 bool command_interface_exists(const std::string & key) const;
616
618
621 bool state_interface_exists(const std::string & key) const;
622
624
627 void set_on_component_state_switch_callback(std::function<void()> callback);
628
629 const std::string & get_robot_description() const;
630
631protected:
633
636 rclcpp::Logger get_logger() const;
637
639
642 rclcpp::Clock::SharedPtr get_clock() const;
643
644 bool components_are_loaded_and_initialized_ = false;
645 bool allow_controller_activation_with_inactive_hardware_ = false;
646 bool return_failed_hardware_names_on_return_deactivate_write_cycle_ = true;
647
648 mutable std::recursive_mutex resource_interfaces_lock_;
649 mutable std::recursive_mutex claimed_command_interfaces_lock_;
650 mutable std::recursive_mutex resources_lock_;
651 mutable std::recursive_mutex joint_limiters_lock_;
652
653private:
654 bool validate_storage(const std::vector<hardware_interface::HardwareInfo> & hardware_info) const;
655
656 void release_command_interface(const std::string & key);
657
658 // Note this was added in #2323 and is a temporary addition to be backwards compatible with the
659 // original constructors. This is planned to be removed in a future PR along with the
660 // aforementioned constructors.
662 rclcpp::Clock::SharedPtr clock, rclcpp::Logger logger, const std::string & urdf = std::string(),
663 bool activate_all = false, unsigned int update_rate = 100);
664
665 std::unordered_map<std::string, bool> claimed_command_interface_map_;
666
667 std::unique_ptr<ResourceStorage> resource_storage_;
669
670 // Structure to store read and write status so it is not initialized in the real-time loop
671 HardwareReadWriteStatus read_write_status;
672};
673
674} // namespace hardware_interface
675#endif // HARDWARE_INTERFACE__RESOURCE_MANAGER_HPP_
Definition loaned_command_interface.hpp:30
Definition loaned_state_interface.hpp:29
Definition resource_manager.hpp:53
void make_controller_reference_interfaces_available(const std::string &controller_name)
Add controller's reference interface to available list.
Definition resource_manager.cpp:1734
std::string get_state_interface_data_type(const std::string &name) const
Gets the data type of the state interface.
Definition resource_manager.cpp:1633
void import_controller_reference_interfaces(const std::string &controller_name, const std::vector< hardware_interface::CommandInterface::SharedPtr > &interfaces)
Add controllers' reference interfaces to resource manager.
Definition resource_manager.cpp:1717
std::vector< std::string > command_interface_keys() const
Returns all registered command interfaces keys.
Definition resource_manager.cpp:1874
virtual bool load_and_initialize_components(const std::string &urdf, const unsigned int update_rate=100)
Load resources from on a given URDF.
Definition resource_manager.cpp:1472
bool command_interface_exists(const std::string &key) const
Checks whether a command interface is registered under the given key.
Definition resource_manager.cpp:2613
bool command_interface_is_claimed(const std::string &key) const
Checks whether a command interface is already claimed.
Definition resource_manager.cpp:1832
return_type set_component_state(const std::string &component_name, rclcpp_lifecycle::State &target_state)
Sets state of hardware component.
Definition resource_manager.cpp:2282
const std::unordered_map< std::string, joint_limits::JointLimits > & get_hard_joint_limits() const
Return the unordered map of hard joint limits.
Definition resource_manager.cpp:1992
bool are_components_initialized() const
if the resource manager load_and_initialize_components(...) function has been called this returns tru...
Definition resource_manager.cpp:1586
void set_on_component_state_switch_callback(std::function< void()> callback)
A method to register a callback to be called when the component state changes.
Definition resource_manager.cpp:2627
bool shutdown_components()
Shutdown all hardware components, irrespective of their state.
Definition resource_manager.cpp:1455
void remove_controller_exported_state_interfaces(const std::string &controller_name)
Remove controllers exported state interfaces from resource manager.
Definition resource_manager.cpp:1699
void import_component(std::unique_ptr< ActuatorInterface > actuator, const HardwareInfo &hardware_info)
Import a hardware component which is not listed in the URDF.
Definition resource_manager.cpp:1917
void make_controller_exported_state_interfaces_available(const std::string &controller_name)
Add controller's exported state interfaces to available list.
Definition resource_manager.cpp:1665
size_t sensor_components_size() const
Return the number of loaded sensor components.
Definition resource_manager.cpp:2603
std::vector< std::string > state_interface_keys() const
Returns all registered state interfaces keys.
Definition resource_manager.cpp:1605
size_t system_components_size() const
Return the number of loaded system components.
Definition resource_manager.cpp:2608
std::vector< std::string > get_controller_reference_interface_names(const std::string &controller_name)
Get list of reference interface of a controller.
Definition resource_manager.cpp:1727
bool command_interface_is_available(const std::string &interface) const
Checks whether a command interface is available under the given name.
Definition resource_manager.cpp:1893
void import_controller_exported_state_interfaces(const std::string &controller_name, std::vector< StateInterface::ConstSharedPtr > &interfaces)
Add controllers' exported state interfaces to resource manager.
Definition resource_manager.cpp:1649
void make_controller_exported_state_interfaces_unavailable(const std::string &controller_name)
Remove controller's exported state interface to available list.
Definition resource_manager.cpp:1677
std::vector< std::string > get_cached_controllers_to_hardware(const std::string &hardware_name)
Return cached controllers for a specific hardware.
Definition resource_manager.cpp:1825
std::string get_command_interface_data_type(const std::string &name) const
Gets the data type of the command interface.
Definition resource_manager.cpp:1902
bool state_interface_is_available(const std::string &name) const
Checks whether a state interface is available under the given key.
Definition resource_manager.cpp:1624
std::vector< std::string > get_controller_exported_state_interface_names(const std::string &controller_name)
Get list of exported tate interface of a controller.
Definition resource_manager.cpp:1658
bool state_interface_exists(const std::string &key) const
Checks whether a state interface is registered under the given key.
Definition resource_manager.cpp:2620
void make_controller_reference_interfaces_unavailable(const std::string &controller_name)
Remove controller's reference interface to available list.
Definition resource_manager.cpp:1746
size_t actuator_components_size() const
Return the number size_t of loaded actuator components.
Definition resource_manager.cpp:2598
rclcpp::Clock::SharedPtr get_clock() const
Gets the clock for the resource manager.
Definition resource_manager.cpp:2641
HardwareReadWriteStatus read(const rclcpp::Time &time, const rclcpp::Duration &period)
Reads all loaded hardware components.
Definition resource_manager.cpp:2388
std::vector< std::string > available_command_interfaces() const
Returns all available command interfaces keys.
Definition resource_manager.cpp:1886
void remove_controller_reference_interfaces(const std::string &controller_name)
Remove controllers reference interfaces from resource manager.
Definition resource_manager.cpp:1768
bool prepare_command_mode_switch(const std::vector< std::string > &start_interfaces, const std::vector< std::string > &stop_interfaces)
Prepare the hardware components for a new command interface mode.
Definition resource_manager.cpp:2004
void import_joint_limiters(const std::string &urdf)
Import joint limiters from the URDF.
Definition resource_manager.cpp:1579
bool enforce_command_limits(const rclcpp::Duration &period)
Definition resource_manager.cpp:2367
bool perform_command_mode_switch(const std::vector< std::string > &start_interfaces, const std::vector< std::string > &stop_interfaces)
Notify the hardware components that realtime hardware mode switching should occur.
Definition resource_manager.cpp:2161
std::vector< std::string > available_state_interfaces() const
Returns all available state interfaces keys.
Definition resource_manager.cpp:1617
rclcpp::Logger get_logger() const
Gets the logger for the resource manager.
Definition resource_manager.cpp:2639
LoanedCommandInterface claim_command_interface(const std::string &key)
Claim a command interface given its key.
Definition resource_manager.cpp:1844
void cache_controller_to_hardware(const std::string &controller_name, const std::vector< std::string > &interfaces)
Cache mapping between hardware and controllers using it.
Definition resource_manager.cpp:1785
const std::unordered_map< std::string, joint_limits::SoftJointLimits > & get_soft_joint_limits() const
Return the unordered map of soft joint limits.
Definition resource_manager.cpp:1998
LoanedStateInterface claim_state_interface(const std::string &key)
Claim a state interface given its key.
Definition resource_manager.cpp:1592
HardwareReadWriteStatus write(const rclcpp::Time &time, const rclcpp::Duration &period)
Write all loaded hardware components.
Definition resource_manager.cpp:2489
const std::unordered_map< std::string, HardwareComponentInfo > & get_components_status()
Return status for all components.
Definition resource_manager.cpp:1973
Definition actuator.hpp:22
Parameters required for the initialization of a specific hardware component plugin....
Definition hardware_component_params.hpp:33
This structure stores information about hardware defined in a robot's URDF.
Definition hardware_info.hpp:360
Definition resource_manager.hpp:47
Parameters required for the construction and initial setup of a ResourceManager. This struct is typic...
Definition resource_manager_params.hpp:30