ros2_control - rolling
sensor.hpp
1 // Copyright 2020 - 2021 ros2_control Development Team
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__SENSOR_HPP_
16 #define HARDWARE_INTERFACE__SENSOR_HPP_
17 
18 #include <memory>
19 #include <string>
20 #include <utility>
21 #include <vector>
22 
23 #include "hardware_interface/handle.hpp"
24 #include "hardware_interface/hardware_info.hpp"
25 #include "hardware_interface/types/hardware_interface_return_values.hpp"
26 #include "hardware_interface/visibility_control.h"
27 #include "rclcpp/duration.hpp"
28 #include "rclcpp/time.hpp"
29 #include "rclcpp_lifecycle/state.hpp"
30 
31 namespace hardware_interface
32 {
33 class SensorInterface;
34 
35 class Sensor final
36 {
37 public:
38  Sensor() = default;
39 
40  HARDWARE_INTERFACE_PUBLIC
41  explicit Sensor(std::unique_ptr<SensorInterface> impl);
42 
43  Sensor(Sensor && other) = default;
44 
45  ~Sensor() = default;
46 
47  HARDWARE_INTERFACE_PUBLIC
48  const rclcpp_lifecycle::State & initialize(const HardwareInfo & sensor_info);
49 
50  HARDWARE_INTERFACE_PUBLIC
51  const rclcpp_lifecycle::State & configure();
52 
53  HARDWARE_INTERFACE_PUBLIC
54  const rclcpp_lifecycle::State & cleanup();
55 
56  HARDWARE_INTERFACE_PUBLIC
57  const rclcpp_lifecycle::State & shutdown();
58 
59  HARDWARE_INTERFACE_PUBLIC
60  const rclcpp_lifecycle::State & activate();
61 
62  HARDWARE_INTERFACE_PUBLIC
63  const rclcpp_lifecycle::State & deactivate();
64 
65  HARDWARE_INTERFACE_PUBLIC
66  const rclcpp_lifecycle::State & error();
67 
68  HARDWARE_INTERFACE_PUBLIC
69  std::vector<StateInterface> export_state_interfaces();
70 
71  HARDWARE_INTERFACE_PUBLIC
72  std::string get_name() const;
73 
74  HARDWARE_INTERFACE_PUBLIC
75  const rclcpp_lifecycle::State & get_state() const;
76 
77  HARDWARE_INTERFACE_PUBLIC
78  return_type read(const rclcpp::Time & time, const rclcpp::Duration & period);
79 
80  HARDWARE_INTERFACE_PUBLIC
81  return_type write(const rclcpp::Time &, const rclcpp::Duration &) { return return_type::OK; }
82 
83 private:
84  std::unique_ptr<SensorInterface> impl_;
85 };
86 
87 } // namespace hardware_interface
88 #endif // HARDWARE_INTERFACE__SENSOR_HPP_
Definition: sensor.hpp:36
Definition: actuator.hpp:31
This structure stores information about hardware defined in a robot's URDF.
Definition: hardware_info.hpp:127