ros2_control - rolling
range_sensor_broadcaster.hpp
1 // Copyright 2021 PAL Robotics SL.
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 /*
16  * Authors: Subhas Das, Denis Stogl, Victor Lopez
17  */
18 
19 #ifndef RANGE_SENSOR_BROADCASTER__RANGE_SENSOR_BROADCASTER_HPP_
20 #define RANGE_SENSOR_BROADCASTER__RANGE_SENSOR_BROADCASTER_HPP_
21 
22 #include <memory>
23 
24 #include "controller_interface/controller_interface.hpp"
25 #include "range_sensor_broadcaster/visibility_control.h"
26 #include "range_sensor_broadcaster_parameters.hpp"
27 #include "rclcpp_lifecycle/state.hpp"
28 #include "realtime_tools/realtime_publisher.h"
29 #include "semantic_components/range_sensor.hpp"
30 #include "sensor_msgs/msg/range.hpp"
31 
32 namespace range_sensor_broadcaster
33 {
35 {
36 public:
37  RANGE_SENSOR_BROADCASTER_PUBLIC
39 
40  RANGE_SENSOR_BROADCASTER_PUBLIC
42 
43  RANGE_SENSOR_BROADCASTER_PUBLIC controller_interface::CallbackReturn on_init() override;
44 
45  RANGE_SENSOR_BROADCASTER_PUBLIC
46  controller_interface::CallbackReturn on_configure(
47  const rclcpp_lifecycle::State & previous_state) override;
48 
49  RANGE_SENSOR_BROADCASTER_PUBLIC
50  controller_interface::CallbackReturn on_activate(
51  const rclcpp_lifecycle::State & previous_state) override;
52 
53  RANGE_SENSOR_BROADCASTER_PUBLIC
54  controller_interface::CallbackReturn on_deactivate(
55  const rclcpp_lifecycle::State & previous_state) override;
56 
57  RANGE_SENSOR_BROADCASTER_PUBLIC
58  controller_interface::return_type update(
59  const rclcpp::Time & time, const rclcpp::Duration & period) override;
60 
61 protected:
62  std::shared_ptr<ParamListener> param_listener_;
63  Params params_;
64 
65  std::unique_ptr<semantic_components::RangeSensor> range_sensor_;
66 
68  rclcpp::Publisher<sensor_msgs::msg::Range>::SharedPtr sensor_state_publisher_;
69  std::unique_ptr<StatePublisher> realtime_publisher_;
70 };
71 
72 } // namespace range_sensor_broadcaster
73 
74 #endif // RANGE_SENSOR_BROADCASTER__RANGE_SENSOR_BROADCASTER_HPP_
Definition: controller_interface.hpp:28
Definition: range_sensor_broadcaster.hpp:35
RANGE_SENSOR_BROADCASTER_PUBLIC controller_interface::CallbackReturn on_init() override
Extending interface with initialization method which is individual for each controller.
Definition: range_sensor_broadcaster.cpp:26
RANGE_SENSOR_BROADCASTER_PUBLIC controller_interface::InterfaceConfiguration command_interface_configuration() const override
Get configuration for controller's required command interfaces.
Definition: range_sensor_broadcaster.cpp:93
RANGE_SENSOR_BROADCASTER_PUBLIC controller_interface::InterfaceConfiguration state_interface_configuration() const override
Get configuration for controller's required state interfaces.
Definition: range_sensor_broadcaster.cpp:100
RANGE_SENSOR_BROADCASTER_PUBLIC controller_interface::return_type update(const rclcpp::Time &time, const rclcpp::Duration &period) override
Definition: range_sensor_broadcaster.cpp:123
Definition: realtime_publisher.h:54
Configuring what command/state interfaces to claim.
Definition: controller_interface_base.hpp:56