/* * Copyright 2017 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 "cartographer_grpc/mapping/pose_graph_stub.h" #include "cartographer/mapping/pose_graph.h" #include "cartographer_grpc/framework/client.h" #include "cartographer_grpc/handlers/get_all_submap_poses.h" #include "cartographer_grpc/handlers/get_constraints_handler.h" #include "cartographer_grpc/handlers/get_landmark_poses_handler.h" #include "cartographer_grpc/handlers/get_local_to_global_transform_handler.h" #include "cartographer_grpc/handlers/get_trajectory_node_poses_handler.h" #include "cartographer_grpc/handlers/run_final_optimization_handler.h" #include "glog/logging.h" namespace cartographer_grpc { namespace mapping { PoseGraphStub::PoseGraphStub(std::shared_ptr client_channel) : client_channel_(client_channel) {} void PoseGraphStub::RunFinalOptimization() { google::protobuf::Empty request; framework::Client client( client_channel_); CHECK(client.Write(request)); } cartographer::mapping::MapById< cartographer::mapping::SubmapId, cartographer::mapping::PoseGraphInterface::SubmapData> PoseGraphStub::GetAllSubmapData() { LOG(FATAL) << "Not implemented"; } cartographer::mapping::MapById< cartographer::mapping::SubmapId, cartographer::mapping::PoseGraphInterface::SubmapPose> PoseGraphStub::GetAllSubmapPoses() { google::protobuf::Empty request; framework::Client client(client_channel_); CHECK(client.Write(request)); cartographer::mapping::MapById< cartographer::mapping::SubmapId, cartographer::mapping::PoseGraphInterface::SubmapPose> submap_poses; for (const auto& submap_pose : client.response().submap_poses()) { submap_poses.Insert( cartographer::mapping::SubmapId{submap_pose.submap_id().trajectory_id(), submap_pose.submap_id().submap_index()}, cartographer::mapping::PoseGraphInterface::SubmapPose{ submap_pose.submap_version(), cartographer::transform::ToRigid3(submap_pose.global_pose())}); } return submap_poses; } cartographer::transform::Rigid3d PoseGraphStub::GetLocalToGlobalTransform( int trajectory_id) { proto::GetLocalToGlobalTransformRequest request; request.set_trajectory_id(trajectory_id); framework::Client client( client_channel_); CHECK(client.Write(request)); return cartographer::transform::ToRigid3(client.response().local_to_global()); } cartographer::mapping::MapById PoseGraphStub::GetTrajectoryNodes() { LOG(FATAL) << "Not implemented"; } cartographer::mapping::MapById PoseGraphStub::GetTrajectoryNodePoses() { google::protobuf::Empty request; framework::Client client( client_channel_); CHECK(client.Write(request)); cartographer::mapping::MapById node_poses; for (const auto& node_pose : client.response().node_poses()) { node_poses.Insert( cartographer::mapping::NodeId{node_pose.node_id().trajectory_id(), node_pose.node_id().node_index()}, cartographer::mapping::TrajectoryNodePose{ node_pose.has_constant_data(), cartographer::transform::ToRigid3(node_pose.global_pose())}); } return node_poses; } std::map PoseGraphStub::GetLandmarkPoses() { google::protobuf::Empty request; framework::Client client(client_channel_); CHECK(client.Write(request)); std::map landmark_poses; for (const auto& landmark_pose : client.response().landmark_poses()) { landmark_poses[landmark_pose.landmark_id()] = cartographer::transform::ToRigid3(landmark_pose.global_pose()); } return landmark_poses; } bool PoseGraphStub::IsTrajectoryFinished(int trajectory_id) { LOG(FATAL) << "Not implemented"; } std::vector PoseGraphStub::constraints() { google::protobuf::Empty request; framework::Client client(client_channel_); CHECK(client.Write(request)); return cartographer::mapping::FromProto(client.response().constraints()); } cartographer::mapping::proto::PoseGraph PoseGraphStub::ToProto() { LOG(FATAL) << "Not implemented"; } } // namespace mapping } // namespace cartographer_grpc