2018-01-15 22:31:33 +08:00
|
|
|
/*
|
|
|
|
* Copyright 2018 The Cartographer Authors
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "serialization.h"
|
|
|
|
|
|
|
|
namespace cartographer_grpc {
|
2018-01-16 19:20:15 +08:00
|
|
|
namespace sensor {
|
2018-01-15 22:31:33 +08:00
|
|
|
|
|
|
|
void CreateSensorMetadata(const std::string& sensor_id, const int trajectory_id,
|
|
|
|
proto::SensorMetadata* proto) {
|
|
|
|
proto->set_sensor_id(sensor_id);
|
|
|
|
proto->set_trajectory_id(trajectory_id);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CreateAddFixedFramePoseDataRequest(
|
|
|
|
const std::string& sensor_id, int trajectory_id,
|
|
|
|
const cartographer::sensor::proto::FixedFramePoseData&
|
|
|
|
fixed_frame_pose_data,
|
|
|
|
proto::AddFixedFramePoseDataRequest* proto) {
|
|
|
|
CreateSensorMetadata(sensor_id, trajectory_id,
|
|
|
|
proto->mutable_sensor_metadata());
|
|
|
|
*proto->mutable_fixed_frame_pose_data() = fixed_frame_pose_data;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CreateAddImuDataRequest(
|
|
|
|
const std::string& sensor_id, const int trajectory_id,
|
|
|
|
const cartographer::sensor::proto::ImuData& imu_data,
|
|
|
|
proto::AddImuDataRequest* proto) {
|
|
|
|
CreateSensorMetadata(sensor_id, trajectory_id,
|
|
|
|
proto->mutable_sensor_metadata());
|
|
|
|
*proto->mutable_imu_data() = imu_data;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CreateAddOdometryDataRequest(
|
|
|
|
const std::string& sensor_id, int trajectory_id,
|
|
|
|
const cartographer::sensor::proto::OdometryData& odometry_data,
|
|
|
|
proto::AddOdometryDataRequest* proto) {
|
|
|
|
CreateSensorMetadata(sensor_id, trajectory_id,
|
|
|
|
proto->mutable_sensor_metadata());
|
|
|
|
*proto->mutable_odometry_data() = odometry_data;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CreateAddRangeFinderDataRequest(
|
|
|
|
const std::string& sensor_id, int trajectory_id,
|
|
|
|
const cartographer::sensor::proto::TimedPointCloudData&
|
|
|
|
timed_point_cloud_data,
|
|
|
|
proto::AddRangefinderDataRequest* proto) {
|
|
|
|
CreateSensorMetadata(sensor_id, trajectory_id,
|
|
|
|
proto->mutable_sensor_metadata());
|
|
|
|
*proto->mutable_timed_point_cloud_data() = timed_point_cloud_data;
|
|
|
|
}
|
|
|
|
|
2018-01-20 00:24:30 +08:00
|
|
|
void CreateAddLandmarkDataRequest(
|
|
|
|
const std::string& sensor_id, int trajectory_id,
|
|
|
|
const cartographer::sensor::proto::LandmarkData& landmark_data,
|
|
|
|
proto::AddLandmarkDataRequest* proto) {
|
|
|
|
CreateSensorMetadata(sensor_id, trajectory_id,
|
|
|
|
proto->mutable_sensor_metadata());
|
|
|
|
*proto->mutable_landmark_data() = landmark_data;
|
|
|
|
}
|
|
|
|
|
2018-01-29 21:02:33 +08:00
|
|
|
void CreateAddLocalSlamResultDataRequest(
|
|
|
|
const std::string& sensor_id, int trajectory_id,
|
|
|
|
cartographer::common::Time time, int starting_submap_index,
|
|
|
|
const cartographer::mapping::TrajectoryBuilderInterface::InsertionResult&
|
|
|
|
insertion_result,
|
|
|
|
proto::AddLocalSlamResultDataRequest* proto) {
|
|
|
|
sensor::CreateSensorMetadata(sensor_id, trajectory_id,
|
|
|
|
proto->mutable_sensor_metadata());
|
|
|
|
proto->mutable_local_slam_result_data()->set_timestamp(
|
|
|
|
cartographer::common::ToUniversal(time));
|
|
|
|
*proto->mutable_local_slam_result_data()->mutable_node_data() =
|
|
|
|
cartographer::mapping::ToProto(*insertion_result.constant_data);
|
|
|
|
for (const auto& insertion_submap : insertion_result.insertion_submaps) {
|
|
|
|
// We only send the probability grid up if the submap is finished.
|
|
|
|
auto* submap = proto->mutable_local_slam_result_data()->add_submaps();
|
|
|
|
insertion_submap->ToProto(submap, insertion_submap->finished());
|
|
|
|
submap->mutable_submap_id()->set_trajectory_id(trajectory_id);
|
|
|
|
submap->mutable_submap_id()->set_submap_index(starting_submap_index);
|
|
|
|
++starting_submap_index;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-26 22:07:49 +08:00
|
|
|
proto::SensorId ToProto(
|
|
|
|
const cartographer::mapping::TrajectoryBuilderInterface::SensorId&
|
|
|
|
sensor_id) {
|
|
|
|
using SensorType =
|
|
|
|
cartographer::mapping::TrajectoryBuilderInterface::SensorId::SensorType;
|
|
|
|
proto::SensorType type;
|
|
|
|
switch (sensor_id.type) {
|
|
|
|
case SensorType::RANGE:
|
|
|
|
type = proto::SensorType::RANGE;
|
|
|
|
break;
|
|
|
|
case SensorType::IMU:
|
|
|
|
type = proto::SensorType::IMU;
|
|
|
|
break;
|
|
|
|
case SensorType::ODOMETRY:
|
|
|
|
type = proto::SensorType::ODOMETRY;
|
|
|
|
break;
|
|
|
|
case SensorType::FIXED_FRAME_POSE:
|
|
|
|
type = proto::SensorType::FIXED_FRAME_POSE;
|
|
|
|
break;
|
|
|
|
case SensorType::LANDMARK:
|
|
|
|
type = proto::SensorType::LANDMARK;
|
|
|
|
break;
|
|
|
|
case SensorType::LOCAL_SLAM_RESULT:
|
|
|
|
type = proto::SensorType::LOCAL_SLAM_RESULT;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
LOG(FATAL) << "unknown SensorType";
|
|
|
|
}
|
|
|
|
proto::SensorId proto;
|
|
|
|
proto.set_type(type);
|
|
|
|
proto.set_id(sensor_id.id);
|
|
|
|
return proto;
|
|
|
|
}
|
|
|
|
|
|
|
|
cartographer::mapping::TrajectoryBuilderInterface::SensorId FromProto(
|
|
|
|
const proto::SensorId& proto) {
|
|
|
|
using SensorId = cartographer::mapping::TrajectoryBuilderInterface::SensorId;
|
|
|
|
using SensorType = SensorId::SensorType;
|
|
|
|
SensorType type;
|
|
|
|
switch (proto.type()) {
|
|
|
|
case proto::SensorType::RANGE:
|
|
|
|
type = SensorType::RANGE;
|
|
|
|
break;
|
|
|
|
case proto::SensorType::IMU:
|
|
|
|
type = SensorType::IMU;
|
|
|
|
break;
|
|
|
|
case proto::SensorType::ODOMETRY:
|
|
|
|
type = SensorType::ODOMETRY;
|
|
|
|
break;
|
|
|
|
case proto::SensorType::FIXED_FRAME_POSE:
|
|
|
|
type = SensorType::FIXED_FRAME_POSE;
|
|
|
|
break;
|
|
|
|
case proto::SensorType::LANDMARK:
|
|
|
|
type = SensorType::LANDMARK;
|
|
|
|
break;
|
|
|
|
case proto::SensorType::LOCAL_SLAM_RESULT:
|
|
|
|
type = SensorType::LOCAL_SLAM_RESULT;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
LOG(FATAL) << "unknown proto::SensorType";
|
|
|
|
}
|
|
|
|
return SensorId{type, proto.id()};
|
|
|
|
}
|
|
|
|
|
2018-01-16 19:20:15 +08:00
|
|
|
} // namespace sensor
|
2018-01-15 22:31:33 +08:00
|
|
|
} // namespace cartographer_grpc
|