add_fixed_frame_pose_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 AddFixedFramePoseDataHandler::OnRequest(
33  const proto::AddFixedFramePoseDataRequest &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(),
40  request.sensor_metadata().sensor_id(),
41  sensor::FromProto(request.fixed_frame_pose_data())));
42 
43  // The 'BlockingQueue' in 'LocalTrajectoryUploader' is thread-safe.
44  // Therefore it suffices to get an unsynchronized reference to the
45  // 'MapBuilderContext'.
46  if (GetUnsynchronizedContext<MapBuilderContextInterface>()
47  ->local_trajectory_uploader()) {
48  auto sensor_data = common::make_unique<proto::SensorData>();
49  *sensor_data->mutable_sensor_metadata() = request.sensor_metadata();
50  *sensor_data->mutable_fixed_frame_pose_data() =
51  request.fixed_frame_pose_data();
52  GetUnsynchronizedContext<MapBuilderContextInterface>()
53  ->local_trajectory_uploader()
54  ->EnqueueSensorData(std::move(sensor_data));
55  }
56 }
57 
58 void AddFixedFramePoseDataHandler::OnReadsDone() {
59  Send(common::make_unique<google::protobuf::Empty>());
60 }
61 
62 } // namespace handlers
63 } // namespace cloud
64 } // 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