XEmacs 21.2.28 "Hermes".
[chise/xemacs-chise.git.1] / src / systty.h
1 /* systty.h - System-dependent definitions for terminals.
2    Copyright (C) 1992, 1993, 1994 Free Software Foundation, Inc.
3
4 This file is part of XEmacs.
5
6 XEmacs is free software; you can redistribute it and/or modify it
7 under the terms of the GNU General Public License as published by the
8 Free Software Foundation; either version 2, or (at your option) any
9 later version.
10
11 XEmacs is distributed in the hope that it will be useful, but WITHOUT
12 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
14 for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with XEmacs; see the file COPYING.  If not, write to
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA.  */
20
21 /* Synched up with: FSF 19.30. */
22
23 #ifndef INCLUDED_systty_h_
24 #define INCLUDED_systty_h_
25
26 #ifdef HAVE_TERMIOS
27 # define HAVE_TCATTR
28 #endif
29
30 /* If we defined these before and we are about to redefine them,
31    prevent alarming warnings.  */
32 #ifdef BSD_TERMIOS
33 #undef NL0
34 #undef NL1
35 #undef CR0
36 #undef CR1
37 #undef CR2
38 #undef CR3
39 #undef TAB0
40 #undef TAB1
41 #undef TAB2
42 #undef XTABS
43 #undef BS0
44 #undef BS1
45 #undef FF0
46 #undef FF1
47 #undef ECHO
48 #undef NOFLSH
49 #undef TOSTOP
50 #undef FLUSHO
51 #undef PENDIN
52 #endif
53 \f
54 /* Include the proper files.  */
55
56 #ifdef HAVE_UNISTD_H
57 #include <unistd.h>
58 #endif
59
60 /* XEmacs: TERMIOS is mo' better than TERMIO so we use it if it's
61    there.  Since TERMIO is backward-compatibility stuff if both it
62    and TERMIOS exist, it's more likely to be broken. */
63
64 #if defined (HAVE_TERMIOS)
65
66 /*****     (1) The TERMIOS way (POSIX style)     *****/
67
68 # if defined (_AIX) && defined (_I386)
69 #  include <termios.h>          /* termios.h needs to be before termio.h */
70 #  include <termio.h>
71 # else
72 #  if !defined (NO_TERMIO)
73 #   include <termio.h>
74 #  endif
75 #  include <termios.h>
76 # endif /* _AIX && _I386 */
77 # ifndef INCLUDED_FCNTL
78 #  define INCLUDED_FCNTL
79 #  include <fcntl.h>
80 # endif
81
82 #elif defined (HAVE_TERMIO)
83
84 /*****    (2) The TERMIO way (system V style)    *****/
85
86 # ifdef __DGUX
87 #  include <sys/ioctl.h>
88 # endif
89 # ifndef NO_TERMIO
90 #  include <termio.h>
91 # endif /* not NO_TERMIO */
92 # ifndef INCLUDED_FCNTL
93 #  define INCLUDED_FCNTL
94 #  include <fcntl.h>
95 # endif
96
97 #elif defined (DOS_NT)
98
99 /*****             (3) The MSDOS/NT way              *****/
100
101 /* Nothing doing */
102
103 #else
104
105 /*****              (4) The BSD way              *****/
106
107 # ifdef linux /* XEmacs addition -- necessary? */
108 #  include <bsd/sgtty.h>
109 # else
110 #  include <sgtty.h>
111 # endif
112
113
114 #endif /* HAVE_TERMIOS */
115
116 /* XEmacs: I don't think we need the following crap. */
117 #ifdef __GNU_LIBRARY__
118 #include <termios.h>
119 #endif
120
121 /* Formerly there was a conditional that included sys/filio.h if
122    USG5_4 was defined, but this is already included in s/usg5-4.h */
123
124 /* Generally useful to include this file: */
125
126 /* But Sun OS has broken include files and doesn't want it included */
127 #if !defined (DOS_NT) && !defined (WIN32) && !defined (SUNOS4)
128 # include <sys/ioctl.h>
129 #endif
130 /* UNIPLUS systems may have FIONREAD.  */
131 #ifdef UNIPLUS
132 #include <sys.ioctl.h>
133 #endif
134
135 \f
136 /* ----------------------------------------------------- */
137 /*                 miscellaneous includes                */
138 /* ----------------------------------------------------- */
139
140 #ifdef AIXHFT
141 /* Get files for keyboard remapping */
142 #define HFNKEYS 2
143 #include <sys/hft.h>
144 #include <sys/devinfo.h>
145 #endif
146
147 /* XEmacs: We don't support BSD 4.1 any more */
148
149 #ifdef NEED_BSDTTY
150 #include <sys/bsdtty.h>
151 #endif
152
153 /* Include files for PTY's */
154
155 #if defined (HPUX) && defined (HAVE_PTYS)
156 #include <sys/ptyio.h>
157 #endif
158
159 #ifdef AIX
160 #include <sys/pty.h>
161 #endif /* AIX */
162
163 #ifdef SYSV_PTYS
164 # include <sys/types.h>
165 # include <sys/tty.h>
166 # ifdef titan
167 #  include <sys/ttyhw.h>
168 #  include <sys/stream.h>
169 # endif
170 # ifndef NO_PTY_H
171 #  include <sys/pty.h>
172 # endif
173 #endif
174
175 /* XEmacs: removed some random if defined (pfa) crap for FASYNC (SIGIO).
176    We've cleaned SIGIO up. */
177
178 \f
179 /* ----------------------------------------------------- */
180 /*           inhibiting particular features              */
181 /* ----------------------------------------------------- */
182
183
184 #if defined (XENIX) || defined (BROKEN_TIOCGETC)
185 #undef TIOCGETC  /* Avoid confusing some conditionals that test this.  */
186 #endif
187
188 /* XEmacs: SIGIO is cleaned up so we remove the crap here that messes
189    with it (and FIONREAD and FASYNC, which are related). */
190
191 #ifdef BROKEN_TIOCGWINSZ /* XEmacs addition */
192 #undef TIOCGWINSZ
193 #undef TIOCSWINSZ
194 #endif
195
196 /* On TERMIOS systems, the tcmumbleattr calls take care of these
197    parameters, and it's a bad idea to use them (on AIX, it makes the
198    tty hang for a long time).  */
199 #if defined (TIOCGLTC) && !defined (HAVE_TERMIOS)
200 #define HAVE_LTCHARS
201 #endif
202
203 #if defined (TIOCGETC) && !defined (HAVE_TERMIOS)
204 #define HAVE_TCHARS
205 #endif
206
207 \f
208 /* ----------------------------------------------------- */
209 /*             disabling terminal functions              */
210 /* ----------------------------------------------------- */
211
212 /* Try to establish the correct character to disable terminal functions
213    in a system-independent manner.
214    We use the POSIX standard way to do this, and emulate on other systems. */
215
216 #ifndef _POSIX_VDISABLE
217 # if defined CDEL
218 #  define _POSIX_VDISABLE CDEL
219 # else
220 #  define _POSIX_VDISABLE 255
221 # endif
222 #endif /* ! _POSIX_VDISABLE */
223
224 \f
225 /* ----------------------------------------------------- */
226 /*    Get the number of characters queued for output     */
227 /* ----------------------------------------------------- */
228
229 /* EMACS_OUTQSIZE(FD, int *SIZE) stores the number of characters
230    queued for output to the terminal FD in *SIZE, if FD is a tty.
231    Returns -1 if there was an error (i.e. FD is not a tty), 0
232    otherwise.  */
233 #ifdef TIOCOUTQ
234 #define EMACS_OUTQSIZE(fd, size) ioctl (fd, TIOCOUTQ, size)
235 #endif
236
237 #ifdef HAVE_TERMIO
238 #ifdef TCOUTQ
239 #undef EMACS_OUTQSIZE
240 #define EMACS_OUTQSIZE(fd, size) ioctl (fd, TCOUTQ, size)
241 #endif
242 #endif
243
244 \f
245 /* -------------------------------------------------------------------- */
246 /*       Manipulate a terminal's current (foreground) process group     */
247 /* -------------------------------------------------------------------- */
248
249 /* EMACS_HAVE_TTY_PGRP is true if we can get and set the tty's current
250    controlling process group.
251
252    EMACS_GET_TTY_PGRP(int FD, int *PGID) sets *PGID the terminal FD's
253    current process group.  Return -1 if there is an error.
254
255    EMACS_SET_TTY_PGRP(int FD, int *PGID) sets the terminal FD's
256    current process group to *PGID.  Return -1 if there is an error.  */
257
258 /* HPUX tty process group stuff doesn't work, says the anonymous voice
259    from the past.  */
260 /* But HPUX people say it does, so I've removed it.  --ben */
261 # ifdef TIOCGPGRP
262 #  define EMACS_HAVE_TTY_PGRP
263 # else
264 #  ifdef HAVE_TERMIOS
265 #   define EMACS_HAVE_TTY_PGRP
266 #  endif
267 # endif
268
269 #ifdef EMACS_HAVE_TTY_PGRP
270
271 #if defined (HAVE_TERMIOS) && ! defined (BSD_TERMIOS)
272
273 /* Resist the urge to insert needless extra parentheses. */
274 #define EMACS_GET_TTY_PGRP(fd, pgid) (*(pgid) = tcgetpgrp (fd))
275 #define EMACS_SET_TTY_PGRP(fd, pgid) tcsetpgrp (fd, *(pgid))
276
277 #elif defined (TIOCSPGRP)
278
279 #define EMACS_GET_TTY_PGRP(fd, pgid) (ioctl ((fd), TIOCGPGRP, (pgid)))
280 #define EMACS_SET_TTY_PGRP(fd, pgid) (ioctl ((fd), TIOCSPGRP, (pgid)))
281
282 #endif
283
284 #endif /* EMACS_HAVE_TTY_PGRP */
285
286 #ifndef EMACS_GET_TTY_PGRP
287
288 /* Just ignore this for now and hope for the best */
289 #define EMACS_GET_TTY_PGRP(fd, pgid) 0
290 #define EMACS_SET_TTY_PGRP(fd, pgif) 0
291
292 #endif
293
294 /* XEmacs interim backward-compatibility */
295 #define EMACS_GET_TTY_PROCESS_GROUP EMACS_GET_TTY_PGRP
296 #define EMACS_SET_TTY_PROCESS_GROUP EMACS_SET_TTY_PGRP
297
298 /* EMACS_GETPGRP (arg) returns the process group of the terminal.  */
299
300 #ifdef GETPGRP_VOID
301 #define EMACS_GETPGRP(x) getpgrp()
302 #else
303 #define EMACS_GETPGRP(x) getpgrp(x)
304 #endif /* GETPGRP_VOID */
305
306 /* XEmacs backward-compatibility.  Is 0 always a reasonable argument? */
307 #define EMACS_GET_PROCESS_GROUP() EMACS_GETPGRP (0)
308
309 /* XEmacs addition? */
310
311 /* EMACS_SEPARATE_PROCESS_GROUP () creates a separate process group for the
312    running process. */
313
314 /* EMACS_SET_PROCESS_GROUP () sets our process group as specified. */
315
316 /* POSIX calls for setpgid(), so we use it if it's available.
317    Otherwise use setpgrp(), in USG or BSD flavor.  Note that
318    on newer systems, setpgrp() has unwanted effects (e.g.
319    creating a new session), so we want to avoid its use
320    if possible.
321
322    NOTE: On some older systems, we should consider using setpgrp2()
323    if it exists.  This is sufficiently rare, though, that there
324    seems no point in autodetecting it.  Currently dgux.h is the
325    only place where this has to be munged. */
326
327 #if defined (HAVE_SETPGID)
328 #  define EMACS_SEPARATE_PROCESS_GROUP() setpgid (0, 0)
329 #  define EMACS_SET_PROCESS_GROUP(pg) setpgid (0, pg)
330 #elif defined (USG)
331 #  define EMACS_SEPARATE_PROCESS_GROUP() setpgrp ()
332 /* old (pre-SVR4) USG's don't provide any way to do this.
333    No big loss -- it just means that ^Z won't work right
334    if we're run from sh. */
335 #  define EMACS_SET_PROCESS_GROUP(pg)
336 #elif defined(__MINGW32__)
337 #  define EMACS_SEPARATE_PROCESS_GROUP()
338 #else
339 /* Under NeXTstep, a process group of 0 is not the same as specifying
340    your own process ID, so we go ahead and specify it explicitly. */
341 #  define EMACS_SEPARATE_PROCESS_GROUP() setpgrp (0, getpid ())
342 #  define EMACS_SET_PROCESS_GROUP(pg) setpgrp (0, pg)
343 #endif
344
345 \f
346 /* --------------------------------------------------------- */
347 /*   Manipulate a TTY's input/output processing parameters   */
348 /* --------------------------------------------------------- */
349
350 /* struct emacs_tty is a structure used to hold the current tty
351    parameters.  If the terminal has several structures describing its
352    state, for example a struct tchars, a struct sgttyb, a struct
353    tchars, a struct ltchars, and a struct pagechars, struct
354    emacs_tty should contain an element for each parameter struct
355    that Emacs may change.
356
357    emacs_get_tty (int FD, struct emacs_tty *P) stores the parameters
358    of the tty on FD in *P.  Return zero if all's well, or -1 if we ran
359    into an error we couldn't deal with.
360
361    emacs_set_tty (int FD, struct emacs_tty *P, int flushp)
362    sets the parameters of the tty on FD according to the contents of
363    *P.  If flushp is non-zero, we discard queued input to be
364    written before making the change.
365    Return 0 if all went well, and -1 if anything failed.
366
367    EMACS_TTY_TABS_OK (struct emacs_tty *P) is false iff the kernel
368    expands tabs to spaces upon output; in that case, there is no
369    advantage to using tabs over spaces.  */
370
371
372 /* For each tty parameter structure that Emacs might want to save and restore,
373    - include an element for it in this structure, and
374    - extend the emacs_{get,set}_tty functions in sysdep.c to deal with the
375      new members.  */
376
377 struct emacs_tty {
378
379 /* There is always one of the following elements, so there is no need
380    for dummy get and set definitions.  */
381 #ifdef HAVE_TCATTR
382   struct termios main;
383 #else /* !HAVE_TCATTR */
384 #ifdef HAVE_TERMIO
385   struct termio main;
386 #else /* !HAVE_TERMIO */
387 #ifdef DOS_NT
388   int main;
389 #else  /* not DOS_NT */
390   struct sgttyb main;
391 #endif /* not DOS_NT */
392 #endif /* !HAVE_TERMIO */
393 #endif /* !HAVE_TCATTR */
394
395 /* If we have TERMIOS, we don't need to do this - they're taken care of
396    by the tc*attr calls.  */
397 #ifndef HAVE_TERMIOS
398 #ifdef HAVE_LTCHARS
399   struct ltchars ltchars;
400 #endif /* HAVE_LTCHARS */
401
402 #ifdef HAVE_TCHARS
403   struct tchars tchars;
404   int lmode;
405 #endif /* HAVE_TCHARS */
406 #endif /* HAVE_TERMIOS */
407 };
408
409 int emacs_get_tty (int fd, struct emacs_tty *settings);
410 int emacs_set_tty (int fd, struct emacs_tty *settings, int flushp);
411
412 \f
413 /* --------------------------------------------------------- */
414 /*                Define EMACS_TTY_TABS_OK                   */
415 /* --------------------------------------------------------- */
416
417 #ifdef HAVE_TERMIOS
418
419 #ifdef TABDLY
420 #define EMACS_TTY_TABS_OK(p) (((p)->main.c_oflag & TABDLY) != TAB3)
421 #else
422 #define EMACS_TTY_TABS_OK(p) 1
423 #endif /* TABDLY */
424
425 #else /* not def HAVE_TERMIOS */
426 #ifdef HAVE_TERMIO
427
428 #define EMACS_TTY_TABS_OK(p) (((p)->main.c_oflag & TABDLY) != TAB3)
429
430 #else /* neither HAVE_TERMIO nor HAVE_TERMIOS */
431 #ifdef DOS_NT
432 #define EMACS_TTY_TABS_OK(p) 0
433 #else /* not DOS_NT */
434 #define EMACS_TTY_TABS_OK(p) (((p)->main.sg_flags & XTABS) != XTABS)
435 #endif /* not DOS_NT */
436
437 #endif /* not def HAVE_TERMIO */
438 #endif /* not def HAVE_TERMIOS */
439
440 #endif /* INCLUDED_systty_h_ */