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

Unified Diff: net/http/mock_http_cache.cc

Issue 2721933002: HttpCache::Transaction layer allowing parallel validation (Closed)
Patch Set: Rebased + test-only changes for fixing the new Push Cache Lookup failing unit tests Created 3 years, 8 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: net/http/mock_http_cache.cc
diff --git a/net/http/mock_http_cache.cc b/net/http/mock_http_cache.cc
index 47125a30cc53f4bdf2969ae35e1c5b607c2706c4..e676122b53f4c77492d3676dac08bf517b0220dd 100644
--- a/net/http/mock_http_cache.cc
+++ b/net/http/mock_http_cache.cc
@@ -534,6 +534,13 @@ void MockDiskCache::CallbackLater(const CompletionCallback& callback,
FROM_HERE, base::Bind(&CallbackForwader, callback, result));
}
+bool MockDiskCache::IsDiskEntryDoomed(const std::string& key) {
jkarlin 2017/04/20 15:05:40 It looks as if MockDiskCache::DoomEntry doesn't ca
+ auto it = entries_.find(key);
+ if (it == entries_.end())
+ return false;
+ return it->second->is_doomed();
+}
+
//-----------------------------------------------------------------------------
int MockBackendFactory::CreateBackend(
@@ -647,6 +654,41 @@ void MockHttpCache::SetTestMode(int test_mode) {
g_test_mode = test_mode;
}
+bool MockHttpCache::IsWriterPresent(const std::string& key) {
+ HttpCache::ActiveEntry* entry = http_cache_.FindActiveEntry(key);
+ if (entry)
+ return entry->writer;
+ return false;
+}
+
+bool MockHttpCache::IsHeadersTransactionPresent(const std::string& key) {
+ HttpCache::ActiveEntry* entry = http_cache_.FindActiveEntry(key);
+ if (entry)
+ return entry->headers_transaction;
+ return false;
+}
+
+int MockHttpCache::GetCountReaders(const std::string& key) {
jkarlin 2017/04/20 15:05:40 return size_t
+ HttpCache::ActiveEntry* entry = http_cache_.FindActiveEntry(key);
+ if (entry)
+ return entry->readers.size();
+ return false;
+}
+
+int MockHttpCache::GetCountAddToEntryQueue(const std::string& key) {
jkarlin 2017/04/20 15:05:40 return size_t
+ HttpCache::ActiveEntry* entry = http_cache_.FindActiveEntry(key);
+ if (entry)
+ return entry->add_to_entry_queue.size();
+ return false;
+}
+
+int MockHttpCache::GetCountDoneHeadersQueue(const std::string& key) {
jkarlin 2017/04/20 15:05:40 return size_t
+ HttpCache::ActiveEntry* entry = http_cache_.FindActiveEntry(key);
+ if (entry)
+ return entry->done_headers_queue.size();
+ return false;
+}
+
//-----------------------------------------------------------------------------
int MockDiskCacheNoCB::CreateEntry(const std::string& key,

Powered by Google App Engine
This is Rietveld 408576698