Linux でパイプされた Stdin/Stdout を使用して子プロセスを実行する
Linux で、pipedstdin/stdout を使用して子プロセスを実行するには、次の組み合わせが必要です。 Linux syscall または POSIX 関数。これを実現するには、次の手法を利用します。
以下は、これらの手法を実装する C の例です。
#include <iostream> #include <unistd.h> #include <stdlib.h> using namespace std; int main() { // Input string string s = "Hello, world!"; // Create pipes for stdin and stdout int stdinPipe[2], stdoutPipe[2]; pipe(stdinPipe); pipe(stdoutPipe); // Fork a child process int pid = fork(); if (pid == 0) { // Child process // Redirect stdin and stdout to pipes dup2(stdinPipe[0], STDIN_FILENO); // Read from pipe dup2(stdoutPipe[1], STDOUT_FILENO); // Write to pipe // Close unused file descriptors close(stdinPipe[1]); close(stdoutPipe[0]); // Execute "foo" with piped stdin execlp("foo", "foo", NULL); // Exit child process on failure exit(1); } else if (pid > 0) { // Parent process // Close unused file descriptors close(stdinPipe[0]); close(stdoutPipe[1]); // Write to stdin pipe write(stdinPipe[1], s.c_str(), s.length()); close(stdinPipe[1]); // Read from stdout pipe char buffer[256]; int bytesRead = 0; string output; while ((bytesRead = read(stdoutPipe[0], buffer, sizeof(buffer))) > 0) { output.append(buffer, bytesRead); } close(stdoutPipe[0]); // Print output string cout << output << endl; } return 0; }
このコード スニペット:
以上がLinux でパイプされた Stdin/Stdout を使用して子プロセスを実行する方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。