2018-01-11 17:19:37 +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.
|
|
|
|
*/
|
|
|
|
|
2018-01-15 22:31:33 +08:00
|
|
|
#include "cartographer_grpc/local_trajectory_uploader.h"
|
2018-01-11 17:19:37 +08:00
|
|
|
|
2018-01-17 19:01:29 +08:00
|
|
|
#include "cartographer/common/make_unique.h"
|
|
|
|
#include "cartographer_grpc/proto/map_builder_service.pb.h"
|
2018-01-26 22:07:49 +08:00
|
|
|
#include "cartographer_grpc/sensor/serialization.h"
|
2018-01-13 06:16:29 +08:00
|
|
|
#include "glog/logging.h"
|
|
|
|
|
2018-01-11 17:19:37 +08:00
|
|
|
namespace cartographer_grpc {
|
2018-01-17 19:01:29 +08:00
|
|
|
namespace {
|
|
|
|
|
|
|
|
const cartographer::common::Duration kPopTimeout =
|
|
|
|
cartographer::common::FromMilliseconds(100);
|
|
|
|
|
|
|
|
} // namespace
|
2018-01-11 17:19:37 +08:00
|
|
|
|
2018-01-15 22:31:33 +08:00
|
|
|
LocalTrajectoryUploader::LocalTrajectoryUploader(
|
2018-01-17 19:01:29 +08:00
|
|
|
const std::string &uplink_server_address)
|
|
|
|
: client_channel_(grpc::CreateChannel(uplink_server_address,
|
2018-01-13 06:16:29 +08:00
|
|
|
grpc::InsecureChannelCredentials())),
|
|
|
|
service_stub_(proto::MapBuilderService::NewStub(client_channel_)) {}
|
|
|
|
|
2018-01-17 19:01:29 +08:00
|
|
|
LocalTrajectoryUploader::~LocalTrajectoryUploader() {
|
|
|
|
if (imu_writer_.client_writer) {
|
|
|
|
CHECK(imu_writer_.client_writer->WritesDone());
|
|
|
|
CHECK(imu_writer_.client_writer->Finish().ok());
|
|
|
|
}
|
|
|
|
if (odometry_writer_.client_writer) {
|
|
|
|
CHECK(odometry_writer_.client_writer->WritesDone());
|
|
|
|
CHECK(odometry_writer_.client_writer->Finish().ok());
|
|
|
|
}
|
|
|
|
if (fixed_frame_pose_writer_.client_writer) {
|
|
|
|
CHECK(fixed_frame_pose_writer_.client_writer->WritesDone());
|
|
|
|
CHECK(fixed_frame_pose_writer_.client_writer->Finish().ok());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void LocalTrajectoryUploader::Start() {
|
|
|
|
CHECK(!shutting_down_);
|
|
|
|
CHECK(!upload_thread_);
|
|
|
|
upload_thread_ = cartographer::common::make_unique<std::thread>(
|
|
|
|
[this]() { this->ProcessSendQueue(); });
|
|
|
|
}
|
|
|
|
|
|
|
|
void LocalTrajectoryUploader::Shutdown() {
|
|
|
|
CHECK(!shutting_down_);
|
|
|
|
CHECK(upload_thread_);
|
|
|
|
shutting_down_ = true;
|
|
|
|
upload_thread_->join();
|
|
|
|
}
|
|
|
|
|
|
|
|
void LocalTrajectoryUploader::ProcessSendQueue() {
|
|
|
|
LOG(INFO) << "Starting uploader thread.";
|
|
|
|
while (!shutting_down_) {
|
|
|
|
auto data_message = send_queue_.PopWithTimeout(kPopTimeout);
|
|
|
|
if (data_message) {
|
2018-01-29 21:02:33 +08:00
|
|
|
if (auto *fixed_frame_pose_data =
|
|
|
|
dynamic_cast<proto::AddFixedFramePoseDataRequest *>(
|
2018-01-17 19:01:29 +08:00
|
|
|
data_message.get())) {
|
|
|
|
ProcessFixedFramePoseDataMessage(fixed_frame_pose_data);
|
2018-01-29 21:02:33 +08:00
|
|
|
} else if (auto *imu_data = dynamic_cast<proto::AddImuDataRequest *>(
|
|
|
|
data_message.get())) {
|
2018-01-17 19:01:29 +08:00
|
|
|
ProcessImuDataMessage(imu_data);
|
2018-01-29 21:02:33 +08:00
|
|
|
} else if (auto *odometry_data =
|
|
|
|
dynamic_cast<proto::AddOdometryDataRequest *>(
|
2018-01-17 19:01:29 +08:00
|
|
|
data_message.get())) {
|
|
|
|
ProcessOdometryDataMessage(odometry_data);
|
2018-01-29 21:02:33 +08:00
|
|
|
} else if (auto *local_slam_result_data =
|
|
|
|
dynamic_cast<proto::AddLocalSlamResultDataRequest *>(
|
|
|
|
data_message.get())) {
|
|
|
|
ProcessLocalSlamResultDataMessage(local_slam_result_data);
|
2018-01-17 19:01:29 +08:00
|
|
|
} else {
|
|
|
|
LOG(FATAL) << "Unknown message type: " << data_message->GetTypeName();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-29 21:02:33 +08:00
|
|
|
void LocalTrajectoryUploader::TranslateTrajectoryId(
|
|
|
|
proto::SensorMetadata *sensor_metadata) {
|
|
|
|
int cloud_trajectory_id =
|
|
|
|
local_to_cloud_trajectory_id_map_.at(sensor_metadata->trajectory_id());
|
|
|
|
sensor_metadata->set_trajectory_id(cloud_trajectory_id);
|
|
|
|
}
|
|
|
|
|
2018-01-17 19:01:29 +08:00
|
|
|
void LocalTrajectoryUploader::ProcessFixedFramePoseDataMessage(
|
2018-01-29 21:02:33 +08:00
|
|
|
proto::AddFixedFramePoseDataRequest *data_request) {
|
2018-01-17 19:01:29 +08:00
|
|
|
if (!fixed_frame_pose_writer_.client_writer) {
|
|
|
|
fixed_frame_pose_writer_.client_writer =
|
|
|
|
service_stub_->AddFixedFramePoseData(
|
|
|
|
&fixed_frame_pose_writer_.client_context,
|
|
|
|
&fixed_frame_pose_writer_.response);
|
|
|
|
CHECK(fixed_frame_pose_writer_.client_writer);
|
|
|
|
}
|
2018-01-29 21:02:33 +08:00
|
|
|
TranslateTrajectoryId(data_request->mutable_sensor_metadata());
|
2018-01-17 19:01:29 +08:00
|
|
|
fixed_frame_pose_writer_.client_writer->Write(*data_request);
|
|
|
|
}
|
|
|
|
|
|
|
|
void LocalTrajectoryUploader::ProcessImuDataMessage(
|
2018-01-29 21:02:33 +08:00
|
|
|
proto::AddImuDataRequest *data_request) {
|
2018-01-17 19:01:29 +08:00
|
|
|
if (!imu_writer_.client_writer) {
|
|
|
|
imu_writer_.client_writer = service_stub_->AddImuData(
|
|
|
|
&imu_writer_.client_context, &imu_writer_.response);
|
|
|
|
CHECK(imu_writer_.client_writer);
|
|
|
|
}
|
2018-01-29 21:02:33 +08:00
|
|
|
TranslateTrajectoryId(data_request->mutable_sensor_metadata());
|
2018-01-17 19:01:29 +08:00
|
|
|
imu_writer_.client_writer->Write(*data_request);
|
|
|
|
}
|
|
|
|
|
|
|
|
void LocalTrajectoryUploader::ProcessOdometryDataMessage(
|
2018-01-29 21:02:33 +08:00
|
|
|
proto::AddOdometryDataRequest *data_request) {
|
2018-01-17 19:01:29 +08:00
|
|
|
if (!odometry_writer_.client_writer) {
|
|
|
|
odometry_writer_.client_writer = service_stub_->AddOdometryData(
|
|
|
|
&odometry_writer_.client_context, &odometry_writer_.response);
|
|
|
|
CHECK(odometry_writer_.client_writer);
|
|
|
|
}
|
2018-01-29 21:02:33 +08:00
|
|
|
TranslateTrajectoryId(data_request->mutable_sensor_metadata());
|
2018-01-17 19:01:29 +08:00
|
|
|
odometry_writer_.client_writer->Write(*data_request);
|
|
|
|
}
|
|
|
|
|
2018-01-29 21:02:33 +08:00
|
|
|
void LocalTrajectoryUploader::ProcessLocalSlamResultDataMessage(
|
|
|
|
proto::AddLocalSlamResultDataRequest *data_request) {
|
|
|
|
if (!local_slam_result_writer_.client_writer) {
|
|
|
|
local_slam_result_writer_.client_writer =
|
|
|
|
service_stub_->AddLocalSlamResultData(
|
|
|
|
&local_slam_result_writer_.client_context,
|
|
|
|
&local_slam_result_writer_.response);
|
|
|
|
CHECK(local_slam_result_writer_.client_writer);
|
|
|
|
}
|
|
|
|
TranslateTrajectoryId(data_request->mutable_sensor_metadata());
|
|
|
|
// A submap also holds a trajectory id that must be translated to uplink's
|
|
|
|
// trajectory id.
|
|
|
|
for (cartographer::mapping::proto::Submap &mutable_submap :
|
|
|
|
*data_request->mutable_local_slam_result_data()->mutable_submaps()) {
|
|
|
|
mutable_submap.mutable_submap_id()->set_trajectory_id(
|
|
|
|
data_request->sensor_metadata().trajectory_id());
|
|
|
|
}
|
|
|
|
local_slam_result_writer_.client_writer->Write(*data_request);
|
|
|
|
}
|
|
|
|
|
2018-01-15 22:31:33 +08:00
|
|
|
void LocalTrajectoryUploader::AddTrajectory(
|
2018-01-26 22:07:49 +08:00
|
|
|
int local_trajectory_id, const std::set<SensorId> &expected_sensor_ids,
|
2018-01-17 19:01:29 +08:00
|
|
|
const cartographer::mapping::proto::TrajectoryBuilderOptions
|
|
|
|
&trajectory_options) {
|
2018-01-13 06:16:29 +08:00
|
|
|
grpc::ClientContext client_context;
|
|
|
|
proto::AddTrajectoryRequest request;
|
|
|
|
proto::AddTrajectoryResponse result;
|
|
|
|
*request.mutable_trajectory_builder_options() = trajectory_options;
|
2018-01-26 22:07:49 +08:00
|
|
|
for (const SensorId &sensor_id : expected_sensor_ids) {
|
2018-01-29 21:02:33 +08:00
|
|
|
// Range sensors are not forwarded, but combined into a LocalSlamResult.
|
|
|
|
if (sensor_id.type != SensorId::SensorType::RANGE) {
|
|
|
|
*request.add_expected_sensor_ids() = sensor::ToProto(sensor_id);
|
|
|
|
}
|
2018-01-13 06:16:29 +08:00
|
|
|
}
|
2018-01-29 21:02:33 +08:00
|
|
|
*request.add_expected_sensor_ids() =
|
|
|
|
sensor::ToProto(GetLocalSlamResultSensorId(local_trajectory_id));
|
2018-01-13 06:16:29 +08:00
|
|
|
grpc::Status status =
|
|
|
|
service_stub_->AddTrajectory(&client_context, request, &result);
|
|
|
|
CHECK(status.ok());
|
|
|
|
CHECK_EQ(local_to_cloud_trajectory_id_map_.count(local_trajectory_id), 0);
|
|
|
|
local_to_cloud_trajectory_id_map_[local_trajectory_id] =
|
|
|
|
result.trajectory_id();
|
|
|
|
}
|
|
|
|
|
2018-01-15 22:31:33 +08:00
|
|
|
void LocalTrajectoryUploader::FinishTrajectory(int local_trajectory_id) {
|
2018-01-13 06:16:29 +08:00
|
|
|
CHECK_EQ(local_to_cloud_trajectory_id_map_.count(local_trajectory_id), 1);
|
|
|
|
int cloud_trajectory_id =
|
|
|
|
local_to_cloud_trajectory_id_map_[local_trajectory_id];
|
|
|
|
grpc::ClientContext client_context;
|
|
|
|
proto::FinishTrajectoryRequest request;
|
|
|
|
google::protobuf::Empty response;
|
|
|
|
request.set_trajectory_id(cloud_trajectory_id);
|
|
|
|
grpc::Status status =
|
|
|
|
service_stub_->FinishTrajectory(&client_context, request, &response);
|
|
|
|
CHECK(status.ok());
|
|
|
|
}
|
2018-01-11 17:19:37 +08:00
|
|
|
|
2018-01-15 22:31:33 +08:00
|
|
|
void LocalTrajectoryUploader::EnqueueDataRequest(
|
|
|
|
std::unique_ptr<google::protobuf::Message> data_request) {
|
|
|
|
send_queue_.Push(std::move(data_request));
|
|
|
|
}
|
|
|
|
|
2018-01-17 19:01:29 +08:00
|
|
|
} // namespace cartographer_grpc
|