Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(221)

Unified Diff: third_party/WebKit/Source/modules/indexeddb/IDBKey.cpp

Issue 2635403002: IndexedDB: Replace O(n^2) algorithm computing multientry index keys (Closed)
Patch Set: std::copy_if for the STL trifecta Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/modules/indexeddb/IDBKey.cpp
diff --git a/third_party/WebKit/Source/modules/indexeddb/IDBKey.cpp b/third_party/WebKit/Source/modules/indexeddb/IDBKey.cpp
index f682a31d65a1a8b77da7e38e56599434f9c0e002..a16cdf4a81996dde102ac06065a4cc111f1b6aac 100644
--- a/third_party/WebKit/Source/modules/indexeddb/IDBKey.cpp
+++ b/third_party/WebKit/Source/modules/indexeddb/IDBKey.cpp
@@ -25,6 +25,8 @@
#include "modules/indexeddb/IDBKey.h"
+#include <algorithm>
+
namespace blink {
IDBKey::~IDBKey() {}
@@ -102,4 +104,23 @@ bool IDBKey::isEqual(const IDBKey* other) const {
return !compare(other);
}
+// static
+IDBKey* IDBKey::createMultiEntryArray(const KeyArray& array) {
+ KeyArray result;
pwnall 2017/01/18 02:35:19 Would it make sense to add a comment stating that
jsbell 2017/01/18 18:18:56 I'm not sure why that is worth calling out. A hash
pwnall 2017/01/18 19:04:15 If I'm reading HashTable.h correctly, we're using
jsbell 2017/01/18 19:39:56 Ah, right. Sleepy josh is sleepy. I'll add a note.
+ result.reserveCapacity(array.size());
+ std::copy_if(array.begin(), array.end(), std::back_inserter(result),
+ [](const Member<IDBKey> key) { return key->isValid(); });
+ std::sort(result.begin(), result.end(),
+ [](const Member<IDBKey> a, const Member<IDBKey> b) {
+ return a->isLessThan(b);
+ });
+ const auto end = std::unique(result.begin(), result.end());
+ DCHECK_LE(static_cast<size_t>(end - result.begin()), result.size());
+ result.resize(end - result.begin());
+
+ IDBKey* idbKey = new IDBKey(std::move(result));
+ DCHECK(idbKey->isValid());
+ return idbKey;
+}
+
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698