2018-02-01 21:34:41 +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-03-02 18:38:35 +08:00
|
|
|
#include "cartographer_grpc/internal/handlers/get_submap_handler.h"
|
2018-02-01 21:34:41 +08:00
|
|
|
|
|
|
|
#include "cartographer/common/make_unique.h"
|
2018-03-02 21:16:49 +08:00
|
|
|
#include "cartographer_grpc/internal/framework/rpc_handler.h"
|
|
|
|
#include "cartographer_grpc/internal/map_builder_context_interface.h"
|
2018-02-01 21:34:41 +08:00
|
|
|
#include "cartographer_grpc/proto/map_builder_service.pb.h"
|
|
|
|
#include "google/protobuf/empty.pb.h"
|
|
|
|
|
2018-03-03 06:21:28 +08:00
|
|
|
namespace cartographer {
|
|
|
|
namespace cloud {
|
2018-02-01 21:34:41 +08:00
|
|
|
namespace handlers {
|
|
|
|
|
|
|
|
void GetSubmapHandler::OnRequest(const proto::GetSubmapRequest &request) {
|
2018-03-03 06:21:28 +08:00
|
|
|
auto response = common::make_unique<proto::GetSubmapResponse>();
|
2018-02-01 21:34:41 +08:00
|
|
|
response->set_error_msg(
|
|
|
|
GetContext<MapBuilderContextInterface>()->map_builder().SubmapToProto(
|
2018-03-03 06:21:28 +08:00
|
|
|
mapping::SubmapId{request.submap_id().trajectory_id(),
|
|
|
|
request.submap_id().submap_index()},
|
2018-02-01 21:34:41 +08:00
|
|
|
response->mutable_submap_query_response()));
|
|
|
|
Send(std::move(response));
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace handlers
|
2018-03-03 06:21:28 +08:00
|
|
|
} // namespace cloud
|
|
|
|
} // namespace cartographer
|