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.
system_controller_node.hpp
Go to the documentation of this file.
1/*
2 * Copyright (C) 2021 LEIDOS.
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License"); you may not
5 * use this file except in compliance with the License. You may obtain a copy of
6 * the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
12 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
13 * License for the specific language governing permissions and limitations under
14 * the License.
15 */
16
17#ifndef SYSTEM_CONTROLLER__SYSTEM_CONTROLLER_NODE_HPP_
18#define SYSTEM_CONTROLLER__SYSTEM_CONTROLLER_NODE_HPP_
19
20#include <memory>
21
22#include "carma_msgs/msg/system_alert.hpp"
23#include "ros2_lifecycle_manager/ros2_lifecycle_manager.hpp"
25#include "rclcpp/rclcpp.hpp"
26
28{
29
30 class SystemControllerNode : public rclcpp::Node
31 {
32 public:
34
36
44 explicit SystemControllerNode(const rclcpp::NodeOptions &options, bool auto_init = true);
45
49 void initialize();
50
57
58 protected:
64 void on_system_alert(const carma_msgs::msg::SystemAlert::UniquePtr msg);
65
70
74 void on_error(const std::exception &e);
75
81 void publish_system_alert(carma_msgs::msg::SystemAlert msg);
82
84 const std::string system_alert_topic_{"/system_alert"};
85
87 rclcpp::Subscription<carma_msgs::msg::SystemAlert>::SharedPtr system_alert_sub_;
88
90 std::shared_ptr<rclcpp::Publisher<carma_msgs::msg::SystemAlert>> system_alert_pub_;
91
93 ros2_lifecycle_manager::Ros2LifecycleManager lifecycle_mgr_;
94
96 rclcpp::TimerBase::SharedPtr startup_timer_;
97
100 };
101
102} // namespace system_controller
103
104#endif // SYSTEM_CONTROLLER__SYSTEM_CONTROLLER_NODE_HPP_
void set_config(SystemControllerConfig config)
Reset the configurations of this node. This is mean to support testing or other non-standard launch m...
void startup_delay_callback()
Callback to be triggered when the startup delay has passed.
std::shared_ptr< rclcpp::Publisher< carma_msgs::msg::SystemAlert > > system_alert_pub_
System alert publisher.
rclcpp::TimerBase::SharedPtr startup_timer_
Timer which triggers when the startup delay has passed.
rclcpp::Subscription< carma_msgs::msg::SystemAlert >::SharedPtr system_alert_sub_
The subscriber for the system alert topic.
void on_system_alert(const carma_msgs::msg::SystemAlert::UniquePtr msg)
Callback for system alert messages used to evaluate system fault handling.
ros2_lifecycle_manager::Ros2LifecycleManager lifecycle_mgr_
Lifecycle Manager which will track the managed nodes and call their lifecycle services on request.
void initialize()
Initialize this node by loading parameters from the ROS Network.
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 au...
void on_error(const std::exception &e)
Exception handling method for processing all internal exceptions;.
SystemControllerConfig config_
The configuration of this node.
const std::string system_alert_topic_
The default topic name for the system alert topic.
Stuct containing the algorithm configuration values for the SystemController.