2011-12-16 00:04:31 +05:30
|
|
|
// Copyright (C) 2011 Red Hat, Inc. All rights reserved.
|
2011-12-06 19:23:05 +05:30
|
|
|
//
|
2011-12-06 19:13:56 +05:30
|
|
|
// This file is part of the thin-provisioning-tools source.
|
|
|
|
//
|
|
|
|
// thin-provisioning-tools is free software: you can redistribute it
|
|
|
|
// and/or modify it under the terms of the GNU General Public License
|
|
|
|
// as published by the Free Software Foundation, either version 3 of
|
|
|
|
// the License, or (at your option) any later version.
|
|
|
|
//
|
|
|
|
// thin-provisioning-tools is distributed in the hope that it will be
|
|
|
|
// useful, but WITHOUT ANY WARRANTY; without even the implied warranty
|
|
|
|
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU General Public License along
|
|
|
|
// with thin-provisioning-tools. If not, see
|
|
|
|
// <http://www.gnu.org/licenses/>.
|
|
|
|
|
2011-10-28 16:37:21 +05:30
|
|
|
#ifndef METADATA_CHECKER_H
|
|
|
|
#define METADATA_CHECKER_H
|
|
|
|
|
2020-02-16 14:13:31 +05:30
|
|
|
#include "block-cache/block_cache.h"
|
2013-04-25 20:57:07 +05:30
|
|
|
#include "persistent-data/block.h"
|
2011-10-28 16:37:21 +05:30
|
|
|
|
|
|
|
//----------------------------------------------------------------
|
|
|
|
|
|
|
|
namespace thin_provisioning {
|
2020-02-16 14:13:31 +05:30
|
|
|
struct check_options {
|
|
|
|
enum data_mapping_options {
|
|
|
|
DATA_MAPPING_NONE,
|
|
|
|
DATA_MAPPING_LEVEL1,
|
|
|
|
DATA_MAPPING_LEVEL2,
|
|
|
|
};
|
|
|
|
|
2020-05-28 19:05:51 +05:30
|
|
|
enum space_map_options {
|
|
|
|
SPACE_MAP_NONE,
|
|
|
|
SPACE_MAP_FULL,
|
2020-02-16 14:13:31 +05:30
|
|
|
};
|
|
|
|
|
|
|
|
check_options();
|
|
|
|
|
2020-07-14 15:27:29 +05:30
|
|
|
bool check_conformance();
|
2020-02-16 14:13:31 +05:30
|
|
|
void set_superblock_only();
|
|
|
|
void set_skip_mappings();
|
|
|
|
void set_override_mapping_root(bcache::block_address b);
|
2020-06-09 18:49:59 +05:30
|
|
|
void set_metadata_snap();
|
2020-07-02 20:33:23 +05:30
|
|
|
void set_ignore_non_fatal();
|
2020-07-14 15:27:29 +05:30
|
|
|
void set_fix_metadata_leaks();
|
2020-07-21 10:33:53 +05:30
|
|
|
void set_clear_needs_check();
|
2020-02-16 14:13:31 +05:30
|
|
|
|
2020-06-09 18:49:59 +05:30
|
|
|
bool use_metadata_snap_;
|
2020-07-14 12:36:53 +05:30
|
|
|
data_mapping_options data_mapping_opts_;
|
2020-05-28 19:05:51 +05:30
|
|
|
space_map_options sm_opts_;
|
2020-02-16 14:13:31 +05:30
|
|
|
boost::optional<bcache::block_address> override_mapping_root_;
|
2020-07-02 20:33:23 +05:30
|
|
|
bool ignore_non_fatal_;
|
2020-07-14 15:27:29 +05:30
|
|
|
bool fix_metadata_leaks_;
|
2020-07-21 10:33:53 +05:30
|
|
|
bool clear_needs_check_;
|
2013-04-25 20:57:07 +05:30
|
|
|
};
|
|
|
|
|
2020-02-16 14:13:31 +05:30
|
|
|
enum output_options {
|
|
|
|
OUTPUT_NORMAL,
|
|
|
|
OUTPUT_QUIET,
|
2013-04-25 20:57:07 +05:30
|
|
|
};
|
|
|
|
|
2020-07-21 10:33:53 +05:30
|
|
|
bool
|
2020-07-14 15:27:29 +05:30
|
|
|
check_metadata(std::string const &path,
|
2020-05-28 19:13:03 +05:30
|
|
|
check_options const &check_opts,
|
|
|
|
output_options output_opts);
|
2011-10-28 16:37:21 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------
|
|
|
|
|
|
|
|
#endif
|