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
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
|
/* $OpenBSD: lib_raw.c,v 1.3 1997/12/03 05:21:27 millert Exp $ */
/***************************************************************************
* COPYRIGHT NOTICE *
****************************************************************************
* ncurses is copyright (C) 1992-1995 *
* Zeyd M. Ben-Halim *
* zmbenhal@netcom.com *
* Eric S. Raymond *
* esr@snark.thyrsus.com *
* *
* Permission is hereby granted to reproduce and distribute ncurses *
* by any means and for any fee, whether alone or as part of a *
* larger distribution, in source or in binary form, PROVIDED *
* this notice is included with any such distribution, and is not *
* removed from any of its header files. Mention of ncurses in any *
* applications linked with it is highly appreciated. *
* *
* ncurses comes AS IS with no warranty, implied or expressed. *
* *
***************************************************************************/
/*
* raw.c
*
* Routines:
* raw()
* echo()
* nl()
* cbreak()
* noraw()
* noecho()
* nonl()
* nocbreak()
* qiflush()
* noqiflush()
* intrflush()
*
*/
#include <curses.priv.h>
#include <term.h> /* cur_term */
MODULE_ID("Id: lib_raw.c,v 1.21 1997/11/01 19:05:35 tom Exp $")
#if defined(SVR4_TERMIO) && !defined(_POSIX_SOURCE)
#define _POSIX_SOURCE
#endif
#if HAVE_SYS_TERMIO_H
#include <sys/termio.h> /* needed for ISC */
#endif
/* may be undefined if we're using termio.h */
#ifndef TOSTOP
#define TOSTOP 0
#endif
#ifndef IEXTEN
#define IEXTEN 0
#endif
#define COOKED_INPUT (IXON|BRKINT|PARMRK)
#ifdef TRACE
typedef struct {unsigned int val; const char *name;} BITNAMES;
static void lookup_bits(char *buf, const BITNAMES *table, const char *label, unsigned int val)
{
const BITNAMES *sp;
(void) strcat(buf, label);
(void) strcat(buf, ": {");
for (sp = table; sp->name; sp++)
if (sp->val != 0
&& (val & sp->val) == sp->val)
{
(void) strcat(buf, sp->name);
(void) strcat(buf, ", ");
}
if (buf[strlen(buf) - 2] == ',')
buf[strlen(buf) - 2] = '\0';
(void) strcat(buf,"} ");
}
char *_tracebits(void)
/* describe the state of the terminal control bits exactly */
{
char *buf;
static const BITNAMES
#ifdef TERMIOS
iflags[] =
{
{BRKINT, "BRKINT"},
{IGNBRK, "IGNBRK"},
{IGNPAR, "IGNPAR"},
{PARMRK, "PARMRK"},
{INPCK, "INPCK"},
{ISTRIP, "ISTRIP"},
{INLCR, "INLCR"},
{IGNCR, "IGNC"},
{ICRNL, "ICRNL"},
{IXON, "IXON"},
{IXOFF, "IXOFF"},
{0, NULL}
#define ALLIN (BRKINT|IGNBRK|IGNPAR|PARMRK|INPCK|ISTRIP|INLCR|IGNCR|ICRNL|IXON|IXOFF)
},
oflags[] =
{
{OPOST, "OPOST"},
{0, NULL}
#define ALLOUT (OPOST)
},
cflags[] =
{
{CLOCAL, "CLOCAL"},
{CREAD, "CREAD"},
{CSTOPB, "CSTOPB"},
#if !defined(CS5) || !defined(CS8)
{CSIZE, "CSIZE"},
#endif
{HUPCL, "HUPCL"},
{PARENB, "PARENB"},
{PARODD|PARENB, "PARODD"}, /* concession to readability */
{0, NULL}
#define ALLCTRL (CLOCAL|CREAD|CSIZE|CSTOPB|HUPCL|PARENB|PARODD)
},
lflags[] =
{
{ECHO, "ECHO"},
{ECHOE|ECHO, "ECHOE"}, /* concession to readability */
{ECHOK|ECHO, "ECHOK"}, /* concession to readability */
{ECHONL, "ECHONL"},
{ICANON, "ICANON"},
{ISIG, "ISIG"},
{NOFLSH, "NOFLSH"},
{TOSTOP, "TOSTOP"},
{IEXTEN, "IEXTEN"},
{0, NULL}
#define ALLLOCAL (ECHO|ECHONL|ICANON|ISIG|NOFLSH|TOSTOP|IEXTEN)
};
buf = _nc_trace_buf(0,
8 + sizeof(iflags) +
8 + sizeof(oflags) +
8 + sizeof(cflags) +
8 + sizeof(lflags) +
8);
if (cur_term->Nttyb.c_iflag & ALLIN)
lookup_bits(buf, iflags, "iflags", cur_term->Nttyb.c_iflag);
if (cur_term->Nttyb.c_oflag & ALLOUT)
lookup_bits(buf, oflags, "oflags", cur_term->Nttyb.c_oflag);
if (cur_term->Nttyb.c_cflag & ALLCTRL)
lookup_bits(buf, cflags, "cflags", cur_term->Nttyb.c_cflag);
#if defined(CS5) && defined(CS8)
switch (cur_term->Nttyb.c_cflag & CSIZE) {
case CS5: strcat(buf, "CS5 "); break;
case CS6: strcat(buf, "CS6 "); break;
case CS7: strcat(buf, "CS7 "); break;
case CS8: strcat(buf, "CS8 "); break;
default: strcat(buf, "CSIZE? "); break;
}
#endif
if (cur_term->Nttyb.c_lflag & ALLLOCAL)
lookup_bits(buf, lflags, "lflags", cur_term->Nttyb.c_lflag);
#else
/* reference: ttcompat(4M) on SunOS 4.1 */
#ifndef EVENP
#define EVENP 0
#endif
#ifndef LCASE
#define LCASE 0
#endif
#ifndef LLITOUT
#define LLITOUT 0
#endif
#ifndef ODDP
#define ODDP 0
#endif
#ifndef TANDEM
#define TANDEM 0
#endif
cflags[] =
{
{CBREAK, "CBREAK"},
{CRMOD, "CRMOD"},
{ECHO, "ECHO"},
{EVENP, "EVENP"},
{LCASE, "LCASE"},
{LLITOUT, "LLITOUT"},
{ODDP, "ODDP"},
{RAW, "RAW"},
{TANDEM, "TANDEM"},
{XTABS, "XTABS"},
{0, NULL}
#define ALLCTRL (CBREAK|CRMOD|ECHO|EVENP|LCASE|LLITOUT|ODDP|RAW|TANDEM|XTABS)
};
buf = _nc_trace_buf(0,
8 + sizeof(cflags));
if (cur_term->Nttyb.sg_flags & ALLCTRL)
{
lookup_bits(buf, cflags, "cflags", cur_term->Nttyb.sg_flags);
}
#endif
return(buf);
}
#define BEFORE(N) if (_nc_tracing&TRACE_BITS) _tracef("%s before bits: %s", N, _tracebits())
#define AFTER(N) if (_nc_tracing&TRACE_BITS) _tracef("%s after bits: %s", N, _tracebits())
#else
#define BEFORE(s)
#define AFTER(s)
#endif /* TRACE */
int raw(void)
{
T((T_CALLED("raw()")));
SP->_raw = TRUE;
SP->_cbreak = TRUE;
#ifdef TERMIOS
BEFORE("raw");
cur_term->Nttyb.c_lflag &= ~(ICANON|ISIG);
cur_term->Nttyb.c_iflag &= ~(COOKED_INPUT);
cur_term->Nttyb.c_cc[VMIN] = 1;
cur_term->Nttyb.c_cc[VTIME] = 0;
AFTER("raw");
#else
cur_term->Nttyb.sg_flags |= RAW;
#endif
returnCode(_nc_set_curterm(&cur_term->Nttyb));
}
int cbreak(void)
{
T((T_CALLED("cbreak()")));
SP->_cbreak = TRUE;
#ifdef TERMIOS
BEFORE("cbreak");
cur_term->Nttyb.c_lflag &= ~ICANON;
cur_term->Nttyb.c_iflag &= ~ICRNL;
cur_term->Nttyb.c_lflag |= ISIG;
cur_term->Nttyb.c_cc[VMIN] = 1;
cur_term->Nttyb.c_cc[VTIME] = 0;
AFTER("cbreak");
#else
cur_term->Nttyb.sg_flags |= CBREAK;
#endif
returnCode(_nc_set_curterm( &cur_term->Nttyb));
}
int echo(void)
{
T((T_CALLED("echo()")));
SP->_echo = TRUE;
returnCode(OK);
}
int nl(void)
{
T((T_CALLED("nl()")));
SP->_nl = TRUE;
returnCode(OK);
}
int qiflush(void)
{
T((T_CALLED("qiflush()")));
/*
* Note: this implementation may be wrong. See the comment under
* intrflush().
*/
#ifdef TERMIOS
BEFORE("qiflush");
cur_term->Nttyb.c_lflag &= ~(NOFLSH);
AFTER("qiflush");
returnCode(_nc_set_curterm( &cur_term->Nttyb));
#else
returnCode(ERR);
#endif
}
int noraw(void)
{
T((T_CALLED("noraw()")));
SP->_raw = FALSE;
SP->_cbreak = FALSE;
#ifdef TERMIOS
BEFORE("noraw");
cur_term->Nttyb.c_lflag |= ISIG|ICANON;
cur_term->Nttyb.c_iflag |= COOKED_INPUT;
AFTER("noraw");
#else
cur_term->Nttyb.sg_flags &= ~(RAW|CBREAK);
#endif
returnCode(_nc_set_curterm( &cur_term->Nttyb));
}
int nocbreak(void)
{
T((T_CALLED("nocbreak()")));
SP->_cbreak = 0;
#ifdef TERMIOS
BEFORE("nocbreak");
cur_term->Nttyb.c_lflag |= ICANON;
cur_term->Nttyb.c_iflag |= ICRNL;
AFTER("nocbreak");
#else
cur_term->Nttyb.sg_flags &= ~CBREAK;
#endif
returnCode(_nc_set_curterm( &cur_term->Nttyb));
}
int noecho(void)
{
T((T_CALLED("noecho()")));
SP->_echo = FALSE;
returnCode(OK);
}
int nonl(void)
{
T((T_CALLED("nonl()")));
SP->_nl = FALSE;
returnCode(OK);
}
int noqiflush(void)
{
T((T_CALLED("noqiflush()")));
/*
* Note: this implementation may be wrong. See the comment under
* intrflush().
*/
#ifdef TERMIOS
BEFORE("noqiflush");
cur_term->Nttyb.c_lflag |= NOFLSH;
AFTER("noqiflush");
returnCode(_nc_set_curterm( &cur_term->Nttyb));
#else
returnCode(ERR);
#endif
}
int intrflush(WINDOW *win GCC_UNUSED, bool flag)
{
T((T_CALLED("intrflush(%d)"), flag));
/*
* This call does the same thing as the qiflush()/noqiflush()
* pair. We know for certain that SVr3 intrflush() tweaks the
* NOFLSH bit; on the other hand, the match (in the SVr4 man
* pages) between the language describing NOFLSH in termio(7)
* and the language describing qiflush()/noqiflush() in
* curs_inopts(3x) is too exact to be coincidence.
*/
#ifdef TERMIOS
BEFORE("intrflush");
if (flag)
cur_term->Nttyb.c_lflag &= ~(NOFLSH);
else
cur_term->Nttyb.c_lflag |= (NOFLSH);
AFTER("intrflush");
returnCode(_nc_set_curterm( &cur_term->Nttyb));
#else
returnCode(ERR);
#endif
}
|