Varie correzioni, completata revisione capitolo sull'I/O su file
[gapil.git] / sources / TCP_echo_fifth.c
1 /* TCP_echo.c
2  * 
3  * Copyright (C) 2001-2003 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 TCP_echo.c
22  * Simple TCP client for echo service (port 7)
23  *
24  * Author: Simone Piccardi
25  * Jun. 2001
26  *
27  * Usage: echo -h give all info's
28  *
29  ****************************************************************/
30 /* 
31  * Include needed headers
32  */
33 #include <sys/types.h>   /* primitive system data types */
34 #include <unistd.h>      /* unix standard library */
35 #include <arpa/inet.h>   /* IP addresses conversion utilities */
36 #include <sys/socket.h>  /* socket constants, types and functions */
37 #include <stdio.h>       /* standard I/O library */
38 #include <errno.h>       /* error definitions and routines */
39 #include <string.h>      /* C strings library */
40 #include <stdlib.h>      /* C standard library */
41
42 #include "Gapil.h"
43 #include "macros.h"
44
45 #define MAXLINE 256
46 void usage(void);
47 void ClientEcho(FILE * filein, int socket);
48 void SigTERM_hand(int sig);
49
50 /* Program begin */
51 int main(int argc, char *argv[])
52 {
53 /* 
54  * Variables definition  
55  */
56     int sock, i;
57     int reset = 0;
58     struct linger ling;
59     /*
60      * Input section: decode parameters passed in the calling 
61      * Use getopt function
62      */
63     opterr = 0;  /* don't want writing to stderr */
64     while ( (i = getopt(argc, argv, "hr")) != -1) {
65         switch (i) {
66         /* 
67          * Handling options 
68          */ 
69         case 'h':  
70             printf("Wrong -h option use\n");
71             usage();
72             return(1);
73             break;
74         case 'r':
75             reset = 1;
76             break;
77         case '?':   /* unrecognized options */
78             printf("Unrecognized options -%c\n",optopt);
79             usage();
80         default:    /* should not reached */
81             usage();
82         }
83     }
84     /* ***********************************************************
85      * 
86      *           Options processing completed
87      *
88      *                Main code beginning
89      * 
90      * ***********************************************************/
91     /* call sockaddr to get a connected socket */
92     if ( (sock = sockconn(argv[optind], "echo", 6, SOCK_STREAM)) < 0) {
93         if (errno) perror("Socket creation error");
94         return 1;
95     }
96     /* check if resetting on close is required */
97     if (reset) {
98         printf("Setting reset on close \n");
99         ling.l_onoff = 1;
100         ling.l_linger = 0;      
101         if (setsockopt(sock, SOL_SOCKET, SO_LINGER, &ling, sizeof(ling))) {
102             perror("Cannot set linger");
103             exit(1);
104         }
105     }
106     /* do read/write operations */
107     ClientEcho(stdin, sock);
108     /* normal exit */
109     return 0;
110 }
111 /*
112  * routine to print usage info and exit 
113  */
114 void usage(void) {
115     printf("Take daytime from a remote host \n");
116     printf("Usage:\n");
117     printf("  daytime [-h] [-v] [host in dotted decimal form] \n");
118 //    printf("  -v         set verbosity on\n");
119     printf("  -r           require reset on closing\n");
120     printf("  -h           print this help\n");
121     exit(1);
122 }
123
124 void ClientEcho(FILE * filein, int socket) 
125 {
126     char sendbuff[MAXLINE+1], recvbuff[MAXLINE+1];
127     int nread, nwrite; 
128     int maxfd;
129     fd_set fset;
130     int eof = 0;
131     /* initialize file descriptor set */
132     FD_ZERO(&fset);
133     maxfd = max(fileno(filein), socket) + 1;
134     while (1) {
135         FD_SET(socket, &fset);         /* set for the socket */
136         if (eof == 0) {
137             FD_SET(fileno(filein), &fset); /* set for the standard input */
138         }
139         select(maxfd, &fset, NULL, NULL, NULL); /* wait for read ready */
140         if (FD_ISSET(fileno(filein), &fset)) {  /* if ready on stdin */
141             if (fgets(sendbuff, MAXLINE, filein) == NULL) { /* if no input */
142                 eof = 1;               /* EOF on input */
143                 shutdown(socket, SHUT_WR);      /* close write half */
144                 FD_CLR(fileno(filein), &fset);  /* no more interest on stdin */
145             } else {                   /* else we have to write to socket */
146                 nwrite = FullWrite(socket, sendbuff, strlen(sendbuff)); 
147                 if (nwrite < 0) {      /* on error stop */
148                     printf("Errore in scrittura: %s", strerror(errno));
149                     return;
150                 }
151             }
152         }
153         if (FD_ISSET(socket, &fset)) { /* if ready on socket */ 
154             nread = read(socket, recvbuff, strlen(sendbuff)); /* do read */
155             if (nread < 0) {  /* error condition, stop client */
156                 printf("Errore in lettura: %s\n", strerror(errno));
157                 return;
158             }
159             if (nread == 0) { /* server closed connection, stop */
160                 if (eof == 1) {
161                     return;
162                 } else {
163                     printf("EOF prematuro sul socket\n");
164                     return;
165                 }
166             }
167             recvbuff[nread] = 0;   /* else read is ok, write on stdout */
168             if (fputs(recvbuff, stdout) == EOF) {
169                 perror("Errore in scrittura su terminale");
170                 return;
171             }
172         }
173     }
174 }