-
Notifications
You must be signed in to change notification settings - Fork 6
/
ArgumentParser.cpp
61 lines (51 loc) · 2.04 KB
/
ArgumentParser.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
/**
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "ArgumentParser.h"
#include <algorithm>
#include <cstdlib>
ArgumentParser::ArgumentParser(int m_argc, char* m_argv[]) :
argv(&m_argv[1], &m_argv[1] + (m_argc-1))
{ }
bool ArgumentParser::is(const std::string& s) const {
return std::find(argv.begin(), argv.end(), s) != argv.end();
}
std::string ArgumentParser::getStr(const std::string& s, const std::string& defaultValue) const {
std::vector<std::string>::const_iterator it = std::find(argv.begin(), argv.end(), s);
return it != argv.end() and (it+1) != argv.end() ?
*(it+1) :
defaultValue;
}
float ArgumentParser::getNumeric(const std::string& s, float defaultValue) const {
std::vector<std::string>::const_iterator it = std::find(argv.begin(), argv.end(), s);
return it != argv.end() and (it+1) != argv.end()?
atof((*(it+1)).c_str()) :
defaultValue;
}
std::vector<std::string> ArgumentParser::getNakedArguments() const {
std::vector<std::string> noSwitchArgs;
bool sawSwitch = false;
for (size_t i = 0; i<argv.size(); i++) {
const bool beginsWithDash = argv[i].find_first_of("-")==0;
if (not beginsWithDash) {
if (not sawSwitch)
noSwitchArgs.push_back(argv[i]);
sawSwitch = false;
} else if (beginsWithDash) {
sawSwitch = true;
}
}
return noSwitchArgs;
};