MolSSI Integral Reference Project
cmdline.hpp
Go to the documentation of this file.
1 /*! \file
2  *
3  * \brief Functions for parsing the command line given to a program
4  */
5 
6 #pragma once
7 
8 #include <string>
9 #include <vector>
10 
11 namespace mirp {
12 
13 /*! \brief Check to see if the given command line has an argument
14  *
15  * \param [in] cmdline The command line to check (should be converted already)
16  * \param [in] arg The argument to check for
17  * \return True if \p cmdline contains the argument, false otherwise
18  */
19 bool cmdline_has_arg(const std::vector<std::string> & cmdline, const std::string & arg);
20 
21 
22 /*! \brief See if the command line has a switch
23  *
24  * \note After seeing if the switch exists, it is removed from \p cmdline
25  *
26  * \param [in] cmdline The command line to check (should be converted already)
27  * \param [in] arg The argument to check for
28  * \return True if \p cmdline contains the switch, false otherwise
29  */
30 bool cmdline_get_switch(std::vector<std::string> & cmdline, const std::string & arg);
31 
32 
33 /*! \brief Obtain the value of an argument from the command line
34  * as a string
35  *
36  * \note After obtaining the argument, the key and value are removed from \p cmdline
37  *
38  * \throw std::runtime_error if the argument key or the value is not found
39  *
40  * \param [in] cmdline The command line to use (should be converted already)
41  * \param [in] arg The argument key to look up
42  * \return The value of the argument given on the command line
43  */
44 std::string cmdline_get_arg_str(std::vector<std::string> & cmdline, const std::string & arg);
45 
46 
47 /*! \brief Obtain the value of an argument from the command line
48  * as a string, with a default
49  *
50  * If the argument key is not given on the command line, the default
51  * parameter \p def is returned instead.
52  *
53  * \note After obtaining the argument, the key and value are removed from \p cmdline
54 
55  * \param [in] cmdline The command line to use (should be converted already)
56  * \param [in] arg The argument key to look up
57  * \param [in] def A default value of the argument to use if \p arg is not
58  given on the command line
59  * \return The value of the argument given on the command line, or the value of \p def
60  */
61 std::string cmdline_get_arg_str(std::vector<std::string> & cmdline, const std::string & arg, const std::string & def);
62 
63 
64 /*! \brief Obtain the value of an argument from the command line
65  * as a long integer
66  *
67  * \copydetails cmdline_get_arg_str(std::vector<std::string> &, const std::string &)
68  */
69 long cmdline_get_arg_long(std::vector<std::string> & cmdline, const std::string & arg);
70 
71 
72 /*! \brief Obtain the value of an argument from the command line
73  * as a long integer, with a default
74  *
75  * \copydetails cmdline_get_arg_str(std::vector<std::string> &, const std::string &, const std::string &)
76  */
77 long cmdline_get_arg_long(std::vector<std::string> & cmdline, const std::string & arg, long def);
78 
79 
80 /*! \brief Convert the command line passed to a program into a vector of strings
81  *
82  * After conversion, the command line is able to be used in the other `cmdline_` functions
83  *
84  * \param [in] argc Number of command line arguments
85  * \param [in] argv The command line arguments
86  * \return The command line, split into a vector of strings and lightly processed.
87  */
88 std::vector<std::string> convert_cmdline(int argc, char ** argv);
89 
90 
91 } // close namespace mirp
bool cmdline_has_arg(const std::vector< std::string > &cmdline, const std::string &arg)
Check to see if the given command line has an argument.
Definition: cmdline.cpp:13
std::string cmdline_get_arg_str(std::vector< std::string > &cmdline, const std::string &arg)
Obtain the value of an argument from the command line as a string.
Definition: cmdline.cpp:35
bool cmdline_get_switch(std::vector< std::string > &cmdline, const std::string &arg)
See if the command line has a switch.
Definition: cmdline.cpp:21
std::vector< std::string > convert_cmdline(int argc, char **argv)
Convert the command line passed to a program into a vector of strings.
Definition: cmdline.cpp:111
long cmdline_get_arg_long(std::vector< std::string > &cmdline, const std::string &arg)
Obtain the value of an argument from the command line as a long integer.
Definition: cmdline.cpp:83