計算機科学のブログ

C - プロセス間通信 - お話は楽しい - パイプ, 親子

Head First C ―頭とからだで覚えるCの基本David Griffiths(著)、 Dawn Griffiths(著)、 中田 秀基(監修)、 木下 哲也(翻訳)、 O’Reilly Media)の 10章(プロセス間通信 - お話は楽しい)、p.447(エクササイズ)の解答を求めてみる。

Makefile

all: news_opener
	./news_opener database

news_opener: news_opener.c
	cc news_opener.c -o news_opener

コード

news_opener.c

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

void error(char *msg)
{
    fprintf(stderr, "%s:%s\n", msg, strerror(errno));
    exit(1);
}
void open_url(char *url)
{
    char launch[255];
    sprintf(launch, "'%s'", url);
    if (execlp("open", "open", url, NULL) == -1)
    {
        error("ブラウザーで開けませんでした。");
    }
}
int main(int argc, char *argv[])
{
    char *phrase = argv[1];
    char *vars[] = {"RSS_FEED=https://cs.mkamimura.com/posts/index.xml", NULL};
    int fd[2];
    if (pipe(fd) == -1)
    {
        error("パイプを作成できません。");
    }
    pid_t pid = fork();
    if (pid == -1)
    {
        error("プロセスをフォークできません。");
    }
    if (!pid)
    {
        close(fd[0]);
        dup2(fd[1], 1);
        if (execle("/opt/local/bin/python", "/opt/local/bin/python",
                   "rssgossip.py", "-u", phrase, NULL, vars) == -1)
        {
            error("スクリプトを実行できません。");
        }
    }
    close(fd[1]);
    dup2(fd[0], 0);
    char line[255];
    while (fgets(line, 255, stdin))
    {
        if (line[0] == '\t')
        {
            puts(line + 1);
            open_url(line + 1);
        }
    }
}

入出力結果(Terminal, Zsh)

% make
cc news_opener.c -o news_opener
./news_opener database
https://cs.mkamimura.com/posts/2020/08/Databases-%E3%83%86%E3%83%BC%E3%83%96%E3%83%AB-%E8%87%AA%E5%B7%B1%E7%B5%90%E5%90%88-%E9%87%8D%E8%A4%87%E3%81%AE%E5%9B%9E%E9%81%BF.html

%