6#ifndef ALTINTEGRATION_VALUE_SORTED_MAP___
7#define ALTINTEGRATION_VALUE_SORTED_MAP___
12#include <unordered_map>
19template <
typename K,
typename V>
22 using pair_t = std::pair<const K, V>;
23 using cmp_t = std::function<bool(
const V&,
const V&)>;
24 using set_t =
typename std::multiset<V, cmp_t>;
25 using map_t = std::unordered_map<K, V>;
32 using iterator_t =
typename map_t::iterator;
33 using const_iterator_t =
typename map_t::const_iterator;
35 ~ValueSortedMap() =
default;
37 explicit ValueSortedMap(cmp_t comparator) : set_(comparator) {}
39 iterator_t find(
const K& key) {
return map_.find(key); }
40 const_iterator_t find(
const K& key)
const {
return map_.find(key); }
42 auto begin() -> iterator_t {
return map_.begin(); }
43 auto end() -> iterator_t {
return map_.end(); }
44 auto begin() const -> const_iterator_t {
return map_.begin(); }
45 auto end() const -> const_iterator_t {
return map_.end(); }
47 const set_t& getSortedValues()
const {
return set_; }
50 operator const map_t&()
const {
return map_; }
52 void erase(
const K& key) {
53 auto map_it = map_.find(key);
54 if (map_it == map_.end()) {
58 auto set_it = set_.find(map_it->second);
59 VBK_ASSERT(set_it != set_.end());
63 VBK_ASSERT_MSG(map_.size() == set_.size(),
64 "size of map and set are different map: %d, set: %d",
69 iterator_t erase(
const iterator_t& it) {
70 set_.erase(set_.find(it->second));
71 auto res = map_.erase(it);
73 VBK_ASSERT_MSG(map_.size() == set_.size(),
74 "size of map and set are different map: %d, set: %d",
81 void insert(
const K& key,
const V& value) {
82 pair_t pair(key, value);
84 auto map_it = map_.find(key);
85 if (map_it != map_.end()) {
87 auto set_it = set_.find(map_it->second);
88 VBK_ASSERT(set_it != set_.end());
91 map_it->second = value;
92 set_.insert(map_it->second);
94 auto res = map_.insert(std::move(pair));
95 VBK_ASSERT(res.second);
97 set_.insert(it->second);
100 VBK_ASSERT_MSG(map_.size() == set_.size(),
101 "size of map and set are different map: %d, set: %d",
106 size_t size()
const {
107 VBK_ASSERT_MSG(map_.size() == set_.size(),
108 "size of map and set are different map: %d, set: %d",
116 VBK_ASSERT_MSG(map_.size() == set_.size(),
117 "size of map and set are different map: %d, set: %d",
125 VBK_ASSERT_MSG(map_.size() == set_.size(),
126 "size of map and set are different map: %d, set: %d",