#include <CommandLineArguments.hpp>
Inherits boost::noncopyable.
Public Member Functions | |
bool | OptionExists (const std::string &rOption) |
int | GetNumberOfArgumentsForOption (const std::string &rOption, bool throwIfNone=false) |
char * | GetValueCorrespondingToOption (const std::string &rOption, int valueNumber=1) |
double | GetDoubleCorrespondingToOption (const std::string &rOption, int valueNumber=1) |
int | GetIntCorrespondingToOption (const std::string &rOption, int valueNumber=1) |
unsigned | GetUnsignedCorrespondingToOption (const std::string &rOption, int valueNumber=1) |
std::string | GetStringCorrespondingToOption (const std::string &rOption, int valueNumber=1) |
std::vector< std::string > | GetStringsCorrespondingToOption (const std::string &rOption) |
std::vector< double > | GetDoublesCorrespondingToOption (const std::string &rOption) |
std::vector< int > | GetIntsCorrespondingToOption (const std::string &rOption) |
std::vector< unsigned > | GetUnsignedsCorrespondingToOption (const std::string &rOption) |
bool | GetBoolCorrespondingToOption (const std::string &rOption) |
Static Public Member Functions | |
static CommandLineArguments * | Instance () |
Public Attributes | |
int * | p_argc |
char *** | p_argv |
Private Member Functions | |
CommandLineArguments () | |
int | GetIndexForArgument (std::string rOption) |
void | TestOptionFormat (const std::string &rOption) |
Static Private Attributes | |
static CommandLineArguments * | mpInstance = NULL |
A convenient holder for the command line arguments, with helper methods for checking whether an option has been given or getting the value(s) corresponding to a given option.
Options are considered to be any argument starting with a '-' followed by a non-numeric character, in order to distinguish between options and negative numbers. Each option may have zero or more values following it on the command line. Examples:
The cxxtest harness will fill in the member variables when a test is started. They can then be read by PETSc when it is initialised, and by other code as required.
Definition at line 62 of file CommandLineArguments.hpp.
CommandLineArguments::CommandLineArguments | ( | ) | [private] |
Default constructor. Should never be called directly, call CommandLineArguments::Instance() instead.
Definition at line 42 of file CommandLineArguments.cpp.
References mpInstance.
bool CommandLineArguments::GetBoolCorrespondingToOption | ( | const std::string & | rOption | ) |
Read bools from the command line. This accepts 0 or 1, and also true/True/TRUE and false/False/FALSE.
rOption | The option name as a string. |
Definition at line 210 of file CommandLineArguments.cpp.
References EXCEPTION, and GetStringCorrespondingToOption().
double CommandLineArguments::GetDoubleCorrespondingToOption | ( | const std::string & | rOption, | |
int | valueNumber = 1 | |||
) |
This uses GetValueCorrespondingToOption and converts the char* to a double.
rOption | the option name as a string. | |
valueNumber | the number of the argument following the option definition (defaults to 1, for 1st argument). |
Definition at line 91 of file CommandLineArguments.cpp.
References GetValueCorrespondingToOption().
Referenced by GetDoublesCorrespondingToOption().
std::vector< double > CommandLineArguments::GetDoublesCorrespondingToOption | ( | const std::string & | rOption | ) |
This uses GetDoubleCorrespondingToOption repeatedly.
rOption | the option name as a string. |
Definition at line 177 of file CommandLineArguments.cpp.
References GetDoubleCorrespondingToOption(), and GetNumberOfArgumentsForOption().
int CommandLineArguments::GetIndexForArgument | ( | std::string | rOption | ) | [private] |
rOption | the argument name as a string. |
Definition at line 114 of file CommandLineArguments.cpp.
References EXCEPTION, p_argc, p_argv, and TestOptionFormat().
Referenced by GetNumberOfArgumentsForOption(), GetValueCorrespondingToOption(), and OptionExists().
int CommandLineArguments::GetIntCorrespondingToOption | ( | const std::string & | rOption, | |
int | valueNumber = 1 | |||
) |
This uses GetValueCorrespondingToOption and converts the char* to an int.
rOption | the option name as a string. | |
valueNumber | the number of the argument following the option definition (defaults to 1, for 1st argument). |
Definition at line 97 of file CommandLineArguments.cpp.
References GetValueCorrespondingToOption().
Referenced by GetIntsCorrespondingToOption().
std::vector< int > CommandLineArguments::GetIntsCorrespondingToOption | ( | const std::string & | rOption | ) |
This uses GetIntCorrespondingToOption repeatedly.
rOption | the option name as a string. |
Definition at line 199 of file CommandLineArguments.cpp.
References GetIntCorrespondingToOption(), and GetNumberOfArgumentsForOption().
int CommandLineArguments::GetNumberOfArgumentsForOption | ( | const std::string & | rOption, | |
bool | throwIfNone = false | |||
) |
rOption | the option name as a string. | |
throwIfNone | Whether to give an exception if there are no arguments for this rOption (defaults to false). |
Definition at line 128 of file CommandLineArguments.cpp.
References EXCEPTION, GetIndexForArgument(), p_argc, and p_argv.
Referenced by GetDoublesCorrespondingToOption(), GetIntsCorrespondingToOption(), GetStringsCorrespondingToOption(), GetUnsignedsCorrespondingToOption(), GetValueCorrespondingToOption(), and Citations::Print().
std::string CommandLineArguments::GetStringCorrespondingToOption | ( | const std::string & | rOption, | |
int | valueNumber = 1 | |||
) |
This uses GetValueCorrespondingToOption and converts the char* to a std::string.
rOption | the option name as a string. | |
valueNumber | the number of the argument following the option definition (defaults to 1, for 1st argument). |
Definition at line 159 of file CommandLineArguments.cpp.
References GetValueCorrespondingToOption().
Referenced by GetBoolCorrespondingToOption(), GetStringsCorrespondingToOption(), and Citations::Print().
std::vector< std::string > CommandLineArguments::GetStringsCorrespondingToOption | ( | const std::string & | rOption | ) |
This uses GetStringCorrespondingToOption repeatedly.
rOption | the option name as a string. |
Definition at line 166 of file CommandLineArguments.cpp.
References GetNumberOfArgumentsForOption(), and GetStringCorrespondingToOption().
unsigned CommandLineArguments::GetUnsignedCorrespondingToOption | ( | const std::string & | rOption, | |
int | valueNumber = 1 | |||
) |
This uses GetValueCorrespondingToOption and converts the char* to an unsigned. Throws an exception if the option converts to a negative integer.
rOption | the option name as a string. | |
valueNumber | the number of the argument following the option definition (defaults to 1, for 1st argument). |
Definition at line 103 of file CommandLineArguments.cpp.
References EXCEPTION, and GetValueCorrespondingToOption().
Referenced by GetUnsignedsCorrespondingToOption().
std::vector< unsigned > CommandLineArguments::GetUnsignedsCorrespondingToOption | ( | const std::string & | rOption | ) |
This uses GetUnsignedCorrespondingToOption repeatedly.
rOption | the option name as a string. |
Definition at line 188 of file CommandLineArguments.cpp.
References GetNumberOfArgumentsForOption(), and GetUnsignedCorrespondingToOption().
char * CommandLineArguments::GetValueCorrespondingToOption | ( | const std::string & | rOption, | |
int | valueNumber = 1 | |||
) |
rOption | the option name as a string. | |
valueNumber | the number of the argument following the option definition (defaults to 1, for 1st argument). |
Definition at line 74 of file CommandLineArguments.cpp.
References EXCEPT_IF_NOT, EXCEPTION, GetIndexForArgument(), GetNumberOfArgumentsForOption(), p_argv, and TestOptionFormat().
Referenced by GetDoubleCorrespondingToOption(), GetIntCorrespondingToOption(), GetStringCorrespondingToOption(), and GetUnsignedCorrespondingToOption().
CommandLineArguments * CommandLineArguments::Instance | ( | ) | [static] |
Definition at line 50 of file CommandLineArguments.cpp.
References mpInstance.
Referenced by AbstractContinuumMechanicsSolver< DIM >::AbstractContinuumMechanicsSolver(), AbstractNonlinearElasticitySolver< DIM >::AbstractNonlinearElasticitySolver(), IncompressibleNonlinearElasticitySolver< DIM >::AssembleSystem(), CompressibleNonlinearElasticitySolver< DIM >::AssembleSystem(), CommandLineArgumentsMocker::CommandLineArgumentsMocker(), FineCoarseMeshPair< DIM >::ComputeCoarseElementsForFineElementCentroids(), FineCoarseMeshPair< DIM >::ComputeCoarseElementsForFineNodes(), FineCoarseMeshPair< DIM >::ComputeFineElementsAndWeightsForCoarseNodes(), FineCoarseMeshPair< DIM >::ComputeFineElementsAndWeightsForCoarseQuadPoints(), AbstractContinuumMechanicsAssembler< DIM, CAN_ASSEMBLE_VECTOR, CAN_ASSEMBLE_MATRIX >::DoAssemble(), PetscSetupUtils::InitialisePetsc(), ExecutableSupport::InitializePetsc(), Citations::Print(), CardiacElectroMechanicsProblem< DIM, ELEC_PROB_DIM >::Solve(), and CommandLineArgumentsMocker::~CommandLineArgumentsMocker().
bool CommandLineArguments::OptionExists | ( | const std::string & | rOption | ) |
rOption | the option name as a string. |
Definition at line 61 of file CommandLineArguments.cpp.
References GetIndexForArgument(), and TestOptionFormat().
Referenced by AbstractContinuumMechanicsSolver< DIM >::AbstractContinuumMechanicsSolver(), AbstractNonlinearElasticitySolver< DIM >::AbstractNonlinearElasticitySolver(), IncompressibleNonlinearElasticitySolver< DIM >::AssembleSystem(), CompressibleNonlinearElasticitySolver< DIM >::AssembleSystem(), FineCoarseMeshPair< DIM >::ComputeCoarseElementsForFineElementCentroids(), FineCoarseMeshPair< DIM >::ComputeCoarseElementsForFineNodes(), FineCoarseMeshPair< DIM >::ComputeFineElementsAndWeightsForCoarseNodes(), FineCoarseMeshPair< DIM >::ComputeFineElementsAndWeightsForCoarseQuadPoints(), AbstractContinuumMechanicsAssembler< DIM, CAN_ASSEMBLE_VECTOR, CAN_ASSEMBLE_MATRIX >::DoAssemble(), and CardiacElectroMechanicsProblem< DIM, ELEC_PROB_DIM >::Solve().
void CommandLineArguments::TestOptionFormat | ( | const std::string & | rOption | ) | [private] |
Throw an exception if the option is not of the required form: '-' followed by a non-numeric character.
rOption | the option name to check the format of. |
Definition at line 235 of file CommandLineArguments.cpp.
References EXCEPTION.
Referenced by GetIndexForArgument(), GetValueCorrespondingToOption(), and OptionExists().
CommandLineArguments * CommandLineArguments::mpInstance = NULL [static, private] |
The single instance of the class.
Definition at line 70 of file CommandLineArguments.hpp.
Referenced by CommandLineArguments(), and Instance().
The number of command line arguments.
Definition at line 90 of file CommandLineArguments.hpp.
Referenced by CommandLineArgumentsMocker::CommandLineArgumentsMocker(), GetIndexForArgument(), GetNumberOfArgumentsForOption(), PetscSetupUtils::InitialisePetsc(), ExecutableSupport::InitializePetsc(), and CommandLineArgumentsMocker::~CommandLineArgumentsMocker().
char*** CommandLineArguments::p_argv |
The arguments themselves.
Definition at line 93 of file CommandLineArguments.hpp.
Referenced by CommandLineArgumentsMocker::CommandLineArgumentsMocker(), GetIndexForArgument(), GetNumberOfArgumentsForOption(), GetValueCorrespondingToOption(), PetscSetupUtils::InitialisePetsc(), ExecutableSupport::InitializePetsc(), and CommandLineArgumentsMocker::~CommandLineArgumentsMocker().