Carma-platform v4.11.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.
inlanecruising_plugin_node.cpp
Go to the documentation of this file.
1/*
2 * Copyright (C) 2022 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
18
20{
21 namespace std_ph = std::placeholders;
22
23 InLaneCruisingPluginNode::InLaneCruisingPluginNode(const rclcpp::NodeOptions &options)
24 : carma_guidance_plugins::TacticalPlugin(options),
25 plugin_name_(get_plugin_name_and_ns()),
26 version_id_("v4.0"),
28 {
29 // Declare parameters
30 config_.trajectory_time_length = declare_parameter<double>("trajectory_time_length", config_.trajectory_time_length);
31 config_.curve_resample_step_size = declare_parameter<double>("curve_resample_step_size", config_.curve_resample_step_size);
32 config_.default_downsample_ratio = declare_parameter<int>("default_downsample_ratio", config_.default_downsample_ratio);
33 config_.turn_downsample_ratio = declare_parameter<int>("turn_downsample_ratio", config_.turn_downsample_ratio);
34 config_.minimum_speed = declare_parameter<double>("minimum_speed", config_.minimum_speed);
35 config_.max_accel_multiplier = declare_parameter<double>("max_accel_multiplier", config_.max_accel_multiplier);
36 config_.lat_accel_multiplier = declare_parameter<double>("lat_accel_multiplier", config_.lat_accel_multiplier);
37 config_.back_distance = declare_parameter<double>("back_distance", config_.back_distance);
38 config_.speed_moving_average_window_size = declare_parameter<int>("speed_moving_average_window_size", config_.speed_moving_average_window_size);
39 config_.curvature_moving_average_window_size = declare_parameter<int>("curvature_moving_average_window_size", config_.curvature_moving_average_window_size);
40 config_.buffer_ending_downtrack = declare_parameter<double>("buffer_ending_downtrack", config_.buffer_ending_downtrack);
41 config_.max_accel = declare_parameter<double>("vehicle_acceleration_limit", config_.max_accel);
42 config_.lateral_accel_limit = declare_parameter<double>("vehicle_lateral_accel_limit", config_.lateral_accel_limit);
43 }
44
45 carma_ros2_utils::CallbackReturn InLaneCruisingPluginNode::on_configure_plugin()
46 {
47 trajectory_debug_pub_ = create_publisher<carma_debug_ros2_msgs::msg::TrajectoryCurvatureSpeeds>("debug/trajectory_planning", 1);
48
50
51 get_parameter<double>("trajectory_time_length", config_.trajectory_time_length);
52 get_parameter<double>("curve_resample_step_size", config_.curve_resample_step_size);
53 get_parameter<int>("default_downsample_ratio", config_.default_downsample_ratio);
54 get_parameter<int>("turn_downsample_ratio", config_.turn_downsample_ratio);
55 get_parameter<double>("minimum_speed", config_.minimum_speed);
56 get_parameter<double>("max_accel_multiplier", config_.max_accel_multiplier);
57 get_parameter<double>("lat_accel_multiplier", config_.lat_accel_multiplier);
58 get_parameter<double>("back_distance", config_.back_distance);
59 get_parameter<int>("speed_moving_average_window_size", config_.speed_moving_average_window_size);
60 get_parameter<int>("curvature_moving_average_window_size", config_.curvature_moving_average_window_size);
61 get_parameter<double>("buffer_ending_downtrack", config_.buffer_ending_downtrack);
62 get_parameter<double>("vehicle_acceleration_limit", config_.max_accel);
63 get_parameter<double>("vehicle_lateral_accel_limit", config_.lateral_accel_limit);
64
65 // Register runtime parameter update callback
66 add_on_set_parameters_callback(std::bind(&InLaneCruisingPluginNode::parameter_update_callback, this, std_ph::_1));
67
68 RCLCPP_INFO_STREAM(rclcpp::get_logger("inlanecruising_plugin"), "InLaneCruisingPlugin Params" << config_);
69
72
73 // Determine if we will enable debug publishing by checking the current log level of the node
74 auto level = rcutils_logging_get_logger_level(get_logger().get_name());
75
76 config_.publish_debug = level == RCUTILS_LOG_SEVERITY_DEBUG;
77
78 RCLCPP_INFO_STREAM(rclcpp::get_logger("inlanecruising_plugin"), "InLaneCruisingPlugin Params After Accel Change" << config_);
79
80 worker_ = std::make_shared<InLaneCruisingPlugin>(shared_from_this(), get_world_model(), config_,
81 [this](const carma_debug_ros2_msgs::msg::TrajectoryCurvatureSpeeds& msg) { trajectory_debug_pub_->publish(msg); },
84
85 // Return success if everything initialized successfully
86 return CallbackReturn::SUCCESS;
87
88 }
89
90 rcl_interfaces::msg::SetParametersResult InLaneCruisingPluginNode::parameter_update_callback(const std::vector<rclcpp::Parameter> &parameters)
91 {
92 auto error_double = update_params<double>({
93 {"trajectory_time_length", config_.trajectory_time_length},
94 {"curve_resample_step_size", config_.curve_resample_step_size},
95 {"minimum_speed", config_.minimum_speed},
96 {"max_accel_multiplier", config_.max_accel_multiplier},
97 {"lat_accel_multiplier", config_.lat_accel_multiplier},
98 {"back_distance", config_.back_distance},
99 {"buffer_ending_downtrack", config_.buffer_ending_downtrack}}, parameters); // Global acceleration limits not allowed to dynamically update
100
101 auto error_int = update_params<int>({
102 {"default_downsample_ratio", config_.default_downsample_ratio},
103 {"turn_downsample_ratio", config_.turn_downsample_ratio},
104 {"speed_moving_average_window_size", config_.speed_moving_average_window_size},
105 {"curvature_moving_average_window_size", config_.curvature_moving_average_window_size}}, parameters);
106
107 rcl_interfaces::msg::SetParametersResult result;
108
109 result.successful = !error_double && !error_int;
110
111 return result;
112 }
113
115 {
116 return true;
117 }
118
120 {
121 return version_id_;
122 }
123
125 std::shared_ptr<rmw_request_id_t> srv_header,
126 carma_planning_msgs::srv::PlanTrajectory::Request::SharedPtr req,
127 carma_planning_msgs::srv::PlanTrajectory::Response::SharedPtr resp)
128 {
129 worker_->plan_trajectory_callback(req, resp);
130 }
131
132} // namespace inlanecruising_plugin
133
134
135#include "rclcpp_components/register_node_macro.hpp"
136
137// Register the component with class_loader
138RCLCPP_COMPONENTS_REGISTER_NODE(inlanecruising_plugin::InLaneCruisingPluginNode)
virtual carma_wm::WorldModelConstPtr get_world_model() final
Method to return the default world model provided as a convience by this base class If this method or...
std::string get_version_id() override final
Returns the version id of this plugin.
carma_ros2_utils::CallbackReturn on_configure_plugin()
Method which is triggered when this plugin is moved from the UNCONFIGURED to INACTIVE states....
carma_ros2_utils::PubPtr< carma_debug_ros2_msgs::msg::TrajectoryCurvatureSpeeds > trajectory_debug_pub_
InLaneCruisingPluginNode(const rclcpp::NodeOptions &)
Node constructor.
rcl_interfaces::msg::SetParametersResult parameter_update_callback(const std::vector< rclcpp::Parameter > &parameters)
bool get_availability() override
Get the availability status of this plugin based on the current operating environment....
void plan_trajectory_callback(std::shared_ptr< rmw_request_id_t > srv_header, carma_planning_msgs::srv::PlanTrajectory::Request::SharedPtr req, carma_planning_msgs::srv::PlanTrajectory::Response::SharedPtr resp) override
Extending class provided callback which should return a planned trajectory based on the provided traj...
rclcpp::Logger get_logger()
Return the module-level logger used by all basic_autonomy functions.
Definition: log.cpp:32
Stuct containing the algorithm configuration values for the InLaneCruisingPlugin.