Elliott Hughes | 7484741 | 2012-06-20 18:10:21 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2012 The Android Open Source Project |
| 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 | |
Brian Carlstrom | fc0e321 | 2013-07-17 14:40:12 -0700 | [diff] [blame] | 17 | #ifndef ART_RUNTIME_SAFE_MAP_H_ |
| 18 | #define ART_RUNTIME_SAFE_MAP_H_ |
Elliott Hughes | a0e1806 | 2012-04-13 15:59:59 -0700 | [diff] [blame] | 19 | |
| 20 | #include <map> |
Mathieu Chartier | 0a9dc05 | 2013-07-25 11:01:28 -0700 | [diff] [blame] | 21 | #include <memory> |
Vladimir Marko | cac5a7e | 2016-02-22 10:39:50 +0000 | [diff] [blame] | 22 | #include <type_traits> |
Elliott Hughes | a0e1806 | 2012-04-13 15:59:59 -0700 | [diff] [blame] | 23 | |
Mathieu Chartier | bad0267 | 2014-08-25 13:08:22 -0700 | [diff] [blame] | 24 | #include "base/allocator.h" |
Elliott Hughes | 07ed66b | 2012-12-12 18:34:25 -0800 | [diff] [blame] | 25 | #include "base/logging.h" |
Elliott Hughes | a0e1806 | 2012-04-13 15:59:59 -0700 | [diff] [blame] | 26 | |
| 27 | namespace art { |
| 28 | |
| 29 | // Equivalent to std::map, but without operator[] and its bug-prone semantics (in particular, |
| 30 | // the implicit insertion of a default-constructed value on failed lookups). |
Mathieu Chartier | 0a9dc05 | 2013-07-25 11:01:28 -0700 | [diff] [blame] | 31 | template <typename K, typename V, typename Comparator = std::less<K>, |
Mathieu Chartier | bad0267 | 2014-08-25 13:08:22 -0700 | [diff] [blame] | 32 | typename Allocator = TrackingAllocator<std::pair<const K, V>, kAllocatorTagSafeMap>> |
Elliott Hughes | a0e1806 | 2012-04-13 15:59:59 -0700 | [diff] [blame] | 33 | class SafeMap { |
| 34 | private: |
Mathieu Chartier | 0a9dc05 | 2013-07-25 11:01:28 -0700 | [diff] [blame] | 35 | typedef SafeMap<K, V, Comparator, Allocator> Self; |
Elliott Hughes | a0e1806 | 2012-04-13 15:59:59 -0700 | [diff] [blame] | 36 | |
| 37 | public: |
Vladimir Marko | 83cc7ae | 2014-02-12 18:02:05 +0000 | [diff] [blame] | 38 | typedef typename ::std::map<K, V, Comparator, Allocator>::key_compare key_compare; |
Vladimir Marko | bd72fc1 | 2014-07-09 16:06:40 +0100 | [diff] [blame] | 39 | typedef typename ::std::map<K, V, Comparator, Allocator>::value_compare value_compare; |
Vladimir Marko | 83cc7ae | 2014-02-12 18:02:05 +0000 | [diff] [blame] | 40 | typedef typename ::std::map<K, V, Comparator, Allocator>::allocator_type allocator_type; |
| 41 | typedef typename ::std::map<K, V, Comparator, Allocator>::iterator iterator; |
| 42 | typedef typename ::std::map<K, V, Comparator, Allocator>::const_iterator const_iterator; |
| 43 | typedef typename ::std::map<K, V, Comparator, Allocator>::size_type size_type; |
Vladimir Marko | bd72fc1 | 2014-07-09 16:06:40 +0100 | [diff] [blame] | 44 | typedef typename ::std::map<K, V, Comparator, Allocator>::key_type key_type; |
Vladimir Marko | 83cc7ae | 2014-02-12 18:02:05 +0000 | [diff] [blame] | 45 | typedef typename ::std::map<K, V, Comparator, Allocator>::value_type value_type; |
| 46 | |
| 47 | SafeMap() = default; |
Andreas Gampe | 758a801 | 2015-04-03 21:28:42 -0700 | [diff] [blame] | 48 | SafeMap(const SafeMap&) = default; |
Mathieu Chartier | ea650f3 | 2017-05-24 12:04:13 -0700 | [diff] [blame] | 49 | SafeMap(SafeMap&&) = default; |
Vladimir Marko | 83cc7ae | 2014-02-12 18:02:05 +0000 | [diff] [blame] | 50 | explicit SafeMap(const key_compare& cmp, const allocator_type& allocator = allocator_type()) |
| 51 | : map_(cmp, allocator) { |
| 52 | } |
Elliott Hughes | a0e1806 | 2012-04-13 15:59:59 -0700 | [diff] [blame] | 53 | |
Elliott Hughes | 7484741 | 2012-06-20 18:10:21 -0700 | [diff] [blame] | 54 | Self& operator=(const Self& rhs) { |
| 55 | map_ = rhs.map_; |
| 56 | return *this; |
| 57 | } |
Elliott Hughes | a0e1806 | 2012-04-13 15:59:59 -0700 | [diff] [blame] | 58 | |
Vladimir Marko | b19955d | 2014-07-29 12:04:10 +0100 | [diff] [blame] | 59 | allocator_type get_allocator() const { return map_.get_allocator(); } |
Vladimir Marko | bd72fc1 | 2014-07-09 16:06:40 +0100 | [diff] [blame] | 60 | key_compare key_comp() const { return map_.key_comp(); } |
| 61 | value_compare value_comp() const { return map_.value_comp(); } |
| 62 | |
Elliott Hughes | a0e1806 | 2012-04-13 15:59:59 -0700 | [diff] [blame] | 63 | iterator begin() { return map_.begin(); } |
| 64 | const_iterator begin() const { return map_.begin(); } |
| 65 | iterator end() { return map_.end(); } |
| 66 | const_iterator end() const { return map_.end(); } |
| 67 | |
| 68 | bool empty() const { return map_.empty(); } |
| 69 | size_type size() const { return map_.size(); } |
| 70 | |
Vladimir Marko | bd72fc1 | 2014-07-09 16:06:40 +0100 | [diff] [blame] | 71 | void swap(Self& other) { map_.swap(other.map_); } |
Ian Rogers | 08f753d | 2012-08-24 14:35:25 -0700 | [diff] [blame] | 72 | void clear() { map_.clear(); } |
Vladimir Marko | bd72fc1 | 2014-07-09 16:06:40 +0100 | [diff] [blame] | 73 | iterator erase(iterator it) { return map_.erase(it); } |
Elliott Hughes | a0e1806 | 2012-04-13 15:59:59 -0700 | [diff] [blame] | 74 | size_type erase(const K& k) { return map_.erase(k); } |
| 75 | |
| 76 | iterator find(const K& k) { return map_.find(k); } |
| 77 | const_iterator find(const K& k) const { return map_.find(k); } |
| 78 | |
Vladimir Marko | 2ac01fc | 2014-05-22 12:09:08 +0100 | [diff] [blame] | 79 | iterator lower_bound(const K& k) { return map_.lower_bound(k); } |
| 80 | const_iterator lower_bound(const K& k) const { return map_.lower_bound(k); } |
| 81 | |
Elliott Hughes | a0e1806 | 2012-04-13 15:59:59 -0700 | [diff] [blame] | 82 | size_type count(const K& k) const { return map_.count(k); } |
| 83 | |
| 84 | // Note that unlike std::map's operator[], this doesn't return a reference to the value. |
TDYa127 | b2eb5c1 | 2012-05-24 15:52:10 -0700 | [diff] [blame] | 85 | V Get(const K& k) const { |
| 86 | const_iterator it = map_.find(k); |
Elliott Hughes | a0e1806 | 2012-04-13 15:59:59 -0700 | [diff] [blame] | 87 | DCHECK(it != map_.end()); |
| 88 | return it->second; |
| 89 | } |
| 90 | |
| 91 | // Used to insert a new mapping. |
Vladimir Marko | bd72fc1 | 2014-07-09 16:06:40 +0100 | [diff] [blame] | 92 | iterator Put(const K& k, const V& v) { |
| 93 | std::pair<iterator, bool> result = map_.emplace(k, v); |
Brian Carlstrom | 7934ac2 | 2013-07-26 10:54:15 -0700 | [diff] [blame] | 94 | DCHECK(result.second); // Check we didn't accidentally overwrite an existing value. |
Vladimir Marko | bd72fc1 | 2014-07-09 16:06:40 +0100 | [diff] [blame] | 95 | return result.first; |
| 96 | } |
Vladimir Marko | 13c7449 | 2015-11-24 17:06:32 +0000 | [diff] [blame] | 97 | iterator Put(const K& k, V&& v) { |
Vladimir Marko | 7856835 | 2015-09-21 12:00:16 +0100 | [diff] [blame] | 98 | std::pair<iterator, bool> result = map_.emplace(k, std::move(v)); |
| 99 | DCHECK(result.second); // Check we didn't accidentally overwrite an existing value. |
| 100 | return result.first; |
| 101 | } |
Vladimir Marko | bd72fc1 | 2014-07-09 16:06:40 +0100 | [diff] [blame] | 102 | |
| 103 | // Used to insert a new mapping at a known position for better performance. |
Vladimir Marko | 944da60 | 2016-02-19 12:27:55 +0000 | [diff] [blame] | 104 | iterator PutBefore(const_iterator pos, const K& k, const V& v) { |
Vladimir Marko | bd72fc1 | 2014-07-09 16:06:40 +0100 | [diff] [blame] | 105 | // Check that we're using the correct position and the key is not in the map. |
| 106 | DCHECK(pos == map_.end() || map_.key_comp()(k, pos->first)); |
Vladimir Marko | 944da60 | 2016-02-19 12:27:55 +0000 | [diff] [blame] | 107 | DCHECK(pos == map_.begin() || map_.key_comp()((--const_iterator(pos))->first, k)); |
Vladimir Marko | bd72fc1 | 2014-07-09 16:06:40 +0100 | [diff] [blame] | 108 | return map_.emplace_hint(pos, k, v); |
Elliott Hughes | a0e1806 | 2012-04-13 15:59:59 -0700 | [diff] [blame] | 109 | } |
Vladimir Marko | 944da60 | 2016-02-19 12:27:55 +0000 | [diff] [blame] | 110 | iterator PutBefore(const_iterator pos, const K& k, V&& v) { |
Vladimir Marko | 7856835 | 2015-09-21 12:00:16 +0100 | [diff] [blame] | 111 | // Check that we're using the correct position and the key is not in the map. |
| 112 | DCHECK(pos == map_.end() || map_.key_comp()(k, pos->first)); |
Vladimir Marko | 944da60 | 2016-02-19 12:27:55 +0000 | [diff] [blame] | 113 | DCHECK(pos == map_.begin() || map_.key_comp()((--const_iterator(pos))->first, k)); |
Vladimir Marko | 7856835 | 2015-09-21 12:00:16 +0100 | [diff] [blame] | 114 | return map_.emplace_hint(pos, k, std::move(v)); |
| 115 | } |
Elliott Hughes | a0e1806 | 2012-04-13 15:59:59 -0700 | [diff] [blame] | 116 | |
| 117 | // Used to insert a new mapping or overwrite an existing mapping. Note that if the value type |
| 118 | // of this container is a pointer, any overwritten pointer will be lost and if this container |
Vladimir Marko | 7856835 | 2015-09-21 12:00:16 +0100 | [diff] [blame] | 119 | // was the owner, you have a leak. Returns iterator pointing to the new or overwritten entry. |
Jeff Hao | 4686c52 | 2015-09-18 14:44:32 -0700 | [diff] [blame] | 120 | iterator Overwrite(const K& k, const V& v) { |
buzbee | d1643e4 | 2012-09-05 14:06:51 -0700 | [diff] [blame] | 121 | std::pair<iterator, bool> result = map_.insert(std::make_pair(k, v)); |
| 122 | if (!result.second) { |
| 123 | // Already there - update the value for the existing key |
| 124 | result.first->second = v; |
| 125 | } |
Jeff Hao | 4686c52 | 2015-09-18 14:44:32 -0700 | [diff] [blame] | 126 | return result.first; |
Elliott Hughes | a0e1806 | 2012-04-13 15:59:59 -0700 | [diff] [blame] | 127 | } |
| 128 | |
Vladimir Marko | cac5a7e | 2016-02-22 10:39:50 +0000 | [diff] [blame] | 129 | template <typename CreateFn> |
| 130 | V GetOrCreate(const K& k, CreateFn create) { |
| 131 | static_assert(std::is_same<V, typename std::result_of<CreateFn()>::type>::value, |
| 132 | "Argument `create` should return a value of type V."); |
| 133 | auto lb = lower_bound(k); |
| 134 | if (lb != end() && !key_comp()(k, lb->first)) { |
| 135 | return lb->second; |
| 136 | } |
| 137 | auto it = PutBefore(lb, k, create()); |
| 138 | return it->second; |
| 139 | } |
| 140 | |
Calin Juravle | 940eb0c | 2017-01-30 19:30:44 -0800 | [diff] [blame] | 141 | iterator FindOrAdd(const K& k, const V& v) { |
| 142 | iterator it = find(k); |
| 143 | return it == end() ? Put(k, v) : it; |
| 144 | } |
| 145 | |
| 146 | iterator FindOrAdd(const K& k) { |
| 147 | iterator it = find(k); |
| 148 | return it == end() ? Put(k, V()) : it; |
| 149 | } |
| 150 | |
Elliott Hughes | a0e1806 | 2012-04-13 15:59:59 -0700 | [diff] [blame] | 151 | bool Equals(const Self& rhs) const { |
| 152 | return map_ == rhs.map_; |
| 153 | } |
| 154 | |
Mathieu Chartier | ea650f3 | 2017-05-24 12:04:13 -0700 | [diff] [blame] | 155 | template <class... Args> |
| 156 | std::pair<iterator, bool> emplace(Args&&... args) { |
| 157 | return map_.emplace(std::forward<Args>(args)...); |
| 158 | } |
| 159 | |
Elliott Hughes | a0e1806 | 2012-04-13 15:59:59 -0700 | [diff] [blame] | 160 | private: |
Mathieu Chartier | 0a9dc05 | 2013-07-25 11:01:28 -0700 | [diff] [blame] | 161 | ::std::map<K, V, Comparator, Allocator> map_; |
Elliott Hughes | a0e1806 | 2012-04-13 15:59:59 -0700 | [diff] [blame] | 162 | }; |
| 163 | |
Vladimir Marko | bd72fc1 | 2014-07-09 16:06:40 +0100 | [diff] [blame] | 164 | template <typename K, typename V, typename Comparator, typename Allocator> |
| 165 | bool operator==(const SafeMap<K, V, Comparator, Allocator>& lhs, |
| 166 | const SafeMap<K, V, Comparator, Allocator>& rhs) { |
Elliott Hughes | a0e1806 | 2012-04-13 15:59:59 -0700 | [diff] [blame] | 167 | return lhs.Equals(rhs); |
| 168 | } |
| 169 | |
Vladimir Marko | bd72fc1 | 2014-07-09 16:06:40 +0100 | [diff] [blame] | 170 | template <typename K, typename V, typename Comparator, typename Allocator> |
| 171 | bool operator!=(const SafeMap<K, V, Comparator, Allocator>& lhs, |
| 172 | const SafeMap<K, V, Comparator, Allocator>& rhs) { |
Elliott Hughes | a0e1806 | 2012-04-13 15:59:59 -0700 | [diff] [blame] | 173 | return !(lhs == rhs); |
| 174 | } |
| 175 | |
Mathieu Chartier | bad0267 | 2014-08-25 13:08:22 -0700 | [diff] [blame] | 176 | template<class Key, class T, AllocatorTag kTag, class Compare = std::less<Key>> |
| 177 | class AllocationTrackingSafeMap : public SafeMap< |
Dan Albert | afeb309 | 2016-01-12 14:23:14 -0800 | [diff] [blame] | 178 | Key, T, Compare, TrackingAllocator<std::pair<const Key, T>, kTag>> { |
Mathieu Chartier | bad0267 | 2014-08-25 13:08:22 -0700 | [diff] [blame] | 179 | }; |
| 180 | |
Elliott Hughes | a0e1806 | 2012-04-13 15:59:59 -0700 | [diff] [blame] | 181 | } // namespace art |
| 182 | |
Brian Carlstrom | fc0e321 | 2013-07-17 14:40:12 -0700 | [diff] [blame] | 183 | #endif // ART_RUNTIME_SAFE_MAP_H_ |