forked from wrog/lambdamoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnet_single.c
293 lines (257 loc) · 6.75 KB
/
net_single.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
/******************************************************************************
Copyright (c) 1992, 1995, 1996 Xerox Corporation. All rights reserved.
Portions of this code were written by Stephen White, aka ghond.
Use and copying of this software and preparation of derivative works based
upon this software are permitted. Any distribution of this software or
derivative works must comply with all applicable United States export
control laws. This software is made available AS IS, and Xerox Corporation
makes no warranty about the software, its performance or its conformity to
any specification. Any person obtaining a copy of this software is requested
to send their name and post office or electronic mail address to:
Pavel Curtis
Xerox PARC
3333 Coyote Hill Rd.
Palo Alto, CA 94304
*****************************************************************************/
#include "my-ctype.h"
#include "my-fcntl.h"
#include "my-stdio.h"
#include "my-unistd.h"
#include "config.h"
#include "log.h"
#include "network.h"
#include "server.h"
#include "streams.h"
#include "structures.h"
#include "utils.h"
static enum {
STATE_OPEN, STATE_CLOSED
} state = STATE_CLOSED;
static int listening = 0;
static server_listener slistener;
static int binary = 0;
const char *
network_protocol_name(void)
{
return "single-user";
}
const char *
network_usage_string(void)
{
return "";
}
int
network_initialize(int argc, char **argv, Var * desc)
{
*desc = zero;
if (argc != 0)
return 0;
else
return 1;
}
enum error
network_make_listener(server_listener sl, Var desc, network_listener * nl,
Var * canon, const char **name)
{
if (listening)
return E_PERM;
listening = 1;
slistener = sl;
nl->ptr = 0;
*canon = zero;
*name = "standard input";
return E_NONE;
}
int
network_listen(network_listener nl)
{
return 1;
}
int
network_send_line(network_handle nh, const char *line, int flush_ok)
{
printf("%s\n", line);
fflush(stdout);
return 1;
}
int
network_send_bytes(network_handle nh, const char *buffer, int buflen,
int flush_ok)
{
/* Cast to (void *) to discard `const' on some systems */
fwrite((void *) buffer, sizeof(char), buflen, stdout);
fflush(stdout);
return 1;
}
int
network_buffered_output_length(network_handle nh)
{
return 0;
}
const char *
network_connection_name(network_handle nh)
{
return "standard input";
}
void
network_set_connection_binary(network_handle nh, int do_binary)
{
binary = do_binary;
}
#define NETWORK_CO_TABLE(DEFINE, nh, value, _)
/* No network-specific connection options */
void
network_close(network_handle nh)
{
state = STATE_CLOSED;
}
void
network_close_listener(network_listener nl)
{
listening = 0;
}
void
network_shutdown(void)
{
int flags;
if ((flags = fcntl(0, F_GETFL)) < 0
|| fcntl(0, F_SETFL, flags & ~NONBLOCK_FLAG) < 0)
log_perror("Setting standard input blocking again");
}
static int input_suspended = 0;
void
network_suspend_input(network_handle nh)
{
input_suspended = 1;
}
void
network_resume_input(network_handle nh)
{
input_suspended = 0;
}
int
network_process_io(int timeout)
{
network_handle nh;
static server_handle sh;
static Stream *s = 0;
char buffer[1024];
int count;
char *ptr, *end;
int got_some = 0;
if (s == 0) {
int flags;
s = new_stream(1000);
if ((flags = fcntl(0, F_GETFL)) < 0
|| fcntl(0, F_SETFL, flags | NONBLOCK_FLAG) < 0) {
log_perror("Setting standard input non-blocking");
return 0;
}
}
switch (state) {
case STATE_CLOSED:
if (listening) {
sh = server_new_connection(slistener, nh, 0);
state = STATE_OPEN;
got_some = 1;
} else if (timeout != 0)
sleep(timeout);
break;
case STATE_OPEN:
for (;;) {
while (!input_suspended
&& (count = read(0, buffer, sizeof(buffer))) > 0) {
got_some = 1;
if (binary) {
stream_add_raw_bytes_to_binary(s, buffer, count);
server_receive_line(sh, reset_stream(s));
} else
for (ptr = buffer, end = buffer + count;
ptr < end;
ptr++) {
unsigned char c = *ptr;
if (isgraph(c) || c == ' ' || c == '\t')
stream_add_char(s, c);
#ifdef INPUT_APPLY_BACKSPACE
else if (c == 0x08 || c == 0x7F)
stream_delete_char(s);
#endif
else if (c == '\n')
server_receive_line(sh, reset_stream(s));
}
}
if (got_some || timeout == 0)
goto done;
sleep(1);
timeout--;
}
}
done:
return got_some;
}
char rcsid_net_single[] = "$Id$";
/*
* $Log$
* Revision 1.4 2006/12/06 23:57:51 wrog
* New INPUT_APPLY_BACKSPACE option to process backspace/delete characters on nonbinary connections (patch 1571939)
*
* Revision 1.3 2004/05/22 01:25:44 wrog
* merging in WROGUE changes (W_SRCIP, W_STARTUP, W_OOB)
*
* Revision 1.2.12.2 2003/06/07 13:03:55 wrog
* deslashed log entries
*
* Revision 1.2.12.1 2003/06/07 12:59:04 wrog
* introduced connection_option macros
*
* Revision 1.2 1997/03/03 04:19:07 nop
* GNU Indent normalization
*
* Revision 1.1.1.1 1997/03/03 03:45:02 nop
* LambdaMOO 1.8.0p5
*
* Revision 2.4 1996/03/10 01:23:12 pavel
* Added support for `connection_option()'. Added missing include of
* "utils.h". Release 1.8.0.
*
* Revision 2.3 1996/02/08 06:38:35 pavel
* Added network_set_connection_binary() and network_connection_options().
* Updated copyright notice for 1996. Release 1.8.0beta1.
*
* Revision 2.2 1996/01/11 07:44:12 pavel
* Added support for binary I/O. Added network_buffered_output_length().
* Removed one more `unsigned' from the server. Release 1.8.0alpha5.
*
* Revision 2.1 1995/12/30 23:56:29 pavel
* Added support for the new multiple-listening-points interface.
* Release 1.8.0alpha4.
*
* Revision 2.0 1995/11/30 04:45:25 pavel
* New baseline version, corresponding to release 1.8.0alpha1.
*
* Revision 1.8 1992/10/23 23:03:47 pavel
* Added copyright notice.
*
* Revision 1.7 1992/10/21 03:02:35 pavel
* Converted to use new automatic configuration system.
*
* Revision 1.6 1992/10/17 20:45:28 pavel
* Changed to use generic support for POSIX-style non-blocking in "my-fcntl.h"
* instead of a separate, different version.
*
* Revision 1.5 1992/10/06 18:20:11 pavel
* Moved code to set stdin nonblocking out of the initialization routine and
* into the first time that network_process_io() is called.
* Also fixed up that routine to obviously return a value, circumventing a
* warning from dumb compilers.
*
* Revision 1.4 1992/09/26 02:21:07 pavel
* Added support for printing the network protocol name on server start-up.
*
* Revision 1.3 1992/09/11 21:23:52 pavel
* Tracked change to network.h.
*
* Revision 1.2 1992/09/03 23:52:00 pavel
* Added RCS Id and Log strings.
*/