]> git.pond.sub.org Git - empserver/blob - src/client/expect.c
Update copyright notice
[empserver] / src / client / expect.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2009, 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 #include "proto.h"
49
50 #ifdef _WIN32
51 #define read(sock, buffer, buf_size) \
52         w32_recv((sock), (buffer), (buf_size), 0)
53 #define write(sock, buffer, buf_size) \
54         w32_send((sock), (buffer), (buf_size), 0)
55 #endif
56
57 int
58 recvline(int s, char *buf)
59 {
60     int sz = 1024;
61     char *bp;
62     char ch;
63     ssize_t n;
64
65     bp = buf;
66     for (;;) {
67         n = read(s, &ch, 1);
68         if (n < 0) {
69             if (errno != EINTR) {
70                 perror("read");
71                 exit(1);
72             }
73             continue;
74         }
75         if (n == 0)
76             return -1;
77         if (ch == '\n')
78             break;
79         if (bp < buf + sz - 2)
80             *bp++ = ch;
81         /* else silently truncate */
82     }
83
84     *bp++ = ch;
85     *bp = 0;
86     return parseid(buf);
87 }
88
89 int
90 parseid(char *line)
91 {
92     char *end;
93     long id;
94
95     id = strtol(line, &end, 36);
96     if (end == line || *end != ' ') {
97         fprintf(stderr, "Malformed id in line %s", line);
98         id = -1;
99     }
100     if (id > C_LAST)
101         id = -1;
102     return id;
103 }
104
105 int
106 expect(int s, int match, char *buf)
107 {
108     return recvline(s, buf) == match;
109 }
110
111 void
112 sendcmd(int s, char *cmd, char *arg)
113 {
114     char buf[128];
115     char *p;
116     ssize_t n;
117     int len;
118
119     len = snprintf(buf, sizeof(buf), "%s %s\n",
120                    cmd, arg != NULL ? arg : "");
121     if (len >= (int)sizeof(buf)) {
122         fprintf(stderr, "%s too long\n", cmd);
123         exit(1);
124     }
125     p = buf;
126     while (len > 0) {
127         n = write(s, buf, len);
128         if (n < 0) {
129             if (errno != EINTR) {
130                 perror("sendcmd: write");
131                 exit(1);
132             }
133             n = 0;
134         }
135         p += n;
136         len -= n;
137     }
138 }