Index: media/blink/lru.h |
diff --git a/media/blink/lru.h b/media/blink/lru.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..9a16fe68387607f5128d388ad906b9a43a78c592 |
--- /dev/null |
+++ b/media/blink/lru.h |
@@ -0,0 +1,84 @@ |
+// Copyright 2015 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#ifndef MEDIA_BLINK_LRU_H_ |
+#define MEDIA_BLINK_LRU_H_ |
+ |
+#include <list> |
+ |
+#include "base/containers/hash_tables.h" |
+ |
+namespace media { |
+ |
+// Simple LRU (least recently used) class. |
+// Keeps track of a set of data and lets you get the least recently used |
+// (oldest) element at any time. All operations are O(1). Elements are expected |
+// to be hashable and unique. |
+// Example: |
+// LRU<int> lru; |
+// lru.Insert(1); |
+// lru.Insert(2); |
+// lru.Insert(3); |
+// lru.Use(1); |
+// cout << lru.Pop(); // this will print "3" |
xhwang
2015/11/10 19:55:13
should this print 2?
hubbe
2015/11/10 21:50:01
Yes, duh, fixed. :)
|
+template <typename T> |
+class LRU { |
+ public: |
+ // Adds |x| to LRU. |
+ // |x| must not already be in the LRU. |
+ void Insert(const T& x) { |
xhwang
2015/11/10 19:55:13
Add comment why people want to use this instead of
hubbe
2015/11/10 21:50:01
Done.
|
+ DCHECK(!Contains(x)); |
+ lru_.push_front(x); |
+ pos_[x] = lru_.begin(); |
+ } |
+ |
+ // Removes |x| from LRU. |
+ // |x| must be in the LRU. |
+ void Remove(const T& x) { |
+ DCHECK(Contains(x)); |
+ lru_.erase(pos_[x]); |
+ pos_.erase(x); |
+ } |
+ |
+ // Moves |x| to front of LRU. (most recently used) |
+ // If |x| is not in LRU, it is added. |
+ void Use(const T& x) { |
+ if (Contains(x)) |
+ Remove(x); |
+ Insert(x); |
+ } |
+ |
+ bool Empty() const { return lru_.empty(); } |
+ |
+ // Returns the Least Recently Used T and removes it. |
+ T Pop() { |
+ DCHECK(!Empty()); |
+ T ret = lru_.back(); |
+ lru_.pop_back(); |
+ pos_.erase(ret); |
+ return ret; |
+ } |
+ |
+ // Returns the Least Recently Used T _without_ removing it. |
+ T Peek() const { |
+ DCHECK(!Empty()); |
+ return lru_.back(); |
+ } |
+ |
+ bool Contains(const T& x) const { return pos_.find(x) != pos_.end(); } |
+ |
+ size_t Size() const { return pos_.size(); } |
+ |
+ private: |
+ // Linear list of elements, most recently used first. |
+ std::list<T> lru_; |
+ |
+ // Maps element values to positions in the list so that we |
+ // can quickly remove elements. |
+ base::hash_map<T, typename std::list<T>::iterator> pos_; |
xhwang
2015/11/10 20:05:26
Does it make sense to make this DISALLOW_COPY_AND_
hubbe
2015/11/10 21:50:01
Ok, needs to friend the test class then. (As per d
|
+}; |
+ |
+} // namespace media |
+ |
+#endif // MEDIA_BLINK_LRU_H |