0

我正在编写一个程序,在该程序中我使用系统调用 fork() 创建一个子进程,然后创建一个孙子进程,以及在子进程和孙子进程之间创建一个管道。我认为我的实现相当不错,但是当我运行程序时,它只是直接跳过了我代码中的提示。

基本上我们有这个:

-Process 启动
Fork() create child
Child 创建管道
Fork() 创建孙子,管道继承。

TL;DR- 代码跳过 UI 提示,不确定我是否正确输入数据,不确定我是否正确将数据读入进程。

如何读取管道中的输入?

#include <stdio.h>
#include <unistd.h>
#include <sys/types.h>
#include <stdlib.h>

void main(int argc, char *argv[])
{
        int p[2];
        int pid, pid2;

        pid = fork();

        if(pid == 0)
        {
                pipe(p);
                pid2 = fork();

                switch(pid2)
                {
                        case -1:
                                printf("CASE 1");
                                exit(-1);
                        case 0:
                                close(0);
                                dup(p[0]);
                                close(p[0]);
                                close(p[1]);
                                execl("./Sort/sort", 0);
                                break;
                        default:
                                close(1);
                                dup(p[1]);
                                close(p[1]);
                                close(p[0]);
                                execl("./Pre/pre", 0);
                                break;
                }
          }
          else
          {
                wait(pid);
                printf("Process Completed\n");
                exit(0);
           }
}

pre 的子进程:

#include <stdio.h>

void main (int argc, char *argv[])
{
        char n1[20];
        int g1;
        FILE *ofp, *ifp;
        int track;

        ofp = fopen("output.txt", "w");

        while(track != -1)
        {
                printf("Please enter the student's grade and then name, ");
                printf("separated by a space: ");
                scanf("%3d %s", &g1, n1);

                if (g1 >= 60)
                {
                        fprintf(ofp, "%s\n", n1);
                }

                printf("Add another name?(-1 to quit, 0 to continue): ");
                scanf("%d", &track);
        }
        fclose(ofp);

        ifp = fopen("output.txt", "r");
        printf("Students that made a 60+:\n");
        while(fscanf(ifp, "%s", n1) == 1)
                printf("%s\n", n1);

        fclose(ifp);

排序的子进程:

#include <stdio.h>
#include <string.h>
#include <stdlib.h>


int stringcmp(const void *a, const void *b)
{
    const char **ia = (const char **)a;
    const char **ib = (const char **)b;
    return strcmp(*ia, *ib);
}

void main(int argc, char *argv[])
{
     int i = 0;
     int num = 0;
     int j = 0;
     char name[20];

          printf("How many names would you like to enter? ");
          scanf("%d", &num);

          char **input = malloc(num * sizeof(char*));

          for (i=0; i < num; i++)
          {
                printf("Please input a name(first only): ");
                scanf("%s", name);
                input[i] = strdup(name);
          }

          qsort(input, num, sizeof(char *), stringcmp);

          printf("Names:\n");

          for(j = 0; j < num; j++)
               printf("%s\n", input[j]);


          for( i = 0; i < num; i++ ) free(input[i]);
          free(input);
4

2 回答 2

1

观察pre 输出到 stdout 的提示。该文本将最终出现在管道中,最终将出现在sort'sstdin中。

你应该fprintf把所有的提示都交给stderr.

pre也不以sort;预期的格式输出文本 sort需要一个整数n,后跟n单词(名字)。所以,这应该是在;上输出的唯一文本。其他所有内容都需要转到文件或.prestdoutstderr

PS 另外,使用dup2(p[0], 0)而不是close(0); dup(p[0])因为它使您的意图更清晰,并可能避免线程问题(当然只有在您有线程时才相关,但值得牢记)。

于 2012-09-21T06:30:53.847 回答
0

这是如何做到这一点的两个例子

  1. http://www.gnu.org/software/libc/manual/html_node/Creating-a-Pipe.html
  2. http://tldp.org/LDP/lpg/node11.html

编辑:我可以告诉您,您正在尝试将“./Pre/pre”的输出通过管道传输到“./Sort/sort”的输入,但我不确定“代码跳过 UI 提示”是什么意思,因为并且case 1:default:没有任何提示。究竟是什么问题?如果您想要更具体的内容,请在您的问题中解释更多细节。

于 2012-09-21T05:53:03.697 回答