* Clock subscription callback group spins in its own thread Signed-off-by: anaelle-sw <anaelle.sarazin@wyca.fr> * fix line length Signed-off-by: anaelle-sw <anaelle.sarazin@wyca.fr> * fix code style divergence Signed-off-by: anaelle-sw <anaelle.sarazin@wyca.fr> * fix code style divergence Signed-off-by: anaelle-sw <anaelle.sarazin@wyca.fr> * Initialize only once clock_callbackgroup Signed-off-by: anaelle-sw <anaelle.sarazin@wyca.fr> * Check if thread joinable before start a new thread Signed-off-by: anaelle-sw <anaelle.sarazin@wyca.fr> * Cancel executor and join thread in destroy_clock_sub Signed-off-by: anaelle-sw <anaelle.sarazin@wyca.fr> * Check if clock_thread_ is joinable before cancel executor and join Signed-off-by: anaelle-sw <anaelle.sarazin@wyca.fr> * Add use_clock_thread as an option Signed-off-by: anaelle-sw <anaelle.sarazin@wyca.fr> * Fix code style divergence Signed-off-by: anaelle-sw <anaelle.sarazin@wyca.fr> * Fix code style divergence Signed-off-by: anaelle-sw <anaelle.sarazin@wyca.fr> * Fix code style divergence Signed-off-by: anaelle-sw <anaelle.sarazin@wyca.fr> * Add TimeSource tests Signed-off-by: anaelle-sw <anaelle.sarazin@wyca.fr> * update use_clock_thread value in function attachNode Signed-off-by: anaelle <anaelle.sarazin@wyca.fr> * join clock thread in function detachNode Signed-off-by: anaelle <anaelle.sarazin@wyca.fr> * TimeSource tests: fixes + comments + more tested cases Signed-off-by: anaelle <anaelle.sarazin@wyca.fr> * clean destroy_clock_sub() Signed-off-by: anaelle <anaelle.sarazin@wyca.fr> * flag to ensure clock_executor is cancelled Signed-off-by: anaelle <anaelle.sarazin@wyca.fr> * Always re-init clock_callback_group when creating a new clock sub Signed-off-by: anaelle <anaelle.sarazin@wyca.fr> * spin_until_future_complete() to cleanly cancel executor Signed-off-by: anaelle <anaelle.sarazin@wyca.fr> * fix tests warnings Signed-off-by: anaelle <anaelle.sarazin@wyca.fr> * fix test error: cancel clock executor Signed-off-by: anaelle <anaelle.sarazin@wyca.fr> * clean comments Signed-off-by: anaelle <anaelle.sarazin@wyca.fr> * fix precision loss Signed-off-by: anaelle <anaelle.sarazin@wyca.fr>
77 lines
2.9 KiB
C++
77 lines
2.9 KiB
C++
// Copyright 2018 Open Source Robotics Foundation, Inc.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
#ifndef RCLCPP__NODE_INTERFACES__NODE_TIME_SOURCE_HPP_
|
|
#define RCLCPP__NODE_INTERFACES__NODE_TIME_SOURCE_HPP_
|
|
|
|
#include "rclcpp/macros.hpp"
|
|
#include "rclcpp/node_interfaces/node_base_interface.hpp"
|
|
#include "rclcpp/node_interfaces/node_clock_interface.hpp"
|
|
#include "rclcpp/node_interfaces/node_graph_interface.hpp"
|
|
#include "rclcpp/node_interfaces/node_logging_interface.hpp"
|
|
#include "rclcpp/node_interfaces/node_parameters_interface.hpp"
|
|
#include "rclcpp/node_interfaces/node_services_interface.hpp"
|
|
#include "rclcpp/node_interfaces/node_time_source_interface.hpp"
|
|
#include "rclcpp/node_interfaces/node_topics_interface.hpp"
|
|
#include "rclcpp/qos.hpp"
|
|
#include "rclcpp/time_source.hpp"
|
|
#include "rclcpp/visibility_control.hpp"
|
|
|
|
namespace rclcpp
|
|
{
|
|
namespace node_interfaces
|
|
{
|
|
|
|
/// Implementation of the NodeTimeSource part of the Node API.
|
|
class NodeTimeSource : public NodeTimeSourceInterface
|
|
{
|
|
public:
|
|
RCLCPP_SMART_PTR_ALIASES_ONLY(NodeTimeSource)
|
|
|
|
RCLCPP_PUBLIC
|
|
explicit NodeTimeSource(
|
|
rclcpp::node_interfaces::NodeBaseInterface::SharedPtr node_base,
|
|
rclcpp::node_interfaces::NodeTopicsInterface::SharedPtr node_topics,
|
|
rclcpp::node_interfaces::NodeGraphInterface::SharedPtr node_graph,
|
|
rclcpp::node_interfaces::NodeServicesInterface::SharedPtr node_services,
|
|
rclcpp::node_interfaces::NodeLoggingInterface::SharedPtr node_logging,
|
|
rclcpp::node_interfaces::NodeClockInterface::SharedPtr node_clock,
|
|
rclcpp::node_interfaces::NodeParametersInterface::SharedPtr node_parameters,
|
|
const rclcpp::QoS & qos = rclcpp::RosoutQoS(),
|
|
bool use_clock_thread = true
|
|
);
|
|
|
|
RCLCPP_PUBLIC
|
|
virtual
|
|
~NodeTimeSource();
|
|
|
|
private:
|
|
RCLCPP_DISABLE_COPY(NodeTimeSource)
|
|
|
|
rclcpp::node_interfaces::NodeBaseInterface::SharedPtr node_base_;
|
|
rclcpp::node_interfaces::NodeTopicsInterface::SharedPtr node_topics_;
|
|
rclcpp::node_interfaces::NodeGraphInterface::SharedPtr node_graph_;
|
|
rclcpp::node_interfaces::NodeServicesInterface::SharedPtr node_services_;
|
|
rclcpp::node_interfaces::NodeLoggingInterface::SharedPtr node_logging_;
|
|
rclcpp::node_interfaces::NodeClockInterface::SharedPtr node_clock_;
|
|
rclcpp::node_interfaces::NodeParametersInterface::SharedPtr node_parameters_;
|
|
|
|
rclcpp::TimeSource time_source_;
|
|
};
|
|
|
|
} // namespace node_interfaces
|
|
} // namespace rclcpp
|
|
|
|
#endif // RCLCPP__NODE_INTERFACES__NODE_TIME_SOURCE_HPP_
|