繁体   English   中英

在C中循环一个未命名的管道

[英]Looping an unnamed pipe in C

好的,我搜索了这个,但找不到。 抱歉,如果以前已经回答过。

基本上,我有一个用于类的程序,该程序创建两个未命名的管道并使用它们在父进程和子进程之间进行通信。 该命令从父级传递到子级,子级执行该命令,然后向父级返回成功/错误消息。 然后,父级打印出成功/错误消息。 很容易,我已经完成了工作。 现在的问题是,我需要循环播放,直到用户给出“退出”命令为止。 我认为我需要一个while循环,但是在尝试放置后,程序仍然只运行一次然后退出。 这就是我所拥有的。 希望这是有道理的,我省去了代码的处理部分,因为该部分起作用了(就像我对一个类所说的那样),但是如果有什么不合理的地方,我会澄清。 在此先感谢您的帮助。

while (strcmp(cmd,"exit") != 0)
{
/* Create Pipe P to pass command from the  
parent process to the child process and check for errors.*/
    pipe(p);

    /*Create Pipe Q to pass command from the
child process to the parent process and check for errors. */
pipe(q);

/* Create child process */
pid = fork();

switch(pid){

    case -1: /* fork failed */
        perror("main: fork");
        exit(1);
    case 0: /* Child process */
        /*****************************************
                    Stuff being executed in the child process
                    *****************************************/
    default: /* Parent process */
         printf ("Choose from the following list of commands.\n");
            printf ("display\n");
            printf ("chars\n");
            printf ("lines\n");
            printf ("words\n");
            printf ("find\n");
            printf ("exit\n");
            fgets (cmd,10,stdin);

        if ((c = strchr(cmd, '\n')) != NULL)
            {
             *c = '\0';
            }
        /**********************************
                    Pipes being opened and closed for
                    communication between parent and child
                    **************************************/
                break;
    }
    return 0;
}
}

在进入循环之前,需要先创建子代。

您还需要更加小心管道。 主(父)进程必须关闭将不使用的管道的末端,子进程也必须关闭(注意,子进程将封闭与父进程相反的一端)。 当然,如果子级正在读取标准输入并在标准输出上写入,那么您必须安排将管道复制到正确的描述符,然后子级将关闭pipe()调用返回的所有描述符。


试试看这个大小-您必须扩展be_childish()才能进行实际工作...

#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
#include <stdarg.h>
#include <string.h>
#include <errno.h>

static void be_childish(int p[2], int q[2]);
static void be_parental(int p[2], int q[2]);

static void err_exit(const char *fmt, ...)
{
    int errnum = errno;
    va_list args;
    va_start(args, fmt);
    vfprintf(stderr, fmt, args);
    va_end(args);
    fprintf(stderr, "\n%d: %s\n", errnum, strerror(errnum));
    exit(1);
}

int main(void)
{
    int   p[2];     /* Pipe to child */
    int   q[2];     /* Pipe to parent */
    pid_t pid;

    if (pipe(p) != 0)
        err_exit("Failed to create pipe 1");

    if (pipe(q) != 0)
        err_exit("Failed to create pipe 2");

    if ((pid = fork()) < 0)
        err_exit("Failed to create child process");
    else if (pid == 0)
        be_childish(p, q);
    else
        be_parental(p, q);

    return(0);
}

static int prompt(char *buffer, size_t buflen)
{
    char *c;
    printf("Choose from the following list of commands.\n");
    printf("display\n");
    printf("chars\n");
    printf("lines\n");
    printf("words\n");
    printf("find\n");
    printf("exit\n");
    if (fgets(buffer, buflen, stdin) == 0)
        return EOF;
    if ((c = strchr(buffer, '\n')) != NULL)
        *c = '\0';
    if (strcmp(buffer, "exit") == 0)
        return EOF;
    return 0;
}

static void be_parental(int p[2], int q[2])
{
    char  cmd[10] = "";

    if (close(p[0]) != 0 || close(q[1]) != 0)
        err_exit("Parent: failed to close pipe");

    while (prompt(cmd, sizeof(cmd)) != EOF)
    {
        char    buffer[4096];
        ssize_t nbytes;
        if (write(p[1], cmd, strlen(cmd)) != (ssize_t)strlen(cmd))
            err_exit("Write to child failed");
        if ((nbytes = read(q[0], buffer, sizeof(buffer))) < 0)
            err_exit("Read from child failed");
        if (nbytes == 0)
            return;
        printf("%s\n", buffer);
    }
}

static void be_childish(int p[2], int q[2])
{
    char    cmd[10] = "";
    ssize_t nbytes;

    if (close(p[1]) != 0 || close(q[0]) != 0)
        err_exit("Child: failed to close pipe");

    while ((nbytes = read(p[0], cmd, sizeof(cmd))) > 0)
    {
        char    buffer[4096];
        cmd[nbytes] = '\0';
        /* Process command */
        strcpy(buffer, "Response from child: ");
        strcat(buffer, cmd);
        if (write(q[1], buffer, strlen(buffer)) != (ssize_t)strlen(buffer))
            err_exit("Write to parent failed");
    }
}

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM