mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 14:26:09 +03:00
56 lines
1.7 KiB
C++
56 lines
1.7 KiB
C++
// Copyright 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_VERSION_UPGRADE_H_
|
|
#define NET_DISK_CACHE_SIMPLE_SIMPLE_VERSION_UPGRADE_H_
|
|
|
|
// Defines functionality to upgrade the file structure of the Simple Cache
|
|
// Backend on disk. Assumes no backend operations are running simultaneously.
|
|
// Hence must be run at cache initialization step.
|
|
|
|
#include <stdint.h>
|
|
|
|
#include "net/base/cache_type.h"
|
|
#include "net/base/net_export.h"
|
|
#include "net/disk_cache/simple/simple_experiment.h"
|
|
|
|
namespace base {
|
|
class FilePath;
|
|
}
|
|
|
|
namespace disk_cache {
|
|
|
|
// Performs all necessary disk IO to upgrade the cache structure if it is
|
|
// needed.
|
|
//
|
|
// Returns true iff no errors were found during consistency checks and all
|
|
// necessary transitions succeeded. If this function fails, there is nothing
|
|
// left to do other than dropping the whole cache directory.
|
|
NET_EXPORT_PRIVATE bool UpgradeSimpleCacheOnDisk(
|
|
const base::FilePath& path,
|
|
const SimpleExperiment& experiment);
|
|
|
|
struct NET_EXPORT_PRIVATE FakeIndexData {
|
|
FakeIndexData();
|
|
|
|
// Must be equal to simplecache_v4::kSimpleInitialMagicNumber.
|
|
uint64_t initial_magic_number;
|
|
|
|
// Must be equal kSimpleVersion when the cache backend is instantiated.
|
|
uint32_t version;
|
|
|
|
// The experiment that the cache was created for.
|
|
SimpleExperimentType experiment_type;
|
|
|
|
// The experiment's parameter.
|
|
uint32_t experiment_param;
|
|
};
|
|
|
|
// Exposed for testing.
|
|
NET_EXPORT_PRIVATE bool UpgradeIndexV5V6(const base::FilePath& cache_directory);
|
|
|
|
} // namespace disk_cache
|
|
|
|
#endif // NET_DISK_CACHE_SIMPLE_SIMPLE_VERSION_UPGRADE_H_
|