> 백엔드 개발 > C++ > 본문

Linux에서 파이프된 Stdin 및 Stdout을 사용하여 하위 프로세스를 실행하는 방법은 무엇입니까?

DDD
풀어 주다: 2024-11-19 15:27:03
원래의
804명이 탐색했습니다.

How to Execute Child Processes with Piped Stdin and Stdout in Linux?

Linux에서 파이프된 Stdin 및 Stdout을 사용하여 하위 프로세스 실행

Linux에서 파이프된 표준 입력(stdin)을 사용하여 하위 프로세스를 실행해야 하는 작업 ) 및 표준 출력(stdout)은 다양한 syscall 또는 POSIX 기능을 통해 수행될 수 있습니다. 특히 Linux 3.0 이상의 경우 Pipe(), fork(), execve() 및 dup2()를 사용하는 것이 좋습니다.

솔루션 개요

  1. 만들기 파이프:

    • pipe()를 사용하여 두 개의 파이프를 만듭니다. 하나는 stdin용(aStdinPipe)이고 다른 하나는 stdout용(aStdoutPipe)입니다.
  2. 포크 프로세스:

    • fork()를 사용하여 하위 프로세스를 만듭니다.
  3. 하위 프로세스의 IO 리디렉션:

    • 하위 프로세스에서 dup2()를 사용하여 stdin을 리디렉션합니다. aStdinPipe[PIPE_READ]에서 하위 stdin으로, stdout/stderr에서 aStdoutPipe[PIPE_WRITE]로.
  4. 사용하지 않는 파이프 닫기:

    • 사용하지 않는 파일을 닫으세요 상위 프로세스의 aStdinPipe[PIPE_READ] 및 aStdoutPipe[PIPE_WRITE] 설명자
  5. 하위 실행:

    • 사용 execve()를 자식 프로세스에서 실행하여 원하는 것을 실행합니다. 명령.
  6. IO 통신:

    • 상위 프로세스에서 StdinPipe[PIPE_WRITE]에 데이터를 기록하여 입력을 제공합니다. 하위 프로세스에 적용됩니다.
    • 다음에서 데이터 읽기 aStdoutPipe[PIPE_READ]는 하위 프로세스의 출력을 수신합니다.

구현

다음 C 코드는 이 솔루션을 보여줍니다.

#include <iostream>
#include <cstdlib>
#include <cstring>
#include <unistd.h>
#include <fcntl.h>

using namespace std;

int main() {
  int aStdinPipe[2], aStdoutPipe[2];
  pid_t childPid;
  char buffer[1024];
  const char* command = "foo";
  string input = "Hello World!";

  // Create pipes
  if (pipe(aStdinPipe) == -1 || pipe(aStdoutPipe) == -1) {
    cerr << "Error creating pipes." << endl;
    return EXIT_FAILURE;
  }

  // Fork child process
  childPid = fork();
  if (childPid == -1) {
    cerr << "Error creating child process." << endl;
    return EXIT_FAILURE;
  }

  // Redirect IO in child process
  if (childPid == 0) {
    // Child process
    if (dup2(aStdinPipe[PIPE_READ], STDIN_FILENO) == -1 ||
        dup2(aStdoutPipe[PIPE_WRITE], STDOUT_FILENO) == -1 ||
        dup2(aStdoutPipe[PIPE_WRITE], STDERR_FILENO) == -1) {
      cerr << "Error redirecting IO in child." << endl;
      return EXIT_FAILURE;
    }

    // Close unused pipes
    close(aStdinPipe[PIPE_READ]);
    close(aStdinPipe[PIPE_WRITE]);
    close(aStdoutPipe[PIPE_WRITE]);

    // Execute command
    execve(command, NULL, NULL);
  }

  // Close unused pipes in parent process
  close(aStdinPipe[PIPE_READ]);
  close(aStdoutPipe[PIPE_WRITE]);

  // Write input to child process
  write(aStdinPipe[PIPE_WRITE], input.c_str(), input.length());

  // Read output from child process
  int numBytesRead = 0;
  while ((numBytesRead = read(aStdoutPipe[PIPE_READ], buffer, sizeof(buffer))) > 0) {
    cout.write(buffer, numBytesRead);
  }

  // Close remaining pipes
  close(aStdinPipe[PIPE_WRITE]);
  close(aStdoutPipe[PIPE_READ]);

  return EXIT_SUCCESS;
}
로그인 후 복사

이 코드는 입력 문자열을 사용하여 foo 명령을 실행합니다. 입력하면 foo의 출력이 콘솔에 인쇄됩니다.

위 내용은 Linux에서 파이프된 Stdin 및 Stdout을 사용하여 하위 프로세스를 실행하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿