-
Notifications
You must be signed in to change notification settings - Fork 91
/
Copy pathargument_parser.cpp
108 lines (96 loc) · 2.99 KB
/
argument_parser.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
/*
* .============.
* // M A K E / \
* // C++ DEV / \
* // E A S Y / \/ \
* ++ ----------. \/\ .
* \\ \ \ /\ /
* \\ \ \ /
* \\ \ \ /
* -============'
*
* Copyright (c) 2018 Hevake and contributors, all rights reserved.
*
* This file is part of cpp-tbox (https://github.com/cpp-main/cpp-tbox)
* Use of this source code is governed by MIT license that can be found
* in the LICENSE file in the root of the source tree. All contributing
* project authors may be found in the CONTRIBUTORS.md file in the root
* of the source tree.
*/
#include "argument_parser.h"
#include <tbox/base/assert.h>
#include "string.h"
namespace tbox {
namespace util {
namespace {
/**
* \brief pick key and value from '--key=value'
*/
bool PickKeyAndValue(const std::string &orig, std::string &key, std::string &value)
{
auto pos = orig.find_first_of('=');
if (pos == std::string::npos)
return false;
key = orig.substr(0, pos);
value = string::StripQuot(orig.substr(pos + 1));
return true;
}
}
bool ArgumentParser::parse(const std::vector<std::string> &args, int start)
{
for (size_t i = start; i < args.size(); ++i) {
const std::string &curr = args.at(i);
OptionValue opt_value;
if (i != (args.size() - 1))
opt_value.set(args.at(i + 1));
if (curr[0] == '-') {
if (curr[1] == '-') { //! 匹配 --xxxx
const std::string opt = curr.substr(2);
std::string key, value;
//! handle '--key=value'
if (PickKeyAndValue(opt, key, value)) {
OptionValue tmp;
tmp.set(value);
if (!handler_(0, key, tmp))
return false;
} else {
//! handle '--key value'
if (!handler_(0, opt, opt_value))
return false;
}
} else { //! handle -xyz pattern
for (size_t j = 1; j < curr.size(); ++j) {
char opt = curr[j];
if (j != (curr.size() - 1)) {
OptionValue tmp;
if (!handler_(opt, "", tmp))
return false;
} else {
//! only this last opt possess value
if (!handler_(opt, "", opt_value))
return false;
}
}
}
}
if (opt_value.isUsed())
++i;
}
return true;
}
bool ArgumentParser::parse(int argc, const char * const * const argv, int start)
{
TBOX_ASSERT(argc >= 1);
TBOX_ASSERT(argv != nullptr);
TBOX_ASSERT(start >= 0);
std::vector<std::string> args;
for (int i = start; i < argc; ++i) {
const char *curr = argv[i];
if (curr == nullptr)
return false;
args.push_back(curr);
}
return parse(args, 0);
}
}
}