]> ncurses.scripts.mit.edu Git - ncurses.git/blob - ncurses/tinfo/lib_kernel.c
84ec299ff503796b80af1af08a451e073d66ea51
[ncurses.git] / ncurses / tinfo / lib_kernel.c
1 /****************************************************************************
2  * Copyright 2020 Thomas E. Dickey                                          *
3  * Copyright 1998-2009,2010 Free Software Foundation, Inc.                  *
4  *                                                                          *
5  * Permission is hereby granted, free of charge, to any person obtaining a  *
6  * copy of this software and associated documentation files (the            *
7  * "Software"), to deal in the Software without restriction, including      *
8  * without limitation the rights to use, copy, modify, merge, publish,      *
9  * distribute, distribute with modifications, sublicense, and/or sell       *
10  * copies of the Software, and to permit persons to whom the Software is    *
11  * furnished to do so, subject to the following conditions:                 *
12  *                                                                          *
13  * The above copyright notice and this permission notice shall be included  *
14  * in all copies or substantial portions of the Software.                   *
15  *                                                                          *
16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS  *
17  * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF               *
18  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.   *
19  * IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,   *
20  * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR    *
21  * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR    *
22  * THE USE OR OTHER DEALINGS IN THE SOFTWARE.                               *
23  *                                                                          *
24  * Except as contained in this notice, the name(s) of the above copyright   *
25  * holders shall not be used in advertising or otherwise to promote the     *
26  * sale, use or other dealings in this Software without prior written       *
27  * authorization.                                                           *
28  ****************************************************************************/
29
30 /****************************************************************************
31  *  Author: Zeyd M. Ben-Halim <zmbenhal@netcom.com> 1992,1995               *
32  *     and: Eric S. Raymond <esr@snark.thyrsus.com>                         *
33  *     and: Thomas E. Dickey                        2002                    *
34  *     and: Juergen Pfeifer                         2009                    *
35  ****************************************************************************/
36
37 /*
38  *      lib_kernel.c
39  *
40  *      Misc. low-level routines:
41  *              erasechar()
42  *              killchar()
43  *              flushinp()
44  *
45  * The baudrate() and delay_output() functions could logically live here,
46  * but are in other modules to reduce the static-link size of programs
47  * that use only these facilities.
48  */
49
50 #include <curses.priv.h>
51
52 MODULE_ID("$Id: lib_kernel.c,v 1.33 2020/09/05 21:37:57 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 = (int) 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     TERMINAL *termp = TerminalOf(SP_PARM);
87
88     T((T_CALLED("erasechar(%p)"), (void *) SP_PARM));
89
90     if (termp != 0) {
91 #ifdef TERMIOS
92         result = termp->Ottyb.c_cc[VERASE];
93         if (result == _nc_vdisable())
94             result = ERR;
95 #elif defined(EXP_WIN32_DRIVER)
96         result = ERR;
97 #else
98         result = termp->Ottyb.sg_erase;
99 #endif
100     }
101     returnChar((char) result);
102 }
103
104 #if NCURSES_SP_FUNCS
105 NCURSES_EXPORT(char)
106 erasechar(void)
107 {
108     return NCURSES_SP_NAME(erasechar) (CURRENT_SCREEN);
109 }
110 #endif
111
112 /*
113  *      killchar()
114  *
115  *      Return kill character as given in cur_term->Ottyb.
116  *
117  */
118
119 NCURSES_EXPORT(char)
120 NCURSES_SP_NAME(killchar) (NCURSES_SP_DCL0)
121 {
122     int result = ERR;
123     TERMINAL *termp = TerminalOf(SP_PARM);
124
125     T((T_CALLED("killchar(%p)"), (void *) SP_PARM));
126
127     if (termp != 0) {
128 #ifdef TERMIOS
129         result = termp->Ottyb.c_cc[VKILL];
130         if (result == _nc_vdisable())
131             result = ERR;
132 #elif defined(EXP_WIN32_DRIVER)
133         result = ERR;
134 #else
135         result = termp->Ottyb.sg_kill;
136 #endif
137     }
138     returnChar((char) result);
139 }
140
141 #if NCURSES_SP_FUNCS
142 NCURSES_EXPORT(char)
143 killchar(void)
144 {
145     return NCURSES_SP_NAME(killchar) (CURRENT_SCREEN);
146 }
147 #endif
148
149 /*
150  *      flushinp()
151  *
152  *      Flush any input on cur_term->Filedes
153  *
154  */
155
156 NCURSES_EXPORT(int)
157 NCURSES_SP_NAME(flushinp) (NCURSES_SP_DCL0)
158 {
159     TERMINAL *termp = TerminalOf(SP_PARM);
160
161     T((T_CALLED("flushinp(%p)"), (void *) SP_PARM));
162
163     if (termp != 0) {
164 #ifdef TERMIOS
165         tcflush(termp->Filedes, TCIFLUSH);
166 #else
167         errno = 0;
168         do {
169 #if defined(EXP_WIN32_DRIVER)
170             _nc_console_flush(_nc_console_fd2handle(termp->Filedes));
171 #else
172             ioctl(termp->Filedes, TIOCFLUSH, 0);
173 #endif
174         } while
175             (errno == EINTR);
176 #endif
177         if (SP_PARM) {
178             SP_PARM->_fifohead = -1;
179             SP_PARM->_fifotail = 0;
180             SP_PARM->_fifopeek = 0;
181         }
182         returnCode(OK);
183     }
184     returnCode(ERR);
185 }
186
187 #if NCURSES_SP_FUNCS
188 NCURSES_EXPORT(int)
189 flushinp(void)
190 {
191     return NCURSES_SP_NAME(flushinp) (CURRENT_SCREEN);
192 }
193 #endif