Modificato il makefile per la generazione automatica delle figure,
[gapil.git] / sources / FortuneServer.c
1 /* FortuneServer.c
2  * 
3  * Copyright (C) 2002 Simone Piccardi
4  * 
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or (at
8  * your option) any later version.
9  * 
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License for more details.
14  * 
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18  */
19 /****************************************************************
20  *
21  * Program fortuned 
22  * Fortune server
23  *
24  * Author: Simone Piccardi
25  * Aug. 2002
26  *
27  * Usage: fortuned -h give all info
28  *
29  * $Id: FortuneServer.c,v 1.4 2002/08/19 17:34:23 piccardi Exp $
30  *
31  ****************************************************************/
32 /* 
33  * Include needed headers
34  */
35 #include <sys/types.h>   /* predefined types */
36 #include <sys/stat.h>    /*  */
37 #include <unistd.h>      /* include unix standard library */
38 #include <stdio.h>       /* include standard I/O library */
39 #include <stdlib.h>      /* standard library */
40 #include <string.h>      /* ANSI C standard string */
41 #include <errno.h>       /* errorstring */
42 #include <signal.h>      /* signals */
43 #include <fcntl.h>       /*  */
44
45 #include "macros.h"
46 #include "wrappers.h"
47
48 /* Subroutines declaration */
49 void usage(void);
50 void HandSIGTERM(int signo);
51 int FortuneParse(char *file, char **fortune, int n);
52
53 /* name of well known fifo */
54 char *fifoname = "/tmp/fortune.fifo";
55 int main(int argc, char *argv[])
56 {
57 /* Variables definition */
58     int i, n = 0;
59     char *fortunefilename = "/usr/share/games/fortunes/italia";
60     char **fortune;
61     char line[80];
62     int fifo_server, fifo_client;
63     int nread;
64     /*
65      * Input section: decode parameters passed in the calling 
66      * Use getopt function
67      */
68     opterr = 0;                              /* don't want writing to stderr */
69     while ( (i = getopt(argc, argv, "hn:f:")) != -1) {
70         switch (i) {
71         /* 
72          * Handling options 
73          */ 
74         case 'h':  
75             printf("Wrong -h option use\n");
76             usage();
77             return(0);
78             break;
79         case 'f':
80             fortunefilename = optarg;
81             break;
82         case 'n':
83             n = strtol(optarg, NULL, 10);
84             fortune = (char **) calloc(sizeof(*fortune), n);
85             break;
86         case '?':                                    /* unrecognized options */
87             printf("Unrecognized options -%c\n",optopt);
88             usage();
89         default:                                       /* should not reached */
90             usage();
91         }
92     }
93     /* ***********************************************************
94      * 
95      *           Options processing completed
96      *
97      *                Main code beginning
98      * 
99      * ***********************************************************/
100     if (n==0) usage();          /* if no pool depth exit printing usage info */
101     Signal(SIGTERM, HandSIGTERM);            /* set handlers for termination */
102     Signal(SIGINT, HandSIGTERM);
103     Signal(SIGQUIT, HandSIGTERM);
104     i = FortuneParse(fortunefilename, fortune, n);          /* parse phrases */
105     for (n=0; n<i; n++) debug("%s%%\n", fortune[n]);
106     /* 
107      * Comunication section 
108      */
109     if (mkfifo(fifoname, 0622)) {  /* create well known fifo if does't exist */
110         if (errno!=EEXIST) {
111             perror("Cannot create well known fifo");
112             exit(1);
113         }
114     }
115     /* open fifo two times to avoid EOF */
116     fifo_server = open(fifoname, O_RDONLY);
117     if (fifo_server < 0) {
118         perror("Cannot open read only well known fifo");
119         exit(1);
120     }
121     if (open(fifoname, O_WRONLY) < 0) {
122         perror("Cannot open write only well known fifo");
123         exit(1);
124     }
125     /* Main body: loop over requests */
126     while (1) {
127         nread = read(fifo_server, line, 79);                 /* read request */
128         if (nread < 0) {
129             perror("Read Error");
130             exit(1);
131         }
132         line[nread] = 0;                       /* terminate fifo name string */
133         debug("%s %d\n", line,nread);
134         n = random() % i;                             /* select random value */
135         debug("fortune[%d]=%s\n", n, fortune[n]);
136         fifo_client = open(line, O_WRONLY);              /* open client fifo */
137         if (fifo_client < 0) {
138             debug("Client fifo is %s\n", line);
139             perror("Cannot open");
140             exit(1);
141         }
142         nread = write(fifo_client,                           /* write phrase */
143                       fortune[n], strlen(fortune[n])+1);
144         close(fifo_client);                             /* close client fifo */
145     }
146     debug("Exiting for unknown reasons\n");
147 }
148 /*
149  * routine to print usage info and exit
150  */
151 void usage(void) {
152     printf("Elementary fortune server\n");
153     printf("Usage:\n");
154     printf("  fortuned [-h] [-f] -n XXX \n");
155     printf("  -h   print this help\n");
156     printf("  -f filename   set file for fortunes\n");
157     printf("  -n XXX        set pool depth\n");
158     exit(1);
159 }
160 /*
161  * Signal Handler to manage termination
162  */
163 void HandSIGTERM(int signo) {
164     debug("Terminated by %s\n", strsignal(signo));
165     unlink(fifoname);
166     exit(0);
167 }