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 96 97 98 99 100 101
|
// Copyright 2015 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.
#ifndef COMPONENTS_BROWSING_DATA_CONTENT_STORAGE_PARTITION_HTTP_CACHE_DATA_REMOVER_H_
#define COMPONENTS_BROWSING_DATA_CONTENT_STORAGE_PARTITION_HTTP_CACHE_DATA_REMOVER_H_
#include <stdint.h>
#include "base/callback.h"
#include "base/macros.h"
#include "base/sequenced_task_runner_helpers.h"
#include "base/time/time.h"
#include "net/base/completion_callback.h"
#include "url/gurl.h"
namespace content {
class StoragePartition;
}
namespace disk_cache {
class Backend;
}
namespace net {
class URLRequestContextGetter;
}
namespace browsing_data {
// Helper to remove http cache data from a StoragePartition.
class StoragePartitionHttpCacheDataRemover {
public:
// Creates a StoragePartitionHttpCacheDataRemover that deletes cache entries
// in the time range between |delete_begin| (inclusively) and |delete_end|
// (exclusively).
static StoragePartitionHttpCacheDataRemover* CreateForRange(
content::StoragePartition* storage_partition,
base::Time delete_begin,
base::Time delete_end);
// Similar to CreateForRange(), but only deletes URLs that are matched by
// |url_predicate|. Note that the deletion with URL filtering is not built in
// to the cache interface and might be slower.
static StoragePartitionHttpCacheDataRemover* CreateForURLsAndRange(
content::StoragePartition* storage_partition,
const base::Callback<bool(const GURL&)>& url_predicate,
base::Time delete_begin,
base::Time delete_end);
// Calls |done_callback| upon completion and also destroys itself.
void Remove(const base::Closure& done_callback);
private:
enum CacheState {
NONE,
CREATE_MAIN,
CREATE_MEDIA,
DELETE_MAIN,
DELETE_MEDIA,
DONE
};
StoragePartitionHttpCacheDataRemover(
base::Callback<bool(const GURL&)> url_predicate,
base::Time delete_begin,
base::Time delete_end,
net::URLRequestContextGetter* main_context_getter,
net::URLRequestContextGetter* media_context_getter);
// StoragePartitionHttpCacheDataRemover deletes itself (using DeleteHelper)
// and is not supposed to be deleted by other objects so make destructor
// private and DeleteHelper a friend.
friend class base::DeleteHelper<StoragePartitionHttpCacheDataRemover>;
~StoragePartitionHttpCacheDataRemover();
void ClearHttpCacheOnIOThread();
void ClearedHttpCache();
// Performs the actual work to delete or count the cache.
void DoClearCache(int rv);
base::Callback<bool(const GURL&)> url_predicate_;
const base::Time delete_begin_;
const base::Time delete_end_;
const scoped_refptr<net::URLRequestContextGetter> main_context_getter_;
const scoped_refptr<net::URLRequestContextGetter> media_context_getter_;
base::Closure done_callback_;
// IO.
int next_cache_state_;
disk_cache::Backend* cache_;
DISALLOW_COPY_AND_ASSIGN(StoragePartitionHttpCacheDataRemover);
};
} // namespace browsing_data
#endif // COMPONENTS_BROWSING_DATA_CONTENT_STORAGE_PARTITION_HTTP_CACHE_DATA_REMOVER_H_
|