| Index: net/disk_cache/simple/simple_backend_impl.h
|
| diff --git a/net/disk_cache/simple/simple_backend_impl.h b/net/disk_cache/simple/simple_backend_impl.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..e46e28af9899ef01b6dbb4bf6f780cf759bf04e2
|
| --- /dev/null
|
| +++ b/net/disk_cache/simple/simple_backend_impl.h
|
| @@ -0,0 +1,87 @@
|
| +// Copyright (c) 2013 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 NET_DISK_CACHE_SIMPLE_SIMPLE_BACKEND_IMPL_H_
|
| +#define NET_DISK_CACHE_SIMPLE_SIMPLE_BACKEND_IMPL_H_
|
| +
|
| +#include <string>
|
| +#include <utility>
|
| +#include <vector>
|
| +
|
| +#include "base/compiler_specific.h"
|
| +#include "base/file_path.h"
|
| +#include "base/task_runner.h"
|
| +#include "net/base/cache_type.h"
|
| +#include "net/disk_cache/disk_cache.h"
|
| +
|
| +namespace disk_cache {
|
| +
|
| +// SimpleBackendImpl is a new cache backend that stores entries in individual
|
| +// files.
|
| +
|
| +// It is currently a work in progress, missing many features of a real cache,
|
| +// such as eviction.
|
| +
|
| +// See http://www.chromium.org/developers/design-documents/network-stack/disk-cache/very-simple-backend
|
| +
|
| +class SimpleBackendImpl : public Backend {
|
| + public:
|
| + virtual ~SimpleBackendImpl();
|
| +
|
| + static int CreateBackend(const base::FilePath& full_path,
|
| + bool force,
|
| + int max_bytes,
|
| + net::CacheType type,
|
| + uint32 flags,
|
| + scoped_refptr<base::TaskRunner> thread,
|
| + net::NetLog* net_log,
|
| + Backend** backend,
|
| + const CompletionCallback& callback);
|
| +
|
| + // From Backend:
|
| + virtual net::CacheType GetCacheType() const OVERRIDE;
|
| + virtual int32 GetEntryCount() const OVERRIDE;
|
| + virtual int OpenEntry(const std::string& key, Entry** entry,
|
| + const CompletionCallback& callback) OVERRIDE;
|
| + virtual int CreateEntry(const std::string& key, Entry** entry,
|
| + const CompletionCallback& callback) OVERRIDE;
|
| + virtual int DoomEntry(const std::string& key,
|
| + const CompletionCallback& callback) OVERRIDE;
|
| + virtual int DoomAllEntries(const CompletionCallback& callback) OVERRIDE;
|
| + virtual int DoomEntriesBetween(base::Time initial_time,
|
| + base::Time end_time,
|
| + const CompletionCallback& callback) OVERRIDE;
|
| + virtual int DoomEntriesSince(base::Time initial_time,
|
| + const CompletionCallback& callback) OVERRIDE;
|
| + virtual int OpenNextEntry(void** iter, Entry** next_entry,
|
| + const CompletionCallback& callback) OVERRIDE;
|
| + virtual void EndEnumeration(void** iter) OVERRIDE;
|
| + virtual void GetStats(
|
| + std::vector<std::pair<std::string, std::string> >* stats) OVERRIDE;
|
| + virtual void OnExternalCacheHit(const std::string& key) OVERRIDE;
|
| +
|
| + private:
|
| + explicit SimpleBackendImpl(const base::FilePath& path);
|
| +
|
| + // Creates the Cache directory if needed. Performs blocking IO, so it cannot
|
| + // be called on IO thread.
|
| + static void EnsureCachePathExists(
|
| + const base::FilePath& path,
|
| + const scoped_refptr<base::TaskRunner>& callback_runner,
|
| + const CompletionCallback& callback,
|
| + Backend** backend);
|
| +
|
| + // IO thread completion of cache creation, called from EnsureCachePath exists
|
| + // to complete initialization of the cache on the IO thread.
|
| + static void OnCachePathCreated(int result,
|
| + const base::FilePath& path,
|
| + const CompletionCallback& callback,
|
| + Backend** backend);
|
| +
|
| + const base::FilePath path_;
|
| +};
|
| +
|
| +} // namespace disk_cache
|
| +
|
| +#endif // NET_DISK_CACHE_SIMPLE_SIMPLE_BACKEND_IMPL_H_
|
|
|