-
Notifications
You must be signed in to change notification settings - Fork 0
/
commandline.cpp
221 lines (167 loc) · 5.12 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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
#include "commandline.h"
#include "strings.h"
void CommandLineParser::InitializeFromArgcArgv(int argc, const char** argv){
argCount = isProgramNamePresent ? (argc - 1) : argc;
if (isProgramNamePresent){
for(int i = 1; i < argc; i++){
args[i-1] = argv[i];
}
}
else{
for (int i = 0; i < argc; i++){
args[i] = argv[i];
}
}
InternalFlagSetup();
}
void CommandLineParser::InitializeFromStringNoCopy(char* string){
int len = StrLen(string);
bool startOfString = true;
for (int i = 0; i < len; i++){
if (string[i] == ' '){
string[i] = '\0';
startOfString = true;
}
else if(startOfString){
args[argCount] = &string[i];
argCount++;
startOfString = false;
}
}
InternalFlagSetup();
}
void CommandLineParser::InitializeFromString(const char* string){
cmdLineOwnedString = StrDup(string);
InitializeFromStringNoCopy(cmdLineOwnedString);
}
void CommandLineParser::SetOptions(CommandLineOption* _options, int _optionCount){
options = _options;
optionCount = _optionCount;
}
int GetFlagIndex(CommandLineOption* options, int optionCount, const char* flagName){
for(int i = 0; i < optionCount; i++){
if (StrEqual(options[i].name, flagName)){
return i;
}
}
return -1;
}
void CommandLineParser::InternalFlagSetup(){
for (int i = 0; i < argCount; i++){
int flagIdx = GetFlagIndex(options, optionCount, args[i]);
if (flagIdx != -1){
flagIndices[flagCount] = i;
flagCount++;
if (flagCount > 1){
int prevFlagIndex = flagIndices[flagCount - 2];
int prevFlagOptionIndex = GetFlagIndex(options, optionCount, args[prevFlagIndex]);
int numParams = i - prevFlagIndex - 1;
int minParams = options[prevFlagOptionIndex].minParamCount;
int maxParams = options[prevFlagOptionIndex].maxParamCount;
if (numParams < minParams || numParams > maxParams){
ASSERT_WARN("\nError: arg '%s' passed %d parameters, expecting %d-%d.\n", args[prevFlagIndex], numParams, minParams, maxParams);
}
}
}
}
}
bool CommandLineParser::IsFlagPresent(const char* flagName){
int flagIndex = GetFlagIndex(options, optionCount, flagName);
if (flagIndex < 0){
return false;
}
for(int i = 0; i < flagCount; i++){
if (StrEqual(args[flagIndices[i]], flagName)){
return true;
}
}
return false;
}
const char* CommandLineParser::FlagValue(const char* flagName){
int flagOptionIndex = GetFlagIndex(options, optionCount, flagName);
if (flagOptionIndex < 0){
return nullptr;
}
for(int i = 0; i < flagCount; i++){
int flagIndex = flagIndices[i];
if (StrEqual(args[flagIndex], flagName)){
if (flagIndex < argCount - 1 && (i == flagCount - 1 || flagIndices[i+1] > flagIndex + 1)){
return args[flagIndex + 1];
}
}
}
return nullptr;
}
int CommandLineParser::FlagIntValue(const char* flagName){
return Atoi(FlagValue(flagName));
}
int CommandLineParser::FlagArgCount(const char* flagName){
int flagIndex = GetFlagIndex(options, optionCount, flagName);
if (flagIndex < 0){
return 0;
}
for (int i = 0; i < flagCount; i++){
if (StrEqual(args[flagIndices[i]], flagName)){
int nextFlagIndex = (i == flagCount - 1) ? argCount : flagIndices[i + 1];
return nextFlagIndex - flagIndices[i] - 1;
}
}
return 0;
}
const char** CommandLineParser::FlagArgValues(const char* flagName){
int flagIndex = GetFlagIndex(options, optionCount, flagName);
if (flagIndex < 0){
return nullptr;
}
for (int i = 0; i < flagCount; i++){
if (StrEqual(args[flagIndices[i]], flagName)){
if (flagIndices[i] < argCount - 1){
return &args[flagIndices[i]+1];
}
}
}
return nullptr;
}
//const char** FlagArgValues();
#if defined(COMMANDLINE_TEST_MAIN)
CREATE_TEST_CASE("Command line parsing basic test"){
{
CommandLineParser parser;
CommandLineOption options[] = {
{"-f", "File", 1, 1},
{"--expect", "Expected input", 1, 1}
};
parser.SetOptions(options, BNS_ARRAY_COUNT(options));
const char* argvs[] = {"Blah_blah/blah.exe", "-f", "123", "--expect", "Lolwerd"};
parser.InitializeFromArgcArgv(BNS_ARRAY_COUNT(argvs), argvs);
ASSERT(parser.IsFlagPresent("-f"));
ASSERT(parser.IsFlagPresent("--expect"));
ASSERT(!parser.IsFlagPresent("-expect"));
ASSERT(!parser.IsFlagPresent("Lolwerd"));
ASSERT(parser.FlagIntValue("-f") == 123);
ASSERT(StrEqual(parser.FlagValue("--expect"), "Lolwerd"));
ASSERT(parser.FlagArgCount("-f") == 1);
ASSERT(parser.FlagArgCount("--expect") == 1);
}
{
CommandLineParser parser;
CommandLineOption options[] = {
{"-t", "tile", 1, 1},
{"-g", "debug", 0, 0},
{"--controllers", "controllers", 1, 4}
};
parser.SetOptions(options, BNS_ARRAY_COUNT(options));
const char* argvs[] = {"Blah.exe", "-t", "234", "-g", "--controllers", "12", "23", "34"};
parser.InitializeFromArgcArgv(BNS_ARRAY_COUNT(argvs), argvs);
ASSERT(parser.IsFlagPresent("-t"));
ASSERT(parser.IsFlagPresent("-g"));
ASSERT(parser.IsFlagPresent("--controllers"));
ASSERT(parser.FlagArgCount("-t") == 1);
ASSERT(parser.FlagArgCount("-g") == 0);
ASSERT(parser.FlagArgCount("--controllers") == 3);
ASSERT(StrEqual(parser.FlagArgValues("--controllers")[0], "12"));
ASSERT(StrEqual(parser.FlagArgValues("--controllers")[1], "23"));
}
return 0;
}
#endif