add_landmark_data_handler.cc
Go to the documentation of this file.
1 /*
2  * Copyright 2018 The Cartographer Authors
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 
18 
19 #include "async_grpc/rpc_handler.h"
22 #include "cartographer/cloud/proto/map_builder_service.pb.h"
26 #include "google/protobuf/empty.pb.h"
27 
28 namespace cartographer {
29 namespace cloud {
30 namespace handlers {
31 
32 void AddLandmarkDataHandler::OnRequest(
33  const proto::AddLandmarkDataRequest &request) {
34  // The 'BlockingQueue' returned by 'sensor_data_queue()' is already
35  // thread-safe. Therefore it suffices to get an unsynchronized reference to
36  // the 'MapBuilderContext'.
37  GetUnsynchronizedContext<MapBuilderContextInterface>()->EnqueueSensorData(
38  request.sensor_metadata().trajectory_id(),
39  sensor::MakeDispatchable(request.sensor_metadata().sensor_id(),
40  sensor::FromProto(request.landmark_data())));
41 
42  // The 'BlockingQueue' in 'LocalTrajectoryUploader' is thread-safe.
43  // Therefore it suffices to get an unsynchronized reference to the
44  // 'MapBuilderContext'.
45  if (GetUnsynchronizedContext<MapBuilderContextInterface>()
46  ->local_trajectory_uploader()) {
47  auto sensor_data = common::make_unique<proto::SensorData>();
48  *sensor_data->mutable_sensor_metadata() = request.sensor_metadata();
49  *sensor_data->mutable_landmark_data() = request.landmark_data();
50  GetUnsynchronizedContext<MapBuilderContextInterface>()
51  ->local_trajectory_uploader()
52  ->EnqueueSensorData(std::move(sensor_data));
53  }
54 }
55 
56 void AddLandmarkDataHandler::OnReadsDone() {
57  Send(common::make_unique<google::protobuf::Empty>());
58 }
59 
60 } // namespace handlers
61 } // namespace cloud
62 } // namespace cartographer
FixedFramePoseData FromProto(const proto::FixedFramePoseData &proto)
std::unique_ptr< Dispatchable< DataType > > MakeDispatchable(const std::string &sensor_id, const DataType &data)
Definition: dispatchable.h:44


cartographer
Author(s): The Cartographer Authors
autogenerated on Mon Feb 28 2022 22:00:58