-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCommandLine.cpp
136 lines (114 loc) · 3.33 KB
/
CommandLine.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
#include "CommandLine.h"
#include <exception>
#include <iostream>
#include <string>
#include <xo-args/xo-args.h>
class CommandLineImpl
{
public:
CommandLineImpl(int argc, char const * const * argv)
: m_Message(), m_Repeat(10), m_Verbose(false)
{
xo_args_ctx * const ctx = xo_args_create_ctx_advanced(
argc,
argv,
"02-cpp",
"1.0.0",
"This app is an example demonstration using xo-args.",
NULL,
NULL,
NULL,
NULL);
xo_args_arg const * const argMessage = xo_args_declare_arg(
ctx,
"message",
"m",
"MSG",
"a message to print to stdout some number of times (see: --repeat)",
(XO_ARGS_ARG_FLAG)(XO_ARGS_TYPE_STRING | XO_ARGS_ARG_REQUIRED));
xo_args_arg const * const argRepeat =
xo_args_declare_arg(ctx,
"repeat",
"r",
"COUNT",
"the number of times to print the message",
(XO_ARGS_ARG_FLAG)XO_ARGS_TYPE_INT);
xo_args_arg const * const argVerbose =
xo_args_declare_arg(ctx,
"verbose",
"V",
NULL,
"print additional info",
(XO_ARGS_ARG_FLAG)XO_ARGS_TYPE_SWITCH);
if (!xo_args_submit(ctx))
{
// This is a user error: we should catch this exception and
// exit the program.
throw new std::exception();
}
char const * message_value;
// This try_get won't return false because the argument is marked as
// required.
xo_args_try_get_string(argMessage, &message_value);
m_Message = message_value;
// We don't care if these try_get calls return false. In that case we
// will use the default values.
xo_args_try_get_int(argRepeat, &m_Repeat);
xo_args_try_get_bool(argVerbose, &m_Verbose);
if (m_Verbose)
{
std::cout << "verbose = true" << std::endl
<< "message = \"" << m_Message << "\"" << std::endl
<< "repeat = " << m_Repeat << std::endl;
}
xo_args_destroy_ctx(ctx);
}
bool GetVerbose() const
{
return m_Verbose;
}
const std::string & GetMessage() const
{
return m_Message;
}
int64_t GetRepeat() const
{
return m_Repeat;
}
private:
std::string m_Message;
int64_t m_Repeat;
bool m_Verbose;
};
CommandLine::CommandLine(int argc, char const * const * argv)
: m_Impl(new CommandLineImpl(argc, argv))
{
}
CommandLine::~CommandLine()
{
delete m_Impl;
}
bool CommandLine::GetVerbose() const
{
return m_Impl->GetVerbose();
}
const std::string & CommandLine::GetMessage() const
{
return m_Impl->GetMessage();
}
int64_t CommandLine::GetRepeat() const
{
return m_Impl->GetRepeat();
}
/*private*/ CommandLine::CommandLine()
{
}
/*private*/ CommandLine::CommandLine(const CommandLine &)
{
}
/*private*/ CommandLine & CommandLine::operator=(CommandLine &)
{
return *this;
}
#define XO_ARGS_IMPL
#include <xo-args/xo-args.h>