【发布时间】:2018-07-25 21:37:26
【问题描述】:
我正在尝试实时显示我的命令的结果。我已经能够检索结果,但我想要一个实时流。每当我在我的代码中添加一个 while 循环来重复该命令时,就会打开一个窗口,执行该命令,然后关闭该窗口,然后打开另一个窗口并重复该过程,直到程序崩溃。我希望命令提示符在接收命令时在后台运行,因为我在它前面运行 QT gui。
这是我目前的代码:
cmd = _popen("snmpget -v 2c -c public 192.168.127.101 .1.3.6.1.4.1.8691.8.4.6.1.1.3.1.1.4.1", "r"); //input command in format (snmp_function -v version -c community_string IP_address OID)
if (cmd == NULL)
{
perror("_popen");
exit(EXIT_FAILURE);
}
while (fgets(result, sizeof(result), cmd)) //gets full responce string to snmpget and passes string to result variable
{
std::string str = result; //sets string to values in variable result
std::regex rgx("\"([^\"]*)\""); //retrieves only the section of the output string that is between double air quotes
std::smatch match;
std::string buffer;
std::stringstream ss(str);
std::vector<std::string> strings;
//necessary? whitespace
while (ss >> buffer)
strings.push_back(buffer);
for (auto& i : strings)
{
if (std::regex_match(i, match, rgx))
{
std::ssub_match submatch = match[1];
std::string str = submatch.str();
for (size_t j=0; j<str.length(); j++)
{
output[j] = str[j];
}
}
}
}
_pclose(cmd);
std::string 的东西只是为了得到我想要的返回值的一部分。
我通常可以通过在包含此内容的 while 循环的末尾添加 getchar() 来保持窗口打开,但我不想依赖用户按 Enter 来获得更新的结果。
【问题讨论】:
-
除非您的问题与 Qt 有关,否则您不应该使用该标签。
-
@RSahu 我在 Qt 中运行它。如果这是我自己的程序,我会完成,我需要它在我的 Qt gui 运行时运行。我在顶部提到这是在 Qt 中。
-
我明白了。你是不是建议如果你在没有 Qt 的情况下运行上面的代码,你看不到任何问题?
-
@RSahu 是的,因为我可以保持打开状态并等待用户输入。作为我的 Qt 程序的一部分,它需要在没有用户输入的情况下被动发生。
-
这对我来说没有意义。希望对其他人有意义。