web-dev-qa-db-ja.com

パイプを使用して2つのプログラム間で簡単な文字列を送信するにはどうすればよいですか?

ネットで検索してみましたが、リソースはほとんどありません。小さな例で十分です。

編集、つまり、互いに通信する2つの異なるCプログラム。 1つのプログラムが「Hi」を送信し、もう1つのプログラムがそれを受信する必要があります。そんな感じ。

104
user244333

通常のパイプは、2つの関連するプロセスのみを接続できます。プロセスによって作成され、最後のプロセスが閉じると消えます。

named pipe は、その動作からFIFOとも呼ばれ、関係のない2つの接続に使用できますプロセスおよびプロセスとは独立して存在します。誰も使用していない場合でも存在できることを意味します。 FIFOは、 mkfifo() ライブラリ関数を使用して作成されます。

writer.c

#include <fcntl.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <unistd.h>

int main()
{
    int fd;
    char * myfifo = "/tmp/myfifo";

    /* create the FIFO (named pipe) */
    mkfifo(myfifo, 0666);

    /* write "Hi" to the FIFO */
    fd = open(myfifo, O_WRONLY);
    write(fd, "Hi", sizeof("Hi"));
    close(fd);

    /* remove the FIFO */
    unlink(myfifo);

    return 0;
}

reader.c

#include <fcntl.h>
#include <stdio.h>
#include <sys/stat.h>
#include <unistd.h>

#define MAX_BUF 1024

int main()
{
    int fd;
    char * myfifo = "/tmp/myfifo";
    char buf[MAX_BUF];

    /* open, read, and display the message from the FIFO */
    fd = open(myfifo, O_RDONLY);
    read(fd, buf, MAX_BUF);
    printf("Received: %s\n", buf);
    close(fd);

    return 0;
}

注:簡単にするため、上記のコードではエラーチェックを省略しています。

150
jschmier

Cでパイプを作成する から、パイプを使用するプログラムをフォークする方法を示します。 fork()を使いたくない場合は、 名前付きパイプ を使用できます。

さらに、prog1 | prog2の出力をstdoutに送信し、prog1stdinから読み取ることで、prog2の効果を得ることができます。また、/dev/stdinという名前のファイルを開いてstdinを読み取ることもできます(ただし、移植性は不明です)。

/*****************************************************************************
 Excerpt from "Linux Programmer's Guide - Chapter 6"
 (C)opyright 1994-1995, Scott Burkett
 ***************************************************************************** 
 MODULE: pipe.c
 *****************************************************************************/

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

int main(void)
{
        int     fd[2], nbytes;
        pid_t   childpid;
        char    string[] = "Hello, world!\n";
        char    readbuffer[80];

        pipe(fd);

        if((childpid = fork()) == -1)
        {
                perror("fork");
                exit(1);
        }

        if(childpid == 0)
        {
                /* Child process closes up input side of pipe */
                close(fd[0]);

                /* Send "string" through the output side of pipe */
                write(fd[1], string, (strlen(string)+1));
                exit(0);
        }
        else
        {
                /* Parent process closes up output side of pipe */
                close(fd[1]);

                /* Read in a string from the pipe */
                nbytes = read(fd[0], readbuffer, sizeof(readbuffer));
                printf("Received string: %s", readbuffer);
        }

        return(0);
}
40
Stephen
dup2( STDIN_FILENO, newfd )

そして読む:

char reading[ 1025 ];
int fdin = 0, r_control;
if( dup2( STDIN_FILENO, fdin ) < 0 ){
    perror( "dup2(  )" );
    exit( errno );
}
memset( reading, '\0', 1025 );
while( ( r_control = read( fdin, reading, 1024 ) ) > 0 ){
    printf( "<%s>", reading );
    memset( reading, '\0', 1025 );
}
if( r_control < 0 )
    perror( "read(  )" );    
close( fdin );    

しかし、私はfcntlがより良い解決策になると思います

echo "salut" | code
8
mlouk

1つのプログラムがstdoutに書き込むものは、stdinを介して別のプログラムによって読み取ることができます。したがって、単純にcを使用して、printf()を使用して何かを出力するにはprog1を記述し、scanf()を使用して何かを読み取るにはprog2を記述します。その後、ちょうど実行

./prog1 | ./prog2
6
Johan

サンプルはこちら

int main()
{
    char buff[1024] = {0};
    FILE* cvt;
    int status;
    /* Launch converter and open a pipe through which the parent will write to it */
    cvt = popen("converter", "w");
    if (!cvt)
    {
        printf("couldn't open a pipe; quitting\n");
        exit(1)
    }
    printf("enter Fahrenheit degrees: " );
    fgets(buff, sizeof (buff), stdin); /*read user's input */
    /* Send expression to converter for evaluation */
    fprintf(cvt, "%s\n", buff);
    fflush(cvt);
    /* Close pipe to converter and wait for it to exit */
    status=pclose(cvt);
    /* Check the exit status of pclose() */
    if (!WIFEXITED(status))
        printf("error on closing the pipe\n");
    return 0;
}

このプログラムの重要な手順は次のとおりです。

  1. 子プロセスと親のパイプとの間の関連付けを確立するpopen()呼び出し。
  2. パイプを通常のファイルとして使用して、子プロセスのstdinに書き込むか、stdoutから読み取るfprintf()呼び出し。
  3. パイプを閉じて子プロセスを終了させるpclose()呼び出し。
4
Preet Sangha

まず、プログラム1に文字列をstdoutに書き込みます(画面に表示したい場合)。次に、2番目のプログラムは、ユーザーがキーボードから入力しているように、stdinから文字列を読み取ります。次に実行します:

program_1 | program_2

2
lfagundes

この回答は、将来のGoogle社員に役立つかもしれません。

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

int main(){     
     int p, f;  
     int rw_setup[2];   
     char message[20];      
     p = pipe(rw_setup);    
     if(p < 0){         
        printf("An error occured. Could not create the pipe.");  
        _exit(1);   
     }      
     f = fork();    
     if(f > 0){
        write(rw_setup[1], "Hi from Parent", 15);    
     }  
     else if(f == 0){       
        read(rw_setup[0],message,15);       
        printf("%s %d\n", message, r_return);   
     }  
     else{      
        printf("Could not create the child process");   
     }      
     return 0;

}

高度な双方向パイプコールの例 here を見つけることができます。

1
Anjana