#include "services/network/conditional_cache_deletion_helper.h"
#include "base/functional/bind.h"
#include "base/functional/callback.h"
#include "base/location.h"
#include "base/task/single_thread_task_runner.h"
#include "net/http/http_cache.h"
#include "net/http/http_util.h"
namespace {
bool EntryPredicateFromURLsAndTime(
const base::RepeatingCallback<bool(const GURL&)>& url_matcher,
const base::Time& begin_time,
const base::Time& end_time,
const disk_cache::Entry* entry) {
std::string entry_key(entry->GetKey());
std::string url_string(
net::HttpCache::GetResourceURLFromHttpCacheKey(entry_key));
return (entry->GetLastUsed() >= begin_time &&
entry->GetLastUsed() < end_time && url_matcher.Run(GURL(url_string)));
}
}
namespace network {
std::unique_ptr<ConditionalCacheDeletionHelper>
ConditionalCacheDeletionHelper::CreateAndStart(
disk_cache::Backend* cache,
const base::RepeatingCallback<bool(const GURL&)>& url_matcher,
const base::Time& begin_time,
const base::Time& end_time,
base::OnceClosure completion_callback) {
std::unique_ptr<ConditionalCacheDeletionHelper> deletion_helper(
new ConditionalCacheDeletionHelper(
base::BindRepeating(
&EntryPredicateFromURLsAndTime, url_matcher,
begin_time.is_null() ? base::Time() : begin_time,
end_time.is_null() ? base::Time::Max() : end_time),
std::move(completion_callback), cache->CreateIterator()));
deletion_helper->IterateOverEntries(
disk_cache::EntryResult::MakeError(net::ERR_CACHE_OPEN_FAILURE));
return deletion_helper;
}
ConditionalCacheDeletionHelper::ConditionalCacheDeletionHelper(
const base::RepeatingCallback<bool(const disk_cache::Entry*)>& condition,
base::OnceClosure completion_callback,
std::unique_ptr<disk_cache::Backend::Iterator> iterator)
: condition_(condition),
completion_callback_(std::move(completion_callback)),
iterator_(std::move(iterator)) {}
ConditionalCacheDeletionHelper::~ConditionalCacheDeletionHelper() = default;
void ConditionalCacheDeletionHelper::IterateOverEntries(
disk_cache::EntryResult result) {
while (result.net_error() != net::ERR_IO_PENDING) {
if (previous_entry_) {
if (condition_.Run(previous_entry_.get())) {
previous_entry_->Doom();
}
previous_entry_.ExtractAsDangling()->Close();
}
if (result.net_error() == net::ERR_FAILED) {
base::SingleThreadTaskRunner::GetCurrentDefault()->PostTask(
FROM_HERE,
base::BindOnce(&ConditionalCacheDeletionHelper::NotifyCompletion,
weak_factory_.GetWeakPtr()));
return;
}
previous_entry_ = result.ReleaseEntry();
result = iterator_->OpenNextEntry(
base::BindOnce(&ConditionalCacheDeletionHelper::IterateOverEntries,
weak_factory_.GetWeakPtr()));
}
}
void ConditionalCacheDeletionHelper::NotifyCompletion() {
std::move(completion_callback_).Run();
}
}