-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProgArgManager.cpp
59 lines (46 loc) · 1.32 KB
/
ProgArgManager.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#include "ProgArgManager.h"
namespace nlab {
ProgArgManager::ProgArgManager(int argc, char** argv, std::string version, std::ostream& output)
: m_argc{argc}
, m_argv{argv}
, m_version{version}
, m_output{output}
, m_all_options{"Allowed options"}
, m_optional_options{"Optional"}
, m_mandatory_options{"Mandatory (last option name can be omitted)"}
{
}
void ProgArgManager::addGenericOptions()
{
bpo::options_description generic_opt("Generic");
generic_opt.add_options()("help,h", "display this help text and exit");
if (!m_version.empty())
generic_opt.add_options()("version,v", "display version information and exit");
m_all_options.add(generic_opt);
}
// Required by template parameter pack
void ProgArgManager::addOptions()
{
}
// Required by template parameter pack
void ProgArgManager::retriveValues(bool& check_mandatory)
{
(void)check_mandatory;
}
void ProgArgManager::printHelp()
{
m_output << m_all_options << "\n";
}
void ProgArgManager::printVersion()
{
m_output << m_version << "\n";
}
std::string ProgArgManager::getName(const std::string& name_and_symbol)
{
auto coma_pos = name_and_symbol.find(',');
if (std::string::npos == coma_pos)
return name_and_symbol;
else
return name_and_symbol.substr(0, coma_pos);
}
} // namespace nlab