16
16
#include < robot_interfaces/sensors/sensor_frontend.hpp>
17
17
#include < robot_interfaces/sensors/sensor_log_reader.hpp>
18
18
#include < robot_interfaces/sensors/sensor_logger.hpp>
19
+ #include < robot_interfaces/utils.hpp>
19
20
20
21
namespace robot_interfaces
21
22
{
@@ -24,7 +25,7 @@ namespace robot_interfaces
24
25
*
25
26
* @tparam The ObservationType
26
27
*/
27
- template <typename ObservationType>
28
+ template <typename ObservationType, typename InfoType = None >
28
29
void create_sensor_bindings (pybind11::module& m)
29
30
{
30
31
pybind11::options options;
@@ -33,12 +34,15 @@ void create_sensor_bindings(pybind11::module& m)
33
34
options.disable_function_signatures ();
34
35
35
36
// some typedefs to keep code below shorter
36
- typedef SensorData<ObservationType> BaseData;
37
- typedef SingleProcessSensorData<ObservationType> SingleProcData;
38
- typedef MultiProcessSensorData<ObservationType> MultiProcData;
39
- typedef SensorLogger<ObservationType> Logger;
37
+ typedef SensorData<ObservationType, InfoType > BaseData;
38
+ typedef SingleProcessSensorData<ObservationType, InfoType > SingleProcData;
39
+ typedef MultiProcessSensorData<ObservationType, InfoType > MultiProcData;
40
+ typedef SensorLogger<ObservationType, InfoType > Logger;
40
41
typedef SensorLogReader<ObservationType> LogReader;
41
42
43
+ pybind11::class_<None, std::shared_ptr<None>>(
44
+ m, " None" , pybind11::module_local ());
45
+
42
46
pybind11::class_<BaseData, std::shared_ptr<BaseData>>(m, " BaseData" );
43
47
44
48
pybind11::class_<SingleProcData, std::shared_ptr<SingleProcData>, BaseData>(
@@ -52,31 +56,34 @@ void create_sensor_bindings(pybind11::module& m)
52
56
pybind11::arg (" is_master" ),
53
57
pybind11::arg (" history_size" ) = 1000 );
54
58
55
- pybind11::class_<SensorDriver<ObservationType>,
56
- std::shared_ptr<SensorDriver<ObservationType>>>(m,
57
- " Driver" );
59
+ pybind11::class_<SensorDriver<ObservationType, InfoType >,
60
+ std::shared_ptr<SensorDriver<ObservationType, InfoType >>>(
61
+ m, " Driver" );
58
62
59
- pybind11::class_<SensorBackend<ObservationType>>(m, " Backend" )
63
+ pybind11::class_<SensorBackend<ObservationType, InfoType >>(m, " Backend" )
60
64
.def (pybind11::init<
61
- typename std::shared_ptr<SensorDriver<ObservationType>>,
65
+ typename std::shared_ptr<SensorDriver<ObservationType, InfoType >>,
62
66
typename std::shared_ptr<BaseData>>())
63
67
.def (" shutdown" ,
64
- &SensorBackend<ObservationType>::shutdown,
68
+ &SensorBackend<ObservationType, InfoType >::shutdown,
65
69
pybind11::call_guard<pybind11::gil_scoped_release>());
66
70
67
- pybind11::class_<SensorFrontend<ObservationType>>(m, " Frontend" )
71
+ pybind11::class_<SensorFrontend<ObservationType, InfoType >>(m, " Frontend" )
68
72
.def (pybind11::init<typename std::shared_ptr<BaseData>>())
73
+ .def (" get_sensor_info" ,
74
+ &SensorFrontend<ObservationType, InfoType>::get_sensor_info,
75
+ pybind11::call_guard<pybind11::gil_scoped_release>())
69
76
.def (" get_latest_observation" ,
70
- &SensorFrontend<ObservationType>::get_latest_observation,
77
+ &SensorFrontend<ObservationType, InfoType >::get_latest_observation,
71
78
pybind11::call_guard<pybind11::gil_scoped_release>())
72
79
.def (" get_observation" ,
73
- &SensorFrontend<ObservationType>::get_observation,
80
+ &SensorFrontend<ObservationType, InfoType >::get_observation,
74
81
pybind11::call_guard<pybind11::gil_scoped_release>())
75
82
.def (" get_timestamp_ms" ,
76
- &SensorFrontend<ObservationType>::get_timestamp_ms,
83
+ &SensorFrontend<ObservationType, InfoType >::get_timestamp_ms,
77
84
pybind11::call_guard<pybind11::gil_scoped_release>())
78
85
.def (" get_current_timeindex" ,
79
- &SensorFrontend<ObservationType>::get_current_timeindex,
86
+ &SensorFrontend<ObservationType, InfoType >::get_current_timeindex,
80
87
pybind11::call_guard<pybind11::gil_scoped_release>());
81
88
82
89
pybind11::class_<Logger, std::shared_ptr<Logger>>(m, " Logger" )
0 commit comments