xtreemfs/cpp/include/rmfs.xtreemfs/rmfs_options.h

63 lines
1.7 KiB
C
Raw Normal View History

2020-09-22 02:25:22 +02:00
/*
* Copyright (c) 2011 by Michael Berlin, Zuse Institute Berlin
*
* Licensed under the BSD License, see LICENSE file for details.
*
*/
#ifndef CPP_INCLUDE_RMFS_XTREEMFS_RMFS_OPTIONS_H_
#define CPP_INCLUDE_RMFS_XTREEMFS_RMFS_OPTIONS_H_
#include "libxtreemfs/options.h"
#include <boost/program_options.hpp>
#include <string>
#include "pbrpc/RPC.pb.h"
#include "xtreemfs/MRC.pb.h"
namespace xtreemfs {
class RmfsOptions : public Options {
public:
/** Sets the default values. */
RmfsOptions();
/** Set options parsed from command line which must contain at least the URL
* to a XtreemFS volume.
*
* Calls Options::ParseCommandLine() to parse general options.
*
* @throws InvalidCommandLineParametersException
* @throws InvalidURLException */
void ParseCommandLine(int argc, char** argv);
/** Shows only the minimal help text describing the usage of rmfs.xtreemfs.*/
std::string ShowCommandLineUsage();
/** Outputs usage of the command line parameters. */
virtual std::string ShowCommandLineHelp();
/** MRC admin_password as set in the MRC config. */
std::string admin_password;
/** The service_adresses of Options became service_address, so we can no
* longer use this option for the MRC address and need a new member.
*/
std::string mrc_service_address;
/** If true, no questions will be asked. */
bool force;
private:
/** Contains all available rmfs options and its descriptions. */
boost::program_options::options_description rmfs_descriptions_;
/** Brief help text if there are no command line arguments. */
std::string helptext_usage_;
};
} // namespace xtreemfs
#endif // CPP_INCLUDE_RMFS_XTREEMFS_RMFS_OPTIONS_H_