]> ncurses.scripts.mit.edu Git - ncurses.git/blob - ncurses/tinfo/lib_kernel.c
ncurses 5.7 - patch 20090314
[ncurses.git] / ncurses / tinfo / lib_kernel.c
1 /****************************************************************************
2  * Copyright (c) 1998-2004,2009 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  *     and: Thomas E. Dickey                        2002                    *
33  *     and: Juergen Pfeifer                         2009                    *
34  ****************************************************************************/
35
36 /*
37  *      lib_kernel.c
38  *
39  *      Misc. low-level routines:
40  *              erasechar()
41  *              killchar()
42  *              flushinp()
43  *
44  * The baudrate() and delay_output() functions could logically live here,
45  * but are in other modules to reduce the static-link size of programs
46  * that use only these facilities.
47  */
48
49 #include <curses.priv.h>
50 #include <term.h>               /* cur_term */
51
52 MODULE_ID("$Id: lib_kernel.c,v 1.25 2009/02/15 00:47:52 tom Exp $")
53
54 static int
55 _nc_vdisable(void)
56 {
57     int value = -1;
58 #if defined(_POSIX_VDISABLE) && HAVE_UNISTD_H
59     value = _POSIX_VDISABLE;
60 #endif
61 #if defined(_PC_VDISABLE)
62     if (value == -1) {
63         value = fpathconf(0, _PC_VDISABLE);
64         if (value == -1) {
65             value = 0377;
66         }
67     }
68 #elif defined(VDISABLE)
69     if (value == -1)
70         value = VDISABLE;
71 #endif
72     return value;
73 }
74
75 /*
76  *      erasechar()
77  *
78  *      Return erase character as given in cur_term->Ottyb.
79  *
80  */
81
82 NCURSES_EXPORT(char)
83 NCURSES_SP_NAME(erasechar) (NCURSES_SP_DCL0)
84 {
85     int result = ERR;
86     T((T_CALLED("erasechar()")));
87
88     if (cur_term != 0) {
89 #ifdef TERMIOS
90         result = cur_term->Ottyb.c_cc[VERASE];
91         if (result == _nc_vdisable())
92             result = ERR;
93 #else
94         result = cur_term->Ottyb.sg_erase;
95 #endif
96     }
97     returnCode(result);
98 }
99
100 #if NCURSES_SP_FUNCS
101 NCURSES_EXPORT(char)
102 erasechar(void)
103 {
104     return NCURSES_SP_NAME(erasechar) (CURRENT_SCREEN);
105 }
106 #endif
107
108 /*
109  *      killchar()
110  *
111  *      Return kill character as given in cur_term->Ottyb.
112  *
113  */
114
115 NCURSES_EXPORT(char)
116 NCURSES_SP_NAME(killchar) (NCURSES_SP_DCL0)
117 {
118     int result = ERR;
119     T((T_CALLED("killchar()")));
120
121     if (cur_term != 0) {
122 #ifdef TERMIOS
123         result = cur_term->Ottyb.c_cc[VKILL];
124         if (result == _nc_vdisable())
125             result = ERR;
126 #else
127         result = cur_term->Ottyb.sg_kill;
128 #endif
129     }
130     returnCode(result);
131 }
132
133 #if NCURSES_SP_FUNCS
134 NCURSES_EXPORT(char)
135 killchar(void)
136 {
137     return NCURSES_SP_NAME(killchar) (CURRENT_SCREEN);
138 }
139 #endif
140
141 /*
142  *      flushinp()
143  *
144  *      Flush any input on cur_term->Filedes
145  *
146  */
147
148 NCURSES_EXPORT(int)
149 NCURSES_SP_NAME(flushinp) (NCURSES_SP_DCL0)
150 {
151     T((T_CALLED("flushinp()")));
152
153     if (cur_term != 0) {
154 #ifdef TERMIOS
155         tcflush(cur_term->Filedes, TCIFLUSH);
156 #else
157         errno = 0;
158         do {
159             ioctl(cur_term->Filedes, TIOCFLUSH, 0);
160         } while
161             (errno == EINTR);
162 #endif
163         if (SP_PARM) {
164             SP_PARM->_fifohead = -1;
165             SP_PARM->_fifotail = 0;
166             SP_PARM->_fifopeek = 0;
167         }
168         returnCode(OK);
169     }
170     returnCode(ERR);
171 }
172
173 #if NCURSES_SP_FUNCS
174 NCURSES_EXPORT(int)
175 flushinp(void)
176 {
177     return NCURSES_SP_NAME(flushinp) (CURRENT_SCREEN);
178 }
179 #endif