2007年7月29日 星期日

IPC通訊:pipe system call

繼 mkfifo 後,在閱讀 Linux Kernel 3/e 時又發現了一個好物:pipe

雖然也是 pipeline 的東西,但它是一個 system call,也就是可以直接在程式中使用它,以前所用的 IPC 溝通方法不外乎 shared variables,沒有注意到 pipe 這個好用的工具,這麼一來就不用額外建立 node 了,也不用開兩個processes來處理了。

pipe的使用方法很簡單, 在 code 裡直接呼叫 pipe,但要傳入一個大小為 2 的 int array,array[0]當作讀出的管線,array[1]當作寫入的管線,就可以fork出來或用thread,讓兩個行程互相通訊了。

在此要注意的是,在 POSIX 裡所定義的為Half-duplex pile(半雙工管線),也就是要使用某個fd(file descriptor)時,就要關另外一個,若是想要雙向通訊時,就要開兩個pipe;然而在某些UNIX實作了Full-duplex pile(全雙工管線),可以同時讀寫兩個FD。

那麼最重要的,pipe在Linux中是如何實作呢,可惜答案並不是雙向的,不過也不會像POSIX所定義的那麼麻煩,不同於POSIX,在Linux裡使用某個FD時,並不需要關掉另一個,不過若要雙向通訊,還是必需建立兩個pipe就是。

簡單的程式範例:
int fd[2];

int i;

if (pipe(fd)) /* create pipe */
fprintf(stderr, "pipe error\n");

else
if (fork()) /* parent will be reader */

{
close(fd[1]); /* close the `write' pipe */

read(fd[0], &i, sizeof (int)); /* read an integer */

printf("Read the value %d\n", i);

}

else /* child: the writer */

{
close(fd[0]);

srand(time(NULL));

i = rand();

printf("Writing the value %d\n", i);

write(fd[1], &i, sizeof (int));

}

沒有留言: