From: Danny Al-Gaaf Date: Thu, 31 Jan 2013 14:41:19 +0000 (+0100) Subject: ceph-filestore-dump.cc: don't use po::value()->required() X-Git-Tag: v0.57~61^2~5 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=340b1cfe9bce12eec97101771aa40c962bf3d2b6;p=ceph.git ceph-filestore-dump.cc: don't use po::value()->required() Don't use po::value()->required() since this breaks build on RHEL/CentOs6. Check if the options are set as in the code of other ceph parts. Move some checks up in the code to validate options as soon as possible. Remove printing 'help' twice, and check it first. Fix type description. Signed-off-by: Danny Al-Gaaf Signed-off-by: David Zafman --- diff --git a/src/tools/ceph-filestore-dump.cc b/src/tools/ceph-filestore-dump.cc index d470468c7cde..224ef32bf0c5 100644 --- a/src/tools/ceph-filestore-dump.cc +++ b/src/tools/ceph-filestore-dump.cc @@ -53,14 +53,14 @@ int main(int argc, char **argv) po::options_description desc("Allowed options"); desc.add_options() ("help", "produce help message") - ("filestore-path", po::value(&fspath)->required(), + ("filestore-path", po::value(&fspath), "path to filestore directory, mandatory") - ("journal-path", po::value(&jpath)->required(), + ("journal-path", po::value(&jpath), "path to journal, mandatory") - ("pgid", po::value(&pgid)->required(), + ("pgid", po::value(&pgid), "PG id, mandatory") - ("type", po::value(&type)->required(), - "Type which is 'info' or 'log'") + ("type", po::value(&type), + "Type which is 'info' or 'log', mandatory") ("debug", "Enable diagnostic output to stderr") ; @@ -72,13 +72,39 @@ int main(int argc, char **argv) po::notify(vm); } catch(...) { - cout << desc << "\n"; + cout << desc << std::endl; exit(1); } - //Never get here with required() options if (vm.count("help")) { - cout << desc << "\n"; + cout << desc << std::endl; + return 1; + } + + if (!vm.count("filestore-path")) { + cout << "Must provide filestore-path" << std::endl + << desc << std::endl; + return 1; + } + if (!vm.count("journal-path")) { + cout << "Must provide journal-path" << std::endl + << desc << std::endl; + return 1; + } + if (!vm.count("pgid")) { + cout << "Must provide pgid" << std::endl + << desc << std::endl; + return 1; + } + if (!vm.count("type")) { + cout << "Must provide type ('info' or 'log')" << std::endl + << desc << std::endl; + return 1; + } + + if (fspath.length() == 0 || jpath.length() == 0 || pgid.length() == 0 || + (type != "info" && type != "log")) { + cerr << "Invalid params" << std::endl; exit(1); } @@ -106,23 +132,6 @@ int main(int argc, char **argv) g_ceph_context->_conf->apply_changes(NULL); g_conf = g_ceph_context->_conf; - if (!vm.count("filestore-path") || !vm.count("journal-path")) { - cout << "Must provide filestore-path and journal-path" << std::endl - << desc << std::endl; - return 1; - } - - if (vm.count("help")) { - cout << desc << std::endl; - return 1; - } - - if (fspath.length() == 0 || jpath.length() == 0 || pgid.length() == 0 || - (type != "info" && type != "log")) { - cerr << "Invalid params" << std::endl; - exit(1); - } - //Verify that fspath really is an osd store struct stat st; if (::stat(fspath.c_str(), &st) == -1) {