Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017 #include "cartographer/cloud/internal/handlers/get_trajectory_states_handler.h"
00018
00019 #include "absl/memory/memory.h"
00020 #include "async_grpc/rpc_handler.h"
00021 #include "cartographer/cloud/internal/map_builder_context_interface.h"
00022 #include "cartographer/cloud/internal/mapping/serialization.h"
00023 #include "cartographer/cloud/proto/map_builder_service.pb.h"
00024 #include "google/protobuf/empty.pb.h"
00025
00026 namespace cartographer {
00027 namespace cloud {
00028 namespace handlers {
00029
00030 void GetTrajectoryStatesHandler::OnRequest(
00031 const google::protobuf::Empty& request) {
00032 auto trajectories_state = GetContext<MapBuilderContextInterface>()
00033 ->map_builder()
00034 .pose_graph()
00035 ->GetTrajectoryStates();
00036 auto response = absl::make_unique<proto::GetTrajectoryStatesResponse>();
00037 for (const auto& entry : trajectories_state) {
00038 (*response->mutable_trajectories_state())[entry.first] =
00039 ToProto(entry.second);
00040 }
00041 Send(std::move(response));
00042 }
00043
00044 }
00045 }
00046 }