some work on cache_restore

This commit is contained in:
Joe Thornber
2013-09-12 12:33:32 +01:00
parent 6615b25e4b
commit dadb32d15f
7 changed files with 152 additions and 1 deletions

32
caching/mapping_array.h Normal file
View File

@@ -0,0 +1,32 @@
#ifndef CACHE_MAPPING_ARRAY_H
#define CACHE_MAPPING_ARRAY_H
#include "persistent-data/data-structures/array.h"
//----------------------------------------------------------------
namespace caching {
namespace mapping_array_detail {
struct mapping {
uint64_t oblock_;
uint32_t flags_;
};
struct mapping_traits {
typedef base::le64 disk_type;
typedef mapping value_type;
typedef no_op_ref_counter<value_type> ref_counter;
static void unpack(disk_type const &disk, value_type &value);
static void pack(value_type const &value, disk_type &disk);
};
// FIXME: damage visitor stuff
}
typedef persistent_data::array<mapping_array_detail::mapping_traits> mapping_array;
}
//----------------------------------------------------------------
#endif