thin-provisioning-tools/caching/cache_dump.cc

128 lines
2.8 KiB
C++
Raw Normal View History

2013-09-11 16:10:46 +05:30
#include <fstream>
2013-08-19 17:10:03 +05:30
#include <getopt.h>
#include <libgen.h>
#include <iostream>
#include "version.h"
#include "caching/mapping_array.h"
#include "caching/metadata.h"
2013-09-11 16:10:46 +05:30
#include "caching/xml_format.h"
#include "persistent-data/file_utils.h"
2013-08-19 17:10:03 +05:30
using namespace std;
2013-09-11 16:10:46 +05:30
using namespace caching;
using namespace caching::mapping_array_damage;
using namespace caching::superblock_damage;
2013-08-19 17:10:03 +05:30
//----------------------------------------------------------------
namespace {
string to_string(unsigned char const *data) {
// FIXME: we're assuming the data is zero terminated here
return std::string(reinterpret_cast<char const *>(data));
}
//--------------------------------
2013-09-11 16:10:46 +05:30
string const STDOUT_PATH("-");
bool want_stdout(string const &output) {
return output == STDOUT_PATH;
}
int dump_(string const &dev, ostream &out) {
block_manager<>::ptr bm = open_bm(dev, block_io<>::READ_ONLY);
metadata::ptr md(new metadata(bm, metadata::OPEN));
2013-09-11 16:10:46 +05:30
emitter::ptr e = create_xml_emitter(out);
superblock const &sb = md->sb_;
e->begin_superblock(to_string(sb.uuid), sb.data_block_size,
sb.cache_blocks, to_string(sb.policy_name),
sb.policy_hint_size);
e->begin_mappings();
for (unsigned cblock = 0; cblock < sb.cache_blocks; cblock++) {
mapping m = md->mappings_->get(cblock);
if (m.flags_ & M_VALID)
e->mapping(cblock, m.oblock_, m.flags_ & M_DIRTY);
}
e->end_mappings();
e->end_superblock();
2013-09-11 16:10:46 +05:30
return 0;
}
int dump(string const &dev, string const &output) {
try {
if (want_stdout(output))
return dump_(dev, cout);
else {
ofstream out(output.c_str());
return dump_(dev, out);
}
} catch (std::exception &e) {
cerr << e.what() << endl;
return 1;
}
2013-09-11 16:10:46 +05:30
}
2013-08-19 17:10:03 +05:30
void usage(ostream &out, string const &cmd) {
out << "Usage: " << cmd << " [options] {device|file}" << endl
<< "Options:" << endl
<< " {-h|--help}" << endl
2013-09-11 16:10:46 +05:30
<< " {-o <xml file>}" << endl
2013-08-19 17:10:03 +05:30
<< " {-V|--version}" << endl;
}
}
//----------------------------------------------------------------
int main(int argc, char **argv)
{
int c;
2013-09-11 16:10:46 +05:30
string output("-");
char const shortopts[] = "ho:V";
2013-08-19 17:10:03 +05:30
option const longopts[] = {
{ "help", no_argument, NULL, 'h'},
2013-09-11 16:10:46 +05:30
{ "output", required_argument, NULL, 'o'},
2013-08-19 17:10:03 +05:30
{ "version", no_argument, NULL, 'V'},
{ NULL, no_argument, NULL, 0 }
};
while ((c = getopt_long(argc, argv, shortopts, longopts, NULL)) != -1) {
switch(c) {
case 'h':
usage(cout, basename(argv[0]));
return 0;
2013-09-11 16:10:46 +05:30
case 'o':
output = optarg;
break;
2013-08-19 17:10:03 +05:30
case 'V':
cout << THIN_PROVISIONING_TOOLS_VERSION << endl;
return 0;
default:
usage(cerr, basename(argv[0]));
return 1;
}
}
if (argc == optind) {
cerr << "No input file provided." << endl;
usage(cerr, basename(argv[0]));
return 1;
}
2013-09-11 16:10:46 +05:30
return dump(argv[optind], output);
2013-08-19 17:10:03 +05:30
}
//----------------------------------------------------------------