C - труба без использования popen

Как я могу преобразовать это:

FILE *f;
char in_buffer[80];
f=popen("command","r");
fgets(in_buffer,sizeof(in_buffer),f)

без использования popen(), но только pipe() или другая инструкция?

1 ответ

Решение

Вот моя простая реализация с комментариями, объясняющими, что делается.

#include <unistd.h>
#include <stdio.h>

FILE *
my_popen (const char *cmd)
{
    int fd[2];
    int read_fd, write_fd;
    int pid;               

    /* First, create a pipe and a pair of file descriptors for its both ends */
    pipe(fd);
    read_fd = fd[0];
    write_fd = fd[1];

    /* Now fork in order to create process from we'll read from */
    pid = fork();
    if (pid == 0) {
        /* Child process */

        /* Close "read" endpoint - child will only use write end */
        close(read_fd);

        /* Now "bind" fd 1 (standard output) to our "write" end of pipe */
        dup2(write_fd,1);

        /* Close original descriptor we got from pipe() */
        close(write_fd);

        /* Execute command via shell - this will replace current process */
        execl("/bin/sh", "sh", "-c", cmd, NULL);

        /* Don't let compiler be angry with us */
        return NULL;
    } else {
        /* Parent */

        /* Close "write" end, not needed in this process */
        close(write_fd);

        /* Parent process is simpler - just create FILE* from file descriptor,
           for compatibility with popen() */
        return fdopen(read_fd, "r");
    }
}

int main ()
{
    FILE *p = my_popen ("ls -l");
    char buffer[1024];
    while (fgets(buffer, 1024, p)) {
        printf (" => %s", buffer);
    }
    fclose(p);
}

Заметки:

  1. Тир код поддерживает только "r" режим popen, Реализация других режимов, а именно "w" Режим оставлен в качестве упражнения для читателя.
  2. Системные функции, используемые в этом примере, могут не работать - обработка ошибок оставлена ​​для читателя.
  3. Реализация pclose оставлено в качестве упражнения для читателя - см. close, waiptid, а также fclose,

Если вы хотите взглянуть на реальные имплементации, вы можете посмотреть на источники OSX, GNU glibc и OpenSolaris, среди других.

Надеюсь это поможет!

Другие вопросы по тегам