b7d418131d
* [file_utils] spin-off syscall-related file operations 1. Eliminate the potential circular dependency between persistent-data/block.h and persistent-data/file_utils.h, if the former one wants to include the latter. 2. Avoid namespace pollution by removing the "using namespace std" declaration in block.tcc. 3. Correct the header hierarchy: base/xml_utils.h now no longer depends on the higher-level persistent-data/file_utils.h * [file_utils] support block files in get_file_length()
22 lines
603 B
C++
22 lines
603 B
C++
#ifndef THIN_FILE_UTILS_H
|
|
#define THIN_FILE_UTILS_H
|
|
|
|
#include "persistent-data/block.h"
|
|
|
|
#include <string>
|
|
|
|
//----------------------------------------------------------------
|
|
|
|
// FIXME: move to a different unit
|
|
namespace persistent_data {
|
|
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);
|
|
|
|
block_manager<>::ptr open_bm(std::string const &dev_path,
|
|
block_manager<>::mode m, bool excl = true);
|
|
}
|
|
|
|
//----------------------------------------------------------------
|
|
|
|
#endif
|