Carma-platform v4.2.0
CARMA Platform is built on robot operating system (ROS) and utilizes open source software (OSS) that enables Cooperative Driving Automation (CDA) features to allow Automated Driving Systems to interact and cooperate with infrastructure and other vehicles through communication.
|
#include <system_controller_node.hpp>
Public Member Functions | |
SystemControllerNode ()=delete | |
~SystemControllerNode ()=default | |
SystemControllerNode (const rclcpp::NodeOptions &options, bool auto_init=true) | |
Constructor. Set explicitly to support node composition. More... | |
void | initialize () |
Initialize this node by loading parameters from the ROS Network. More... | |
void | set_config (SystemControllerConfig config) |
Reset the configurations of this node. This is mean to support testing or other non-standard launch mechanisms. More... | |
Protected Member Functions | |
void | on_system_alert (const carma_msgs::msg::SystemAlert::UniquePtr msg) |
Callback for system alert messages used to evaluate system fault handling. More... | |
void | startup_delay_callback () |
Callback to be triggered when the startup delay has passed. More... | |
void | on_error (const std::exception &e) |
Exception handling method for processing all internal exceptions;. More... | |
void | publish_system_alert (carma_msgs::msg::SystemAlert msg) |
Publishes a SystemAlert message to the rest of the carma-platform system. NOTE: This callback will automatically populate the msg.source_node field based on this node name. More... | |
Protected Attributes | |
const std::string | system_alert_topic_ {"/system_alert"} |
The default topic name for the system alert topic. More... | |
rclcpp::Subscription< carma_msgs::msg::SystemAlert >::SharedPtr | system_alert_sub_ |
The subscriber for the system alert topic. More... | |
std::shared_ptr< rclcpp::Publisher< carma_msgs::msg::SystemAlert > > | system_alert_pub_ |
System alert publisher. More... | |
ros2_lifecycle_manager::Ros2LifecycleManager | lifecycle_mgr_ |
Lifecycle Manager which will track the managed nodes and call their lifecycle services on request. More... | |
rclcpp::TimerBase::SharedPtr | startup_timer_ |
Timer which triggers when the startup delay has passed. More... | |
SystemControllerConfig | config_ |
The configuration of this node. More... | |
Definition at line 30 of file system_controller_node.hpp.
|
delete |
|
default |
|
explicit |
Constructor. Set explicitly to support node composition.
options | The node options to use for configuring this node |
auto_init | If true this node will automatically call its initialize method. If false the call will wait for the user. This is meant to support unit testing |
Definition at line 25 of file system_controller_node.cpp.
References initialize().
void system_controller::SystemControllerNode::initialize | ( | ) |
Initialize this node by loading parameters from the ROS Network.
Definition at line 36 of file system_controller_node.cpp.
References SystemControllerConfig::call_timeout_ms, config_, lifecycle_mgr_, on_error(), on_system_alert(), SystemControllerConfig::required_subsystem_nodes, SystemControllerConfig::service_timeout_ms, SystemControllerConfig::signal_configure_delay, startup_delay_callback(), startup_timer_, system_alert_pub_, system_alert_sub_, and system_alert_topic_.
Referenced by SystemControllerNode().
|
protected |
Exception handling method for processing all internal exceptions;.
Definition at line 89 of file system_controller_node.cpp.
References SystemControllerConfig::call_timeout_ms, config_, lifecycle_mgr_, SystemControllerConfig::service_timeout_ms, and startup_timer_.
Referenced by initialize(), on_system_alert(), and startup_delay_callback().
|
protected |
Callback for system alert messages used to evaluate system fault handling.
msg | The message which was received |
Definition at line 158 of file system_controller_node.cpp.
References SystemControllerConfig::call_timeout_ms, config_, lifecycle_mgr_, on_error(), publish_system_alert(), SystemControllerConfig::required_subsystem_nodes, SystemControllerConfig::service_timeout_ms, and arbitrator::SHUTDOWN.
Referenced by initialize().
|
protected |
Publishes a SystemAlert message to the rest of the carma-platform system. NOTE: This callback will automatically populate the msg.source_node field based on this node name.
msg | The message to publish |
Definition at line 147 of file system_controller_node.cpp.
References system_alert_pub_.
Referenced by on_system_alert().
void system_controller::SystemControllerNode::set_config | ( | SystemControllerConfig | config | ) |
Reset the configurations of this node. This is mean to support testing or other non-standard launch mechanisms.
config | The config to set |
Definition at line 84 of file system_controller_node.cpp.
References config_.
|
protected |
Callback to be triggered when the startup delay has passed.
Definition at line 105 of file system_controller_node.cpp.
References SystemControllerConfig::call_timeout_ms, config_, lifecycle_mgr_, on_error(), SystemControllerConfig::service_timeout_ms, and startup_timer_.
Referenced by initialize().
|
protected |
The configuration of this node.
Definition at line 99 of file system_controller_node.hpp.
Referenced by initialize(), on_error(), on_system_alert(), set_config(), and startup_delay_callback().
|
protected |
Lifecycle Manager which will track the managed nodes and call their lifecycle services on request.
Definition at line 93 of file system_controller_node.hpp.
Referenced by initialize(), on_error(), on_system_alert(), and startup_delay_callback().
|
protected |
Timer which triggers when the startup delay has passed.
Definition at line 96 of file system_controller_node.hpp.
Referenced by initialize(), on_error(), and startup_delay_callback().
|
protected |
System alert publisher.
Definition at line 90 of file system_controller_node.hpp.
Referenced by initialize(), and publish_system_alert().
|
protected |
The subscriber for the system alert topic.
Definition at line 87 of file system_controller_node.hpp.
Referenced by initialize().
|
protected |
The default topic name for the system alert topic.
Definition at line 84 of file system_controller_node.hpp.
Referenced by initialize().