forked from chromium/chromium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconditional_cache_deletion_helper.cc
95 lines (81 loc) · 3.36 KB
/
conditional_cache_deletion_helper.cc
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
// Copyright 2018 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.
#include "services/network/conditional_cache_deletion_helper.h"
#include "base/bind.h"
#include "base/callback.h"
#include "base/location.h"
#include "base/single_thread_task_runner.h"
#include "base/threading/thread_task_runner_handle.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) {
return (entry->GetLastUsed() >= begin_time &&
entry->GetLastUsed() < end_time &&
url_matcher.Run(GURL(entry->GetKey())));
}
} // namespace
namespace network {
// static
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(net::OK);
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)),
weak_factory_(this) {}
ConditionalCacheDeletionHelper::~ConditionalCacheDeletionHelper() = default;
void ConditionalCacheDeletionHelper::IterateOverEntries(int error) {
while (error != net::ERR_IO_PENDING) {
// If the entry obtained in the previous iteration matches the condition,
// mark it for deletion. The iterator is already one step forward, so it
// won't be invalidated. Always close the previous entry so it does not
// leak.
if (previous_entry_) {
if (condition_.Run(previous_entry_)) {
previous_entry_->Doom();
}
previous_entry_->Close();
}
if (error == net::ERR_FAILED) {
// The iteration finished successfully or we can no longer iterate
// (e.g. the cache was destroyed). We cannot distinguish between the two,
// but we know that there is nothing more that we can do.
base::ThreadTaskRunnerHandle::Get()->PostTask(
FROM_HERE,
base::BindOnce(&ConditionalCacheDeletionHelper::NotifyCompletion,
weak_factory_.GetWeakPtr()));
return;
}
previous_entry_ = current_entry_;
error = iterator_->OpenNextEntry(
¤t_entry_,
base::BindRepeating(&ConditionalCacheDeletionHelper::IterateOverEntries,
weak_factory_.GetWeakPtr()));
}
}
void ConditionalCacheDeletionHelper::NotifyCompletion() {
std::move(completion_callback_).Run();
}
} // namespace network