2021-10-27 21:56:21 +00:00
|
|
|
#include "autoware_v2x/cpm_application.hpp"
|
|
|
|
#include "autoware_v2x/positioning.hpp"
|
|
|
|
#include "autoware_v2x/security.hpp"
|
|
|
|
#include "autoware_v2x/link_layer.hpp"
|
2021-11-10 15:21:32 +00:00
|
|
|
#include "autoware_v2x/v2x_node.hpp"
|
2021-10-27 21:56:21 +00:00
|
|
|
|
2021-11-14 04:26:18 +00:00
|
|
|
#include "tf2/LinearMath/Quaternion.h"
|
|
|
|
#include "tf2/LinearMath/Matrix3x3.h"
|
|
|
|
|
2021-10-27 21:56:21 +00:00
|
|
|
#include "rclcpp/rclcpp.hpp"
|
|
|
|
#include <vanetza/btp/ports.hpp>
|
|
|
|
#include <vanetza/asn1/cpm.hpp>
|
|
|
|
#include <vanetza/asn1/packet_visitor.hpp>
|
|
|
|
#include <vanetza/facilities/cpm_functions.hpp>
|
|
|
|
#include <chrono>
|
|
|
|
#include <functional>
|
|
|
|
#include <iostream>
|
|
|
|
#include <sstream>
|
|
|
|
#include <exception>
|
2021-11-10 15:21:32 +00:00
|
|
|
#include <GeographicLib/UTMUPS.hpp>
|
|
|
|
#include <GeographicLib/MGRS.hpp>
|
|
|
|
#include <string>
|
2021-10-27 21:56:21 +00:00
|
|
|
|
2021-11-10 08:14:01 +00:00
|
|
|
#define _USE_MATH_DEFINES
|
|
|
|
#include <math.h>
|
|
|
|
|
2021-10-27 21:56:21 +00:00
|
|
|
using namespace vanetza;
|
|
|
|
using namespace vanetza::facilities;
|
|
|
|
using namespace std::chrono;
|
|
|
|
|
2021-11-10 15:21:32 +00:00
|
|
|
namespace v2x
|
2021-10-27 21:56:21 +00:00
|
|
|
{
|
2021-11-10 15:21:32 +00:00
|
|
|
CpmApplication::CpmApplication(V2XNode *node, Runtime &rt) :
|
|
|
|
node_(node),
|
|
|
|
runtime_(rt),
|
|
|
|
ego_x_(0),
|
|
|
|
ego_y_(0),
|
|
|
|
ego_lat_(0),
|
|
|
|
ego_lon_(0),
|
|
|
|
ego_altitude_(0),
|
|
|
|
ego_heading_(0),
|
|
|
|
generationDeltaTime_(0),
|
|
|
|
updating_objects_stack_(false),
|
|
|
|
sending_(false)
|
|
|
|
{
|
|
|
|
RCLCPP_INFO(node_->get_logger(), "CpmApplication started...");
|
2021-11-17 08:45:25 +00:00
|
|
|
set_interval(milliseconds(1000));
|
2021-11-10 15:21:32 +00:00
|
|
|
}
|
2021-10-27 21:56:21 +00:00
|
|
|
|
2021-11-10 15:21:32 +00:00
|
|
|
void CpmApplication::set_interval(Clock::duration interval)
|
2021-11-10 08:14:01 +00:00
|
|
|
{
|
2021-11-10 15:21:32 +00:00
|
|
|
cpm_interval_ = interval;
|
|
|
|
runtime_.cancel(this);
|
|
|
|
schedule_timer();
|
2021-11-10 08:14:01 +00:00
|
|
|
}
|
2021-11-10 15:21:32 +00:00
|
|
|
|
|
|
|
void CpmApplication::schedule_timer()
|
2021-11-10 08:14:01 +00:00
|
|
|
{
|
2021-11-10 15:21:32 +00:00
|
|
|
runtime_.schedule(cpm_interval_, std::bind(&CpmApplication::on_timer, this, std::placeholders::_1), this);
|
2021-10-27 21:56:21 +00:00
|
|
|
}
|
|
|
|
|
2021-11-10 15:21:32 +00:00
|
|
|
void CpmApplication::on_timer(Clock::time_point)
|
|
|
|
{
|
|
|
|
schedule_timer();
|
|
|
|
send();
|
|
|
|
}
|
2021-11-10 08:14:01 +00:00
|
|
|
|
2021-11-10 15:21:32 +00:00
|
|
|
CpmApplication::PortType CpmApplication::port()
|
|
|
|
{
|
|
|
|
return btp::ports::CPM;
|
|
|
|
}
|
2021-10-27 21:56:21 +00:00
|
|
|
|
2021-11-10 15:21:32 +00:00
|
|
|
void CpmApplication::indicate(const DataIndication &indication, UpPacketPtr packet)
|
|
|
|
{
|
|
|
|
asn1::PacketVisitor<asn1::Cpm> visitor;
|
|
|
|
std::shared_ptr<const asn1::Cpm> cpm = boost::apply_visitor(visitor, *packet);
|
2021-11-17 08:58:41 +00:00
|
|
|
if (cpm) {
|
|
|
|
RCLCPP_INFO(node_->get_logger(), "[INDICATE] Received decodable CPM content");
|
2021-11-10 15:21:32 +00:00
|
|
|
asn1::Cpm message = *cpm;
|
|
|
|
ItsPduHeader_t &header = message->header;
|
|
|
|
|
|
|
|
CpmManagementContainer_t &management = message->cpm.cpmParameters.managementContainer;
|
|
|
|
double lat = management.referencePosition.latitude / 1.0e7;
|
|
|
|
double lon = management.referencePosition.longitude / 1.0e7;
|
2021-11-16 03:04:58 +00:00
|
|
|
// RCLCPP_INFO(node_->get_logger(), "cpm.(reference position) = %f, %f", lat, lon);
|
2021-11-10 15:21:32 +00:00
|
|
|
|
|
|
|
std::string mgrs;
|
|
|
|
int zone;
|
|
|
|
bool northp;
|
|
|
|
double x, y;
|
|
|
|
GeographicLib::UTMUPS::Forward(lat, lon, zone, northp, x, y);
|
|
|
|
GeographicLib::MGRS::Forward(zone, northp, x, y, lat, 5, mgrs);
|
|
|
|
|
|
|
|
int x_mgrs = std::stoi(mgrs.substr(5, 5));
|
|
|
|
int y_mgrs = std::stoi(mgrs.substr(10, 5));
|
2021-11-16 03:04:58 +00:00
|
|
|
// RCLCPP_INFO(node_->get_logger(), "cpm.(RP).mgrs = %s, %d, %d", mgrs.c_str(), x_mgrs, y_mgrs);
|
2021-11-10 15:21:32 +00:00
|
|
|
|
|
|
|
// Calculate orientation from Heading
|
|
|
|
OriginatingVehicleContainer_t &ovc = message->cpm.cpmParameters.stationDataContainer->choice.originatingVehicleContainer;
|
|
|
|
int heading = ovc.heading.headingValue;
|
2021-11-17 12:01:38 +00:00
|
|
|
// double orientation = 1.5708 - (M_PI * heading / 10) / 180;
|
|
|
|
double orientation = (90.0 - heading / 10.0) * M_PI / 180;
|
|
|
|
if (orientation < 0.0) orientation += (2 * M_PI);
|
2021-11-16 03:04:58 +00:00
|
|
|
// RCLCPP_INFO(node_->get_logger(), "cpm: heading = %d, orientation = %f", heading, orientation);
|
2021-11-10 15:21:32 +00:00
|
|
|
|
|
|
|
// Get PerceivedObjects
|
|
|
|
receivedObjectsStack.clear();
|
2021-11-14 04:26:18 +00:00
|
|
|
|
2021-11-17 08:58:41 +00:00
|
|
|
PerceivedObjectContainer_t *&poc = message->cpm.cpmParameters.perceivedObjectContainer;
|
2021-11-14 04:26:18 +00:00
|
|
|
|
2021-11-17 08:58:41 +00:00
|
|
|
if (poc != NULL) {
|
|
|
|
for (int i = 0; i < poc->list.count; ++i) {
|
|
|
|
RCLCPP_INFO(node_->get_logger(), "[INDICATE] Object: #%d", poc->list.array[i]->objectID);
|
|
|
|
|
|
|
|
CpmApplication::Object object;
|
|
|
|
double x1 = poc->list.array[i]->xDistance.value;
|
|
|
|
double y1 = poc->list.array[i]->yDistance.value;
|
|
|
|
// RCLCPP_INFO(node_->get_logger(), "cpm object: xDistance: %f, yDistance: %f", x1, y1);
|
|
|
|
x1 = x1 / 100.0;
|
|
|
|
y1 = y1 / 100.0;
|
|
|
|
object.position_x = x_mgrs + (cos(orientation) * x1 - sin(orientation) * y1);
|
|
|
|
object.position_y = y_mgrs + (sin(orientation) * x1 + cos(orientation) * y1);
|
|
|
|
// RCLCPP_INFO(node_->get_logger(), "cpm object: %f, %f, %f, %f", x1, y1, object.position_x, object.position_y);
|
|
|
|
|
|
|
|
object.shape_x = poc->list.array[i]->planarObjectDimension2->value;
|
|
|
|
object.shape_y = poc->list.array[i]->planarObjectDimension1->value;
|
|
|
|
object.shape_z = poc->list.array[i]->verticalObjectDimension->value;
|
|
|
|
|
|
|
|
object.yawAngle = poc->list.array[i]->yawAngle->value;
|
|
|
|
double yaw_radian = (M_PI * object.yawAngle / 10) / 180;
|
|
|
|
|
|
|
|
tf2::Quaternion quat;
|
|
|
|
quat.setRPY(0, 0, yaw_radian);
|
|
|
|
object.orientation_x = quat.x();
|
|
|
|
object.orientation_y = quat.y();
|
|
|
|
object.orientation_z = quat.z();
|
|
|
|
object.orientation_w = quat.w();
|
|
|
|
|
|
|
|
receivedObjectsStack.push_back(object);
|
|
|
|
}
|
|
|
|
node_->publishObjects(&receivedObjectsStack);
|
|
|
|
} else {
|
|
|
|
RCLCPP_INFO(node_->get_logger(), "[INDICATE] Empty POC");
|
2021-11-10 15:21:32 +00:00
|
|
|
}
|
2021-11-17 08:58:41 +00:00
|
|
|
} else {
|
|
|
|
RCLCPP_INFO(node_->get_logger(), "[INDICATE] Received broken content");
|
2021-11-10 15:21:32 +00:00
|
|
|
}
|
|
|
|
}
|
2021-10-27 21:56:21 +00:00
|
|
|
|
2021-11-10 15:21:32 +00:00
|
|
|
void CpmApplication::updateMGRS(double *x, double *y)
|
|
|
|
{
|
|
|
|
// RCLCPP_INFO(node_->get_logger(), "Update MGRS");
|
|
|
|
ego_x_ = *x;
|
|
|
|
ego_y_ = *y;
|
|
|
|
}
|
2021-10-27 21:56:21 +00:00
|
|
|
|
2021-11-10 15:21:32 +00:00
|
|
|
void CpmApplication::updateRP(double *lat, double *lon, double *altitude)
|
|
|
|
{
|
|
|
|
// RCLCPP_INFO(node_->get_logger(), "Update RP");
|
|
|
|
ego_lat_ = *lat;
|
|
|
|
ego_lon_ = *lon;
|
|
|
|
ego_altitude_ = *altitude;
|
|
|
|
}
|
2021-10-27 21:56:21 +00:00
|
|
|
|
2021-11-10 15:21:32 +00:00
|
|
|
void CpmApplication::updateGenerationDeltaTime(int *gdt)
|
2021-11-10 08:14:01 +00:00
|
|
|
{
|
2021-11-10 15:21:32 +00:00
|
|
|
// RCLCPP_INFO(node_->get_logger(), "Update GDT");
|
|
|
|
generationDeltaTime_ = *gdt;
|
2021-11-10 08:14:01 +00:00
|
|
|
}
|
|
|
|
|
2021-11-10 15:21:32 +00:00
|
|
|
void CpmApplication::updateHeading(double *yaw)
|
2021-11-10 08:14:01 +00:00
|
|
|
{
|
2021-11-10 15:21:32 +00:00
|
|
|
// RCLCPP_INFO(node_->get_logger(), "Update Heading : %f", *yaw);
|
|
|
|
ego_heading_ = *yaw;
|
|
|
|
}
|
2021-10-27 21:56:21 +00:00
|
|
|
|
2021-11-10 15:21:32 +00:00
|
|
|
void CpmApplication::updateObjectsStack(const autoware_perception_msgs::msg::DynamicObjectArray::ConstSharedPtr msg)
|
|
|
|
{
|
|
|
|
updating_objects_stack_ = true;
|
2021-10-27 21:56:21 +00:00
|
|
|
|
2021-11-17 08:45:25 +00:00
|
|
|
if (sending_) {
|
2021-11-10 15:21:32 +00:00
|
|
|
RCLCPP_INFO(node_->get_logger(), "updateObjectsStack Skipped...");
|
|
|
|
return;
|
2021-11-17 08:45:25 +00:00
|
|
|
} else {
|
2021-11-10 15:21:32 +00:00
|
|
|
objectsStack.clear();
|
2021-11-17 08:45:25 +00:00
|
|
|
}
|
2021-11-10 15:21:32 +00:00
|
|
|
|
2021-11-17 08:45:25 +00:00
|
|
|
if (msg->objects.size() > 0) {
|
2021-11-10 15:21:32 +00:00
|
|
|
int i = 0;
|
2021-11-17 12:01:38 +00:00
|
|
|
for (auto obj : msg->objects) {
|
2021-11-10 15:21:32 +00:00
|
|
|
CpmApplication::Object object;
|
|
|
|
object.objectID = i;
|
|
|
|
object.timestamp = msg->header.stamp;
|
|
|
|
object.position_x = obj.state.pose_covariance.pose.position.x; // MGRS
|
|
|
|
object.position_y = obj.state.pose_covariance.pose.position.y;
|
|
|
|
object.position_z = obj.state.pose_covariance.pose.position.z;
|
|
|
|
object.orientation_x = obj.state.pose_covariance.pose.orientation.x;
|
|
|
|
object.orientation_y = obj.state.pose_covariance.pose.orientation.y;
|
|
|
|
object.orientation_z = obj.state.pose_covariance.pose.orientation.z;
|
|
|
|
object.orientation_w = obj.state.pose_covariance.pose.orientation.w;
|
2021-11-17 08:45:25 +00:00
|
|
|
object.shape_x = std::lround(obj.shape.dimensions.x * 10.0);
|
|
|
|
object.shape_y = std::lround(obj.shape.dimensions.y * 10.0);
|
|
|
|
object.shape_z = std::lround(obj.shape.dimensions.z * 10.0);
|
|
|
|
object.xDistance = std::lround(((object.position_x - ego_x_) * cos(-ego_heading_) - (object.position_y - ego_y_) * sin(-ego_heading_)) * 100.0);
|
|
|
|
object.yDistance = std::lround(((object.position_x - ego_x_) * sin(-ego_heading_) + (object.position_y - ego_y_) * cos(-ego_heading_)) * 100.0);
|
2021-11-17 12:01:38 +00:00
|
|
|
if (object.xDistance < -132768 || object.xDistance > 132767) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (object.yDistance < -132768 || object.yDistance > 132767) {
|
|
|
|
continue;
|
|
|
|
}
|
2021-11-17 08:45:25 +00:00
|
|
|
object.xSpeed = 0;
|
|
|
|
object.ySpeed = 0;
|
2021-11-14 04:26:18 +00:00
|
|
|
|
|
|
|
tf2::Quaternion quat(object.orientation_x, object.orientation_y, object.orientation_z, object.orientation_w);
|
|
|
|
tf2::Matrix3x3 matrix(quat);
|
|
|
|
double roll, pitch, yaw;
|
|
|
|
matrix.getRPY(roll, pitch, yaw);
|
2021-11-17 08:45:25 +00:00
|
|
|
if (yaw < 0) {
|
|
|
|
object.yawAngle = std::lround(((yaw + 2*M_PI) * 180.0 / M_PI) * 10.0); // 0 - 3600
|
|
|
|
} else {
|
|
|
|
object.yawAngle = std::lround((yaw * 180.0 / M_PI) * 10.0); // 0 - 3600
|
|
|
|
}
|
|
|
|
|
2021-11-10 15:21:32 +00:00
|
|
|
object.timeOfMeasurement = 100;
|
|
|
|
objectsStack.push_back(object);
|
|
|
|
++i;
|
2021-11-17 08:45:25 +00:00
|
|
|
// RCLCPP_INFO(node_->get_logger(), "Added to stack: %f %f %f", obj.shape.dimensions.x, obj.shape.dimensions.y, obj.shape.dimensions.z);
|
|
|
|
// RCLCPP_INFO(node_->get_logger(), "Added to stack: %f %f %f", obj.shape.dimensions.x * 10.0, obj.shape.dimensions.y * 10.0, obj.shape.dimensions.z * 10.0);
|
|
|
|
// RCLCPP_INFO(node_->get_logger(), "Added to stack: %d %d %d", std::lround(obj.shape.dimensions.x * 10.0), std::lround(obj.shape.dimensions.y * 10.0), std::lround(obj.shape.dimensions.z * 10.0));
|
|
|
|
RCLCPP_INFO(node_->get_logger(), "Added to stack: #%d (%d, %d) (%d, %d) (%d, %d, %d) (%f: %d)", object.objectID, object.xDistance, object.yDistance, object.xSpeed, object.ySpeed, object.shape_x, object.shape_y, object.shape_z, yaw, object.yawAngle);
|
2021-11-10 15:21:32 +00:00
|
|
|
}
|
2021-11-10 08:14:01 +00:00
|
|
|
}
|
2021-11-17 08:45:25 +00:00
|
|
|
RCLCPP_INFO(node_->get_logger(), "ObjectsStack: %d objects", objectsStack.size());
|
2021-11-10 15:21:32 +00:00
|
|
|
updating_objects_stack_ = false;
|
|
|
|
}
|
2021-11-10 08:14:01 +00:00
|
|
|
|
2021-11-10 15:21:32 +00:00
|
|
|
void CpmApplication::send()
|
|
|
|
{
|
|
|
|
sending_ = true;
|
2021-11-17 08:45:25 +00:00
|
|
|
|
2021-11-17 08:58:41 +00:00
|
|
|
RCLCPP_INFO(node_->get_logger(), "[SEND] Sending CPM...");
|
2021-11-17 08:45:25 +00:00
|
|
|
|
|
|
|
vanetza::asn1::Cpm message;
|
|
|
|
|
|
|
|
// ITS PDU Header
|
|
|
|
ItsPduHeader_t &header = message->header;
|
|
|
|
header.protocolVersion = 1;
|
|
|
|
header.messageID = 14;
|
|
|
|
header.stationID = 1;
|
|
|
|
|
|
|
|
// const auto time_now = duration_cast<milliseconds>(system_clock::now().time_since_epoch());
|
|
|
|
// uint16_t gen_delta_time = time_now.count();
|
|
|
|
|
|
|
|
CollectivePerceptionMessage_t &cpm = message->cpm;
|
|
|
|
cpm.generationDeltaTime = generationDeltaTime_ * GenerationDeltaTime_oneMilliSec;
|
|
|
|
|
|
|
|
// auto position = positioning->position_specify(pos_lat, pos_lon);
|
|
|
|
|
|
|
|
CpmManagementContainer_t &management = cpm.cpmParameters.managementContainer;
|
|
|
|
management.stationType = StationType_passengerCar;
|
|
|
|
// management.referencePosition.latitude = pos_lat;
|
|
|
|
// management.referencePosition.longitude = pos_lon;
|
|
|
|
// management.referencePosition.positionConfidenceEllipse.semiMajorConfidence = 1.0;
|
|
|
|
// management.referencePosition.positionConfidenceEllipse.semiMinorConfidence = 1.0;
|
|
|
|
PositionFix fix;
|
|
|
|
// fix.timestamp = time_now;
|
|
|
|
fix.latitude = ego_lat_ * units::degree;
|
|
|
|
fix.longitude = ego_lon_ * units::degree;
|
|
|
|
// fix.altitude = ego_altitude_;
|
|
|
|
fix.confidence.semi_major = 1.0 * units::si::meter;
|
|
|
|
fix.confidence.semi_minor = fix.confidence.semi_major;
|
|
|
|
copy(fix, management.referencePosition);
|
|
|
|
|
|
|
|
// cpm.cpmParameters.stationDataContainer = NULL;
|
|
|
|
// cpm.cpmParameters.perceivedObjectContainer = NULL;
|
|
|
|
cpm.cpmParameters.numberOfPerceivedObjects = objectsStack.size();
|
|
|
|
|
|
|
|
StationDataContainer_t *&sdc = cpm.cpmParameters.stationDataContainer;
|
|
|
|
sdc = vanetza::asn1::allocate<StationDataContainer_t>();
|
|
|
|
// RCLCPP_INFO(node->get_logger(), "Allocated sdc");
|
|
|
|
sdc->present = StationDataContainer_PR_originatingVehicleContainer;
|
|
|
|
OriginatingVehicleContainer_t &ovc = sdc->choice.originatingVehicleContainer;
|
|
|
|
ovc.speed.speedValue = 0;
|
|
|
|
ovc.speed.speedConfidence = 1;
|
|
|
|
// ovc.heading.headingValue = (int) (1.5708 - ego_heading_) * M_PI / 180;
|
|
|
|
// RCLCPP_INFO(node_->get_logger(), "headingValue...");
|
2021-11-17 12:01:38 +00:00
|
|
|
// ovc.heading.headingValue = (int)std::fmod((1.5708 - ego_heading_) * 180 / M_PI, 360.0) * 10;
|
|
|
|
int heading = std::lround(((-ego_heading_ * 180 / M_PI) + 90.0) * 10);
|
|
|
|
if (heading < 0) heading += 3600;
|
|
|
|
ovc.heading.headingValue = heading;
|
2021-11-17 08:45:25 +00:00
|
|
|
ovc.heading.headingConfidence = 1;
|
2021-11-17 12:01:38 +00:00
|
|
|
RCLCPP_INFO(node_->get_logger(), "[SEND] headingValue: %f %d", ego_heading_, ovc.heading.headingValue);
|
2021-11-17 08:45:25 +00:00
|
|
|
|
|
|
|
if (objectsStack.size() > 0) {
|
2021-11-10 15:21:32 +00:00
|
|
|
PerceivedObjectContainer_t *&poc = cpm.cpmParameters.perceivedObjectContainer;
|
|
|
|
poc = vanetza::asn1::allocate<PerceivedObjectContainer_t>();
|
|
|
|
|
2021-11-17 08:45:25 +00:00
|
|
|
for (CpmApplication::Object object : objectsStack) {
|
|
|
|
// if (object.xDistance > 10000) continue;
|
|
|
|
// if (object.yDistance > 10000) continue;
|
2021-11-14 04:26:18 +00:00
|
|
|
|
2021-11-10 15:21:32 +00:00
|
|
|
PerceivedObject *pObj = vanetza::asn1::allocate<PerceivedObject>();
|
|
|
|
pObj->objectID = object.objectID;
|
|
|
|
pObj->timeOfMeasurement = object.timeOfMeasurement;
|
|
|
|
pObj->xDistance.value = object.xDistance;
|
|
|
|
pObj->xDistance.confidence = 1;
|
|
|
|
pObj->yDistance.value = object.yDistance;
|
|
|
|
pObj->yDistance.confidence = 1;
|
|
|
|
pObj->xSpeed.value = object.xSpeed;
|
|
|
|
pObj->xSpeed.confidence = 1;
|
|
|
|
pObj->ySpeed.value = object.ySpeed;
|
|
|
|
pObj->ySpeed.confidence = 1;
|
|
|
|
|
2021-11-14 04:26:18 +00:00
|
|
|
pObj->planarObjectDimension1 = vanetza::asn1::allocate<ObjectDimension_t>();
|
|
|
|
pObj->planarObjectDimension2 = vanetza::asn1::allocate<ObjectDimension_t>();
|
|
|
|
pObj->verticalObjectDimension = vanetza::asn1::allocate<ObjectDimension_t>();
|
|
|
|
|
|
|
|
(*(pObj->planarObjectDimension1)).value = object.shape_y;
|
|
|
|
(*(pObj->planarObjectDimension1)).confidence = 1;
|
|
|
|
(*(pObj->planarObjectDimension2)).value = object.shape_x;
|
|
|
|
(*(pObj->planarObjectDimension2)).confidence = 1;
|
|
|
|
(*(pObj->verticalObjectDimension)).value = object.shape_z;
|
|
|
|
(*(pObj->verticalObjectDimension)).confidence = 1;
|
|
|
|
|
|
|
|
pObj->yawAngle = vanetza::asn1::allocate<CartesianAngle>();
|
|
|
|
(*(pObj->yawAngle)).value = object.yawAngle;
|
|
|
|
(*(pObj->yawAngle)).confidence = 1;
|
|
|
|
|
2021-11-17 08:58:41 +00:00
|
|
|
RCLCPP_INFO(node_->get_logger(), "[SEND] Added: #%d (%d, %d) (%d, %d) (%d, %d, %d) %d", object.objectID, object.xDistance, object.yDistance, object.xSpeed, object.ySpeed, object.shape_y, object.shape_x, object.shape_z, object.yawAngle);
|
2021-11-17 08:45:25 +00:00
|
|
|
|
2021-11-10 15:21:32 +00:00
|
|
|
ASN_SEQUENCE_ADD(poc, pObj);
|
|
|
|
}
|
2021-11-17 08:45:25 +00:00
|
|
|
} else {
|
|
|
|
cpm.cpmParameters.perceivedObjectContainer = NULL;
|
2021-11-17 08:58:41 +00:00
|
|
|
RCLCPP_INFO(node_->get_logger(), "[SEND] Empty POC");
|
2021-11-10 08:14:01 +00:00
|
|
|
}
|
2021-11-17 08:45:25 +00:00
|
|
|
|
|
|
|
Application::DownPacketPtr packet{new DownPacket()};
|
|
|
|
std::unique_ptr<geonet::DownPacket> payload{new geonet::DownPacket()};
|
|
|
|
// std::shared_ptr<asn1::Cpm> message_p = std::make_shared<asn1::Cpm>(message);
|
|
|
|
// std::unique_ptr<convertible::byte_buffer> buffer { new convertible::byte_buffer_impl<asn1::Cpm>(&message)};
|
|
|
|
|
|
|
|
payload->layer(OsiLayer::Application) = std::move(message);
|
|
|
|
|
|
|
|
Application::DataRequest request;
|
|
|
|
request.its_aid = aid::CP;
|
|
|
|
request.transport_type = geonet::TransportType::SHB;
|
|
|
|
request.communication_profile = geonet::CommunicationProfile::ITS_G5;
|
|
|
|
|
|
|
|
Application::DataConfirm confirm = Application::request(request, std::move(payload), node_);
|
|
|
|
|
|
|
|
if (!confirm.accepted()) {
|
2021-11-17 08:58:41 +00:00
|
|
|
throw std::runtime_error("[SEND] CPM application data request failed");
|
2021-11-17 08:45:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// try {
|
|
|
|
// Application::DataConfirm confirm = Application::request(request, std::move(payload), node_);
|
|
|
|
// if (!confirm.accepted()) {
|
|
|
|
// throw std::runtime_error("CPM application data request failed");
|
|
|
|
// }
|
|
|
|
// } catch (...) {
|
|
|
|
// RCLCPP_INFO(node_->get_logger(), "Request Failed");
|
|
|
|
// }
|
2021-11-10 15:21:32 +00:00
|
|
|
sending_ = false;
|
|
|
|
// RCLCPP_INFO(node->get_logger(), "Application::request END");
|
2021-10-27 21:56:21 +00:00
|
|
|
}
|
2021-11-10 15:21:32 +00:00
|
|
|
}
|