mirror of https://github.com/opencv/opencv.git
parent
6a112aa87a
commit
54a202b3d5
26 changed files with 851 additions and 661 deletions
@ -0,0 +1,101 @@ |
||||
Command Line Parser |
||||
=================== |
||||
|
||||
.. highlight:: cpp |
||||
|
||||
CommandLineParser |
||||
-------- |
||||
.. ocv:class:: CommandLineParser |
||||
|
||||
The CommandLineParser class is designed for command line arguments parsing |
||||
|
||||
|
||||
.. ocv:function:: CommandLineParser::CommandLineParser(int argc, const char * const argv[], const std::string keys) |
||||
|
||||
:param argc: |
||||
:param argv: |
||||
:param keys: |
||||
|
||||
.. ocv:function:: T CommandLineParser::get<T>(const std::string& name, bool space_delete = true) |
||||
|
||||
:param name: |
||||
:param space_delete: |
||||
|
||||
.. ocv:function:: T CommandLineParser::get<T>(int index, bool space_delete = true) |
||||
|
||||
:param index: |
||||
:param space_delete: |
||||
|
||||
.. ocv:function:: bool CommandLineParser::has(const std::string& name) |
||||
|
||||
:param name: |
||||
|
||||
.. ocv:function:: bool CommandLineParser::check() |
||||
|
||||
|
||||
.. ocv:function:: void CommandLineParser::about(std::string message) |
||||
|
||||
:param message: |
||||
|
||||
.. ocv:function:: void CommandLineParser::printMessage() |
||||
|
||||
.. ocv:function:: void CommandLineParser::printErrors() |
||||
|
||||
.. ocv:function:: std::string CommandLineParser::getPathToApplication() |
||||
|
||||
|
||||
The sample below demonstrates how to use CommandLineParser: |
||||
|
||||
:: |
||||
|
||||
CommandLineParser parser(argc, argv, keys); |
||||
parser.about("Application name v1.0.0"); |
||||
|
||||
if (parser.has("help")) |
||||
{ |
||||
parser.printMessage(); |
||||
return 0; |
||||
} |
||||
|
||||
int N = parser.get<int>("N"); |
||||
double fps = parser.get<double>parser("fps"); |
||||
std::string path = parser.get<std::string>("path"); |
||||
|
||||
use_time_stamp = parserer.has("timestamp"); |
||||
|
||||
std::string img1 = parser.get<string>(1); |
||||
std::string img2 = parser.get<string>(2); |
||||
|
||||
int repeat = parser.get<int>(3); |
||||
|
||||
if (!parser.check()) |
||||
{ |
||||
parser.printErrors(); |
||||
return 0; |
||||
} |
||||
|
||||
Syntax: |
||||
|
||||
:: |
||||
|
||||
const std::string keys = |
||||
"{help h usage ? | | print this message }" |
||||
"{@image1 | | image1 for compare }" |
||||
"{@image2 | | image2 for compare }" |
||||
"{@repeat |1 | number }" |
||||
"{path |. | path to file }" |
||||
"{fps | -1.0 | fps for output video }" |
||||
"{N count |100 | count of objects }" |
||||
"{ts timestamp | | use time stamp }" |
||||
; |
||||
|
||||
Use: |
||||
|
||||
:: |
||||
|
||||
# ./app -N=200 1.png 2.jpg 19 -ts |
||||
|
||||
# ./app -fps=aaa |
||||
ERRORS: |
||||
Exception: can not convert: [aaa] to [double] |
||||
|
@ -1,384 +0,0 @@ |
||||
#include "precomp.hpp" |
||||
|
||||
#include <iostream> |
||||
#include <iomanip> |
||||
|
||||
using namespace std; |
||||
using namespace cv; |
||||
|
||||
namespace { |
||||
#if 0 |
||||
static void helpParser() |
||||
{ |
||||
printf("\nThe CommandLineParser class is designed for command line arguments parsing\n" |
||||
"Keys map: \n" |
||||
"Before you start to work with CommandLineParser you have to create a map for keys.\n" |
||||
" It will look like this\n" |
||||
" const char* keys =\n" |
||||
" {\n" |
||||
" { s| string| 123asd |string parameter}\n" |
||||
" { d| digit | 100 |digit parameter }\n" |
||||
" { c|noCamera|false |without camera }\n" |
||||
" { 1| |some text|help }\n" |
||||
" { 2| |333 |another help }\n" |
||||
" };\n" |
||||
"Usage syntax: \n" |
||||
" \"{\" - start of parameter string.\n" |
||||
" \"}\" - end of parameter string\n" |
||||
" \"|\" - separator between short name, full name, default value and help\n" |
||||
"Supported syntax: \n" |
||||
" --key1=arg1 <If a key with '--' must has an argument\n" |
||||
" you have to assign it through '=' sign.> \n" |
||||
"<If the key with '--' doesn't have any argument, it means that it is a bool key>\n" |
||||
" -key2=arg2 <If a key with '-' must has an argument \n" |
||||
" you have to assign it through '=' sign.> \n" |
||||
"If the key with '-' doesn't have any argument, it means that it is a bool key\n" |
||||
" key3 <This key can't has any parameter> \n" |
||||
"Usage: \n" |
||||
" Imagine that the input parameters are next:\n" |
||||
" -s=string_value --digit=250 --noCamera lena.jpg 10000\n" |
||||
" CommandLineParser parser(argc, argv, keys) - create a parser object\n" |
||||
" parser.get<string>(\"s\" or \"string\") will return you first parameter value\n" |
||||
" parser.get<string>(\"s\", false or \"string\", false) will return you first parameter value\n" |
||||
" without spaces in end and begin\n" |
||||
" parser.get<int>(\"d\" or \"digit\") will return you second parameter value.\n" |
||||
" It also works with 'unsigned int', 'double', and 'float' types>\n" |
||||
" parser.get<bool>(\"c\" or \"noCamera\") will return you true .\n" |
||||
" If you enter this key in commandline>\n" |
||||
" It return you false otherwise.\n" |
||||
" parser.get<string>(\"1\") will return you the first argument without parameter (lena.jpg) \n" |
||||
" parser.get<int>(\"2\") will return you the second argument without parameter (10000)\n" |
||||
" It also works with 'unsigned int', 'double', and 'float' types \n" |
||||
); |
||||
} |
||||
#endif |
||||
|
||||
vector<string> split_string(const string& str, const string& delimiters) |
||||
{ |
||||
vector<string> res; |
||||
|
||||
string split_str = str; |
||||
size_t pos_delim = split_str.find(delimiters); |
||||
|
||||
while ( pos_delim != string::npos) |
||||
{ |
||||
if (pos_delim == 0) |
||||
{ |
||||
res.push_back(""); |
||||
split_str.erase(0, 1); |
||||
} |
||||
else |
||||
{ |
||||
res.push_back(split_str.substr(0, pos_delim)); |
||||
split_str.erase(0, pos_delim + 1); |
||||
} |
||||
|
||||
pos_delim = split_str.find(delimiters); |
||||
} |
||||
|
||||
res.push_back(split_str); |
||||
|
||||
return res; |
||||
} |
||||
|
||||
string del_space(string name) |
||||
{ |
||||
while ((name.find_first_of(' ') == 0) && (name.length() > 0)) |
||||
name.erase(0, 1); |
||||
|
||||
while ((name.find_last_of(' ') == (name.length() - 1)) && (name.length() > 0)) |
||||
name.erase(name.end() - 1, name.end()); |
||||
|
||||
return name; |
||||
} |
||||
|
||||
}//namespace
|
||||
|
||||
CommandLineParser::CommandLineParser(int argc, const char* const argv[], const char* keys) |
||||
{ |
||||
std::string keys_buffer; |
||||
std::string values_buffer; |
||||
std::string buffer; |
||||
std::string curName; |
||||
std::vector<string> keysVector; |
||||
std::vector<string> paramVector; |
||||
std::map<std::string, std::vector<std::string> >::iterator it; |
||||
size_t flagPosition; |
||||
int currentIndex = 1; |
||||
//bool isFound = false;
|
||||
bool withNoKey = false; |
||||
bool hasValueThroughEq = false; |
||||
|
||||
keys_buffer = keys; |
||||
while (!keys_buffer.empty()) |
||||
{ |
||||
|
||||
flagPosition = keys_buffer.find_first_of('}'); |
||||
flagPosition++; |
||||
buffer = keys_buffer.substr(0, flagPosition); |
||||
keys_buffer.erase(0, flagPosition); |
||||
|
||||
flagPosition = buffer.find('{'); |
||||
if (flagPosition != buffer.npos) |
||||
buffer.erase(flagPosition, (flagPosition + 1)); |
||||
|
||||
flagPosition = buffer.find('}'); |
||||
if (flagPosition != buffer.npos) |
||||
buffer.erase(flagPosition); |
||||
|
||||
paramVector = split_string(buffer, "|"); |
||||
while (paramVector.size() < 4) paramVector.push_back(""); |
||||
|
||||
buffer = paramVector[0]; |
||||
buffer += '|' + paramVector[1]; |
||||
|
||||
//if (buffer == "") CV_ERROR(CV_StsBadArg, "In CommandLineParser need set short and full name");
|
||||
|
||||
paramVector.erase(paramVector.begin(), paramVector.begin() + 2); |
||||
data[buffer] = paramVector; |
||||
} |
||||
|
||||
buffer.clear(); |
||||
keys_buffer.clear(); |
||||
paramVector.clear(); |
||||
for (int i = 1; i < argc; i++) |
||||
{ |
||||
if (!argv[i]) |
||||
break; |
||||
curName = argv[i]; |
||||
if (curName.find('-') == 0 && ((curName[1] < '0') || (curName[1] > '9'))) |
||||
{ |
||||
while (curName.find('-') == 0) |
||||
curName.erase(curName.begin(), (curName.begin() + 1)); |
||||
} |
||||
else |
||||
withNoKey = true; |
||||
if (curName.find('=') != curName.npos) |
||||
{ |
||||
hasValueThroughEq = true; |
||||
buffer = curName; |
||||
curName.erase(curName.find('=')); |
||||
buffer.erase(0, (buffer.find('=') + 1)); |
||||
} |
||||
|
||||
values_buffer = del_space(values_buffer); |
||||
|
||||
for(it = data.begin(); it != data.end(); it++) |
||||
{ |
||||
keys_buffer = it->first; |
||||
keysVector = split_string(keys_buffer, "|"); |
||||
|
||||
for (size_t j = 0; j < keysVector.size(); j++) keysVector[j] = del_space(keysVector[j]); |
||||
|
||||
values_buffer = it->second[0]; |
||||
if (((curName == keysVector[0]) || (curName == keysVector[1])) && hasValueThroughEq) |
||||
{ |
||||
it->second[0] = buffer; |
||||
//isFound = true;
|
||||
break; |
||||
} |
||||
|
||||
if (!hasValueThroughEq && ((curName == keysVector[0]) || (curName == keysVector[1])) |
||||
&& ( |
||||
values_buffer.find("false") != values_buffer.npos ||
|
||||
values_buffer == "" |
||||
)) |
||||
{ |
||||
it->second[0] = "true"; |
||||
//isFound = true;
|
||||
break; |
||||
} |
||||
|
||||
if (!hasValueThroughEq && (values_buffer.find("false") == values_buffer.npos) && |
||||
((curName == keysVector[0]) || (curName == keysVector[1]))) |
||||
{ |
||||
it->second[0] = argv[++i]; |
||||
//isFound = true;
|
||||
break; |
||||
} |
||||
|
||||
|
||||
if (withNoKey) |
||||
{ |
||||
std::string noKeyStr = it->first; |
||||
if(atoi(noKeyStr.c_str()) == currentIndex) |
||||
{ |
||||
it->second[0] = curName; |
||||
currentIndex++; |
||||
//isFound = true;
|
||||
break; |
||||
} |
||||
} |
||||
} |
||||
|
||||
withNoKey = false; |
||||
hasValueThroughEq = false; |
||||
//isFound = false;
|
||||
} |
||||
} |
||||
|
||||
bool CommandLineParser::has(const std::string& keys) |
||||
{ |
||||
std::map<std::string, std::vector<std::string> >::iterator it; |
||||
std::vector<string> keysVector; |
||||
|
||||
for(it = data.begin(); it != data.end(); it++) |
||||
{ |
||||
keysVector = split_string(it->first, "|"); |
||||
for (size_t i = 0; i < keysVector.size(); i++) keysVector[i] = del_space(keysVector[i]); |
||||
|
||||
if (keysVector.size() == 1) keysVector.push_back(""); |
||||
|
||||
if ((del_space(keys).compare(keysVector[0]) == 0) ||
|
||||
(del_space(keys).compare(keysVector[1]) == 0)) |
||||
return true; |
||||
} |
||||
|
||||
return false; |
||||
} |
||||
|
||||
std::string CommandLineParser::getString(const std::string& keys) |
||||
{ |
||||
std::map<std::string, std::vector<std::string> >::iterator it; |
||||
std::vector<string> valueVector; |
||||
|
||||
for(it = data.begin(); it != data.end(); it++) |
||||
{ |
||||
valueVector = split_string(it->first, "|"); |
||||
for (size_t i = 0; i < valueVector.size(); i++) valueVector[i] = del_space(valueVector[i]); |
||||
|
||||
if (valueVector.size() == 1) valueVector.push_back(""); |
||||
|
||||
if ((del_space(keys).compare(valueVector[0]) == 0) ||
|
||||
(del_space(keys).compare(valueVector[1]) == 0)) |
||||
return it->second[0]; |
||||
} |
||||
return string(); |
||||
} |
||||
|
||||
template<typename _Tp> |
||||
_Tp CommandLineParser::fromStringNumber(const std::string& str)//the default conversion function for numbers
|
||||
{ |
||||
return getData<_Tp>(str); |
||||
} |
||||
|
||||
void CommandLineParser::printParams() |
||||
{ |
||||
int col_p = 30; |
||||
int col_d = 50; |
||||
|
||||
std::map<std::string, std::vector<std::string> >::iterator it; |
||||
std::vector<string> keysVector; |
||||
std::string buf; |
||||
for(it = data.begin(); it != data.end(); it++) |
||||
{ |
||||
keysVector = split_string(it->first, "|"); |
||||
for (size_t i = 0; i < keysVector.size(); i++) keysVector[i] = del_space(keysVector[i]); |
||||
|
||||
cout << " "; |
||||
buf = ""; |
||||
if (keysVector[0] != "") |
||||
{ |
||||
buf = "-" + keysVector[0]; |
||||
if (keysVector[1] != "") buf += ", --" + keysVector[1]; |
||||
} |
||||
else if (keysVector[1] != "") buf += "--" + keysVector[1]; |
||||
if (del_space(it->second[0]) != "") buf += "=[" + del_space(it->second[0]) + "]"; |
||||
|
||||
cout << setw(col_p-2) << left << buf; |
||||
|
||||
if ((int)buf.length() > col_p-2)
|
||||
{ |
||||
cout << endl << " "; |
||||
cout << setw(col_p-2) << left << " "; |
||||
} |
||||
|
||||
buf = ""; |
||||
if (del_space(it->second[1]) != "") buf += del_space(it->second[1]); |
||||
|
||||
for(;;) |
||||
{ |
||||
bool tr = ((int)buf.length() > col_d-2) ? true: false; |
||||
std::string::size_type pos = 0; |
||||
|
||||
if (tr) |
||||
{ |
||||
pos = buf.find_first_of(' '); |
||||
for(;;) |
||||
{ |
||||
if (buf.find_first_of(' ', pos + 1 ) < (std::string::size_type)(col_d-2) && |
||||
buf.find_first_of(' ', pos + 1 ) != std::string::npos) |
||||
pos = buf.find_first_of(' ', pos + 1); |
||||
else |
||||
break; |
||||
} |
||||
pos++; |
||||
cout << setw(col_d-2) << left << buf.substr(0, pos) << endl; |
||||
} |
||||
else |
||||
{ |
||||
cout << setw(col_d-2) << left << buf<< endl; |
||||
break; |
||||
} |
||||
|
||||
buf.erase(0, pos); |
||||
cout << " "; |
||||
cout << setw(col_p-2) << left << " "; |
||||
} |
||||
} |
||||
} |
||||
|
||||
template<> |
||||
bool CommandLineParser::get<bool>(const std::string& name, bool space_delete) |
||||
{ |
||||
std::string str_buf = getString(name); |
||||
|
||||
if (space_delete && str_buf != "") |
||||
{ |
||||
str_buf = del_space(str_buf); |
||||
} |
||||
|
||||
if (str_buf == "true") |
||||
return true; |
||||
|
||||
return false; |
||||
} |
||||
template<> |
||||
std::string CommandLineParser::analyzeValue<std::string>(const std::string& str, bool space_delete) |
||||
{ |
||||
if (space_delete) |
||||
{ |
||||
return del_space(str); |
||||
}
|
||||
return str; |
||||
} |
||||
|
||||
template<> |
||||
int CommandLineParser::analyzeValue<int>(const std::string& str, bool /*space_delete*/) |
||||
{ |
||||
return fromStringNumber<int>(str); |
||||
} |
||||
|
||||
template<> |
||||
unsigned int CommandLineParser::analyzeValue<unsigned int>(const std::string& str, bool /*space_delete*/) |
||||
{ |
||||
return fromStringNumber<unsigned int>(str); |
||||
} |
||||
|
||||
template<> |
||||
uint64 CommandLineParser::analyzeValue<uint64>(const std::string& str, bool /*space_delete*/) |
||||
{ |
||||
return fromStringNumber<uint64>(str); |
||||
} |
||||
|
||||
template<> |
||||
float CommandLineParser::analyzeValue<float>(const std::string& str, bool /*space_delete*/) |
||||
{ |
||||
return fromStringNumber<float>(str); |
||||
} |
||||
|
||||
template<> |
||||
double CommandLineParser::analyzeValue<double>(const std::string& str, bool /*space_delete*/) |
||||
{ |
||||
return fromStringNumber<double>(str); |
||||
} |
@ -0,0 +1,406 @@ |
||||
|
||||
#include "precomp.hpp" |
||||
|
||||
#include <iostream> |
||||
|
||||
namespace cv |
||||
{ |
||||
bool cmp_params(const CommandLineParserParams & p1, const CommandLineParserParams & p2) |
||||
{ |
||||
if (p1.number > p2.number) |
||||
return false; |
||||
|
||||
if (p1.number == -1 && p2.number == -1) |
||||
{ |
||||
if (p1.keys[0].compare(p2.keys[0]) > 0) |
||||
{ |
||||
return false; |
||||
} |
||||
} |
||||
|
||||
return true; |
||||
} |
||||
|
||||
CommandLineParser::CommandLineParser(int argc, const char * const argv[], const std::string keys) |
||||
{ |
||||
// path to application
|
||||
size_t pos_s = std::string(argv[0]).find_last_of("/\\"); |
||||
if (pos_s == std::string::npos) |
||||
{ |
||||
path_to_app = ""; |
||||
app_name = std::string(argv[0]); |
||||
} |
||||
else |
||||
{ |
||||
path_to_app = std::string(argv[0]).substr(0, pos_s); |
||||
app_name = std::string(argv[0]).substr(pos_s + 1, std::string(argv[0]).length() - pos_s); |
||||
} |
||||
|
||||
error = false; |
||||
error_message = ""; |
||||
|
||||
// parse keys
|
||||
std::vector<std::string> k = split_range_string(keys, '{', '}'); |
||||
|
||||
int jj = 0; |
||||
for (size_t i = 0; i < k.size(); i++) |
||||
{ |
||||
std::vector<std::string> l = split_string(k[i], '|', true); |
||||
CommandLineParserParams p; |
||||
p.keys = split_string(l[0]); |
||||
p.def_value = l[1]; |
||||
p.help_message = cat_string(l[2]); |
||||
p.number = -1; |
||||
if (p.keys[0][0] == '@') |
||||
{ |
||||
p.number = jj; |
||||
jj++; |
||||
} |
||||
|
||||
data.push_back(p); |
||||
} |
||||
|
||||
// parse argv
|
||||
jj = 0; |
||||
for (int i = 1; i < argc; i++) |
||||
{ |
||||
std::string s = std::string(argv[i]); |
||||
|
||||
if (s.find('=') != std::string::npos && s.find('=') < s.length()) |
||||
{ |
||||
std::vector<std::string> k_v = split_string(s, '=', true); |
||||
for (int h = 0; h < 2; h++) |
||||
{ |
||||
if (k_v[0][0] == '-') |
||||
k_v[0] = k_v[0].substr(1, k_v[0].length() -1); |
||||
} |
||||
apply_params(k_v[0], k_v[1]); |
||||
} |
||||
else if (s.length() > 1 && s[0] == '-') |
||||
{ |
||||
for (int h = 0; h < 2; h++) |
||||
{ |
||||
if (s[0] == '-') |
||||
s = s.substr(1, s.length() - 1); |
||||
} |
||||
apply_params(s, "true"); |
||||
} |
||||
else if (s[0] != '-') |
||||
{ |
||||
apply_params(jj, s); |
||||
jj++; |
||||
} |
||||
} |
||||
|
||||
sort_params(); |
||||
} |
||||
|
||||
void CommandLineParser::about(std::string message) |
||||
{ |
||||
about_message = message; |
||||
} |
||||
|
||||
void CommandLineParser::apply_params(std::string key, std::string value) |
||||
{ |
||||
for (size_t i = 0; i < data.size(); i++) |
||||
{ |
||||
for (size_t k = 0; k < data[i].keys.size(); k++) |
||||
{ |
||||
if (key.compare(data[i].keys[k]) == 0) |
||||
{ |
||||
data[i].def_value = value; |
||||
break; |
||||
} |
||||
} |
||||
} |
||||
} |
||||
|
||||
void CommandLineParser::apply_params(int i, std::string value) |
||||
{ |
||||
for (size_t j = 0; j < data.size(); j++) |
||||
{ |
||||
if (data[j].number == i) |
||||
{ |
||||
data[j].def_value = value; |
||||
break; |
||||
} |
||||
} |
||||
} |
||||
|
||||
void CommandLineParser::sort_params() |
||||
{ |
||||
for (size_t i = 0; i < data.size(); i++) |
||||
{ |
||||
sort(data[i].keys.begin(), data[i].keys.end()); |
||||
} |
||||
|
||||
sort (data.begin(), data.end(), cmp_params); |
||||
} |
||||
|
||||
std::string CommandLineParser::cat_string(std::string str) |
||||
{ |
||||
while (!str.empty() && str[0] == ' ') |
||||
{ |
||||
str = str.substr(1, str.length() - 1); |
||||
} |
||||
|
||||
while (!str.empty() && str[str.length() - 1] == ' ') |
||||
{ |
||||
str = str.substr(0, str.length() - 1); |
||||
} |
||||
|
||||
return str; |
||||
} |
||||
|
||||
std::string CommandLineParser::getPathToApplication() |
||||
{ |
||||
return path_to_app; |
||||
} |
||||
|
||||
bool CommandLineParser::has(const std::string& name) |
||||
{ |
||||
for (size_t i = 0; i < data.size(); i++) |
||||
{ |
||||
for (size_t j = 0; j < data[i].keys.size(); j++) |
||||
{ |
||||
if (name.compare(data[i].keys[j]) == 0 && std::string("true").compare(data[i].def_value) == 0) |
||||
{ |
||||
return true; |
||||
} |
||||
} |
||||
} |
||||
return false; |
||||
} |
||||
|
||||
bool CommandLineParser::check() |
||||
{ |
||||
return error == false; |
||||
} |
||||
|
||||
void CommandLineParser::printErrors() |
||||
{ |
||||
if (error) |
||||
{ |
||||
std::cout << std::endl << "ERRORS:" << std::endl << error_message << std::endl; |
||||
} |
||||
} |
||||
|
||||
void CommandLineParser::printMessage() |
||||
{ |
||||
if (about_message != "") |
||||
std::cout << about_message << std::endl; |
||||
|
||||
std::cout << "Usage: " << app_name << " [params] "; |
||||
|
||||
for (size_t i = 0; i < data.size(); i++) |
||||
{ |
||||
if (data[i].number > -1) |
||||
{ |
||||
std::string name = data[i].keys[0].substr(1, data[i].keys[0].length() - 1); |
||||
std::cout << name << " "; |
||||
} |
||||
} |
||||
|
||||
std::cout << std::endl << std::endl; |
||||
|
||||
for (size_t i = 0; i < data.size(); i++) |
||||
{ |
||||
if (data[i].number == -1) |
||||
{ |
||||
std::cout << "\t"; |
||||
for (size_t j = 0; j < data[i].keys.size(); j++) |
||||
{ |
||||
std::string k = data[i].keys[j]; |
||||
if (k.length() > 1) |
||||
{ |
||||
std::cout << "--"; |
||||
} |
||||
else |
||||
{ |
||||
std::cout << "-"; |
||||
} |
||||
std::cout << k; |
||||
|
||||
if (j != data[i].keys.size() - 1) |
||||
{ |
||||
std::cout << ", "; |
||||
} |
||||
} |
||||
std::string dv = cat_string(data[i].def_value); |
||||
if (dv.compare("") != 0) |
||||
{ |
||||
std::cout << " (value:" << dv << ")"; |
||||
} |
||||
std::cout << std::endl << "\t\t" << data[i].help_message << std::endl; |
||||
} |
||||
} |
||||
std::cout << std::endl; |
||||
|
||||
for (size_t i = 0; i < data.size(); i++) |
||||
{ |
||||
if (data[i].number != -1) |
||||
{ |
||||
std::cout << "\t"; |
||||
std::string k = data[i].keys[0]; |
||||
k = k.substr(1, k.length() - 1); |
||||
|
||||
std::cout << k; |
||||
|
||||
std::string dv = cat_string(data[i].def_value); |
||||
if (dv.compare("") != 0) |
||||
{ |
||||
std::cout << " (value:" << dv << ")"; |
||||
} |
||||
std::cout << std::endl << "\t\t" << data[i].help_message << std::endl; |
||||
} |
||||
} |
||||
} |
||||
|
||||
std::vector<std::string> CommandLineParser::split_range_string(std::string str, char fs, char ss) |
||||
{ |
||||
std::vector<std::string> vec; |
||||
std::string word = ""; |
||||
bool begin = false; |
||||
|
||||
while (!str.empty()) |
||||
{ |
||||
if (str[0] == fs) |
||||
{ |
||||
if (begin == true) |
||||
{ |
||||
CV_Error(CV_StsParseError, |
||||
std::string("error in split_range_string(") |
||||
+ str |
||||
+ std::string(", ") |
||||
+ std::string(1, fs) |
||||
+ std::string(", ") |
||||
+ std::string(1, ss) |
||||
+ std::string(")") |
||||
); |
||||
} |
||||
begin = true; |
||||
word = ""; |
||||
str = str.substr(1, str.length() - 1); |
||||
} |
||||
|
||||
if (str[0] == ss) |
||||
{ |
||||
if (begin == false) |
||||
{ |
||||
CV_Error(CV_StsParseError, |
||||
std::string("error in split_range_string(") |
||||
+ str |
||||
+ std::string(", ") |
||||
+ std::string(1, fs) |
||||
+ std::string(", ") |
||||
+ std::string(1, ss) |
||||
+ std::string(")") |
||||
); |
||||
} |
||||
begin = false; |
||||
vec.push_back(word); |
||||
} |
||||
|
||||
if (begin == true) |
||||
{ |
||||
word += str[0]; |
||||
} |
||||
str = str.substr(1, str.length() - 1); |
||||
} |
||||
|
||||
if (begin == true) |
||||
{ |
||||
CV_Error(CV_StsParseError, |
||||
std::string("error in split_range_string(") |
||||
+ str |
||||
+ std::string(", ") |
||||
+ std::string(1, fs) |
||||
+ std::string(", ") |
||||
+ std::string(1, ss) |
||||
+ std::string(")") |
||||
); |
||||
} |
||||
|
||||
return vec; |
||||
} |
||||
|
||||
std::vector<std::string> CommandLineParser::split_string(std::string str, char symbol, bool create_empty_item) |
||||
{ |
||||
std::vector<std::string> vec; |
||||
std::string word = ""; |
||||
|
||||
while (!str.empty()) |
||||
{ |
||||
if (str[0] == symbol) |
||||
{ |
||||
if (!word.empty() || create_empty_item) |
||||
{ |
||||
vec.push_back(word); |
||||
word = ""; |
||||
} |
||||
} |
||||
else |
||||
{ |
||||
word += str[0]; |
||||
} |
||||
str = str.substr(1, str.length() - 1); |
||||
} |
||||
|
||||
if (word != "" || create_empty_item) |
||||
{ |
||||
vec.push_back(word); |
||||
} |
||||
|
||||
return vec; |
||||
} |
||||
|
||||
#undef clp_get |
||||
#define clp_get(T) template<> T CommandLineParser::get<T>(const std::string& name, bool space_delete); |
||||
|
||||
clp_get(int) |
||||
clp_get(unsigned int) |
||||
clp_get(long) |
||||
clp_get(unsigned long) |
||||
clp_get(long long) |
||||
clp_get(unsigned long long) |
||||
clp_get(size_t) |
||||
clp_get(float) |
||||
clp_get(double) |
||||
clp_get(uint64) |
||||
clp_get(int64) |
||||
clp_get(std::string) |
||||
|
||||
#undef clp_from_str |
||||
#define clp_from_str(T) template<> T from_str<T>(const std::string & str); |
||||
|
||||
clp_from_str(int) |
||||
clp_from_str(unsigned int) |
||||
clp_from_str(long) |
||||
clp_from_str(unsigned long) |
||||
clp_from_str(long long) |
||||
clp_from_str(unsigned long long) |
||||
clp_from_str(size_t) |
||||
clp_from_str(uint64) |
||||
clp_from_str(int64) |
||||
clp_from_str(float) |
||||
clp_from_str(double) |
||||
|
||||
template<> |
||||
std::string from_str(const std::string & str) |
||||
{ |
||||
return str; |
||||
} |
||||
|
||||
#undef clp_type_name |
||||
#define clp_type_name(type, name) template<> std::string get_type_name<type>() { return std::string(name);} |
||||
|
||||
clp_type_name(int, "int") |
||||
clp_type_name(unsigned int, "unsigned int") |
||||
clp_type_name(long, "long") |
||||
clp_type_name(long long, "long long") |
||||
clp_type_name(unsigned long long, "unsigned long long") |
||||
clp_type_name(size_t, "size_t") |
||||
clp_type_name(float, "float") |
||||
clp_type_name(double, "double") |
||||
|
||||
} |
Loading…
Reference in new issue