-1

好的,我做了一些研究,但找不到任何有用的东西。我正在尝试编写一个程序,它将接收来自 iwconfig 的输入(在 linux 机器上)。然后它将对输入进行排序,进行一些计算并输出到数据库。对输入和输出进行排序不是问题(或者我真的希望不是问题),但我正在努力的是从另一个命令行程序读取输入。我现在拥有的基本 Hello World 程序是:

    #include <iostream>
    #include <cstdlib>

    using namespace std;

    int main() {
        int numbr = 0;
        cout << "Hello world!" << endl;
        cin >> numbr;
        cout << "number is " << numbr;
        cout << system("iwconfig");
        return 0; 
    }

然而,在运行程序时,它所做的只是输出 hello world,询问我的随机输入并再次输出。它不输出 iwconfig(我也将该行作为 system("iwconfig"); 运行,没有输出语句)。有人能解释一下我如何运行像 iwconfig 这样的程序并捕获它的输出吗?

4

1 回答 1

0

“有人能解释一下我如何运行像 iwconfig 这样的程序并捕获它的输出吗?”

检查int system( const char *command );文档。它当然不提供返回值,你想用你的cout语句输出。

您可能希望在您的主程序和iwconfig程序之间建立管道,如此处所述,以控制子进程使用的输入和输出流。

要复制提到的答案改编:

int main() {
    int fd_p2c[2], fd_c2p[2], bytes_read;
    pid_t childpid;
    char readbuffer[80];
    string program_name = "iwconfig";
    string receive_output = "";

    if (pipe(fd_p2c) != 0 || pipe(fd_c2p) != 0) {
        cerr << "Failed to pipe\n";
        exit(1);
    }
    childpid = fork();

    if (childpid < 0) {
        cout << "Fork failed" << endl;
        exit(-1);
    }
    else if (childpid == 0) {
        if (dup2(fd_p2c[0], 0) != 0 ||
            close(fd_p2c[0]) != 0 ||
            close(fd_p2c[1]) != 0) {
            cerr << "Child: failed to set up standard input\n";
            exit(1);
        }
        if (dup2(fd_c2p[1], 1) != 1 ||
            close(fd_c2p[1]) != 0 ||
            close(fd_c2p[0]) != 0) {
            cerr << "Child: failed to set up standard output\n";
            exit(1);
        }

        execl(program_name.c_str(), program_name.c_str(), (char *) 0);
        cerr << "Failed to execute " << program_name << endl;
        exit(1);
    }
    else {
        close(fd_p2c[0]);
        close(fd_c2p[1]);

        cout << "Writing to child: <<" << gulp_command << ">>" << endl;
        int nbytes = gulp_command.length();
        if (write(fd_p2c[1], gulp_command.c_str(), nbytes) != nbytes) {
            cerr << "Parent: short write to child\n";
            exit(1);
        }
        close(fd_p2c[1]);

        while (1) {
            bytes_read = read(fd_c2p[0], readbuffer, sizeof(readbuffer)-1);

            if (bytes_read <= 0) break;

            readbuffer[bytes_read] = '\0';
            receive_output += readbuffer;
        }

        close(fd_c2p[0]);
        cout << "From child: <<" << receive_output << ">>" << endl;
    }
    return 0;
}
于 2014-07-31T19:29:50.980 回答