indexed_queue.h 2.0 KB
Newer Older
D
Dong Li 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
/******************************************************************************
 * Copyright 2017 The Apollo Authors. All Rights Reserved.
 *
 * 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.
 *****************************************************************************/

/**
 * @file:
 **/

#ifndef MODULES_PLANNING_COMMON_INDEXED_QUEUE_H_
#define MODULES_PLANNING_COMMON_INDEXED_QUEUE_H_

#include <memory>
#include <queue>
#include <unordered_map>

namespace apollo {
namespace planning {

template <typename I, typename T>
class IndexedQueue {
 public:
  IndexedQueue(std::size_t max_queue_size) : max_queue_size_(max_queue_size){};
  T *Find(const I id) const {
    auto iter = map_.find(id);
    if (iter == map_.end()) {
      return nullptr;
    } else {
      return iter->second.get();
    }
  }

  const T *Latest() const {
    if (queue_.empty()) {
      return nullptr;
    }
    return Find(queue_.back().first);
  }

  bool Add(const I id, std::unique_ptr<T> ptr) {
    if (Find(id)) {
      return false;
    }
    if (!queue_.empty() && queue_.size() == max_queue_size_) {
D
Dong Li 已提交
56
      const auto &front = queue_.front();
D
Dong Li 已提交
57
      map_.erase(front.first);
D
Dong Li 已提交
58
      queue_.pop();
D
Dong Li 已提交
59
    }
D
Dong Li 已提交
60
    queue_.push(std::make_pair(id, ptr.get()));
D
Dong Li 已提交
61 62 63 64 65 66 67 68 69 70 71 72 73 74
    map_[id] = std::move(ptr);
    return true;
  }

 public:
  std::size_t max_queue_size_ = 0;
  std::queue<std::pair<I, const T *>> queue_;
  std::unordered_map<I, std::unique_ptr<T>> map_;
};

}  // namespace planning
}  // namespace apollo

#endif  // MODULES_PLANNING_COMMON_DATA_CENTER_H_