Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mpd
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Иван Мажукин
mpd
Commits
c45fe351
You need to sign in or sign up before continuing.
Commit
c45fe351
authored
Jan 17, 2018
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
util/OptionParser: add struct Result
Prepare for option values.
parent
d588da69
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
17 additions
and
13 deletions
+17
-13
CommandLine.cxx
src/CommandLine.cxx
+2
-3
OptionParser.cxx
src/util/OptionParser.cxx
+5
-5
OptionParser.hxx
src/util/OptionParser.hxx
+10
-5
No files found.
src/CommandLine.cxx
View file @
c45fe351
...
...
@@ -309,9 +309,8 @@ ParseCommandLine(int argc, char **argv, struct options &options)
// First pass: handle command line options
OptionParser
parser
(
option_defs
,
argc
,
argv
);
int
option_index
;
while
((
option_index
=
parser
.
Next
())
>=
0
)
{
switch
(
Option
(
option_index
))
{
while
(
auto
o
=
parser
.
Next
())
{
switch
(
Option
(
o
.
index
))
{
case
OPTION_KILL
:
options
.
kill
=
true
;
break
;
...
...
src/util/OptionParser.cxx
View file @
c45fe351
...
...
@@ -23,7 +23,7 @@
#include <string.h>
inline
unsigned
inline
OptionParser
::
Result
OptionParser
::
IdentifyOption
(
const
char
*
s
)
const
{
assert
(
s
!=
nullptr
);
...
...
@@ -33,18 +33,18 @@ OptionParser::IdentifyOption(const char *s) const
for
(
const
auto
&
i
:
options
)
if
(
i
.
HasLongOption
()
&&
strcmp
(
s
+
2
,
i
.
GetLongOption
())
==
0
)
return
&
i
-
options
.
data
;
return
{
int
(
&
i
-
options
.
data
)}
;
}
else
if
(
s
[
1
]
!=
0
&&
s
[
2
]
==
0
)
{
const
char
ch
=
s
[
1
];
for
(
const
auto
&
i
:
options
)
if
(
i
.
HasShortOption
()
&&
ch
==
i
.
GetShortOption
())
return
&
i
-
options
.
data
;
return
{
int
(
&
i
-
options
.
data
)}
;
}
throw
FormatRuntimeError
(
"Unknown option: %s"
,
s
);
}
in
t
OptionParser
::
Resul
t
OptionParser
::
Next
()
{
while
(
!
args
.
empty
())
{
...
...
@@ -55,5 +55,5 @@ OptionParser::Next()
*
remaining_tail
++
=
arg
;
}
return
-
1
;
return
{
-
1
}
;
}
src/util/OptionParser.hxx
View file @
c45fe351
...
...
@@ -45,17 +45,22 @@ public:
remaining_head
(
const_cast
<
const
char
**>
(
_argv
+
1
)),
remaining_tail
(
remaining_head
)
{}
struct
Result
{
int
index
;
constexpr
operator
bool
()
noexcept
{
return
index
>=
0
;
}
};
/**
* Parses current command line entry.
* Regardless of result, advances current position to the next
* command line entry.
*
* Throws on error.
*
* @return the index if an option was found, -1 if there are
* no more options
*/
in
t
Next
();
Resul
t
Next
();
/**
* Returns the remaining non-option arguments.
...
...
@@ -65,7 +70,7 @@ public:
}
private
:
unsigned
IdentifyOption
(
const
char
*
s
)
const
;
Result
IdentifyOption
(
const
char
*
s
)
const
;
};
#endif
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment