-
Notifications
You must be signed in to change notification settings - Fork 0
/
SeIo.c
328 lines (290 loc) · 5.3 KB
/
SeIo.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
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
/*
* This file is part of the Seyon, Copyright (c) 1992-1993 by Muhammad M.
* Saggaf. All rights reserved.
*
* See the file COPYING (1-COPYING) or the manual page seyon(1) for a full
* statement of rights and permissions for this program.
*/
#include "config.h"
#include <stdio.h>
#include <errno.h>
#include <sys/ioctl.h>
#if HAVE_TERMIOS
#include <termios.h>
#else
#if HAVE_TERMIO
#include <termio.h>
#endif
#endif
#if HAVE_SGTTYB
#include <sys/file.h>
#endif
#if HAVE_MODEM_CONTROL && defined(HPUX)
#include <sys/modem.h>
#endif
#include <X11/Intrinsic.h>
#include "SeDecl.h"
int
io_set_attr(fd, io)
int fd;
#if HAVE_TERMIOS
struct termios *io;
{
int res;
res = tcsetattr(fd, TCSADRAIN, io);
#else
#if HAVE_TERMIO
struct termio *io;
{
int res;
res = ioctl(fd, TCSETAW, io);
#else
#if HAVE_SGTTYB
struct sgttyb *io;
{
int res;
res = ioctl(fd, TIOCSETP, io);
#endif
#endif
#endif
if (res < 0)
SePError("ioctl-set");
return res;
}
int
io_get_attr(fd, io)
int fd;
#if HAVE_TERMIOS
struct termios *io;
{
int res;
res = tcgetattr(fd, io);
#else
#if HAVE_TERMIO
struct termio *io;
{
int res;
res = ioctl(fd, TCGETA, io);
#else
#if HAVE_SGTTYB
struct sgttyb *io;
{
int res;
res = ioctl(fd, TIOCGETP, io);
#endif
#endif
#endif
if (res < 0)
SePError("ioctl-get");
return res;
}
int
TtyIFlush(fd)
int fd;
{
int res;
#if HAVE_TERMIOS
res = tcflush(fd, TCIFLUSH);
#else
#if HAVE_TERMIO
res = ioctl(fd, TCFLSH, 0);
#else
#if HAVE_SGTTYB
res = ioctl(fd, TIOCFLUSH, FREAD);
#endif
#endif
#endif
if (res < 0)
SePError("ioctl-iflush");
return res;
}
int
TtyOFlush(fd)
int fd;
{
int res;
#if HAVE_TERMIOS
res = tcflush(fd, TCOFLUSH);
#else
#if HAVE_TERMIO
res = ioctl(fd, TCFLSH, 1);
#else
#if HAVE_SGTTYB
res = ioctl(fd, TIOCFLUSH, FWRITE);
#endif
#endif
#endif
if (res < 0)
SePError("ioctl-oflush");
return res;
}
int
TtyIOFlush(fd)
int fd;
{
int res;
#if HAVE_TERMIOS
res = tcflush(fd, TCIOFLUSH);
#else
#if HAVE_TERMIO
res = ioctl(fd, TCFLSH, 2);
#else
#if HAVE_SGTTYB
res = ioctl(fd, TIOCFLUSH, 0);
#endif
#endif
#endif
if (res < 0)
SePError("ioctl-ioflush");
return res;
}
int
io_send_break(fd)
int fd;
{
int res;
#if HAVE_TERMIOS
res = tcsendbreak(fd, 0);
#else
#if HAVE_TERMIO
res = ioctl(fd, TCSBRK, 0);
#else
#if HAVE_SGTTYB
res = ioctl(fd, TIOCSBRK);
if (!res) {
sleep(1);
ioctl(fd, TIOCCBRK);
}
#endif
#endif
#endif
return res;
}
void
io_set_speed(io, speed)
#if HAVE_TERMIOS
struct termios *io;
speed_t speed;
{
cfsetospeed(io, speed);
cfsetispeed(io, speed);
#else
#if HAVE_TERMIO
struct termio *io;
speed_t speed;
{
io->c_cflag &= ~CBAUD;
io->c_cflag |= speed;
#else
#if HAVE_SGTTYB
struct sgttyb *io;
speed_t speed;
{
io->sg_ispeed = io->sg_ospeed = speed;
#endif
#endif
#endif
}
speed_t
io_get_speed(io)
#if HAVE_TERMIOS
struct termios *io;
{
return cfgetospeed(io);
#else
#if HAVE_TERMIO
struct termio *io;
{
return io->c_cflag & CBAUD;
#else
#if HAVE_SGTTYB
struct sgttyb *io;
{
return io->sg_ispeed;
#endif
#endif
#endif
}
int
IoGetModemStat(fd)
int fd;
{
#if HAVE_MODEM_CONTROL
#ifndef HPUX9
int rawStat;
#else
mflag rawStat;
#endif
#endif
int retStat, res;
/*
Please note: You do NOT need modem control in order to use Seyon. This
feature is not essentail to Seyon and all you get from it is a nice
display of modem status lines and a clock of on-line time. If your
system doesn't support this feature (i.e. the code below won't compile),
all you have to do is this:
1) define HAVE_MODEM_CONTROL to be NO under your system's
entry in in config.h
2) put the resource:
Seyon.ignoreModemDCD: on
in your ~/.Xresources file
*/
#if HAVE_MODEM_CONTROL
#ifndef HPUX
res = ioctl(fd, TIOCMGET, &rawStat);
#else
res = ioctl(fd, MCGETA, &rawStat);
#endif
if (res < 0) {
SePError("ioctl-getmdm");
return -1;
}
#endif
retStat = 0;
#if HAVE_MODEM_CONTROL
#ifndef HPUX
#ifdef TIOCM_CAR
if (rawStat & TIOCM_CAR) retStat |= MDM_DCD;
#endif
#ifdef TIOCM_DTR
if (rawStat & TIOCM_DTR) retStat |= MDM_DTR;
#endif
#ifdef TIOCM_DSR
if (rawStat & TIOCM_DSR) retStat |= MDM_DSR;
#endif
#ifdef TIOCM_RTS
if (rawStat & TIOCM_RTS) retStat |= MDM_RTS;
#endif
#ifdef TIOCM_CTS
if (rawStat & TIOCM_CTS) retStat |= MDM_CTS;
#endif
#ifdef TIOCM_RNG
if (rawStat & TIOCM_RNG) retStat |= MDM_RNG;
#endif
#else /* HPUX */
/* Note: I'm note sure about the symbol names of HPUX. I used the same
symbols as those used by kermit, but even there there is a comment
that the author is not sure about the symbol names. Someone who has
HPUX please let me know */
#ifdef MDCD
if (rawStat & MDCD) retStat |= MDM_DCD;
#endif
#ifdef MDTR
if (rawStat & MDTR) retStat |= MDM_DTR;
#endif
#ifdef MDSR
if (rawStat & MDSR) retStat |= MDM_DSR;
#endif
#ifdef MRTS
if (rawStat & MRTS) retStat |= MDM_RTS;
#endif
#ifdef MCTS
if (rawStat & MCTS) retStat |= MDM_CTS;
#endif
#ifdef MRI
if (rawStat & MRI) retStat |= MDM_RNG;
#endif
#endif /* HPUX */
#endif /* HAVE_MODEM_CONTROL */
return retStat;
}