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-25 19:17:49 +05:30
|
|
|
#include "emitter.h"
|
|
|
|
#include "human_readable_format.h"
|
2011-08-31 18:31:48 +05:30
|
|
|
#include "metadata.h"
|
2011-10-28 18:37:17 +05:30
|
|
|
#include "restore_emitter.h"
|
2011-10-25 19:17:49 +05:30
|
|
|
#include "xml_format.h"
|
2011-12-15 19:24:40 +05:30
|
|
|
#include "version.h"
|
2011-08-31 18:31:48 +05:30
|
|
|
|
2011-10-25 19:17:49 +05:30
|
|
|
#include <fstream>
|
2011-12-14 22:08:26 +05:30
|
|
|
#include <getopt.h>
|
2012-03-02 18:31:07 +05:30
|
|
|
#include <iostream>
|
2011-12-15 19:47:49 +05:30
|
|
|
#include <libgen.h>
|
2012-03-02 18:31:07 +05:30
|
|
|
#include <linux/fs.h>
|
|
|
|
#include <sys/ioctl.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <unistd.h>
|
2011-10-10 21:15:32 +05:30
|
|
|
|
2011-08-31 18:31:48 +05:30
|
|
|
using namespace persistent_data;
|
|
|
|
using namespace std;
|
|
|
|
using namespace thin_provisioning;
|
|
|
|
|
2011-10-10 21:15:32 +05:30
|
|
|
namespace {
|
2012-03-02 15:30:31 +05:30
|
|
|
int restore(string const &backup_file, string const &dev) {
|
|
|
|
try {
|
2012-03-13 19:36:10 +05:30
|
|
|
// The block size gets updated by the restorer.
|
2012-03-02 18:31:07 +05:30
|
|
|
metadata::ptr md(new metadata(dev, metadata::CREATE, 128, 0));
|
2012-03-02 15:30:31 +05:30
|
|
|
emitter::ptr restorer = create_restore_emitter(md);
|
|
|
|
ifstream in(backup_file.c_str(), ifstream::in);
|
2011-10-28 18:56:06 +05:30
|
|
|
parse_xml(in, restorer);
|
2012-03-02 18:31:07 +05:30
|
|
|
|
2012-03-02 15:30:31 +05:30
|
|
|
} catch (std::exception &e) {
|
2012-03-06 00:04:05 +05:30
|
|
|
cerr << e.what() << endl;
|
2012-03-02 15:30:31 +05:30
|
|
|
return 1;
|
2011-10-28 18:56:06 +05:30
|
|
|
}
|
2012-03-02 15:30:31 +05:30
|
|
|
|
|
|
|
return 0;
|
2011-10-10 21:15:32 +05:30
|
|
|
}
|
|
|
|
|
2012-03-13 19:36:10 +05:30
|
|
|
void usage(ostream &out, string const &cmd) {
|
|
|
|
out << "Usage: " << cmd << " [options]" << endl
|
|
|
|
<< "Options:" << endl
|
|
|
|
<< " {-h|--help}" << endl
|
2013-06-27 14:14:46 +05:30
|
|
|
<< " {-i|--input} <input xml file>" << endl
|
|
|
|
<< " {-o|--output} <output device or file>" << endl
|
2012-03-13 19:36:10 +05:30
|
|
|
<< " {-V|--version}" << endl;
|
2011-10-10 21:15:32 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-08-31 18:31:48 +05:30
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
2011-12-14 22:08:26 +05:30
|
|
|
int c;
|
2013-06-27 14:14:46 +05:30
|
|
|
char const *prog_name = basename(argv[0]);
|
2011-12-15 19:24:40 +05:30
|
|
|
const char *shortopts = "hi:o:V";
|
2011-12-14 22:08:26 +05:30
|
|
|
string input, output;
|
|
|
|
const struct option longopts[] = {
|
|
|
|
{ "help", no_argument, NULL, 'h'},
|
|
|
|
{ "input", required_argument, NULL, 'i' },
|
|
|
|
{ "output", required_argument, NULL, 'o'},
|
2011-12-15 19:24:40 +05:30
|
|
|
{ "version", no_argument, NULL, 'V'},
|
2011-12-14 22:08:26 +05:30
|
|
|
{ NULL, no_argument, NULL, 0 }
|
|
|
|
};
|
|
|
|
|
|
|
|
while ((c = getopt_long(argc, argv, shortopts, longopts, NULL)) != -1) {
|
|
|
|
switch(c) {
|
2013-06-14 19:02:50 +05:30
|
|
|
case 'h':
|
2013-06-27 14:14:46 +05:30
|
|
|
usage(cout, prog_name);
|
2013-06-14 19:02:50 +05:30
|
|
|
return 0;
|
2012-03-13 18:02:30 +05:30
|
|
|
|
2013-06-14 19:02:50 +05:30
|
|
|
case 'i':
|
|
|
|
input = optarg;
|
|
|
|
break;
|
2012-03-13 18:02:30 +05:30
|
|
|
|
2013-06-14 19:02:50 +05:30
|
|
|
case 'o':
|
|
|
|
output = optarg;
|
|
|
|
break;
|
2012-03-13 18:02:30 +05:30
|
|
|
|
2013-06-14 19:02:50 +05:30
|
|
|
case 'V':
|
|
|
|
cout << THIN_PROVISIONING_TOOLS_VERSION << endl;
|
|
|
|
return 0;
|
2012-03-13 18:02:30 +05:30
|
|
|
|
2013-06-14 19:02:50 +05:30
|
|
|
default:
|
2013-06-27 14:14:46 +05:30
|
|
|
usage(cerr, prog_name);
|
2013-06-14 19:02:50 +05:30
|
|
|
return 1;
|
2011-12-14 22:08:26 +05:30
|
|
|
}
|
2011-10-10 21:15:32 +05:30
|
|
|
}
|
|
|
|
|
2012-03-06 00:04:05 +05:30
|
|
|
if (argc != optind) {
|
2013-06-27 14:14:46 +05:30
|
|
|
usage(cerr, prog_name);
|
2011-10-10 21:15:32 +05:30
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2011-12-14 22:08:26 +05:30
|
|
|
if (input.empty()) {
|
2013-06-27 14:14:46 +05:30
|
|
|
cerr << "No input file provided." << endl << endl;
|
|
|
|
usage(cerr, prog_name);
|
2011-10-10 21:15:32 +05:30
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2011-12-14 22:08:26 +05:30
|
|
|
if (output.empty()) {
|
2013-06-27 14:14:46 +05:30
|
|
|
cerr << "No output file provided." << endl << endl;
|
|
|
|
usage(cerr, prog_name);
|
2011-12-14 22:08:26 +05:30
|
|
|
return 1;
|
|
|
|
}
|
2011-10-10 21:15:32 +05:30
|
|
|
|
2012-03-02 15:30:31 +05:30
|
|
|
return restore(input, output);
|
2011-08-31 18:31:48 +05:30
|
|
|
}
|