/* * 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. */ #ifndef CARTOGRAPHER_GRPC_MAP_BUILDER_CONTEXT_INTERFACE_H #define CARTOGRAPHER_GRPC_MAP_BUILDER_CONTEXT_INTERFACE_H #include "cartographer/common/blocking_queue.h" #include "cartographer/mapping/map_builder_interface.h" #include "cartographer/sensor/data.h" #include "cartographer/sensor/range_data.h" #include "cartographer/transform/rigid_transform.h" #include "cartographer_grpc/framework/execution_context.h" #include "cartographer_grpc/local_trajectory_uploader.h" namespace cartographer_grpc { class MapBuilderServer; class MapBuilderContextInterface : public framework::ExecutionContext { public: struct LocalSlamResult { int trajectory_id; cartographer::common::Time time; cartographer::transform::Rigid3d local_pose; std::shared_ptr range_data; std::unique_ptr insertion_result; }; // Calling with 'nullptr' signals subscribers that the subscription has ended. using LocalSlamSubscriptionCallback = std::function)>; struct Data { int trajectory_id; std::unique_ptr data; }; struct SubscriptionId { const int trajectory_id; const int subscription_index; }; MapBuilderContextInterface() = default; ~MapBuilderContextInterface() = default; MapBuilderContextInterface(const MapBuilderContextInterface&) = delete; MapBuilderContextInterface& operator=(const MapBuilderContextInterface&) = delete; virtual cartographer::mapping::MapBuilderInterface& map_builder() = 0; virtual cartographer::common::BlockingQueue>& sensor_data_queue() = 0; virtual cartographer::mapping::TrajectoryBuilderInterface:: LocalSlamResultCallback GetLocalSlamResultCallbackForSubscriptions() = 0; virtual void AddSensorDataToTrajectory(const Data& sensor_data) = 0; virtual SubscriptionId SubscribeLocalSlamResults( int trajectory_id, LocalSlamSubscriptionCallback callback) = 0; virtual void UnsubscribeLocalSlamResults( const SubscriptionId& subscription_id) = 0; virtual void NotifyFinishTrajectory(int trajectory_id) = 0; virtual std::unique_ptr ProcessLocalSlamResultData( const std::string& sensor_id, cartographer::common::Time time, const cartographer::mapping::proto::LocalSlamResultData& proto) = 0; virtual LocalTrajectoryUploader* local_trajectory_uploader() = 0; virtual void EnqueueSensorData( int trajectory_id, std::unique_ptr data) = 0; virtual void EnqueueLocalSlamResultData( int trajectory_id, const std::string& sensor_id, std::unique_ptr local_slam_result_data) = 0; }; } // namespace cartographer_grpc #endif // CARTOGRAPHER_GRPC_MAP_BUILDER_CONTEXT_INTERFACE_H