xref: /netbsd-src/lib/libcurses/tstp.c (revision d48f14661dda8638fee055ba15d35bdfb29b9fa8)
1 /*	$NetBSD: tstp.c,v 1.32 2004/03/25 07:35:40 jdc Exp $	*/
2 
3 /*
4  * Copyright (c) 1981, 1993, 1994
5  *	The Regents of the University of California.  All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice, this list of conditions and the following disclaimer.
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  * 3. Neither the name of the University nor the names of its contributors
16  *    may be used to endorse or promote products derived from this software
17  *    without specific prior written permission.
18  *
19  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
20  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
23  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29  * SUCH DAMAGE.
30  */
31 
32 #include <sys/cdefs.h>
33 #ifndef lint
34 #if 0
35 static char sccsid[] = "@(#)tstp.c	8.3 (Berkeley) 5/4/94";
36 #else
37 __RCSID("$NetBSD: tstp.c,v 1.32 2004/03/25 07:35:40 jdc Exp $");
38 #endif
39 #endif				/* not lint */
40 
41 #include <sys/ioctl.h>
42 
43 #include <errno.h>
44 #include <signal.h>
45 #include <termios.h>
46 #include <unistd.h>
47 
48 #include "curses.h"
49 #include "curses_private.h"
50 
51 static int tstp_set = 0;
52 static int winch_set = 0;
53 
54 static void (*otstpfn)
55 __P((int)) = SIG_DFL;
56 
57 static struct sigaction	owsa;
58 
59 /*
60  * stop_signal_handler --
61  *	Handle stop signals.
62  */
63 void
64 __stop_signal_handler(/*ARGSUSED*/int signo)
65 {
66 	sigset_t oset, set;
67 
68 	/*
69 	 * Block window change and timer signals.  The latter is because
70 	 * applications use timers to decide when to repaint the screen.
71 	 */
72 	(void) sigemptyset(&set);
73 	(void) sigaddset(&set, SIGALRM);
74 	(void) sigaddset(&set, SIGWINCH);
75 	(void) sigprocmask(SIG_BLOCK, &set, &oset);
76 
77 	/*
78 	 * End the window, which also resets the terminal state to the
79 	 * original modes.
80 	 */
81 	__stopwin();
82 
83 	/* Unblock SIGTSTP. */
84 	(void) sigemptyset(&set);
85 	(void) sigaddset(&set, SIGTSTP);
86 	(void) sigprocmask(SIG_UNBLOCK, &set, NULL);
87 
88 	/* Stop ourselves. */
89 	(void) kill(0, SIGTSTP);
90 
91 	/* Time passes ... */
92 
93 	/* restart things */
94 	__restartwin();
95 
96 	/* Reset the signals. */
97 	(void) sigprocmask(SIG_SETMASK, &oset, NULL);
98 }
99 
100 /*
101  * Set the TSTP handler.
102  */
103 void
104 __set_stophandler(void)
105 {
106 #ifdef DEBUG
107 	__CTRACE("__set_stophandler: %d\n", tstp_set);
108 #endif
109 	if (!tstp_set) {
110 		otstpfn = signal(SIGTSTP, __stop_signal_handler);
111 		tstp_set = 1;
112 	}
113 }
114 
115 /*
116  * Restore the TSTP handler.
117  */
118 void
119 __restore_stophandler(void)
120 {
121 #ifdef DEBUG
122 	__CTRACE("__restore_stophandler: %d\n", tstp_set);
123 #endif
124 	if (tstp_set) {
125 		(void) signal(SIGTSTP, otstpfn);
126 		tstp_set = 0;
127 	}
128 }
129 
130 /*
131  * winch_signal_handler --
132  *	Handle winch signals by pushing KEY_RESIZE into the input stream.
133  */
134 void
135 __winch_signal_handler(/*ARGSUSED*/int signo)
136 {
137 	struct winsize win;
138 
139 	if (ioctl(fileno(_cursesi_screen->outfd), TIOCGWINSZ, &win) != -1 &&
140 	    win.ws_row != 0 && win.ws_col != 0) {
141 		LINES = win.ws_row;
142 		COLS = win.ws_col;
143 	}
144 	/*
145 	 * If there was a previous handler, call that,
146 	 * otherwise tell getch() to send KEY_RESIZE.
147 	 */
148 	if (owsa.sa_handler !=  NULL)
149 		owsa.sa_handler(signo);
150 	else
151 		_cursesi_screen->resized = 1;
152 }
153 
154 /*
155  * Set the WINCH handler.
156  */
157 void
158 __set_winchhandler(void)
159 {
160 #ifdef DEBUG
161 	__CTRACE("__set_winchhandler: %d\n", winch_set);
162 #endif
163 	if (!winch_set) {
164 		struct sigaction sa;
165 
166 		sa.sa_handler = __winch_signal_handler;
167 		sa.sa_flags = 0;
168 		sigemptyset(&sa.sa_mask);
169 		sigaction(SIGWINCH, &sa, &owsa);
170 		winch_set = 1;
171 	}
172 }
173 
174 /*
175  * Restore the WINCH handler.
176  */
177 void
178 __restore_winchhandler(void)
179 {
180 #ifdef DEBUG
181 	__CTRACE("__restore_winchhandler: %d\n", winch_set);
182 #endif
183 	if (winch_set) {
184 		sigaction(SIGWINCH, &owsa, NULL);
185 		winch_set = 0;
186 	}
187 }
188 
189 /* To allow both SIGTSTP and endwin() to come back nicely, we provide
190    the following routines. */
191 
192 int
193 __stopwin(void)
194 {
195 	if (_cursesi_screen->endwin)
196 		return OK;
197 
198 	/* Get the current terminal state (which the user may have changed). */
199 	(void) tcgetattr(fileno(_cursesi_screen->infd),
200 			 &_cursesi_screen->save_termios);
201 
202 	__restore_stophandler();
203 	__restore_winchhandler();
204 
205 	if (curscr != NULL) {
206 		__unsetattr(0);
207 		__mvcur((int) curscr->cury, (int) curscr->curx, (int) curscr->maxy - 1, 0, 0);
208 	}
209 
210 	if (__tc_mo != NULL)
211 		(void) tputs(__tc_mo, 0, __cputchar);
212 
213 	if ((curscr != NULL) && (curscr->flags & __KEYPAD))
214 		(void) tputs(__tc_ke, 0, __cputchar);
215 	(void) tputs(__tc_ve, 0, __cputchar);
216 	(void) tputs(__tc_te, 0, __cputchar);
217 	(void) fflush(_cursesi_screen->outfd);
218 	(void) setvbuf(_cursesi_screen->outfd, NULL, _IOLBF, (size_t) 0);
219 
220 	_cursesi_screen->endwin = 1;
221 
222 	return (tcsetattr(fileno(_cursesi_screen->infd),
223 			  __tcaction ? TCSASOFT | TCSADRAIN : TCSADRAIN,
224 			  &_cursesi_screen->orig_termios) ? ERR : OK);
225 }
226 
227 
228 void
229 __restartwin(void)
230 {
231 	struct winsize win;
232 
233 	if (!_cursesi_screen->endwin)
234 		return;
235 
236 	/* Reset the curses SIGTSTP and SIGWINCH signal handlers. */
237 	__set_stophandler();
238 	__set_winchhandler();
239 
240 	/* Check to see if the window size has changed */
241 	if (ioctl(fileno(_cursesi_screen->outfd), TIOCGWINSZ, &win) != -1 &&
242 	    win.ws_row != 0 && win.ws_col != 0) {
243 		if (win.ws_row != LINES) {
244 			LINES = win.ws_row;
245 			_cursesi_screen->resized = 1;
246 		}
247 		if (win.ws_col != COLS) {
248 			COLS = win.ws_col;
249 			_cursesi_screen->resized = 1;
250 		}
251 	}
252 
253 	/* save the new "default" terminal state */
254 	(void) tcgetattr(fileno(_cursesi_screen->infd),
255 			 &_cursesi_screen->orig_termios);
256 
257 	/* Reset the terminal state to the mode just before we stopped. */
258 	(void) tcsetattr(fileno(_cursesi_screen->infd),
259 			 __tcaction ? TCSASOFT | TCSADRAIN : TCSADRAIN,
260 			 &_cursesi_screen->save_termios);
261 
262 	/* Restore colours */
263 	__restore_colors();
264 
265 	/* Reset meta */
266 	__restore_meta_state();
267 
268 	/* Restart the screen. */
269 	__startwin(_cursesi_screen);
270 
271 	/* Reset cursor visibility */
272 	__restore_cursor_vis();
273 
274 	/* Repaint the screen. */
275 	wrefresh(curscr);
276 }
277 
278 int
279 def_prog_mode(void)
280 {
281 	if (_cursesi_screen->endwin)
282 		return ERR;
283 
284 	return (tcgetattr(fileno(_cursesi_screen->infd),
285 			  &_cursesi_screen->save_termios) ? ERR : OK);
286 }
287 
288 int
289 reset_prog_mode(void)
290 {
291 
292 	return tcsetattr(fileno(_cursesi_screen->infd),
293 			 __tcaction ? TCSASOFT | TCSADRAIN : TCSADRAIN,
294 			 &_cursesi_screen->save_termios) ? ERR : OK;
295 }
296 
297 int
298 def_shell_mode(void)
299 {
300 	return (tcgetattr(fileno(_cursesi_screen->infd),
301 			  &_cursesi_screen->orig_termios) ? ERR : OK);
302 }
303 
304 int
305 reset_shell_mode(void)
306 {
307 	return (__stopwin());
308 }
309