1 /****************************************************************************
2  * Copyright (c) 1998,1999,2000 Free Software Foundation, Inc.              *
3  *                                                                          *
4  * Permission is hereby granted, free of charge, to any person obtaining a  *
5  * copy of this software and associated documentation files (the            *
6  * "Software"), to deal in the Software without restriction, including      *
7  * without limitation the rights to use, copy, modify, merge, publish,      *
8  * distribute, distribute with modifications, sublicense, and/or sell       *
9  * copies of the Software, and to permit persons to whom the Software is    *
10  * furnished to do so, subject to the following conditions:                 *
11  *                                                                          *
12  * The above copyright notice and this permission notice shall be included  *
13  * in all copies or substantial portions of the Software.                   *
14  *                                                                          *
15  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS  *
16  * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF               *
17  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.   *
18  * IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,   *
19  * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR    *
20  * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR    *
21  * THE USE OR OTHER DEALINGS IN THE SOFTWARE.                               *
22  *                                                                          *
23  * Except as contained in this notice, the name(s) of the above copyright   *
24  * holders shall not be used in advertising or otherwise to promote the     *
25  * sale, use or other dealings in this Software without prior written       *
26  * authorization.                                                           *
27  ****************************************************************************/
28 
29 /****************************************************************************
30  *  Author: Zeyd M. Ben-Halim <zmbenhal@netcom.com> 1992,1995               *
31  *     and: Eric S. Raymond <esr@snark.thyrsus.com>                         *
32  ****************************************************************************/
33 
34 /* $FreeBSD: src/contrib/ncurses/ncurses/tinfo/lib_raw.c,v 1.2.2.2 2000/10/12 18:40:51 peter Exp $ */
35 /* $DragonFly: src/contrib/ncurses/ncurses/tinfo/Attic/lib_raw.c,v 1.2 2003/06/17 04:24:03 dillon Exp $ */
36 
37 /*
38  *	raw.c
39  *
40  *	Routines:
41  *		raw()
42  *		cbreak()
43  *		noraw()
44  *		nocbreak()
45  *		qiflush()
46  *		noqiflush()
47  *		intrflush()
48  *
49  */
50 
51 #include <curses.priv.h>
52 #include <term.h>		/* cur_term */
53 
54 MODULE_ID("$Id: lib_raw.c,v 1.8 2000/09/02 18:08:48 tom Exp $")
55 
56 #if SVR4_TERMIO && !defined(_POSIX_SOURCE)
57 #define _POSIX_SOURCE
58 #endif
59 
60 #if HAVE_SYS_TERMIO_H
61 #include <sys/termio.h>		/* needed for ISC */
62 #endif
63 
64 #ifdef __EMX__
65 #include <io.h>
66 #endif
67 
68 #define COOKED_INPUT	(IXON|BRKINT|PARMRK)
69 
70 #ifdef TRACE
71 #define BEFORE(N)	if (_nc_tracing&TRACE_BITS) _tracef("%s before bits: %s", N, _nc_tracebits())
72 #define AFTER(N)	if (_nc_tracing&TRACE_BITS) _tracef("%s after bits: %s", N, _nc_tracebits())
73 #else
74 #define BEFORE(s)
75 #define AFTER(s)
76 #endif /* TRACE */
77 
78 int
79 raw(void)
80 {
81     T((T_CALLED("raw()")));
82     if (SP != 0 && cur_term != 0) {
83 
84 	SP->_raw = TRUE;
85 	SP->_cbreak = 1;
86 
87 #ifdef __EMX__
88 	setmode(SP->_ifd, O_BINARY);
89 #endif
90 
91 #ifdef TERMIOS
92 	BEFORE("raw");
93 	cur_term->Nttyb.c_lflag &= ~(ICANON | ISIG | IEXTEN);
94 	cur_term->Nttyb.c_iflag &= ~(COOKED_INPUT);
95 	cur_term->Nttyb.c_cc[VMIN] = 1;
96 	cur_term->Nttyb.c_cc[VTIME] = 0;
97 	AFTER("raw");
98 #else
99 	cur_term->Nttyb.sg_flags |= RAW;
100 #endif
101 	returnCode(_nc_set_tty_mode(&cur_term->Nttyb));
102     }
103     returnCode(ERR);
104 }
105 
106 int
107 cbreak(void)
108 {
109     T((T_CALLED("cbreak()")));
110 
111     SP->_cbreak = 1;
112 
113 #ifdef __EMX__
114     setmode(SP->_ifd, O_BINARY);
115 #endif
116 
117 #ifdef TERMIOS
118     BEFORE("cbreak");
119     cur_term->Nttyb.c_lflag &= ~ICANON;
120     cur_term->Nttyb.c_iflag &= ~ICRNL;
121     cur_term->Nttyb.c_lflag |= ISIG;
122     cur_term->Nttyb.c_cc[VMIN] = 1;
123     cur_term->Nttyb.c_cc[VTIME] = 0;
124     AFTER("cbreak");
125 #else
126     cur_term->Nttyb.sg_flags |= CBREAK;
127 #endif
128     returnCode(_nc_set_tty_mode(&cur_term->Nttyb));
129 }
130 
131 void
132 qiflush(void)
133 {
134     T((T_CALLED("qiflush()")));
135 
136     /*
137      * Note: this implementation may be wrong.  See the comment under
138      * intrflush().
139      */
140 
141 #ifdef TERMIOS
142     BEFORE("qiflush");
143     cur_term->Nttyb.c_lflag &= ~(NOFLSH);
144     AFTER("qiflush");
145     (void) _nc_set_tty_mode(&cur_term->Nttyb);
146     returnVoid;
147 #endif
148 }
149 
150 int
151 noraw(void)
152 {
153     T((T_CALLED("noraw()")));
154 
155     SP->_raw = FALSE;
156     SP->_cbreak = 0;
157 
158 #ifdef __EMX__
159     setmode(SP->_ifd, O_TEXT);
160 #endif
161 
162 #ifdef TERMIOS
163     BEFORE("noraw");
164     cur_term->Nttyb.c_lflag |= ISIG | ICANON |
165 	(cur_term->Ottyb.c_lflag & IEXTEN);
166     cur_term->Nttyb.c_iflag |= COOKED_INPUT;
167     AFTER("noraw");
168 #else
169     cur_term->Nttyb.sg_flags &= ~(RAW | CBREAK);
170 #endif
171     returnCode(_nc_set_tty_mode(&cur_term->Nttyb));
172 }
173 
174 int
175 nocbreak(void)
176 {
177     T((T_CALLED("nocbreak()")));
178 
179     SP->_cbreak = 0;
180 
181 #ifdef __EMX__
182     setmode(SP->_ifd, O_TEXT);
183 #endif
184 
185 #ifdef TERMIOS
186     BEFORE("nocbreak");
187     cur_term->Nttyb.c_lflag |= ICANON;
188     cur_term->Nttyb.c_iflag |= ICRNL;
189     AFTER("nocbreak");
190 #else
191     cur_term->Nttyb.sg_flags &= ~CBREAK;
192 #endif
193     returnCode(_nc_set_tty_mode(&cur_term->Nttyb));
194 }
195 
196 void
197 noqiflush(void)
198 {
199     T((T_CALLED("noqiflush()")));
200 
201     /*
202      * Note: this implementation may be wrong.  See the comment under
203      * intrflush().
204      */
205 
206 #ifdef TERMIOS
207     BEFORE("noqiflush");
208     cur_term->Nttyb.c_lflag |= NOFLSH;
209     AFTER("noqiflush");
210     (void) _nc_set_tty_mode(&cur_term->Nttyb);
211     returnVoid;
212 #endif
213 }
214 
215 int
216 intrflush(WINDOW *win GCC_UNUSED, bool flag)
217 {
218     T((T_CALLED("intrflush(%d)"), flag));
219 
220     /*
221      * This call does the same thing as the qiflush()/noqiflush() pair.  We
222      * know for certain that SVr3 intrflush() tweaks the NOFLSH bit; on the
223      * other hand, the match (in the SVr4 man pages) between the language
224      * describing NOFLSH in termio(7) and the language describing
225      * qiflush()/noqiflush() in curs_inopts(3x) is too exact to be coincidence.
226      */
227 
228 #ifdef TERMIOS
229     BEFORE("intrflush");
230     if (flag)
231 	cur_term->Nttyb.c_lflag &= ~(NOFLSH);
232     else
233 	cur_term->Nttyb.c_lflag |= (NOFLSH);
234     AFTER("intrflush");
235     returnCode(_nc_set_tty_mode(&cur_term->Nttyb));
236 #else
237     returnCode(ERR);
238 #endif
239 }
240