#ifndef SERVICES_NETWORK_CONDITIONAL_CACHE_DELETION_HELPER_H_
#define SERVICES_NETWORK_CONDITIONAL_CACHE_DELETION_HELPER_H_
#include <memory>
#include "base/functional/callback_forward.h"
#include "base/memory/raw_ptr.h"
#include "base/memory/weak_ptr.h"
#include "base/task/sequenced_task_runner_helpers.h"
#include "net/base/net_errors.h"
#include "net/disk_cache/disk_cache.h"
#include "url/gurl.h"
namespace disk_cache {
class Entry;
}
namespace network {
class ConditionalCacheDeletionHelper {
public:
static std::unique_ptr<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);
ConditionalCacheDeletionHelper(const ConditionalCacheDeletionHelper&) =
delete;
ConditionalCacheDeletionHelper& operator=(
const ConditionalCacheDeletionHelper&) = delete;
~ConditionalCacheDeletionHelper();
private:
ConditionalCacheDeletionHelper(
const base::RepeatingCallback<bool(const disk_cache::Entry*)>& condition,
base::OnceClosure completion_callback,
std::unique_ptr<disk_cache::Backend::Iterator> iterator);
void IterateOverEntries(disk_cache::EntryResult result);
void NotifyCompletion();
const base::RepeatingCallback<bool(const disk_cache::Entry*)> condition_;
base::OnceClosure completion_callback_;
std::unique_ptr<disk_cache::Backend::Iterator> iterator_;
raw_ptr<disk_cache::Entry> previous_entry_ = nullptr;
base::WeakPtrFactory<ConditionalCacheDeletionHelper> weak_factory_{this};
};
}
#endif