2013-04-23 19:51:44 +05:30
|
|
|
#ifndef THIN_FILE_UTILS_H
|
|
|
|
#define THIN_FILE_UTILS_H
|
|
|
|
|
|
|
|
#include "persistent-data/block.h"
|
2017-10-05 16:23:40 +05:30
|
|
|
#include "persistent-data/transaction_manager.h"
|
2013-04-23 19:51:44 +05:30
|
|
|
|
2013-09-16 18:12:39 +05:30
|
|
|
#include <string>
|
|
|
|
|
2013-04-23 19:51:44 +05:30
|
|
|
//----------------------------------------------------------------
|
|
|
|
|
2013-09-16 18:12:39 +05:30
|
|
|
// FIXME: move to a different unit
|
2013-09-11 16:10:46 +05:30
|
|
|
namespace persistent_data {
|
2020-04-30 19:00:01 +05:30
|
|
|
bool check_for_xml(block_manager::ptr bm);
|
2017-04-29 23:21:52 +05:30
|
|
|
persistent_data::block_address get_nr_blocks(std::string const &path, sector_t block_size = MD_BLOCK_SIZE);
|
|
|
|
block_address get_nr_metadata_blocks(std::string const &path);
|
2016-03-04 16:13:58 +05:30
|
|
|
|
2020-04-30 19:00:01 +05:30
|
|
|
block_manager::ptr open_bm(std::string const &dev_path,
|
|
|
|
block_manager::mode m, bool excl = true);
|
2017-10-05 16:23:40 +05:30
|
|
|
|
2020-04-30 19:00:01 +05:30
|
|
|
block_manager::ptr open_bm(std::string const &path);
|
|
|
|
transaction_manager::ptr open_tm(block_manager::ptr bm,
|
2017-10-05 16:23:40 +05:30
|
|
|
block_address superblock_location);
|
|
|
|
|
2013-04-23 19:51:44 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------
|
|
|
|
|
|
|
|
#endif
|