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.
WMBroadcasterNode.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
17#include <carma_ros2_utils/timers/ROSTimerFactory.hpp>
19
20namespace carma_wm_ctrl
21{
22 // @SONAR_STOP@
23
24namespace std_ph = std::placeholders;
25
26
27void WMBroadcasterNode::publishMap(const autoware_lanelet2_msgs::msg::MapBin& map_msg)
28{
29 map_pub_->publish(map_msg);
30}
31
32void WMBroadcasterNode::publishMapUpdate(const autoware_lanelet2_msgs::msg::MapBin& geofence_msg) const
33{
34 map_update_pub_->publish(geofence_msg);
35}
36
37void WMBroadcasterNode::publishCtrlReq(const carma_v2x_msgs::msg::TrafficControlRequest& ctrlreq_msg) const
38{
39 control_msg_pub_->publish(ctrlreq_msg);
40}
41
42void WMBroadcasterNode::publishActiveGeofence(const carma_perception_msgs::msg::CheckActiveGeofence& active_geof_msg)
43{
44 active_pub_->publish(active_geof_msg);
45}
46
47void WMBroadcasterNode::publishTCMACK(const carma_v2x_msgs::msg::MobilityOperation& mom_msg)
48{
49 tcm_ack_pub_->publish(mom_msg);
50}
51
52WMBroadcasterNode::WMBroadcasterNode(const rclcpp::NodeOptions &options)
53 : carma_ros2_utils::CarmaLifecycleNode(options)
54{
55 // Create initial config
56 config_ = Config();
57
58 config_.ack_pub_times = declare_parameter<int>("ack_pub_times", config_.ack_pub_times);
59 config_.max_lane_width = declare_parameter<double>("max_lane_width", config_.max_lane_width);
60 config_.traffic_control_request_period = declare_parameter<double>("traffic_control_request_period", config_.traffic_control_request_period);
61 config_.vehicle_id = declare_parameter<std::string>("vehicle_id", config_.vehicle_id);
62 config_.participant = declare_parameter<std::string>("vehicle_participant_type", config_.participant);
63 config_.participant = declare_parameter<double>("config_speed_limit", config_.config_limit);
64
65 declare_parameter("intersection_ids_for_correction");
66 declare_parameter("intersection_coord_correction");
67};
68
69void WMBroadcasterNode::initializeWorker(std::weak_ptr<carma_ros2_utils::CarmaLifecycleNode> weak_node_pointer)
70{
71 wmb_ = std::make_unique<carma_wm_ctrl::WMBroadcaster>(std::bind(&WMBroadcasterNode::publishMap, this, std_ph::_1), std::bind(&WMBroadcasterNode::publishMapUpdate, this, std_ph::_1),
72 std::bind(&WMBroadcasterNode::publishCtrlReq, this, std_ph::_1), std::bind(&WMBroadcasterNode::publishActiveGeofence, this, std_ph::_1),
73 std::make_unique<carma_ros2_utils::timers::ROSTimerFactory>(weak_node_pointer),
74 std::bind(&WMBroadcasterNode::publishTCMACK, this, std_ph::_1));
75}
76
77carma_ros2_utils::CallbackReturn WMBroadcasterNode::handle_on_configure(const rclcpp_lifecycle::State &)
78{
79 RCLCPP_INFO_STREAM(rclcpp::get_logger("carma_wm_ctrl"),"Starting configuration!");
80
81 // Reset config
82 config_ = Config();
83
84 initializeWorker(shared_from_this());
85
86 RCLCPP_INFO_STREAM(rclcpp::get_logger("carma_wm_ctrl"),"Done initializing worker!");
87
88 get_parameter<int>("ack_pub_times", config_.ack_pub_times);
89 get_parameter<double>("max_lane_width", config_.max_lane_width);
90 get_parameter<double>("traffic_control_request_period", config_.traffic_control_request_period);
91 get_parameter<std::string>("vehicle_id", config_.vehicle_id);
92 get_parameter<std::string>("vehicle_participant_type", config_.participant);
93 get_parameter<double>("config_speed_limit", config_.config_limit);
94
95 wmb_->setConfigACKPubTimes(config_.ack_pub_times);
96 wmb_->setMaxLaneWidth(config_.max_lane_width);
97 wmb_->setConfigSpeedLimit(config_.config_limit);
98 wmb_->setConfigVehicleId(config_.vehicle_id);
99 wmb_->setVehicleParticipationType(config_.participant);
100
101 rclcpp::Parameter intersection_coord_correction_param = get_parameter("intersection_coord_correction");
102 config_.intersection_coord_correction = intersection_coord_correction_param.as_double_array();
103
104 rclcpp::Parameter intersection_ids_for_correction_param = get_parameter("intersection_ids_for_correction");
105 config_.intersection_ids_for_correction = intersection_ids_for_correction_param.as_integer_array();
106
108
109 RCLCPP_INFO_STREAM(rclcpp::get_logger("carma_wm_ctrl"),"Done loading parameters: " << config_);
110
112 // PUBLISHERS
114
115 // NOTE: Currently, intra-process comms must be disabled for the following two publishers that are transient_local: https://github.com/ros2/rclcpp/issues/1753
116 rclcpp::PublisherOptions intra_proc_disabled;
117 intra_proc_disabled.use_intra_process_comm = rclcpp::IntraProcessSetting::Disable; // Disable intra-process comms for this PublisherOptions object
118
119 // Create a publisher that will send all previously published messages to late-joining subscribers ONLY If the subscriber is transient_local too
120 auto pub_qos_transient_local = rclcpp::QoS(rclcpp::KeepAll()); // A publisher with this QoS will store all messages that it has sent on the topic
121 pub_qos_transient_local.transient_local(); // A publisher with this QoS will re-send all (when KeepAll is used) messages to all late-joining subscribers
122 // NOTE: The subscriber's QoS must be set to transient_local() as well for earlier messages to be resent to the later-joiner.
123
124 // Map Update Publisher
125 map_update_pub_ = create_publisher<autoware_lanelet2_msgs::msg::MapBin>("map_update", pub_qos_transient_local, intra_proc_disabled);
126
127 // Map Publisher
128 map_pub_ = create_publisher<autoware_lanelet2_msgs::msg::MapBin>("semantic_map", pub_qos_transient_local, intra_proc_disabled);
129
130 //Route Message Publisher
131 control_msg_pub_= create_publisher<carma_v2x_msgs::msg::TrafficControlRequest>("outgoing_geofence_request", 1);
132
133 //Check Active Geofence Publisher
134 active_pub_ = create_publisher<carma_perception_msgs::msg::CheckActiveGeofence>("active_geofence", 200);
135
136 //publish TCM acknowledgement after processing TCM
137 tcm_ack_pub_ = create_publisher<carma_v2x_msgs::msg::MobilityOperation>("outgoing_geofence_ack", 2 * config_.ack_pub_times );
138
139 //TCM Visualizer pub
140 tcm_visualizer_pub_= create_publisher<visualization_msgs::msg::MarkerArray>("tcm_visualizer",1);
141
142 //J2735 MAP msg Visualizer pub
143 j2735_map_msg_visualizer_pub_= create_publisher<visualization_msgs::msg::MarkerArray>("j2735_map_msg_visualizer",1);
144
145 //TCR Visualizer pub (visualized on UI)
146 tcr_visualizer_pub_ = create_publisher<carma_v2x_msgs::msg::TrafficControlRequestPolygon>("tcr_bounding_points",1);
147
148 //Upcoming intersection and group id of traffic light
149 upcoming_intersection_ids_pub_ = create_publisher<std_msgs::msg::Int32MultiArray>("intersection_signal_group_ids", 1);
150
151 // Return success if everything initialized successfully
152
153 return CallbackReturn::SUCCESS;
154}
155
156carma_ros2_utils::CallbackReturn WMBroadcasterNode::handle_on_activate(const rclcpp_lifecycle::State &prev_state)
157{
158 // Timer setup
159 timer_ = create_timer(get_clock(),
160 std::chrono::milliseconds((int)(config_.traffic_control_request_period * 1000)),
161 std::bind(&WMBroadcasterNode::spin_callback, this));
162
164 //SUBSCRIBERS
166
167 // Base Map Sub
168 base_map_sub_ = create_subscription<autoware_lanelet2_msgs::msg::MapBin>("base_map", 1, std::bind(&WMBroadcaster::baseMapCallback, wmb_.get(), std_ph::_1));
169
170 // Base Map Georeference Sub
171 georef_sub_ = create_subscription<std_msgs::msg::String>("georeference", 1, std::bind(&WMBroadcaster::geoReferenceCallback, wmb_.get(), std_ph::_1));
172
173 // Geofence Sub
174 rclcpp::SubscriptionOptions geofence_sub_options;
175 // NOTE: Currently, intra-process comms must be disabled for subscribers that are transient_local: https://github.com/ros2/rclcpp/issues/1753
176 geofence_sub_options.use_intra_process_comm = rclcpp::IntraProcessSetting::Disable;
177 auto sub_qos_transient_local = rclcpp::QoS(rclcpp::KeepAll());
178 sub_qos_transient_local.transient_local();
179 geofence_sub_ = create_subscription<carma_v2x_msgs::msg::TrafficControlMessage>("geofence", sub_qos_transient_local, std::bind(&WMBroadcaster::geofenceCallback, wmb_.get(), std_ph::_1), geofence_sub_options);
180
181 // External Map Msg Sub
182 incoming_map_sub_ = create_subscription<carma_v2x_msgs::msg::MapData>("incoming_map", 20, std::bind(&WMBroadcaster::externalMapMsgCallback, wmb_.get(), std_ph::_1));
183
184 //Route Message Sub
185 route_callmsg_sub_ = create_subscription<carma_planning_msgs::msg::Route>("route", 1, std::bind(&WMBroadcaster::routeCallbackMessage, wmb_.get(), std_ph::_1));
186
187 //Current Location Sub
188 curr_location_sub_ = create_subscription<geometry_msgs::msg::PoseStamped>("current_pose", 1, std::bind(&WMBroadcaster::currentLocationCallback, wmb_.get(), std_ph::_1));
189
190
191 return CallbackReturn::SUCCESS;
192}
193
195{
196 tcm_visualizer_pub_->publish(wmb_->tcm_marker_array_);
197 j2735_map_msg_visualizer_pub_->publish(wmb_->j2735_map_msg_marker_array_);
198 tcr_visualizer_pub_->publish(wmb_->tcr_polygon_);
199 wmb_->publishLightId();
200 //updating upcoming traffic signal group id and intersection id
201 wmb_->updateUpcomingSGIntersectionIds();
202 if (wmb_->upcoming_intersection_ids_.data.size() > 0)
203 upcoming_intersection_ids_pub_->publish(wmb_->upcoming_intersection_ids_);
204 if(wmb_->getRoute().route_path_lanelet_ids.size() > 0)
205 wmb_->routeCallbackMessage(std::make_unique<carma_planning_msgs::msg::Route>(wmb_->getRoute()));
206
207 return true;
208}
209
210
211
212// @SONAR_START@
213
214} // namespace carma_wm_ctrl
215
216#include "rclcpp_components/register_node_macro.hpp"
217
218// Register the component with class_loader
219RCLCPP_COMPONENTS_REGISTER_NODE(carma_wm_ctrl::WMBroadcasterNode)
Node which provies exposes map publication and carma_wm update logic.
carma_ros2_utils::SubPtr< geometry_msgs::msg::PoseStamped > curr_location_sub_
WMBroadcasterNode(const rclcpp::NodeOptions &options)
Constructor.
carma_ros2_utils::PubPtr< carma_v2x_msgs::msg::TrafficControlRequest > control_msg_pub_
carma_ros2_utils::PubPtr< carma_perception_msgs::msg::CheckActiveGeofence > active_pub_
carma_ros2_utils::CallbackReturn handle_on_configure(const rclcpp_lifecycle::State &)
void publishCtrlReq(const carma_v2x_msgs::msg::TrafficControlRequest &ctrlreq_msg) const
Callback to publish TrafficControlRequest Messages.
carma_ros2_utils::PubPtr< visualization_msgs::msg::MarkerArray > j2735_map_msg_visualizer_pub_
carma_ros2_utils::PubPtr< autoware_lanelet2_msgs::msg::MapBin > map_pub_
carma_ros2_utils::PubPtr< autoware_lanelet2_msgs::msg::MapBin > map_update_pub_
carma_ros2_utils::SubPtr< std_msgs::msg::String > georef_sub_
carma_ros2_utils::SubPtr< carma_v2x_msgs::msg::MapData > incoming_map_sub_
void publishTCMACK(const carma_v2x_msgs::msg::MobilityOperation &mom_msg)
Callback to publish traffic control acknowledgement information.
void publishMap(const autoware_lanelet2_msgs::msg::MapBin &map_msg)
Callback to publish a map.
carma_ros2_utils::SubPtr< carma_v2x_msgs::msg::TrafficControlMessage > geofence_sub_
carma_ros2_utils::PubPtr< visualization_msgs::msg::MarkerArray > tcm_visualizer_pub_
rclcpp::TimerBase::SharedPtr timer_
carma_ros2_utils::SubPtr< carma_planning_msgs::msg::Route > route_callmsg_sub_
void initializeWorker(std::weak_ptr< carma_ros2_utils::CarmaLifecycleNode > weak_node_pointer)
Initializes the WMBroadcaster worker with reference to the CarmaLifecycleNode itself.
void publishMapUpdate(const autoware_lanelet2_msgs::msg::MapBin &geofence_msg) const
Callback to publish map updates (geofences)
carma_ros2_utils::CallbackReturn handle_on_activate(const rclcpp_lifecycle::State &)
carma_ros2_utils::PubPtr< std_msgs::msg::Int32MultiArray > upcoming_intersection_ids_pub_
bool spin_callback()
Spin callback, which will be called frequently based on the configured spin rate.
carma_ros2_utils::PubPtr< carma_v2x_msgs::msg::TrafficControlRequestPolygon > tcr_visualizer_pub_
std::unique_ptr< carma_wm_ctrl::WMBroadcaster > wmb_
carma_ros2_utils::PubPtr< carma_v2x_msgs::msg::MobilityOperation > tcm_ack_pub_
carma_ros2_utils::SubPtr< autoware_lanelet2_msgs::msg::MapBin > base_map_sub_
void publishActiveGeofence(const carma_perception_msgs::msg::CheckActiveGeofence &active_geof_msg)
Callback to publish active geofence information.
void baseMapCallback(autoware_lanelet2_msgs::msg::MapBin::UniquePtr map_msg)
Callback to set the base map when it has been loaded.
void geofenceCallback(carma_v2x_msgs::msg::TrafficControlMessage::UniquePtr geofence_msg)
Callback to add a geofence to the map. Currently only supports version 1 TrafficControlMessage.
void currentLocationCallback(geometry_msgs::msg::PoseStamped::UniquePtr current_pos)
void routeCallbackMessage(carma_planning_msgs::msg::Route::UniquePtr route_msg)
Calls controlRequestFromRoute() and publishes the TrafficControlRequest Message returned after the co...
void externalMapMsgCallback(carma_v2x_msgs::msg::MapData::UniquePtr map_msg)
Callback to MAP.msg which contains intersections' static info such geometry and lane ids.
void geoReferenceCallback(std_msgs::msg::String::UniquePtr geo_ref)
Callback to set the base map georeference (proj string)
std::vector< double > intersection_coord_correction
std::vector< int64_t > intersection_ids_for_correction