2011-12-06 19:23:05 +05:30
|
|
|
// Copyright (C) 20011 Red Hat, Inc. All rights reserved.
|
|
|
|
//
|
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-08-31 18:31:48 +05:30
|
|
|
|
2011-10-25 19:17:49 +05:30
|
|
|
#include <fstream>
|
|
|
|
#include <iostream>
|
2011-12-14 22:08:26 +05:30
|
|
|
#include <getopt.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 {
|
|
|
|
void restore(string const &backup_file, string const &dev) {
|
2011-11-03 20:14:00 +05:30
|
|
|
// FIXME: hard coded
|
|
|
|
block_address const NR_BLOCKS = 100000;
|
|
|
|
|
|
|
|
metadata::ptr md(new metadata(dev, metadata::CREATE, 128, NR_BLOCKS));
|
2011-10-28 18:37:17 +05:30
|
|
|
emitter::ptr restorer = create_restore_emitter(md);
|
2011-10-25 19:17:49 +05:30
|
|
|
ifstream in(backup_file.c_str(), ifstream::in);
|
2011-11-03 20:14:00 +05:30
|
|
|
// FIXME:
|
|
|
|
//try {
|
2011-10-28 18:56:06 +05:30
|
|
|
parse_xml(in, restorer);
|
2011-11-03 20:14:00 +05:30
|
|
|
#if 0
|
2011-10-28 18:56:06 +05:30
|
|
|
} catch (...) {
|
|
|
|
in.close();
|
|
|
|
throw;
|
|
|
|
}
|
2011-11-03 20:14:00 +05:30
|
|
|
#endif
|
2011-10-10 21:15:32 +05:30
|
|
|
}
|
|
|
|
|
2011-12-14 22:08:26 +05:30
|
|
|
void usage(void) {
|
2011-10-10 21:15:32 +05:30
|
|
|
cerr << "Usage: thin_restore [options]" << endl << endl;
|
2011-12-14 22:08:26 +05:30
|
|
|
cerr << "Options:" << endl;
|
|
|
|
cerr << " -h [ --help ] Produce help message" << endl;
|
|
|
|
cerr << " -i [ --input ] arg Input file" << endl;
|
|
|
|
cerr << " -o [ --output ] arg Output file" << 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;
|
|
|
|
const char *shortopts = "hi:o:";
|
|
|
|
string input, output;
|
|
|
|
const struct option longopts[] = {
|
|
|
|
{ "help", no_argument, NULL, 'h'},
|
|
|
|
{ "input", required_argument, NULL, 'i' },
|
|
|
|
{ "output", required_argument, NULL, 'o'},
|
|
|
|
{ NULL, no_argument, NULL, 0 }
|
|
|
|
};
|
|
|
|
|
|
|
|
while ((c = getopt_long(argc, argv, shortopts, longopts, NULL)) != -1) {
|
|
|
|
switch(c) {
|
|
|
|
case 'h':
|
|
|
|
usage();
|
|
|
|
return 1;
|
|
|
|
case 'i':
|
|
|
|
input = optarg;
|
|
|
|
break;
|
|
|
|
case 'o':
|
|
|
|
output = optarg;
|
|
|
|
break;
|
|
|
|
}
|
2011-10-10 21:15:32 +05:30
|
|
|
}
|
|
|
|
|
2011-12-14 22:08:26 +05:30
|
|
|
if (argc == 1) {
|
|
|
|
usage();
|
2011-10-10 21:15:32 +05:30
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2011-12-14 22:08:26 +05:30
|
|
|
if (input.empty()) {
|
2011-12-15 01:31:51 +05:30
|
|
|
cerr << "No input file provided." << endl;
|
2011-10-10 21:15:32 +05:30
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2011-12-14 22:08:26 +05:30
|
|
|
if (output.empty()) {
|
2011-12-15 01:31:51 +05:30
|
|
|
cerr << "No output file provided." << endl;
|
2011-12-14 22:08:26 +05:30
|
|
|
return 1;
|
|
|
|
}
|
2011-10-10 21:15:32 +05:30
|
|
|
|
2011-12-14 22:08:26 +05:30
|
|
|
restore(input, output);
|
2011-08-31 18:31:48 +05:30
|
|
|
return 0;
|
2011-10-10 21:15:32 +05:30
|
|
|
|
2011-08-31 18:31:48 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------
|