C - プロセス間通信 - お話は楽しい - シグナル
Head First C ―頭とからだで覚えるCの基本、 David Griffiths(著)、 Dawn Griffiths(著)、 中田 秀基(監修)、 木下 哲也(翻訳)、 O’Reilly Media)の 10章(プロセス間通信 - お話は楽しい)、p.460(長いエクササイズ)の解答を求めてみる。
Makefile
all: a.out
./a.out
a.out: main.c
cc main.c
コード
main.c
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <time.h>
#include <string.h>
#include <errno.h>
#include <signal.h>
#include <stdbool.h>
int score = 0;
void end_game(int sig)
{
printf("\n最終得点:%i\n", score);
exit(0);
}
int catch_signal(int sig, void (*handler)(int))
{
struct sigaction action;
action.sa_handler = handler;
sigemptyset(&action.sa_mask);
action.sa_flags = 0;
return sigaction(sig, &action, NULL);
}
void times_up(int sig)
{
puts("\n時間切れ!");
raise(SIGINT);
}
void error(char *msg)
{
fprintf(stderr, "%s: %s\n", msg, strerror(errno));
exit(1);
}
int main()
{
catch_signal(SIGALRM, times_up);
catch_signal(SIGINT, end_game);
srandom(time(0));
while (true)
{
int a = random() % 11;
int b = random() % 11;
char txt[4];
alarm(5);
printf("\n%iかける%iはいくつですか?", a, b);
fgets(txt, 4, stdin);
int answer = atoi(txt);
if (answer == a * b)
{
score++;
}
else
{
printf("\n間違いです!得点:%i\n", score);
}
}
}
入出力結果(Terminal, Zsh)
% make
cc main.c
./a.out
9かける3はいくつですか?27
7かける7はいくつですか?49
3かける0はいくつですか?0
10かける6はいくつですか?60
10かける4はいくつですか?40
8かける3はいくつですか?
時間切れ!
最終得点:5
% make
./a.out
7かける8はいくつですか?0
間違いです!得点:0
1かける1はいくつですか?^C
最終得点:0
% echo $?
0
%