95 lines
2.9 KiB
C++
95 lines
2.9 KiB
C++
/*
|
|
* Copyright 2016 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_SENSOR_ORDERED_MULTI_QUEUE_H_
|
|
#define CARTOGRAPHER_SENSOR_ORDERED_MULTI_QUEUE_H_
|
|
|
|
#include <functional>
|
|
#include <map>
|
|
#include <memory>
|
|
#include <string>
|
|
#include <tuple>
|
|
|
|
#include "cartographer/common/blocking_queue.h"
|
|
#include "cartographer/common/port.h"
|
|
#include "cartographer/common/time.h"
|
|
#include "cartographer/sensor/data.h"
|
|
|
|
namespace cartographer {
|
|
namespace sensor {
|
|
|
|
struct QueueKey {
|
|
int trajectory_id;
|
|
string sensor_id;
|
|
|
|
bool operator<(const QueueKey& other) const {
|
|
return std::forward_as_tuple(trajectory_id, sensor_id) <
|
|
std::forward_as_tuple(other.trajectory_id, other.sensor_id);
|
|
}
|
|
};
|
|
|
|
// Maintains multiple queues of sorted sensor data and dispatches it in merge
|
|
// sorted order. It will wait to see at least one value for each unfinished
|
|
// queue before dispatching the next time ordered value across all queues.
|
|
//
|
|
// This class is thread-compatible.
|
|
class OrderedMultiQueue {
|
|
public:
|
|
using Callback = std::function<void(std::unique_ptr<Data>)>;
|
|
|
|
OrderedMultiQueue();
|
|
~OrderedMultiQueue();
|
|
|
|
// Adds a new queue with key 'queue_key' which must not already exist.
|
|
// 'callback' will be called whenever data from this queue can be dispatched.
|
|
void AddQueue(const QueueKey& queue_key, Callback callback);
|
|
|
|
// Marks a queue as finished, i.e. no further data can be added. The queue
|
|
// will be removed once the last piece of data from it has been dispatched.
|
|
void MarkQueueAsFinished(const QueueKey& queue_key);
|
|
|
|
// Adds 'data' to a queue with the given 'queue_key'. Data must be added
|
|
// sorted per queue.
|
|
void Add(const QueueKey& queue_key, std::unique_ptr<Data> data);
|
|
|
|
// Dispatches all remaining values in sorted order and removes the underlying
|
|
// queues.
|
|
void Flush();
|
|
|
|
private:
|
|
struct Queue {
|
|
common::BlockingQueue<std::unique_ptr<Data>> queue;
|
|
Callback callback;
|
|
bool finished = false;
|
|
};
|
|
|
|
void Dispatch();
|
|
void CannotMakeProgress();
|
|
string EmptyQueuesDebugString();
|
|
common::Time GetCommonStartTime(int trajectory_id);
|
|
|
|
// Used to verify that values are dispatched in sorted order.
|
|
common::Time last_dispatched_time_ = common::Time::min();
|
|
|
|
std::map<int, common::Time> common_start_time_per_trajectory_;
|
|
std::map<QueueKey, Queue> queues_;
|
|
};
|
|
|
|
} // namespace sensor
|
|
} // namespace cartographer
|
|
|
|
#endif // CARTOGRAPHER_SENSOR_ORDERED_MULTI_QUEUE_H_
|