cartographer/cartographer_grpc/internal/client/pose_graph_stub.cc

130 lines
4.9 KiB
C++
Raw Normal View History

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