]> git.pond.sub.org Git - empserver/blob - src/client/expect.c
7e27b515df39e9b4c37ea2eba81055c3e604f941
[empserver] / src / client / expect.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2007, Dave Pare, Jeff Bailey, Thomas Ruschak,
4  *                           Ken Stevens, Steve McClure
5  *
6  *  This program is free software; you can redistribute it and/or modify
7  *  it under the terms of the GNU General Public License as published by
8  *  the Free Software Foundation; either version 2 of the License, or
9  *  (at your option) any later version.
10  *
11  *  This program is distributed in the hope that it will be useful,
12  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  *  GNU General Public License for more details.
15  *
16  *  You should have received a copy of the GNU General Public License
17  *  along with this program; if not, write to the Free Software
18  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  *
20  *  ---
21  *
22  *  See files README, COPYING and CREDITS in the root of the source
23  *  tree for related information and legal notices.  It is expected
24  *  that future projects/authors will amend these files as needed.
25  *
26  *  ---
27  *
28  *  expect.c: Read from the socket, expecting to see a particular code.
29  * 
30  *  Known contributors to this file:
31  *      Steve McClure, 1998
32  *      Markus Armbruster, 2007
33  */
34
35 #include <config.h>
36
37 #include <ctype.h>
38 #include <errno.h>
39 #include <stdio.h>
40 #include <stdlib.h>
41 #include <string.h>
42 #ifndef _WIN32
43 #include <sys/types.h>
44 #include <sys/socket.h>
45 #include <unistd.h>
46 #endif
47 #include "misc.h"
48
49 #ifdef _WIN32
50 #define read(sock, buffer, buf_size) \
51         w32_recv((sock), (buffer), (buf_size), 0)
52 #define write(sock, buffer, buf_size) \
53         w32_send((sock), (buffer), (buf_size), 0)
54 #endif
55
56 int
57 recvline(int s, char *buf)
58 {
59     int sz = 1024;
60     char *bp;
61     char ch;
62     ssize_t n;
63
64     bp = buf;
65     for (;;) {
66         n = read(s, &ch, 1);
67         if (n < 0) {
68             if (errno != EINTR) {
69                 perror("read");
70                 exit(1);
71             }
72             continue;
73         }
74         if (n == 0)
75             return -1;
76         if (ch == '\n')
77             break;
78         if (bp < buf + sz - 2)
79             *bp++ = ch;
80         /* else silently truncate */
81     }
82
83     *bp++ = ch;
84     *bp = 0;
85
86     if (!isxdigit(buf[0]) || buf[1] != ' ') {
87         fprintf(stderr, "Malformed line %s\n", buf);
88         return 0;
89     }
90     return strtol(buf, NULL, 16);
91 }
92
93 int
94 expect(int s, int match, char *buf)
95 {
96     int code = recvline(s, buf);
97     return code == match;
98 }
99
100 void
101 sendcmd(int s, char *cmd, char *arg)
102 {
103     char buf[128];
104     char *p;
105     ssize_t n;
106     int len;
107
108     len = snprintf(buf, sizeof(buf), "%s %s\n",
109                    cmd, arg != NULL ? arg : "");
110     if (len >= (int)sizeof(buf)) {
111         fprintf(stderr, "%s too long\n", cmd);
112         exit(1);
113     }
114     p = buf;
115     while (len > 0) {
116         n = write(s, buf, len);
117         if (n < 0) {
118             if (errno != EINTR) {
119                 perror("sendcmd: write");
120                 exit(1);
121             }
122             n = 0;
123         }
124         p += n;
125         len -= n;
126     }
127 }