代码拉取完成,页面将自动刷新
同步操作将从 leo/supervisor 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
#include "command.h"
#include <vector>
void Command::Parse(int nArgc, char * pArgv[]) {
_mCmd.clear();
for (int nIdx = 0; nIdx < nArgc; ++nIdx) {
if (pArgv[nIdx] && pArgv[nIdx][0]) {
std::string sParam(pArgv[nIdx]);
size_t nPos = sParam.find_first_of("=");
size_t nLen = sParam.length();
if (nPos == std::string::npos)
_mCmd[sParam] = "";
else if (nPos == 0)
continue;
else if (nPos == nLen - 1)
_mCmd[sParam.substr(0, nLen - 1)] = "";
else
_mCmd[sParam.substr(0, nPos)] = sParam.substr(nPos + 1, nLen - 1 - nPos);
}
}
}
void Command::Parse(const std::string & sCmd) {
_mCmd.clear();
std::vector<std::string> vParams;
std::string sDeli = " \t";
std::string::size_type nStart = 0, nEnd = 0;
while (nEnd < sCmd.length()) {
char nTemp = sCmd[nEnd];
if (sDeli.find(nTemp) != std::string::npos) {
if (nStart != nEnd) vParams.push_back(sCmd.substr(nStart, nEnd - nStart));
++nEnd;
nStart = nEnd;
} else {
++nEnd;
}
}
if (nStart != nEnd) vParams.push_back(sCmd.substr(nStart));
for (size_t i = 0; i < vParams.size(); ++i) {
std::string sParam(vParams[i]);
size_t nPos = sParam.find_first_of("=");
size_t nLen = sParam.length();
if (nPos == std::string::npos)
_mCmd[sParam] = "";
else if (nPos == 0)
continue;
else if (nPos == nLen - 1)
_mCmd[sParam.substr(0, nLen - 1)] = "";
else
_mCmd[sParam.substr(0, nPos)] = sParam.substr(nPos + 1, nLen - 1 - nPos);
}
}
bool Command::Has(const std::string & sKey) {
return _mCmd.find(sKey) != _mCmd.end();
}
std::string Command::Get(const std::string & sKey) {
auto it = _mCmd.find(sKey);
if (it == _mCmd.end()) return "";
return it->second;
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。