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 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291
|
// Copyright 2015 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef THIRD_PARTY_BLINK_RENDERER_PLATFORM_MEDIA_INTERVAL_MAP_H_
#define THIRD_PARTY_BLINK_RENDERER_PLATFORM_MEDIA_INTERVAL_MAP_H_
#include <algorithm>
#include <limits>
#include <map>
#include "base/check.h"
#include "base/memory/raw_ptr.h"
#include "third_party/blink/renderer/platform/allow_discouraged_type.h"
namespace blink {
// An IntervalMap<KeyType, ValueType> maps every value of KeyType to
// a ValueType, and incrementing, decrementing and setting ranges of values
// has been optimized. The default state is to map all values in
// KeyType to ValueType(). (Which is usually zero.)
//
// Set/Increment operations should generally take
// O(log(N)) + O(M) time where N is the number of intervals in the map and
// M is the number of modified intervals.
//
// Internally, IntervalMap<> uses an std::map, where the beginning of each
// interval is stored along with the value for that interval. Adjacent intervals
// which have the same value are automatically merged. For instance, if you did:
//
// IntervalMap<int, int> tmp;
// tmp.IncrementInterval(2, 5, 2);
// tmp.IncrementInterval(4, 6, 1);
//
// Then:
// tmp[0] = 0
// tmp[1] = 0
// tmp[2] = 2
// tmp[3] = 2
// tmp[4] = 3
// tmp[5] = 1
// tmp[6] = 0
//
// If you iterate over tmp, you get the following intervals:
// -maxint .. 2 => 0
// 2 .. 4 => 2
// 4 .. 5 => 3
// 5 .. 6 => 1
// 6 .. maxint => 0
//
// Internally, this would be stored in a map as:
// -maxint:0, 2:2, 4:3, 5:1, 6:0
//
// TODO(hubbe): Consider consolidating with media::Ranges.
// Simple interval class.
// Interval ends are always non-inclusive.
// Please note that end <= begin is a valid (but empty) interval.
template <typename T>
struct Interval {
public:
Interval(const T& begin, const T& end) : begin(begin), end(end) {}
// May return empty intervals (begin >= end).
Interval Intersect(const Interval& other) const {
return Interval(std::max(begin, other.begin), std::min(end, other.end));
}
bool Empty() const { return begin >= end; }
T begin;
T end;
};
// The IntervalMapConstIterator points to an interval in an
// IntervalMap where all values are the same. Calling ++/--
// goes to the next/previous interval, which is guaranteed to
// have values different from the current interval.
template <typename KeyType,
typename ValueType,
class Compare = std::less<KeyType>,
class NumericLimits = std::numeric_limits<KeyType>>
class IntervalMapConstIterator {
public:
typedef std::map<KeyType, ValueType, Compare> MapType;
IntervalMapConstIterator() {}
IntervalMapConstIterator(const MapType* map,
typename MapType::const_iterator iter)
: map_(map), iter_(iter) {}
bool operator==(const IntervalMapConstIterator& other) const {
return iter_ == other.iter_;
}
bool operator!=(const IntervalMapConstIterator& other) const {
return iter_ != other.iter_;
}
// Returns the beginning of the current interval.
KeyType interval_begin() const {
CHECK(iter_ != map_->end());
return iter_->first;
}
// Returns the end of the current interval, non-inclusive.
KeyType interval_end() const {
CHECK(iter_ != map_->end());
typename MapType::const_iterator next = iter_;
++next;
if (next == map_->end()) {
return NumericLimits::max();
} else {
return next->first;
}
}
// Returns the current interval.
Interval<KeyType> interval() const {
return Interval<KeyType>(interval_begin(), interval_end());
}
// Returns the value associated with the current interval.
ValueType value() const {
CHECK(iter_ != map_->end());
return iter_->second;
}
// Needed to make the following construct work:
// for (const auto& interval_value_pair : interval_map)
std::pair<Interval<KeyType>, ValueType> operator*() const {
return std::make_pair(interval(), value());
}
// Go to the next interval.
// The beginning of the next interval always matches the end of the current
// interval. (But should always have a different value.)
// Not allowed if we're already at map_->end().
void operator++() {
CHECK(iter_ != map_->end());
++iter_;
}
// Go to the previous interval.
// The end of the previous interval always matches the beginning of the
// current interval. (But should always have a different value.)
// Not allowed if we're already at map_->begin().
void operator--() {
DCHECK(iter_ != map_->begin());
--iter_;
}
private:
raw_ptr<const MapType> map_;
// Pointer to the entry in the IntervalMap that specifies the
// beginning of the current interval.
typename MapType::const_iterator iter_;
};
template <typename KeyType,
typename ValueType,
class Compare = std::less<KeyType>,
class NumericLimits = std::numeric_limits<KeyType>>
class IntervalMap {
public:
typedef std::map<KeyType, ValueType, Compare> MapType;
typedef IntervalMapConstIterator<KeyType, ValueType, Compare, NumericLimits>
const_iterator;
IntervalMap() {
// Adding an explicit entry for the default interval is not strictly needed,
// but simplifies the code a lot.
map_[NumericLimits::min()] = ValueType();
}
// Returns the value at a particular point.
// Defaults to ValueType().
ValueType operator[](const KeyType& k) const {
typename MapType::const_iterator i = map_.upper_bound(k);
DCHECK(i != map_.begin());
--i;
return i->second;
}
// Increase [from..to) by |how_much|.
void IncrementInterval(KeyType from, KeyType to, ValueType how_much) {
if (to <= from || how_much == 0)
return;
typename MapType::iterator a = MakeEntry(from);
typename MapType::iterator b = MakeEntry(to);
for (typename MapType::iterator i = a; i != b; ++i) {
i->second += how_much;
}
RemoveDuplicates(a);
// b may be invalid
RemoveDuplicates(map_.lower_bound(to));
}
// Set [from..to) to |how_much|.
void SetInterval(KeyType from, KeyType to, ValueType how_much) {
if (to <= from)
return;
typename MapType::iterator a = MakeEntry(from);
typename MapType::iterator b = MakeEntry(to);
a->second = how_much;
while (true) {
typename MapType::iterator c = a;
++c;
if (c == b) {
break;
} else {
map_.erase(c);
}
}
RemoveDuplicates(a);
// b may be invalid
RemoveDuplicates(map_.lower_bound(to));
}
// Returns an iterator to the first interval.
// Note, there is always at least one interval.
const_iterator begin() const { return const_iterator(&map(), map_.begin()); }
// Returns an end marker iterator.
const_iterator end() const { return const_iterator(&map(), map_.end()); }
// Returns an iterator to the interval containing |k|.
// Always returns a valid iterator.
const_iterator find(KeyType k) const {
typename MapType::const_iterator iter = map_.upper_bound(k);
DCHECK(iter != map_.begin());
--iter;
return const_iterator(&map(), iter);
}
bool empty() const { return map().size() == 1; }
void clear() {
map_.clear();
map_[NumericLimits::min()] = ValueType();
}
private:
const MapType& map() const { return map_; }
// Make an entry in map_ with the key |k| and return it's iterator.
// If such an entry already exists, just re-use it.
// If a new entry is created, it's value will be set to the same
// as the preceeding entry, or ValueType() if no preceeding entry exists.
// After calling this function, we'll need to call RemoveDuplicates()
// to clean up any duplicates that we made.
typename MapType::iterator MakeEntry(KeyType k) {
typename MapType::value_type tmp(k, 0);
std::pair<typename MapType::iterator, bool> insert_result;
insert_result = map_.insert(tmp);
if (insert_result.second) {
if (insert_result.first != map_.begin()) {
typename MapType::iterator i = insert_result.first;
--i;
insert_result.first->second = i->second;
}
}
return insert_result.first;
}
// Remove duplicates before and after |i|.
void RemoveDuplicates(typename MapType::iterator i) {
if (i == map_.end())
return;
typename MapType::iterator first = i;
typename MapType::iterator second = i;
if (i != map_.begin()) {
--first;
if (first->second == second->second) {
map_.erase(second);
second = first;
} else {
first = second;
}
}
++second;
if (second != map_.end() && first->second == second->second) {
map_.erase(second);
}
}
MapType map_ ALLOW_DISCOURAGED_TYPE("HashMap lacks key sorting.");
};
} // namespace blink
#endif // THIRD_PARTY_BLINK_RENDERER_PLATFORM_MEDIA_INTERVAL_MAP_H_
|