typo
[emacs.git] / src / term.c
blob22056451cb90ff0098d0dfc9719b581bfe4c0a09
1 /* Terminal control module for terminals described by TERMCAP
2 Copyright (C) 1985-1987, 1993-1995, 1998, 2000-2011
3 Free Software Foundation, Inc.
5 This file is part of GNU Emacs.
7 GNU Emacs is free software: you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation, either version 3 of the License, or
10 (at your option) any later version.
12 GNU Emacs is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
20 /* New redisplay, TTY faces by Gerd Moellmann <gerd@gnu.org>. */
22 #include <config.h>
23 #include <stdio.h>
24 #include <ctype.h>
25 #include <errno.h>
26 #include <sys/file.h>
27 #include <unistd.h>
28 #include <signal.h>
29 #include <setjmp.h>
31 #include "lisp.h"
32 #include "termchar.h"
33 #include "termopts.h"
34 #include "tparam.h"
35 #include "buffer.h"
36 #include "character.h"
37 #include "charset.h"
38 #include "coding.h"
39 #include "composite.h"
40 #include "keyboard.h"
41 #include "frame.h"
42 #include "disptab.h"
43 #include "termhooks.h"
44 #include "dispextern.h"
45 #include "window.h"
46 #include "keymap.h"
47 #include "blockinput.h"
48 #include "syssignal.h"
49 #include "systty.h"
50 #include "intervals.h"
51 #ifdef MSDOS
52 #include "msdos.h"
53 static int been_here = -1;
54 #endif
56 #include "cm.h"
57 #ifdef HAVE_X_WINDOWS
58 #include "xterm.h"
59 #endif
61 #ifndef O_RDWR
62 #define O_RDWR 2
63 #endif
65 #ifndef O_NOCTTY
66 #define O_NOCTTY 0
67 #endif
69 /* The name of the default console device. */
70 #ifdef WINDOWSNT
71 #define DEV_TTY "CONOUT$"
72 #else
73 #define DEV_TTY "/dev/tty"
74 #endif
76 static void tty_set_scroll_region (struct frame *f, int start, int stop);
77 static void turn_on_face (struct frame *, int face_id);
78 static void turn_off_face (struct frame *, int face_id);
79 static void tty_turn_off_highlight (struct tty_display_info *);
80 static void tty_show_cursor (struct tty_display_info *);
81 static void tty_hide_cursor (struct tty_display_info *);
82 static void tty_background_highlight (struct tty_display_info *tty);
83 static struct terminal *get_tty_terminal (Lisp_Object, int);
84 static void clear_tty_hooks (struct terminal *terminal);
85 static void set_tty_hooks (struct terminal *terminal);
86 static void dissociate_if_controlling_tty (int fd);
87 static void delete_tty (struct terminal *);
88 static void maybe_fatal (int must_succeed, struct terminal *terminal,
89 const char *str1, const char *str2, ...)
90 NO_RETURN ATTRIBUTE_FORMAT_PRINTF (3, 5) ATTRIBUTE_FORMAT_PRINTF (4, 5);
91 static void vfatal (const char *str, va_list ap)
92 NO_RETURN ATTRIBUTE_FORMAT_PRINTF (1, 0);
95 #define OUTPUT(tty, a) \
96 emacs_tputs ((tty), a, \
97 (int) (FRAME_LINES (XFRAME (selected_frame)) \
98 - curY (tty)), \
99 cmputc)
101 #define OUTPUT1(tty, a) emacs_tputs ((tty), a, 1, cmputc)
102 #define OUTPUTL(tty, a, lines) emacs_tputs ((tty), a, lines, cmputc)
104 #define OUTPUT_IF(tty, a) \
105 do { \
106 if (a) \
107 OUTPUT (tty, a); \
108 } while (0)
110 #define OUTPUT1_IF(tty, a) do { if (a) emacs_tputs ((tty), a, 1, cmputc); } while (0)
112 /* Display space properties */
114 /* Chain of all tty device parameters. */
115 struct tty_display_info *tty_list;
117 /* Meaning of bits in no_color_video. Each bit set means that the
118 corresponding attribute cannot be combined with colors. */
120 enum no_color_bit
122 NC_STANDOUT = 1 << 0,
123 NC_UNDERLINE = 1 << 1,
124 NC_REVERSE = 1 << 2,
125 NC_BLINK = 1 << 3,
126 NC_DIM = 1 << 4,
127 NC_BOLD = 1 << 5,
128 NC_INVIS = 1 << 6,
129 NC_PROTECT = 1 << 7,
130 NC_ALT_CHARSET = 1 << 8
133 /* internal state */
135 /* The largest frame width in any call to calculate_costs. */
137 static int max_frame_cols;
139 /* The largest frame height in any call to calculate_costs. */
141 static int max_frame_lines;
143 /* Non-zero if we have dropped our controlling tty and therefore
144 should not open a frame on stdout. */
145 static int no_controlling_tty;
149 #ifdef HAVE_GPM
150 #include <sys/fcntl.h>
152 /* The device for which we have enabled gpm support (or NULL). */
153 struct tty_display_info *gpm_tty = NULL;
155 /* Last recorded mouse coordinates. */
156 static int last_mouse_x, last_mouse_y;
157 #endif /* HAVE_GPM */
159 /* Ring the bell on a tty. */
161 static void
162 tty_ring_bell (struct frame *f)
164 struct tty_display_info *tty = FRAME_TTY (f);
166 if (tty->output)
168 OUTPUT (tty, (tty->TS_visible_bell && visible_bell
169 ? tty->TS_visible_bell
170 : tty->TS_bell));
171 fflush (tty->output);
175 /* Set up termcap modes for Emacs. */
177 static void
178 tty_set_terminal_modes (struct terminal *terminal)
180 struct tty_display_info *tty = terminal->display_info.tty;
182 if (tty->output)
184 if (tty->TS_termcap_modes)
185 OUTPUT (tty, tty->TS_termcap_modes);
186 else
188 /* Output enough newlines to scroll all the old screen contents
189 off the screen, so it won't be overwritten and lost. */
190 int i;
191 current_tty = tty;
192 for (i = 0; i < FRAME_LINES (XFRAME (selected_frame)); i++)
193 cmputc ('\n');
196 OUTPUT_IF (tty, visible_cursor ? tty->TS_cursor_visible : tty->TS_cursor_normal);
197 OUTPUT_IF (tty, tty->TS_keypad_mode);
198 losecursor (tty);
199 fflush (tty->output);
203 /* Reset termcap modes before exiting Emacs. */
205 static void
206 tty_reset_terminal_modes (struct terminal *terminal)
208 struct tty_display_info *tty = terminal->display_info.tty;
210 if (tty->output)
212 tty_turn_off_highlight (tty);
213 tty_turn_off_insert (tty);
214 OUTPUT_IF (tty, tty->TS_end_keypad_mode);
215 OUTPUT_IF (tty, tty->TS_cursor_normal);
216 OUTPUT_IF (tty, tty->TS_end_termcap_modes);
217 OUTPUT_IF (tty, tty->TS_orig_pair);
218 /* Output raw CR so kernel can track the cursor hpos. */
219 current_tty = tty;
220 cmputc ('\r');
221 fflush (tty->output);
225 /* Flag the end of a display update on a termcap terminal. */
227 static void
228 tty_update_end (struct frame *f)
230 struct tty_display_info *tty = FRAME_TTY (f);
232 if (!XWINDOW (selected_window)->cursor_off_p)
233 tty_show_cursor (tty);
234 tty_turn_off_insert (tty);
235 tty_background_highlight (tty);
238 /* The implementation of set_terminal_window for termcap frames. */
240 static void
241 tty_set_terminal_window (struct frame *f, int size)
243 struct tty_display_info *tty = FRAME_TTY (f);
245 tty->specified_window = size ? size : FRAME_LINES (f);
246 if (FRAME_SCROLL_REGION_OK (f))
247 tty_set_scroll_region (f, 0, tty->specified_window);
250 static void
251 tty_set_scroll_region (struct frame *f, int start, int stop)
253 char *buf;
254 struct tty_display_info *tty = FRAME_TTY (f);
256 if (tty->TS_set_scroll_region)
257 buf = tparam (tty->TS_set_scroll_region, 0, 0, start, stop - 1, 0, 0);
258 else if (tty->TS_set_scroll_region_1)
259 buf = tparam (tty->TS_set_scroll_region_1, 0, 0,
260 FRAME_LINES (f), start,
261 FRAME_LINES (f) - stop,
262 FRAME_LINES (f));
263 else
264 buf = tparam (tty->TS_set_window, 0, 0, start, 0, stop, FRAME_COLS (f));
266 OUTPUT (tty, buf);
267 xfree (buf);
268 losecursor (tty);
272 static void
273 tty_turn_on_insert (struct tty_display_info *tty)
275 if (!tty->insert_mode)
276 OUTPUT (tty, tty->TS_insert_mode);
277 tty->insert_mode = 1;
280 void
281 tty_turn_off_insert (struct tty_display_info *tty)
283 if (tty->insert_mode)
284 OUTPUT (tty, tty->TS_end_insert_mode);
285 tty->insert_mode = 0;
288 /* Handle highlighting. */
290 static void
291 tty_turn_off_highlight (struct tty_display_info *tty)
293 if (tty->standout_mode)
294 OUTPUT_IF (tty, tty->TS_end_standout_mode);
295 tty->standout_mode = 0;
298 static void
299 tty_turn_on_highlight (struct tty_display_info *tty)
301 if (!tty->standout_mode)
302 OUTPUT_IF (tty, tty->TS_standout_mode);
303 tty->standout_mode = 1;
306 static void
307 tty_toggle_highlight (struct tty_display_info *tty)
309 if (tty->standout_mode)
310 tty_turn_off_highlight (tty);
311 else
312 tty_turn_on_highlight (tty);
316 /* Make cursor invisible. */
318 static void
319 tty_hide_cursor (struct tty_display_info *tty)
321 if (tty->cursor_hidden == 0)
323 tty->cursor_hidden = 1;
324 OUTPUT_IF (tty, tty->TS_cursor_invisible);
329 /* Ensure that cursor is visible. */
331 static void
332 tty_show_cursor (struct tty_display_info *tty)
334 if (tty->cursor_hidden)
336 tty->cursor_hidden = 0;
337 OUTPUT_IF (tty, tty->TS_cursor_normal);
338 if (visible_cursor)
339 OUTPUT_IF (tty, tty->TS_cursor_visible);
344 /* Set standout mode to the state it should be in for
345 empty space inside windows. What this is,
346 depends on the user option inverse-video. */
348 static void
349 tty_background_highlight (struct tty_display_info *tty)
351 if (inverse_video)
352 tty_turn_on_highlight (tty);
353 else
354 tty_turn_off_highlight (tty);
357 /* Set standout mode to the mode specified for the text to be output. */
359 static void
360 tty_highlight_if_desired (struct tty_display_info *tty)
362 if (inverse_video)
363 tty_turn_on_highlight (tty);
364 else
365 tty_turn_off_highlight (tty);
369 /* Move cursor to row/column position VPOS/HPOS. HPOS/VPOS are
370 frame-relative coordinates. */
372 static void
373 tty_cursor_to (struct frame *f, int vpos, int hpos)
375 struct tty_display_info *tty = FRAME_TTY (f);
377 /* Detect the case where we are called from reset_sys_modes
378 and the costs have never been calculated. Do nothing. */
379 if (! tty->costs_set)
380 return;
382 if (curY (tty) == vpos
383 && curX (tty) == hpos)
384 return;
385 if (!tty->TF_standout_motion)
386 tty_background_highlight (tty);
387 if (!tty->TF_insmode_motion)
388 tty_turn_off_insert (tty);
389 cmgoto (tty, vpos, hpos);
392 /* Similar but don't take any account of the wasted characters. */
394 static void
395 tty_raw_cursor_to (struct frame *f, int row, int col)
397 struct tty_display_info *tty = FRAME_TTY (f);
399 if (curY (tty) == row
400 && curX (tty) == col)
401 return;
402 if (!tty->TF_standout_motion)
403 tty_background_highlight (tty);
404 if (!tty->TF_insmode_motion)
405 tty_turn_off_insert (tty);
406 cmgoto (tty, row, col);
409 /* Erase operations */
411 /* Clear from cursor to end of frame on a termcap device. */
413 static void
414 tty_clear_to_end (struct frame *f)
416 register int i;
417 struct tty_display_info *tty = FRAME_TTY (f);
419 if (tty->TS_clr_to_bottom)
421 tty_background_highlight (tty);
422 OUTPUT (tty, tty->TS_clr_to_bottom);
424 else
426 for (i = curY (tty); i < FRAME_LINES (f); i++)
428 cursor_to (f, i, 0);
429 clear_end_of_line (f, FRAME_COLS (f));
434 /* Clear an entire termcap frame. */
436 static void
437 tty_clear_frame (struct frame *f)
439 struct tty_display_info *tty = FRAME_TTY (f);
441 if (tty->TS_clr_frame)
443 tty_background_highlight (tty);
444 OUTPUT (tty, tty->TS_clr_frame);
445 cmat (tty, 0, 0);
447 else
449 cursor_to (f, 0, 0);
450 clear_to_end (f);
454 /* An implementation of clear_end_of_line for termcap frames.
456 Note that the cursor may be moved, on terminals lacking a `ce' string. */
458 static void
459 tty_clear_end_of_line (struct frame *f, int first_unused_hpos)
461 register int i;
462 struct tty_display_info *tty = FRAME_TTY (f);
464 /* Detect the case where we are called from reset_sys_modes
465 and the costs have never been calculated. Do nothing. */
466 if (! tty->costs_set)
467 return;
469 if (curX (tty) >= first_unused_hpos)
470 return;
471 tty_background_highlight (tty);
472 if (tty->TS_clr_line)
474 OUTPUT1 (tty, tty->TS_clr_line);
476 else
477 { /* have to do it the hard way */
478 tty_turn_off_insert (tty);
480 /* Do not write in last row last col with Auto-wrap on. */
481 if (AutoWrap (tty)
482 && curY (tty) == FrameRows (tty) - 1
483 && first_unused_hpos == FrameCols (tty))
484 first_unused_hpos--;
486 for (i = curX (tty); i < first_unused_hpos; i++)
488 if (tty->termscript)
489 fputc (' ', tty->termscript);
490 fputc (' ', tty->output);
492 cmplus (tty, first_unused_hpos - curX (tty));
496 /* Buffers to store the source and result of code conversion for terminal. */
497 static unsigned char *encode_terminal_src;
498 static unsigned char *encode_terminal_dst;
499 /* Allocated sizes of the above buffers. */
500 static int encode_terminal_src_size;
501 static int encode_terminal_dst_size;
503 /* Encode SRC_LEN glyphs starting at SRC to terminal output codes.
504 Set CODING->produced to the byte-length of the resulting byte
505 sequence, and return a pointer to that byte sequence. */
507 unsigned char *
508 encode_terminal_code (struct glyph *src, int src_len, struct coding_system *coding)
510 struct glyph *src_end = src + src_len;
511 unsigned char *buf;
512 int nchars, nbytes, required;
513 register int tlen = GLYPH_TABLE_LENGTH;
514 register Lisp_Object *tbase = GLYPH_TABLE_BASE;
515 Lisp_Object charset_list;
517 /* Allocate sufficient size of buffer to store all characters in
518 multibyte-form. But, it may be enlarged on demand if
519 Vglyph_table contains a string or a composite glyph is
520 encountered. */
521 required = MAX_MULTIBYTE_LENGTH * src_len;
522 if (encode_terminal_src_size < required)
524 if (encode_terminal_src)
525 encode_terminal_src = xrealloc (encode_terminal_src, required);
526 else
527 encode_terminal_src = xmalloc (required);
528 encode_terminal_src_size = required;
531 charset_list = coding_charset_list (coding);
533 buf = encode_terminal_src;
534 nchars = 0;
535 while (src < src_end)
537 if (src->type == COMPOSITE_GLYPH)
539 struct composition *cmp IF_LINT (= NULL);
540 Lisp_Object gstring IF_LINT (= Qnil);
541 int i;
543 nbytes = buf - encode_terminal_src;
544 if (src->u.cmp.automatic)
546 gstring = composition_gstring_from_id (src->u.cmp.id);
547 required = src->slice.cmp.to + 1 - src->slice.cmp.from;
549 else
551 cmp = composition_table[src->u.cmp.id];
552 required = MAX_MULTIBYTE_LENGTH * cmp->glyph_len;
555 if (encode_terminal_src_size < nbytes + required)
557 encode_terminal_src_size = nbytes + required;
558 encode_terminal_src = xrealloc (encode_terminal_src,
559 encode_terminal_src_size);
560 buf = encode_terminal_src + nbytes;
563 if (src->u.cmp.automatic)
564 for (i = src->slice.cmp.from; i <= src->slice.cmp.to; i++)
566 Lisp_Object g = LGSTRING_GLYPH (gstring, i);
567 int c = LGLYPH_CHAR (g);
569 if (! char_charset (c, charset_list, NULL))
570 c = '?';
571 buf += CHAR_STRING (c, buf);
572 nchars++;
574 else
575 for (i = 0; i < cmp->glyph_len; i++)
577 int c = COMPOSITION_GLYPH (cmp, i);
579 if (c == '\t')
580 continue;
581 if (char_charset (c, charset_list, NULL))
583 if (CHAR_WIDTH (c) == 0
584 && i > 0 && COMPOSITION_GLYPH (cmp, i - 1) == '\t')
585 /* Should be left-padded */
587 buf += CHAR_STRING (' ', buf);
588 nchars++;
591 else
592 c = '?';
593 buf += CHAR_STRING (c, buf);
594 nchars++;
597 /* We must skip glyphs to be padded for a wide character. */
598 else if (! CHAR_GLYPH_PADDING_P (*src))
600 GLYPH g;
601 int c IF_LINT (= 0);
602 Lisp_Object string;
604 string = Qnil;
605 SET_GLYPH_FROM_CHAR_GLYPH (g, src[0]);
607 if (GLYPH_INVALID_P (g) || GLYPH_SIMPLE_P (tbase, tlen, g))
609 /* This glyph doesn't have an entry in Vglyph_table. */
610 c = src->u.ch;
612 else
614 /* This glyph has an entry in Vglyph_table,
615 so process any alias before testing for simpleness. */
616 GLYPH_FOLLOW_ALIASES (tbase, tlen, g);
618 if (GLYPH_SIMPLE_P (tbase, tlen, g))
619 /* We set the multi-byte form of a character in G
620 (that should be an ASCII character) at WORKBUF. */
621 c = GLYPH_CHAR (g);
622 else
623 /* We have a string in Vglyph_table. */
624 string = tbase[GLYPH_CHAR (g)];
627 if (NILP (string))
629 nbytes = buf - encode_terminal_src;
630 if (encode_terminal_src_size < nbytes + MAX_MULTIBYTE_LENGTH)
632 encode_terminal_src_size = nbytes + MAX_MULTIBYTE_LENGTH;
633 encode_terminal_src = xrealloc (encode_terminal_src,
634 encode_terminal_src_size);
635 buf = encode_terminal_src + nbytes;
637 if (CHAR_BYTE8_P (c)
638 || char_charset (c, charset_list, NULL))
640 /* Store the multibyte form of C at BUF. */
641 buf += CHAR_STRING (c, buf);
642 nchars++;
644 else
646 /* C is not encodable. */
647 *buf++ = '?';
648 nchars++;
649 while (src + 1 < src_end && CHAR_GLYPH_PADDING_P (src[1]))
651 *buf++ = '?';
652 nchars++;
653 src++;
657 else
659 if (! STRING_MULTIBYTE (string))
660 string = string_to_multibyte (string);
661 nbytes = buf - encode_terminal_src;
662 if (encode_terminal_src_size < nbytes + SBYTES (string))
664 encode_terminal_src_size = nbytes + SBYTES (string);
665 encode_terminal_src = xrealloc (encode_terminal_src,
666 encode_terminal_src_size);
667 buf = encode_terminal_src + nbytes;
669 memcpy (buf, SDATA (string), SBYTES (string));
670 buf += SBYTES (string);
671 nchars += SCHARS (string);
674 src++;
677 if (nchars == 0)
679 coding->produced = 0;
680 return NULL;
683 nbytes = buf - encode_terminal_src;
684 coding->source = encode_terminal_src;
685 if (encode_terminal_dst_size == 0)
687 encode_terminal_dst_size = encode_terminal_src_size;
688 if (encode_terminal_dst)
689 encode_terminal_dst = xrealloc (encode_terminal_dst,
690 encode_terminal_dst_size);
691 else
692 encode_terminal_dst = xmalloc (encode_terminal_dst_size);
694 coding->destination = encode_terminal_dst;
695 coding->dst_bytes = encode_terminal_dst_size;
696 encode_coding_object (coding, Qnil, 0, 0, nchars, nbytes, Qnil);
697 /* coding->destination may have been reallocated. */
698 encode_terminal_dst = coding->destination;
699 encode_terminal_dst_size = coding->dst_bytes;
701 return (encode_terminal_dst);
706 /* An implementation of write_glyphs for termcap frames. */
708 static void
709 tty_write_glyphs (struct frame *f, struct glyph *string, int len)
711 unsigned char *conversion_buffer;
712 struct coding_system *coding;
713 size_t n, stringlen;
715 struct tty_display_info *tty = FRAME_TTY (f);
717 tty_turn_off_insert (tty);
718 tty_hide_cursor (tty);
720 /* Don't dare write in last column of bottom line, if Auto-Wrap,
721 since that would scroll the whole frame on some terminals. */
723 if (AutoWrap (tty)
724 && curY (tty) + 1 == FRAME_LINES (f)
725 && (curX (tty) + len) == FRAME_COLS (f))
726 len --;
727 if (len <= 0)
728 return;
730 cmplus (tty, len);
732 /* If terminal_coding does any conversion, use it, otherwise use
733 safe_terminal_coding. We can't use CODING_REQUIRE_ENCODING here
734 because it always return 1 if the member src_multibyte is 1. */
735 coding = (FRAME_TERMINAL_CODING (f)->common_flags & CODING_REQUIRE_ENCODING_MASK
736 ? FRAME_TERMINAL_CODING (f) : &safe_terminal_coding);
737 /* The mode bit CODING_MODE_LAST_BLOCK should be set to 1 only at
738 the tail. */
739 coding->mode &= ~CODING_MODE_LAST_BLOCK;
741 for (stringlen = len; stringlen != 0; stringlen -= n)
743 /* Identify a run of glyphs with the same face. */
744 int face_id = string->face_id;
746 for (n = 1; n < stringlen; ++n)
747 if (string[n].face_id != face_id)
748 break;
750 /* Turn appearance modes of the face of the run on. */
751 tty_highlight_if_desired (tty);
752 turn_on_face (f, face_id);
754 if (n == stringlen)
755 /* This is the last run. */
756 coding->mode |= CODING_MODE_LAST_BLOCK;
757 conversion_buffer = encode_terminal_code (string, n, coding);
758 if (coding->produced > 0)
760 BLOCK_INPUT;
761 fwrite (conversion_buffer, 1, coding->produced, tty->output);
762 if (ferror (tty->output))
763 clearerr (tty->output);
764 if (tty->termscript)
765 fwrite (conversion_buffer, 1, coding->produced, tty->termscript);
766 UNBLOCK_INPUT;
768 string += n;
770 /* Turn appearance modes off. */
771 turn_off_face (f, face_id);
772 tty_turn_off_highlight (tty);
775 cmcheckmagic (tty);
778 #ifdef HAVE_GPM /* Only used by GPM code. */
780 static void
781 tty_write_glyphs_with_face (register struct frame *f, register struct glyph *string,
782 register int len, register int face_id)
784 unsigned char *conversion_buffer;
785 struct coding_system *coding;
787 struct tty_display_info *tty = FRAME_TTY (f);
789 tty_turn_off_insert (tty);
790 tty_hide_cursor (tty);
792 /* Don't dare write in last column of bottom line, if Auto-Wrap,
793 since that would scroll the whole frame on some terminals. */
795 if (AutoWrap (tty)
796 && curY (tty) + 1 == FRAME_LINES (f)
797 && (curX (tty) + len) == FRAME_COLS (f))
798 len --;
799 if (len <= 0)
800 return;
802 cmplus (tty, len);
804 /* If terminal_coding does any conversion, use it, otherwise use
805 safe_terminal_coding. We can't use CODING_REQUIRE_ENCODING here
806 because it always return 1 if the member src_multibyte is 1. */
807 coding = (FRAME_TERMINAL_CODING (f)->common_flags & CODING_REQUIRE_ENCODING_MASK
808 ? FRAME_TERMINAL_CODING (f) : &safe_terminal_coding);
809 /* The mode bit CODING_MODE_LAST_BLOCK should be set to 1 only at
810 the tail. */
811 coding->mode &= ~CODING_MODE_LAST_BLOCK;
813 /* Turn appearance modes of the face. */
814 tty_highlight_if_desired (tty);
815 turn_on_face (f, face_id);
817 coding->mode |= CODING_MODE_LAST_BLOCK;
818 conversion_buffer = encode_terminal_code (string, len, coding);
819 if (coding->produced > 0)
821 BLOCK_INPUT;
822 fwrite (conversion_buffer, 1, coding->produced, tty->output);
823 if (ferror (tty->output))
824 clearerr (tty->output);
825 if (tty->termscript)
826 fwrite (conversion_buffer, 1, coding->produced, tty->termscript);
827 UNBLOCK_INPUT;
830 /* Turn appearance modes off. */
831 turn_off_face (f, face_id);
832 tty_turn_off_highlight (tty);
834 cmcheckmagic (tty);
836 #endif
838 /* An implementation of insert_glyphs for termcap frames. */
840 static void
841 tty_insert_glyphs (struct frame *f, struct glyph *start, int len)
843 char *buf;
844 struct glyph *glyph = NULL;
845 unsigned char *conversion_buffer;
846 unsigned char space[1];
847 struct coding_system *coding;
849 struct tty_display_info *tty = FRAME_TTY (f);
851 if (tty->TS_ins_multi_chars)
853 buf = tparam (tty->TS_ins_multi_chars, 0, 0, len, 0, 0, 0);
854 OUTPUT1 (tty, buf);
855 xfree (buf);
856 if (start)
857 write_glyphs (f, start, len);
858 return;
861 tty_turn_on_insert (tty);
862 cmplus (tty, len);
864 if (! start)
865 space[0] = SPACEGLYPH;
867 /* If terminal_coding does any conversion, use it, otherwise use
868 safe_terminal_coding. We can't use CODING_REQUIRE_ENCODING here
869 because it always return 1 if the member src_multibyte is 1. */
870 coding = (FRAME_TERMINAL_CODING (f)->common_flags & CODING_REQUIRE_ENCODING_MASK
871 ? FRAME_TERMINAL_CODING (f) : &safe_terminal_coding);
872 /* The mode bit CODING_MODE_LAST_BLOCK should be set to 1 only at
873 the tail. */
874 coding->mode &= ~CODING_MODE_LAST_BLOCK;
876 while (len-- > 0)
878 OUTPUT1_IF (tty, tty->TS_ins_char);
879 if (!start)
881 conversion_buffer = space;
882 coding->produced = 1;
884 else
886 tty_highlight_if_desired (tty);
887 turn_on_face (f, start->face_id);
888 glyph = start;
889 ++start;
890 /* We must open sufficient space for a character which
891 occupies more than one column. */
892 while (len && CHAR_GLYPH_PADDING_P (*start))
894 OUTPUT1_IF (tty, tty->TS_ins_char);
895 start++, len--;
898 if (len <= 0)
899 /* This is the last glyph. */
900 coding->mode |= CODING_MODE_LAST_BLOCK;
902 conversion_buffer = encode_terminal_code (glyph, 1, coding);
905 if (coding->produced > 0)
907 BLOCK_INPUT;
908 fwrite (conversion_buffer, 1, coding->produced, tty->output);
909 if (ferror (tty->output))
910 clearerr (tty->output);
911 if (tty->termscript)
912 fwrite (conversion_buffer, 1, coding->produced, tty->termscript);
913 UNBLOCK_INPUT;
916 OUTPUT1_IF (tty, tty->TS_pad_inserted_char);
917 if (start)
919 turn_off_face (f, glyph->face_id);
920 tty_turn_off_highlight (tty);
924 cmcheckmagic (tty);
927 /* An implementation of delete_glyphs for termcap frames. */
929 static void
930 tty_delete_glyphs (struct frame *f, int n)
932 char *buf;
933 register int i;
935 struct tty_display_info *tty = FRAME_TTY (f);
937 if (tty->delete_in_insert_mode)
939 tty_turn_on_insert (tty);
941 else
943 tty_turn_off_insert (tty);
944 OUTPUT_IF (tty, tty->TS_delete_mode);
947 if (tty->TS_del_multi_chars)
949 buf = tparam (tty->TS_del_multi_chars, 0, 0, n, 0, 0, 0);
950 OUTPUT1 (tty, buf);
951 xfree (buf);
953 else
954 for (i = 0; i < n; i++)
955 OUTPUT1 (tty, tty->TS_del_char);
956 if (!tty->delete_in_insert_mode)
957 OUTPUT_IF (tty, tty->TS_end_delete_mode);
960 /* An implementation of ins_del_lines for termcap frames. */
962 static void
963 tty_ins_del_lines (struct frame *f, int vpos, int n)
965 struct tty_display_info *tty = FRAME_TTY (f);
966 const char *multi =
967 n > 0 ? tty->TS_ins_multi_lines : tty->TS_del_multi_lines;
968 const char *single = n > 0 ? tty->TS_ins_line : tty->TS_del_line;
969 const char *scroll = n > 0 ? tty->TS_rev_scroll : tty->TS_fwd_scroll;
971 register int i = n > 0 ? n : -n;
972 register char *buf;
974 /* If the lines below the insertion are being pushed
975 into the end of the window, this is the same as clearing;
976 and we know the lines are already clear, since the matching
977 deletion has already been done. So can ignore this. */
978 /* If the lines below the deletion are blank lines coming
979 out of the end of the window, don't bother,
980 as there will be a matching inslines later that will flush them. */
981 if (FRAME_SCROLL_REGION_OK (f)
982 && vpos + i >= tty->specified_window)
983 return;
984 if (!FRAME_MEMORY_BELOW_FRAME (f)
985 && vpos + i >= FRAME_LINES (f))
986 return;
988 if (multi)
990 raw_cursor_to (f, vpos, 0);
991 tty_background_highlight (tty);
992 buf = tparam (multi, 0, 0, i, 0, 0, 0);
993 OUTPUT (tty, buf);
994 xfree (buf);
996 else if (single)
998 raw_cursor_to (f, vpos, 0);
999 tty_background_highlight (tty);
1000 while (--i >= 0)
1001 OUTPUT (tty, single);
1002 if (tty->TF_teleray)
1003 curX (tty) = 0;
1005 else
1007 tty_set_scroll_region (f, vpos, tty->specified_window);
1008 if (n < 0)
1009 raw_cursor_to (f, tty->specified_window - 1, 0);
1010 else
1011 raw_cursor_to (f, vpos, 0);
1012 tty_background_highlight (tty);
1013 while (--i >= 0)
1014 OUTPUTL (tty, scroll, tty->specified_window - vpos);
1015 tty_set_scroll_region (f, 0, tty->specified_window);
1018 if (!FRAME_SCROLL_REGION_OK (f)
1019 && FRAME_MEMORY_BELOW_FRAME (f)
1020 && n < 0)
1022 cursor_to (f, FRAME_LINES (f) + n, 0);
1023 clear_to_end (f);
1027 /* Compute cost of sending "str", in characters,
1028 not counting any line-dependent padding. */
1031 string_cost (const char *str)
1033 cost = 0;
1034 if (str)
1035 tputs (str, 0, evalcost);
1036 return cost;
1039 /* Compute cost of sending "str", in characters,
1040 counting any line-dependent padding at one line. */
1042 static int
1043 string_cost_one_line (const char *str)
1045 cost = 0;
1046 if (str)
1047 tputs (str, 1, evalcost);
1048 return cost;
1051 /* Compute per line amount of line-dependent padding,
1052 in tenths of characters. */
1055 per_line_cost (const char *str)
1057 cost = 0;
1058 if (str)
1059 tputs (str, 0, evalcost);
1060 cost = - cost;
1061 if (str)
1062 tputs (str, 10, evalcost);
1063 return cost;
1066 /* char_ins_del_cost[n] is cost of inserting N characters.
1067 char_ins_del_cost[-n] is cost of deleting N characters.
1068 The length of this vector is based on max_frame_cols. */
1070 int *char_ins_del_vector;
1072 #define char_ins_del_cost(f) (&char_ins_del_vector[FRAME_COLS ((f))])
1074 /* ARGSUSED */
1075 static void
1076 calculate_ins_del_char_costs (struct frame *f)
1078 struct tty_display_info *tty = FRAME_TTY (f);
1079 int ins_startup_cost, del_startup_cost;
1080 int ins_cost_per_char, del_cost_per_char;
1081 register int i;
1082 register int *p;
1084 if (tty->TS_ins_multi_chars)
1086 ins_cost_per_char = 0;
1087 ins_startup_cost = string_cost_one_line (tty->TS_ins_multi_chars);
1089 else if (tty->TS_ins_char || tty->TS_pad_inserted_char
1090 || (tty->TS_insert_mode && tty->TS_end_insert_mode))
1092 ins_startup_cost = (30 * (string_cost (tty->TS_insert_mode)
1093 + string_cost (tty->TS_end_insert_mode))) / 100;
1094 ins_cost_per_char = (string_cost_one_line (tty->TS_ins_char)
1095 + string_cost_one_line (tty->TS_pad_inserted_char));
1097 else
1099 ins_startup_cost = 9999;
1100 ins_cost_per_char = 0;
1103 if (tty->TS_del_multi_chars)
1105 del_cost_per_char = 0;
1106 del_startup_cost = string_cost_one_line (tty->TS_del_multi_chars);
1108 else if (tty->TS_del_char)
1110 del_startup_cost = (string_cost (tty->TS_delete_mode)
1111 + string_cost (tty->TS_end_delete_mode));
1112 if (tty->delete_in_insert_mode)
1113 del_startup_cost /= 2;
1114 del_cost_per_char = string_cost_one_line (tty->TS_del_char);
1116 else
1118 del_startup_cost = 9999;
1119 del_cost_per_char = 0;
1122 /* Delete costs are at negative offsets */
1123 p = &char_ins_del_cost (f)[0];
1124 for (i = FRAME_COLS (f); --i >= 0;)
1125 *--p = (del_startup_cost += del_cost_per_char);
1127 /* Doing nothing is free */
1128 p = &char_ins_del_cost (f)[0];
1129 *p++ = 0;
1131 /* Insert costs are at positive offsets */
1132 for (i = FRAME_COLS (f); --i >= 0;)
1133 *p++ = (ins_startup_cost += ins_cost_per_char);
1136 void
1137 calculate_costs (struct frame *frame)
1139 FRAME_COST_BAUD_RATE (frame) = baud_rate;
1141 if (FRAME_TERMCAP_P (frame))
1143 struct tty_display_info *tty = FRAME_TTY (frame);
1144 register const char *f = (tty->TS_set_scroll_region
1145 ? tty->TS_set_scroll_region
1146 : tty->TS_set_scroll_region_1);
1148 FRAME_SCROLL_REGION_COST (frame) = string_cost (f);
1150 tty->costs_set = 1;
1152 /* These variables are only used for terminal stuff. They are
1153 allocated once for the terminal frame of X-windows emacs, but not
1154 used afterwards.
1156 char_ins_del_vector (i.e., char_ins_del_cost) isn't used because
1157 X turns off char_ins_del_ok. */
1159 max_frame_lines = max (max_frame_lines, FRAME_LINES (frame));
1160 max_frame_cols = max (max_frame_cols, FRAME_COLS (frame));
1162 if (char_ins_del_vector != 0)
1163 char_ins_del_vector
1164 = (int *) xrealloc (char_ins_del_vector,
1165 (sizeof (int)
1166 + 2 * max_frame_cols * sizeof (int)));
1167 else
1168 char_ins_del_vector
1169 = (int *) xmalloc (sizeof (int)
1170 + 2 * max_frame_cols * sizeof (int));
1172 memset (char_ins_del_vector, 0,
1173 (sizeof (int) + 2 * max_frame_cols * sizeof (int)));
1176 if (f && (!tty->TS_ins_line && !tty->TS_del_line))
1177 do_line_insertion_deletion_costs (frame,
1178 tty->TS_rev_scroll, tty->TS_ins_multi_lines,
1179 tty->TS_fwd_scroll, tty->TS_del_multi_lines,
1180 f, f, 1);
1181 else
1182 do_line_insertion_deletion_costs (frame,
1183 tty->TS_ins_line, tty->TS_ins_multi_lines,
1184 tty->TS_del_line, tty->TS_del_multi_lines,
1185 0, 0, 1);
1187 calculate_ins_del_char_costs (frame);
1189 /* Don't use TS_repeat if its padding is worse than sending the chars */
1190 if (tty->TS_repeat && per_line_cost (tty->TS_repeat) * baud_rate < 9000)
1191 tty->RPov = string_cost (tty->TS_repeat);
1192 else
1193 tty->RPov = FRAME_COLS (frame) * 2;
1195 cmcostinit (FRAME_TTY (frame)); /* set up cursor motion costs */
1199 struct fkey_table {
1200 const char *cap, *name;
1203 /* Termcap capability names that correspond directly to X keysyms.
1204 Some of these (marked "terminfo") aren't supplied by old-style
1205 (Berkeley) termcap entries. They're listed in X keysym order;
1206 except we put the keypad keys first, so that if they clash with
1207 other keys (as on the IBM PC keyboard) they get overridden.
1210 static const struct fkey_table keys[] =
1212 {"kh", "home"}, /* termcap */
1213 {"kl", "left"}, /* termcap */
1214 {"ku", "up"}, /* termcap */
1215 {"kr", "right"}, /* termcap */
1216 {"kd", "down"}, /* termcap */
1217 {"%8", "prior"}, /* terminfo */
1218 {"%5", "next"}, /* terminfo */
1219 {"@7", "end"}, /* terminfo */
1220 {"@1", "begin"}, /* terminfo */
1221 {"*6", "select"}, /* terminfo */
1222 {"%9", "print"}, /* terminfo */
1223 {"@4", "execute"}, /* terminfo --- actually the `command' key */
1225 * "insert" --- see below
1227 {"&8", "undo"}, /* terminfo */
1228 {"%0", "redo"}, /* terminfo */
1229 {"%7", "menu"}, /* terminfo --- actually the `options' key */
1230 {"@0", "find"}, /* terminfo */
1231 {"@2", "cancel"}, /* terminfo */
1232 {"%1", "help"}, /* terminfo */
1234 * "break" goes here, but can't be reliably intercepted with termcap
1236 {"&4", "reset"}, /* terminfo --- actually `restart' */
1238 * "system" and "user" --- no termcaps
1240 {"kE", "clearline"}, /* terminfo */
1241 {"kA", "insertline"}, /* terminfo */
1242 {"kL", "deleteline"}, /* terminfo */
1243 {"kI", "insertchar"}, /* terminfo */
1244 {"kD", "deletechar"}, /* terminfo */
1245 {"kB", "backtab"}, /* terminfo */
1247 * "kp_backtab", "kp-space", "kp-tab" --- no termcaps
1249 {"@8", "kp-enter"}, /* terminfo */
1251 * "kp-f1", "kp-f2", "kp-f3" "kp-f4",
1252 * "kp-multiply", "kp-add", "kp-separator",
1253 * "kp-subtract", "kp-decimal", "kp-divide", "kp-0";
1254 * --- no termcaps for any of these.
1256 {"K4", "kp-1"}, /* terminfo */
1258 * "kp-2" --- no termcap
1260 {"K5", "kp-3"}, /* terminfo */
1262 * "kp-4" --- no termcap
1264 {"K2", "kp-5"}, /* terminfo */
1266 * "kp-6" --- no termcap
1268 {"K1", "kp-7"}, /* terminfo */
1270 * "kp-8" --- no termcap
1272 {"K3", "kp-9"}, /* terminfo */
1274 * "kp-equal" --- no termcap
1276 {"k1", "f1"},
1277 {"k2", "f2"},
1278 {"k3", "f3"},
1279 {"k4", "f4"},
1280 {"k5", "f5"},
1281 {"k6", "f6"},
1282 {"k7", "f7"},
1283 {"k8", "f8"},
1284 {"k9", "f9"},
1286 {"&0", "S-cancel"}, /*shifted cancel key*/
1287 {"&9", "S-begin"}, /*shifted begin key*/
1288 {"*0", "S-find"}, /*shifted find key*/
1289 {"*1", "S-execute"}, /*shifted execute? actually shifted command key*/
1290 {"*4", "S-delete"}, /*shifted delete-character key*/
1291 {"*7", "S-end"}, /*shifted end key*/
1292 {"*8", "S-clearline"}, /*shifted clear-to end-of-line key*/
1293 {"#1", "S-help"}, /*shifted help key*/
1294 {"#2", "S-home"}, /*shifted home key*/
1295 {"#3", "S-insert"}, /*shifted insert-character key*/
1296 {"#4", "S-left"}, /*shifted left-arrow key*/
1297 {"%d", "S-menu"}, /*shifted menu? actually shifted options key*/
1298 {"%c", "S-next"}, /*shifted next key*/
1299 {"%e", "S-prior"}, /*shifted previous key*/
1300 {"%f", "S-print"}, /*shifted print key*/
1301 {"%g", "S-redo"}, /*shifted redo key*/
1302 {"%i", "S-right"}, /*shifted right-arrow key*/
1303 {"!3", "S-undo"} /*shifted undo key*/
1306 #ifndef DOS_NT
1307 static char **term_get_fkeys_address;
1308 static KBOARD *term_get_fkeys_kboard;
1309 static Lisp_Object term_get_fkeys_1 (void);
1311 /* Find the escape codes sent by the function keys for Vinput_decode_map.
1312 This function scans the termcap function key sequence entries, and
1313 adds entries to Vinput_decode_map for each function key it finds. */
1315 static void
1316 term_get_fkeys (char **address, KBOARD *kboard)
1318 /* We run the body of the function (term_get_fkeys_1) and ignore all Lisp
1319 errors during the call. The only errors should be from Fdefine_key
1320 when given a key sequence containing an invalid prefix key. If the
1321 termcap defines function keys which use a prefix that is already bound
1322 to a command by the default bindings, we should silently ignore that
1323 function key specification, rather than giving the user an error and
1324 refusing to run at all on such a terminal. */
1326 term_get_fkeys_address = address;
1327 term_get_fkeys_kboard = kboard;
1328 internal_condition_case (term_get_fkeys_1, Qerror, Fidentity);
1331 static Lisp_Object
1332 term_get_fkeys_1 (void)
1334 int i;
1336 char **address = term_get_fkeys_address;
1337 KBOARD *kboard = term_get_fkeys_kboard;
1339 /* This can happen if CANNOT_DUMP or with strange options. */
1340 if (!KEYMAPP (KVAR (kboard, Vinput_decode_map)))
1341 KVAR (kboard, Vinput_decode_map) = Fmake_sparse_keymap (Qnil);
1343 for (i = 0; i < (sizeof (keys)/sizeof (keys[0])); i++)
1345 char *sequence = tgetstr (keys[i].cap, address);
1346 if (sequence)
1347 Fdefine_key (KVAR (kboard, Vinput_decode_map), build_string (sequence),
1348 Fmake_vector (make_number (1),
1349 intern (keys[i].name)));
1352 /* The uses of the "k0" capability are inconsistent; sometimes it
1353 describes F10, whereas othertimes it describes F0 and "k;" describes F10.
1354 We will attempt to politely accommodate both systems by testing for
1355 "k;", and if it is present, assuming that "k0" denotes F0, otherwise F10.
1358 const char *k_semi = tgetstr ("k;", address);
1359 const char *k0 = tgetstr ("k0", address);
1360 const char *k0_name = "f10";
1362 if (k_semi)
1364 if (k0)
1365 /* Define f0 first, so that f10 takes precedence in case the
1366 key sequences happens to be the same. */
1367 Fdefine_key (KVAR (kboard, Vinput_decode_map), build_string (k0),
1368 Fmake_vector (make_number (1), intern ("f0")));
1369 Fdefine_key (KVAR (kboard, Vinput_decode_map), build_string (k_semi),
1370 Fmake_vector (make_number (1), intern ("f10")));
1372 else if (k0)
1373 Fdefine_key (KVAR (kboard, Vinput_decode_map), build_string (k0),
1374 Fmake_vector (make_number (1), intern (k0_name)));
1377 /* Set up cookies for numbered function keys above f10. */
1379 char fcap[3], fkey[4];
1381 fcap[0] = 'F'; fcap[2] = '\0';
1382 for (i = 11; i < 64; i++)
1384 if (i <= 19)
1385 fcap[1] = '1' + i - 11;
1386 else if (i <= 45)
1387 fcap[1] = 'A' + i - 20;
1388 else
1389 fcap[1] = 'a' + i - 46;
1392 char *sequence = tgetstr (fcap, address);
1393 if (sequence)
1395 sprintf (fkey, "f%d", i);
1396 Fdefine_key (KVAR (kboard, Vinput_decode_map), build_string (sequence),
1397 Fmake_vector (make_number (1),
1398 intern (fkey)));
1405 * Various mappings to try and get a better fit.
1408 #define CONDITIONAL_REASSIGN(cap1, cap2, sym) \
1409 if (!tgetstr (cap1, address)) \
1411 char *sequence = tgetstr (cap2, address); \
1412 if (sequence) \
1413 Fdefine_key (KVAR (kboard, Vinput_decode_map), build_string (sequence), \
1414 Fmake_vector (make_number (1), \
1415 intern (sym))); \
1418 /* if there's no key_next keycap, map key_npage to `next' keysym */
1419 CONDITIONAL_REASSIGN ("%5", "kN", "next");
1420 /* if there's no key_prev keycap, map key_ppage to `previous' keysym */
1421 CONDITIONAL_REASSIGN ("%8", "kP", "prior");
1422 /* if there's no key_dc keycap, map key_ic to `insert' keysym */
1423 CONDITIONAL_REASSIGN ("kD", "kI", "insert");
1424 /* if there's no key_end keycap, map key_ll to 'end' keysym */
1425 CONDITIONAL_REASSIGN ("@7", "kH", "end");
1427 /* IBM has their own non-standard dialect of terminfo.
1428 If the standard name isn't found, try the IBM name. */
1429 CONDITIONAL_REASSIGN ("kB", "KO", "backtab");
1430 CONDITIONAL_REASSIGN ("@4", "kJ", "execute"); /* actually "action" */
1431 CONDITIONAL_REASSIGN ("@4", "kc", "execute"); /* actually "command" */
1432 CONDITIONAL_REASSIGN ("%7", "ki", "menu");
1433 CONDITIONAL_REASSIGN ("@7", "kw", "end");
1434 CONDITIONAL_REASSIGN ("F1", "k<", "f11");
1435 CONDITIONAL_REASSIGN ("F2", "k>", "f12");
1436 CONDITIONAL_REASSIGN ("%1", "kq", "help");
1437 CONDITIONAL_REASSIGN ("*6", "kU", "select");
1438 #undef CONDITIONAL_REASSIGN
1441 return Qnil;
1443 #endif /* not DOS_NT */
1446 /***********************************************************************
1447 Character Display Information
1448 ***********************************************************************/
1449 static void append_glyph (struct it *);
1450 static void produce_stretch_glyph (struct it *);
1451 static void append_composite_glyph (struct it *);
1452 static void produce_composite_glyph (struct it *);
1453 static void append_glyphless_glyph (struct it *, int, const char *);
1454 static void produce_glyphless_glyph (struct it *, int, Lisp_Object);
1456 /* Append glyphs to IT's glyph_row. Called from produce_glyphs for
1457 terminal frames if IT->glyph_row != NULL. IT->char_to_display is
1458 the character for which to produce glyphs; IT->face_id contains the
1459 character's face. Padding glyphs are appended if IT->c has a
1460 IT->pixel_width > 1. */
1462 static void
1463 append_glyph (struct it *it)
1465 struct glyph *glyph, *end;
1466 int i;
1468 xassert (it->glyph_row);
1469 glyph = (it->glyph_row->glyphs[it->area]
1470 + it->glyph_row->used[it->area]);
1471 end = it->glyph_row->glyphs[1 + it->area];
1473 /* If the glyph row is reversed, we need to prepend the glyph rather
1474 than append it. */
1475 if (it->glyph_row->reversed_p && it->area == TEXT_AREA)
1477 struct glyph *g;
1478 int move_by = it->pixel_width;
1480 /* Make room for the new glyphs. */
1481 if (move_by > end - glyph) /* don't overstep end of this area */
1482 move_by = end - glyph;
1483 for (g = glyph - 1; g >= it->glyph_row->glyphs[it->area]; g--)
1484 g[move_by] = *g;
1485 glyph = it->glyph_row->glyphs[it->area];
1486 end = glyph + move_by;
1489 /* BIDI Note: we put the glyphs of a "multi-pixel" character left to
1490 right, even in the REVERSED_P case, since (a) all of its u.ch are
1491 identical, and (b) the PADDING_P flag needs to be set for the
1492 leftmost one, because we write to the terminal left-to-right. */
1493 for (i = 0;
1494 i < it->pixel_width && glyph < end;
1495 ++i)
1497 glyph->type = CHAR_GLYPH;
1498 glyph->pixel_width = 1;
1499 glyph->u.ch = it->char_to_display;
1500 glyph->face_id = it->face_id;
1501 glyph->padding_p = i > 0;
1502 glyph->charpos = CHARPOS (it->position);
1503 glyph->object = it->object;
1504 if (it->bidi_p)
1506 glyph->resolved_level = it->bidi_it.resolved_level;
1507 if ((it->bidi_it.type & 7) != it->bidi_it.type)
1508 abort ();
1509 glyph->bidi_type = it->bidi_it.type;
1511 else
1513 glyph->resolved_level = 0;
1514 glyph->bidi_type = UNKNOWN_BT;
1517 ++it->glyph_row->used[it->area];
1518 ++glyph;
1522 /* Produce glyphs for the display element described by IT. *IT
1523 specifies what we want to produce a glyph for (character, image, ...),
1524 and where in the glyph matrix we currently are (glyph row and hpos).
1525 produce_glyphs fills in output fields of *IT with information such as the
1526 pixel width and height of a character, and maybe output actual glyphs at
1527 the same time if IT->glyph_row is non-null. For an overview, see
1528 the explanation in dispextern.h, before the definition of the
1529 display_element_type enumeration.
1531 produce_glyphs also stores the result of glyph width, ascent
1532 etc. computations in *IT.
1534 IT->glyph_row may be null, in which case produce_glyphs does not
1535 actually fill in the glyphs. This is used in the move_* functions
1536 in xdisp.c for text width and height computations.
1538 Callers usually don't call produce_glyphs directly;
1539 instead they use the macro PRODUCE_GLYPHS. */
1541 void
1542 produce_glyphs (struct it *it)
1544 /* If a hook is installed, let it do the work. */
1546 /* Nothing but characters are supported on terminal frames. */
1547 xassert (it->what == IT_CHARACTER
1548 || it->what == IT_COMPOSITION
1549 || it->what == IT_STRETCH
1550 || it->what == IT_GLYPHLESS);
1552 if (it->what == IT_STRETCH)
1554 produce_stretch_glyph (it);
1555 goto done;
1558 if (it->what == IT_COMPOSITION)
1560 produce_composite_glyph (it);
1561 goto done;
1564 if (it->what == IT_GLYPHLESS)
1566 produce_glyphless_glyph (it, 0, Qnil);
1567 goto done;
1570 if (it->char_to_display >= 040 && it->char_to_display < 0177)
1572 it->pixel_width = it->nglyphs = 1;
1573 if (it->glyph_row)
1574 append_glyph (it);
1576 else if (it->char_to_display == '\n')
1577 it->pixel_width = it->nglyphs = 0;
1578 else if (it->char_to_display == '\t')
1580 int absolute_x = (it->current_x
1581 + it->continuation_lines_width);
1582 int next_tab_x
1583 = (((1 + absolute_x + it->tab_width - 1)
1584 / it->tab_width)
1585 * it->tab_width);
1586 int nspaces;
1588 /* If part of the TAB has been displayed on the previous line
1589 which is continued now, continuation_lines_width will have
1590 been incremented already by the part that fitted on the
1591 continued line. So, we will get the right number of spaces
1592 here. */
1593 nspaces = next_tab_x - absolute_x;
1595 if (it->glyph_row)
1597 int n = nspaces;
1599 it->char_to_display = ' ';
1600 it->pixel_width = it->len = 1;
1602 while (n--)
1603 append_glyph (it);
1606 it->pixel_width = nspaces;
1607 it->nglyphs = nspaces;
1609 else if (CHAR_BYTE8_P (it->char_to_display))
1611 /* Coming here means that we must send the raw 8-bit byte as is
1612 to the terminal. Although there's no way to know how many
1613 columns it occupies on a screen, it is a good assumption that
1614 a single byte code has 1-column width. */
1615 it->pixel_width = it->nglyphs = 1;
1616 if (it->glyph_row)
1617 append_glyph (it);
1619 else
1621 Lisp_Object charset_list = FRAME_TERMINAL (it->f)->charset_list;
1623 if (char_charset (it->char_to_display, charset_list, NULL))
1625 it->pixel_width = CHAR_WIDTH (it->char_to_display);
1626 it->nglyphs = it->pixel_width;
1627 if (it->glyph_row)
1628 append_glyph (it);
1630 else
1632 Lisp_Object acronym = lookup_glyphless_char_display (-1, it);
1634 xassert (it->what == IT_GLYPHLESS);
1635 produce_glyphless_glyph (it, 1, acronym);
1639 done:
1640 /* Advance current_x by the pixel width as a convenience for
1641 the caller. */
1642 if (it->area == TEXT_AREA)
1643 it->current_x += it->pixel_width;
1644 it->ascent = it->max_ascent = it->phys_ascent = it->max_phys_ascent = 0;
1645 it->descent = it->max_descent = it->phys_descent = it->max_phys_descent = 1;
1649 /* Produce a stretch glyph for iterator IT. IT->object is the value
1650 of the glyph property displayed. The value must be a list
1651 `(space KEYWORD VALUE ...)' with the following KEYWORD/VALUE pairs
1652 being recognized:
1654 1. `:width WIDTH' specifies that the space should be WIDTH *
1655 canonical char width wide. WIDTH may be an integer or floating
1656 point number.
1658 2. `:align-to HPOS' specifies that the space should be wide enough
1659 to reach HPOS, a value in canonical character units. */
1661 static void
1662 produce_stretch_glyph (struct it *it)
1664 /* (space :width WIDTH ...) */
1665 Lisp_Object prop, plist;
1666 int width = 0, align_to = -1;
1667 int zero_width_ok_p = 0;
1668 double tem;
1670 /* List should start with `space'. */
1671 xassert (CONSP (it->object) && EQ (XCAR (it->object), Qspace));
1672 plist = XCDR (it->object);
1674 /* Compute the width of the stretch. */
1675 if ((prop = Fplist_get (plist, QCwidth), !NILP (prop))
1676 && calc_pixel_width_or_height (&tem, it, prop, 0, 1, 0))
1678 /* Absolute width `:width WIDTH' specified and valid. */
1679 zero_width_ok_p = 1;
1680 width = (int)(tem + 0.5);
1682 else if ((prop = Fplist_get (plist, QCalign_to), !NILP (prop))
1683 && calc_pixel_width_or_height (&tem, it, prop, 0, 1, &align_to))
1685 if (it->glyph_row == NULL || !it->glyph_row->mode_line_p)
1686 align_to = (align_to < 0
1688 : align_to - window_box_left_offset (it->w, TEXT_AREA));
1689 else if (align_to < 0)
1690 align_to = window_box_left_offset (it->w, TEXT_AREA);
1691 width = max (0, (int)(tem + 0.5) + align_to - it->current_x);
1692 zero_width_ok_p = 1;
1694 else
1695 /* Nothing specified -> width defaults to canonical char width. */
1696 width = FRAME_COLUMN_WIDTH (it->f);
1698 if (width <= 0 && (width < 0 || !zero_width_ok_p))
1699 width = 1;
1701 if (width > 0 && it->line_wrap != TRUNCATE
1702 && it->current_x + width > it->last_visible_x)
1703 width = it->last_visible_x - it->current_x - 1;
1705 if (width > 0 && it->glyph_row)
1707 Lisp_Object o_object = it->object;
1708 Lisp_Object object = it->stack[it->sp - 1].string;
1709 int n = width;
1711 if (!STRINGP (object))
1712 object = it->w->buffer;
1713 it->object = object;
1714 it->char_to_display = ' ';
1715 it->pixel_width = it->len = 1;
1716 while (n--)
1717 append_glyph (it);
1718 it->object = o_object;
1720 it->pixel_width = width;
1721 it->nglyphs = width;
1725 /* Append glyphs to IT's glyph_row for the composition IT->cmp_id.
1726 Called from produce_composite_glyph for terminal frames if
1727 IT->glyph_row != NULL. IT->face_id contains the character's
1728 face. */
1730 static void
1731 append_composite_glyph (struct it *it)
1733 struct glyph *glyph;
1735 xassert (it->glyph_row);
1736 glyph = it->glyph_row->glyphs[it->area] + it->glyph_row->used[it->area];
1737 if (glyph < it->glyph_row->glyphs[1 + it->area])
1739 /* If the glyph row is reversed, we need to prepend the glyph
1740 rather than append it. */
1741 if (it->glyph_row->reversed_p && it->area == TEXT_AREA)
1743 struct glyph *g;
1745 /* Make room for the new glyph. */
1746 for (g = glyph - 1; g >= it->glyph_row->glyphs[it->area]; g--)
1747 g[1] = *g;
1748 glyph = it->glyph_row->glyphs[it->area];
1750 glyph->type = COMPOSITE_GLYPH;
1751 glyph->pixel_width = it->pixel_width;
1752 glyph->u.cmp.id = it->cmp_it.id;
1753 if (it->cmp_it.ch < 0)
1755 glyph->u.cmp.automatic = 0;
1756 glyph->u.cmp.id = it->cmp_it.id;
1758 else
1760 glyph->u.cmp.automatic = 1;
1761 glyph->u.cmp.id = it->cmp_it.id;
1762 glyph->slice.cmp.from = it->cmp_it.from;
1763 glyph->slice.cmp.to = it->cmp_it.to - 1;
1766 glyph->face_id = it->face_id;
1767 glyph->padding_p = 0;
1768 glyph->charpos = CHARPOS (it->position);
1769 glyph->object = it->object;
1770 if (it->bidi_p)
1772 glyph->resolved_level = it->bidi_it.resolved_level;
1773 if ((it->bidi_it.type & 7) != it->bidi_it.type)
1774 abort ();
1775 glyph->bidi_type = it->bidi_it.type;
1777 else
1779 glyph->resolved_level = 0;
1780 glyph->bidi_type = UNKNOWN_BT;
1783 ++it->glyph_row->used[it->area];
1784 ++glyph;
1789 /* Produce a composite glyph for iterator IT. IT->cmp_id is the ID of
1790 the composition. We simply produces components of the composition
1791 assuming that the terminal has a capability to layout/render it
1792 correctly. */
1794 static void
1795 produce_composite_glyph (struct it *it)
1797 if (it->cmp_it.ch < 0)
1799 struct composition *cmp = composition_table[it->cmp_it.id];
1801 it->pixel_width = cmp->width;
1803 else
1805 Lisp_Object gstring = composition_gstring_from_id (it->cmp_it.id);
1807 it->pixel_width = composition_gstring_width (gstring, it->cmp_it.from,
1808 it->cmp_it.to, NULL);
1810 it->nglyphs = 1;
1811 if (it->glyph_row)
1812 append_composite_glyph (it);
1816 /* Append a glyph for a glyphless character to IT->glyph_row. FACE_ID
1817 is a face ID to be used for the glyph. What is actually appended
1818 are glyphs of type CHAR_GLYPH whose characters are in STR (which
1819 comes from it->nglyphs bytes). */
1821 static void
1822 append_glyphless_glyph (struct it *it, int face_id, const char *str)
1824 struct glyph *glyph, *end;
1825 int i;
1827 xassert (it->glyph_row);
1828 glyph = it->glyph_row->glyphs[it->area] + it->glyph_row->used[it->area];
1829 end = it->glyph_row->glyphs[1 + it->area];
1831 /* If the glyph row is reversed, we need to prepend the glyph rather
1832 than append it. */
1833 if (it->glyph_row->reversed_p && it->area == TEXT_AREA)
1835 struct glyph *g;
1836 int move_by = it->pixel_width;
1838 /* Make room for the new glyphs. */
1839 if (move_by > end - glyph) /* don't overstep end of this area */
1840 move_by = end - glyph;
1841 for (g = glyph - 1; g >= it->glyph_row->glyphs[it->area]; g--)
1842 g[move_by] = *g;
1843 glyph = it->glyph_row->glyphs[it->area];
1844 end = glyph + move_by;
1847 if (glyph >= end)
1848 return;
1849 glyph->type = CHAR_GLYPH;
1850 glyph->pixel_width = 1;
1851 glyph->face_id = face_id;
1852 glyph->padding_p = 0;
1853 glyph->charpos = CHARPOS (it->position);
1854 glyph->object = it->object;
1855 if (it->bidi_p)
1857 glyph->resolved_level = it->bidi_it.resolved_level;
1858 if ((it->bidi_it.type & 7) != it->bidi_it.type)
1859 abort ();
1860 glyph->bidi_type = it->bidi_it.type;
1862 else
1864 glyph->resolved_level = 0;
1865 glyph->bidi_type = UNKNOWN_BT;
1868 /* BIDI Note: we put the glyphs of characters left to right, even in
1869 the REVERSED_P case because we write to the terminal
1870 left-to-right. */
1871 for (i = 0; i < it->nglyphs && glyph < end; ++i)
1873 if (i > 0)
1874 glyph[0] = glyph[-1];
1875 glyph->u.ch = str[i];
1876 ++it->glyph_row->used[it->area];
1877 ++glyph;
1881 /* Produce glyphs for a glyphless character for iterator IT.
1882 IT->glyphless_method specifies which method to use for displaying
1883 the character. See the description of enum
1884 glyphless_display_method in dispextern.h for the details.
1886 FOR_NO_FONT is nonzero if and only if this is for a character that
1887 is not supproted by the coding system of the terminal. ACRONYM, if
1888 non-nil, is an acronym string for the character.
1890 The glyphs actually produced are of type CHAR_GLYPH. */
1892 static void
1893 produce_glyphless_glyph (struct it *it, int for_no_font, Lisp_Object acronym)
1895 int face_id;
1896 int len;
1897 char buf[9];
1898 char const *str = " ";
1900 /* Get a face ID for the glyph by utilizing a cache (the same way as
1901 done for `escape-glyph' in get_next_display_element). */
1902 if (it->f == last_glyphless_glyph_frame
1903 && it->face_id == last_glyphless_glyph_face_id)
1905 face_id = last_glyphless_glyph_merged_face_id;
1907 else
1909 /* Merge the `glyphless-char' face into the current face. */
1910 face_id = merge_faces (it->f, Qglyphless_char, 0, it->face_id);
1911 last_glyphless_glyph_frame = it->f;
1912 last_glyphless_glyph_face_id = it->face_id;
1913 last_glyphless_glyph_merged_face_id = face_id;
1916 if (it->glyphless_method == GLYPHLESS_DISPLAY_THIN_SPACE)
1918 /* As there's no way to produce a thin space, we produce a space
1919 of canonical width. */
1920 len = 1;
1922 else if (it->glyphless_method == GLYPHLESS_DISPLAY_EMPTY_BOX)
1924 len = CHAR_WIDTH (it->c);
1925 if (len == 0)
1926 len = 1;
1927 else if (len > 4)
1928 len = 4;
1929 sprintf (buf, "[%.*s]", len, str);
1930 len += 2;
1931 str = buf;
1933 else
1935 if (it->glyphless_method == GLYPHLESS_DISPLAY_ACRONYM)
1937 if (! STRINGP (acronym) && CHAR_TABLE_P (Vglyphless_char_display))
1938 acronym = CHAR_TABLE_REF (Vglyphless_char_display, it->c);
1939 if (CONSP (acronym))
1940 acronym = XCDR (acronym);
1941 buf[0] = '[';
1942 str = STRINGP (acronym) ? SSDATA (acronym) : "";
1943 for (len = 0; len < 6 && str[len] && ASCII_BYTE_P (str[len]); len++)
1944 buf[1 + len] = str[len];
1945 buf[1 + len] = ']';
1946 len += 2;
1948 else
1950 xassert (it->glyphless_method == GLYPHLESS_DISPLAY_HEX_CODE);
1951 len = (it->c < 0x10000 ? sprintf (buf, "\\u%04X", it->c)
1952 : it->c <= MAX_UNICODE_CHAR ? sprintf (buf, "\\U%06X", it->c)
1953 : sprintf (buf, "\\x%06X", it->c));
1955 str = buf;
1958 it->pixel_width = len;
1959 it->nglyphs = len;
1960 if (it->glyph_row)
1961 append_glyphless_glyph (it, face_id, str);
1965 /* Get information about special display element WHAT in an
1966 environment described by IT. WHAT is one of IT_TRUNCATION or
1967 IT_CONTINUATION. Maybe produce glyphs for WHAT if IT has a
1968 non-null glyph_row member. This function ensures that fields like
1969 face_id, c, len of IT are left untouched. */
1971 void
1972 produce_special_glyphs (struct it *it, enum display_element_type what)
1974 struct it temp_it;
1975 Lisp_Object gc;
1976 GLYPH glyph;
1978 temp_it = *it;
1979 temp_it.dp = NULL;
1980 temp_it.what = IT_CHARACTER;
1981 temp_it.len = 1;
1982 temp_it.object = make_number (0);
1983 memset (&temp_it.current, 0, sizeof temp_it.current);
1985 if (what == IT_CONTINUATION)
1987 /* Continuation glyph. For R2L lines, we mirror it by hand. */
1988 if (it->bidi_it.paragraph_dir == R2L)
1989 SET_GLYPH_FROM_CHAR (glyph, '/');
1990 else
1991 SET_GLYPH_FROM_CHAR (glyph, '\\');
1992 if (it->dp
1993 && (gc = DISP_CONTINUE_GLYPH (it->dp), GLYPH_CODE_P (gc))
1994 && GLYPH_CODE_CHAR_VALID_P (gc))
1996 /* FIXME: Should we mirror GC for R2L lines? */
1997 SET_GLYPH_FROM_GLYPH_CODE (glyph, gc);
1998 spec_glyph_lookup_face (XWINDOW (it->window), &glyph);
2001 else if (what == IT_TRUNCATION)
2003 /* Truncation glyph. */
2004 SET_GLYPH_FROM_CHAR (glyph, '$');
2005 if (it->dp
2006 && (gc = DISP_TRUNC_GLYPH (it->dp), GLYPH_CODE_P (gc))
2007 && GLYPH_CODE_CHAR_VALID_P (gc))
2009 /* FIXME: Should we mirror GC for R2L lines? */
2010 SET_GLYPH_FROM_GLYPH_CODE (glyph, gc);
2011 spec_glyph_lookup_face (XWINDOW (it->window), &glyph);
2014 else
2015 abort ();
2017 temp_it.c = temp_it.char_to_display = GLYPH_CHAR (glyph);
2018 temp_it.face_id = GLYPH_FACE (glyph);
2019 temp_it.len = CHAR_BYTES (temp_it.c);
2021 produce_glyphs (&temp_it);
2022 it->pixel_width = temp_it.pixel_width;
2023 it->nglyphs = temp_it.pixel_width;
2028 /***********************************************************************
2029 Faces
2030 ***********************************************************************/
2032 /* Value is non-zero if attribute ATTR may be used. ATTR should be
2033 one of the enumerators from enum no_color_bit, or a bit set built
2034 from them. Some display attributes may not be used together with
2035 color; the termcap capability `NC' specifies which ones. */
2037 #define MAY_USE_WITH_COLORS_P(tty, ATTR) \
2038 (tty->TN_max_colors > 0 \
2039 ? (tty->TN_no_color_video & (ATTR)) == 0 \
2040 : 1)
2042 /* Turn appearances of face FACE_ID on tty frame F on.
2043 FACE_ID is a realized face ID number, in the face cache. */
2045 static void
2046 turn_on_face (struct frame *f, int face_id)
2048 struct face *face = FACE_FROM_ID (f, face_id);
2049 long fg = face->foreground;
2050 long bg = face->background;
2051 struct tty_display_info *tty = FRAME_TTY (f);
2053 /* Do this first because TS_end_standout_mode may be the same
2054 as TS_exit_attribute_mode, which turns all appearances off. */
2055 if (MAY_USE_WITH_COLORS_P (tty, NC_REVERSE))
2057 if (tty->TN_max_colors > 0)
2059 if (fg >= 0 && bg >= 0)
2061 /* If the terminal supports colors, we can set them
2062 below without using reverse video. The face's fg
2063 and bg colors are set as they should appear on
2064 the screen, i.e. they take the inverse-video'ness
2065 of the face already into account. */
2067 else if (inverse_video)
2069 if (fg == FACE_TTY_DEFAULT_FG_COLOR
2070 || bg == FACE_TTY_DEFAULT_BG_COLOR)
2071 tty_toggle_highlight (tty);
2073 else
2075 if (fg == FACE_TTY_DEFAULT_BG_COLOR
2076 || bg == FACE_TTY_DEFAULT_FG_COLOR)
2077 tty_toggle_highlight (tty);
2080 else
2082 /* If we can't display colors, use reverse video
2083 if the face specifies that. */
2084 if (inverse_video)
2086 if (fg == FACE_TTY_DEFAULT_FG_COLOR
2087 || bg == FACE_TTY_DEFAULT_BG_COLOR)
2088 tty_toggle_highlight (tty);
2090 else
2092 if (fg == FACE_TTY_DEFAULT_BG_COLOR
2093 || bg == FACE_TTY_DEFAULT_FG_COLOR)
2094 tty_toggle_highlight (tty);
2099 if (face->tty_bold_p && MAY_USE_WITH_COLORS_P (tty, NC_BOLD))
2100 OUTPUT1_IF (tty, tty->TS_enter_bold_mode);
2102 if (face->tty_dim_p && MAY_USE_WITH_COLORS_P (tty, NC_DIM))
2103 OUTPUT1_IF (tty, tty->TS_enter_dim_mode);
2105 /* Alternate charset and blinking not yet used. */
2106 if (face->tty_alt_charset_p
2107 && MAY_USE_WITH_COLORS_P (tty, NC_ALT_CHARSET))
2108 OUTPUT1_IF (tty, tty->TS_enter_alt_charset_mode);
2110 if (face->tty_blinking_p
2111 && MAY_USE_WITH_COLORS_P (tty, NC_BLINK))
2112 OUTPUT1_IF (tty, tty->TS_enter_blink_mode);
2114 if (face->tty_underline_p && MAY_USE_WITH_COLORS_P (tty, NC_UNDERLINE))
2115 OUTPUT1_IF (tty, tty->TS_enter_underline_mode);
2117 if (tty->TN_max_colors > 0)
2119 const char *ts;
2120 char *p;
2122 ts = tty->standout_mode ? tty->TS_set_background : tty->TS_set_foreground;
2123 if (fg >= 0 && ts)
2125 p = tparam (ts, NULL, 0, (int) fg, 0, 0, 0);
2126 OUTPUT (tty, p);
2127 xfree (p);
2130 ts = tty->standout_mode ? tty->TS_set_foreground : tty->TS_set_background;
2131 if (bg >= 0 && ts)
2133 p = tparam (ts, NULL, 0, (int) bg, 0, 0, 0);
2134 OUTPUT (tty, p);
2135 xfree (p);
2141 /* Turn off appearances of face FACE_ID on tty frame F. */
2143 static void
2144 turn_off_face (struct frame *f, int face_id)
2146 struct face *face = FACE_FROM_ID (f, face_id);
2147 struct tty_display_info *tty = FRAME_TTY (f);
2149 xassert (face != NULL);
2151 if (tty->TS_exit_attribute_mode)
2153 /* Capability "me" will turn off appearance modes double-bright,
2154 half-bright, reverse-video, standout, underline. It may or
2155 may not turn off alt-char-mode. */
2156 if (face->tty_bold_p
2157 || face->tty_dim_p
2158 || face->tty_reverse_p
2159 || face->tty_alt_charset_p
2160 || face->tty_blinking_p
2161 || face->tty_underline_p)
2163 OUTPUT1_IF (tty, tty->TS_exit_attribute_mode);
2164 if (strcmp (tty->TS_exit_attribute_mode, tty->TS_end_standout_mode) == 0)
2165 tty->standout_mode = 0;
2168 if (face->tty_alt_charset_p)
2169 OUTPUT_IF (tty, tty->TS_exit_alt_charset_mode);
2171 else
2173 /* If we don't have "me" we can only have those appearances
2174 that have exit sequences defined. */
2175 if (face->tty_alt_charset_p)
2176 OUTPUT_IF (tty, tty->TS_exit_alt_charset_mode);
2178 if (face->tty_underline_p)
2179 OUTPUT_IF (tty, tty->TS_exit_underline_mode);
2182 /* Switch back to default colors. */
2183 if (tty->TN_max_colors > 0
2184 && ((face->foreground != FACE_TTY_DEFAULT_COLOR
2185 && face->foreground != FACE_TTY_DEFAULT_FG_COLOR)
2186 || (face->background != FACE_TTY_DEFAULT_COLOR
2187 && face->background != FACE_TTY_DEFAULT_BG_COLOR)))
2188 OUTPUT1_IF (tty, tty->TS_orig_pair);
2192 /* Return non-zero if the terminal on frame F supports all of the
2193 capabilities in CAPS simultaneously, with foreground and background
2194 colors FG and BG. */
2197 tty_capable_p (struct tty_display_info *tty, unsigned int caps,
2198 unsigned long fg, unsigned long bg)
2200 #define TTY_CAPABLE_P_TRY(tty, cap, TS, NC_bit) \
2201 if ((caps & (cap)) && (!(TS) || !MAY_USE_WITH_COLORS_P(tty, NC_bit))) \
2202 return 0;
2204 TTY_CAPABLE_P_TRY (tty, TTY_CAP_INVERSE, tty->TS_standout_mode, NC_REVERSE);
2205 TTY_CAPABLE_P_TRY (tty, TTY_CAP_UNDERLINE, tty->TS_enter_underline_mode, NC_UNDERLINE);
2206 TTY_CAPABLE_P_TRY (tty, TTY_CAP_BOLD, tty->TS_enter_bold_mode, NC_BOLD);
2207 TTY_CAPABLE_P_TRY (tty, TTY_CAP_DIM, tty->TS_enter_dim_mode, NC_DIM);
2208 TTY_CAPABLE_P_TRY (tty, TTY_CAP_BLINK, tty->TS_enter_blink_mode, NC_BLINK);
2209 TTY_CAPABLE_P_TRY (tty, TTY_CAP_ALT_CHARSET, tty->TS_enter_alt_charset_mode, NC_ALT_CHARSET);
2211 /* We can do it! */
2212 return 1;
2215 /* Return non-zero if the terminal is capable to display colors. */
2217 DEFUN ("tty-display-color-p", Ftty_display_color_p, Stty_display_color_p,
2218 0, 1, 0,
2219 doc: /* Return non-nil if the tty device TERMINAL can display colors.
2221 TERMINAL can be a terminal object, a frame, or nil (meaning the
2222 selected frame's terminal). This function always returns nil if
2223 TERMINAL does not refer to a text-only terminal. */)
2224 (Lisp_Object terminal)
2226 struct terminal *t = get_tty_terminal (terminal, 0);
2227 if (!t)
2228 return Qnil;
2229 else
2230 return t->display_info.tty->TN_max_colors > 0 ? Qt : Qnil;
2233 /* Return the number of supported colors. */
2234 DEFUN ("tty-display-color-cells", Ftty_display_color_cells,
2235 Stty_display_color_cells, 0, 1, 0,
2236 doc: /* Return the number of colors supported by the tty device TERMINAL.
2238 TERMINAL can be a terminal object, a frame, or nil (meaning the
2239 selected frame's terminal). This function always returns 0 if
2240 TERMINAL does not refer to a text-only terminal. */)
2241 (Lisp_Object terminal)
2243 struct terminal *t = get_tty_terminal (terminal, 0);
2244 if (!t)
2245 return make_number (0);
2246 else
2247 return make_number (t->display_info.tty->TN_max_colors);
2250 #ifndef DOS_NT
2252 /* Declare here rather than in the function, as in the rest of Emacs,
2253 to work around an HPUX compiler bug (?). See
2254 http://lists.gnu.org/archive/html/emacs-devel/2007-08/msg00410.html */
2255 static int default_max_colors;
2256 static int default_max_pairs;
2257 static int default_no_color_video;
2258 static char *default_orig_pair;
2259 static char *default_set_foreground;
2260 static char *default_set_background;
2262 /* Save or restore the default color-related capabilities of this
2263 terminal. */
2264 static void
2265 tty_default_color_capabilities (struct tty_display_info *tty, int save)
2268 if (save)
2270 xfree (default_orig_pair);
2271 default_orig_pair = tty->TS_orig_pair ? xstrdup (tty->TS_orig_pair) : NULL;
2273 xfree (default_set_foreground);
2274 default_set_foreground = tty->TS_set_foreground ? xstrdup (tty->TS_set_foreground)
2275 : NULL;
2277 xfree (default_set_background);
2278 default_set_background = tty->TS_set_background ? xstrdup (tty->TS_set_background)
2279 : NULL;
2281 default_max_colors = tty->TN_max_colors;
2282 default_max_pairs = tty->TN_max_pairs;
2283 default_no_color_video = tty->TN_no_color_video;
2285 else
2287 tty->TS_orig_pair = default_orig_pair;
2288 tty->TS_set_foreground = default_set_foreground;
2289 tty->TS_set_background = default_set_background;
2290 tty->TN_max_colors = default_max_colors;
2291 tty->TN_max_pairs = default_max_pairs;
2292 tty->TN_no_color_video = default_no_color_video;
2296 /* Setup one of the standard tty color schemes according to MODE.
2297 MODE's value is generally the number of colors which we want to
2298 support; zero means set up for the default capabilities, the ones
2299 we saw at init_tty time; -1 means turn off color support. */
2300 static void
2301 tty_setup_colors (struct tty_display_info *tty, int mode)
2303 /* Canonicalize all negative values of MODE. */
2304 if (mode < -1)
2305 mode = -1;
2307 switch (mode)
2309 case -1: /* no colors at all */
2310 tty->TN_max_colors = 0;
2311 tty->TN_max_pairs = 0;
2312 tty->TN_no_color_video = 0;
2313 tty->TS_set_foreground = tty->TS_set_background = tty->TS_orig_pair = NULL;
2314 break;
2315 case 0: /* default colors, if any */
2316 default:
2317 tty_default_color_capabilities (tty, 0);
2318 break;
2319 case 8: /* 8 standard ANSI colors */
2320 tty->TS_orig_pair = "\033[0m";
2321 #ifdef TERMINFO
2322 tty->TS_set_foreground = "\033[3%p1%dm";
2323 tty->TS_set_background = "\033[4%p1%dm";
2324 #else
2325 tty->TS_set_foreground = "\033[3%dm";
2326 tty->TS_set_background = "\033[4%dm";
2327 #endif
2328 tty->TN_max_colors = 8;
2329 tty->TN_max_pairs = 64;
2330 tty->TN_no_color_video = 0;
2331 break;
2335 void
2336 set_tty_color_mode (struct tty_display_info *tty, struct frame *f)
2338 Lisp_Object tem, val;
2339 Lisp_Object color_mode;
2340 int mode;
2341 Lisp_Object tty_color_mode_alist
2342 = Fintern_soft (build_string ("tty-color-mode-alist"), Qnil);
2344 tem = assq_no_quit (Qtty_color_mode, f->param_alist);
2345 val = CONSP (tem) ? XCDR (tem) : Qnil;
2347 if (INTEGERP (val))
2348 color_mode = val;
2349 else if (SYMBOLP (tty_color_mode_alist))
2351 tem = Fassq (val, Fsymbol_value (tty_color_mode_alist));
2352 color_mode = CONSP (tem) ? XCDR (tem) : Qnil;
2354 else
2355 color_mode = Qnil;
2357 mode = INTEGERP (color_mode) ? XINT (color_mode) : 0;
2359 if (mode != tty->previous_color_mode)
2361 Lisp_Object funsym = intern ("tty-set-up-initial-frame-faces");
2362 tty->previous_color_mode = mode;
2363 tty_setup_colors (tty , mode);
2364 /* This recomputes all the faces given the new color definitions. */
2365 safe_call (1, &funsym);
2369 #endif /* !DOS_NT */
2373 /* Return the tty display object specified by TERMINAL. */
2375 static struct terminal *
2376 get_tty_terminal (Lisp_Object terminal, int throw)
2378 struct terminal *t = get_terminal (terminal, throw);
2380 if (t && t->type != output_termcap && t->type != output_msdos_raw)
2382 if (throw)
2383 error ("Device %d is not a termcap terminal device", t->id);
2384 else
2385 return NULL;
2388 return t;
2391 /* Return an active termcap device that uses the tty device with the
2392 given name.
2394 This function ignores suspended devices.
2396 Returns NULL if the named terminal device is not opened. */
2398 struct terminal *
2399 get_named_tty (const char *name)
2401 struct terminal *t;
2403 if (!name)
2404 abort ();
2406 for (t = terminal_list; t; t = t->next_terminal)
2408 if ((t->type == output_termcap || t->type == output_msdos_raw)
2409 && !strcmp (t->display_info.tty->name, name)
2410 && TERMINAL_ACTIVE_P (t))
2411 return t;
2414 return 0;
2418 DEFUN ("tty-type", Ftty_type, Stty_type, 0, 1, 0,
2419 doc: /* Return the type of the tty device that TERMINAL uses.
2420 Returns nil if TERMINAL is not on a tty device.
2422 TERMINAL can be a terminal object, a frame, or nil (meaning the
2423 selected frame's terminal). */)
2424 (Lisp_Object terminal)
2426 struct terminal *t = get_terminal (terminal, 1);
2428 if (t->type != output_termcap && t->type != output_msdos_raw)
2429 return Qnil;
2431 if (t->display_info.tty->type)
2432 return build_string (t->display_info.tty->type);
2433 else
2434 return Qnil;
2437 DEFUN ("controlling-tty-p", Fcontrolling_tty_p, Scontrolling_tty_p, 0, 1, 0,
2438 doc: /* Return non-nil if TERMINAL is the controlling tty of the Emacs process.
2440 TERMINAL can be a terminal object, a frame, or nil (meaning the
2441 selected frame's terminal). This function always returns nil if
2442 TERMINAL is not on a tty device. */)
2443 (Lisp_Object terminal)
2445 struct terminal *t = get_terminal (terminal, 1);
2447 if ((t->type != output_termcap && t->type != output_msdos_raw)
2448 || strcmp (t->display_info.tty->name, DEV_TTY) != 0)
2449 return Qnil;
2450 else
2451 return Qt;
2454 DEFUN ("tty-no-underline", Ftty_no_underline, Stty_no_underline, 0, 1, 0,
2455 doc: /* Declare that the tty used by TERMINAL does not handle underlining.
2456 This is used to override the terminfo data, for certain terminals that
2457 do not really do underlining, but say that they do. This function has
2458 no effect if used on a non-tty terminal.
2460 TERMINAL can be a terminal object, a frame or nil (meaning the
2461 selected frame's terminal). This function always returns nil if
2462 TERMINAL does not refer to a text-only terminal. */)
2463 (Lisp_Object terminal)
2465 struct terminal *t = get_terminal (terminal, 1);
2467 if (t->type == output_termcap)
2468 t->display_info.tty->TS_enter_underline_mode = 0;
2469 return Qnil;
2474 DEFUN ("suspend-tty", Fsuspend_tty, Ssuspend_tty, 0, 1, 0,
2475 doc: /* Suspend the terminal device TTY.
2477 The device is restored to its default state, and Emacs ceases all
2478 access to the tty device. Frames that use the device are not deleted,
2479 but input is not read from them and if they change, their display is
2480 not updated.
2482 TTY may be a terminal object, a frame, or nil for the terminal device
2483 of the currently selected frame.
2485 This function runs `suspend-tty-functions' after suspending the
2486 device. The functions are run with one arg, the id of the suspended
2487 terminal device.
2489 `suspend-tty' does nothing if it is called on a device that is already
2490 suspended.
2492 A suspended tty may be resumed by calling `resume-tty' on it. */)
2493 (Lisp_Object tty)
2495 struct terminal *t = get_tty_terminal (tty, 1);
2496 FILE *f;
2498 if (!t)
2499 error ("Unknown tty device");
2501 f = t->display_info.tty->input;
2503 if (f)
2505 /* First run `suspend-tty-functions' and then clean up the tty
2506 state because `suspend-tty-functions' might need to change
2507 the tty state. */
2508 Lisp_Object args[2];
2509 args[0] = intern ("suspend-tty-functions");
2510 XSETTERMINAL (args[1], t);
2511 Frun_hook_with_args (2, args);
2513 reset_sys_modes (t->display_info.tty);
2514 delete_keyboard_wait_descriptor (fileno (f));
2516 #ifndef MSDOS
2517 fclose (f);
2518 if (f != t->display_info.tty->output)
2519 fclose (t->display_info.tty->output);
2520 #endif
2522 t->display_info.tty->input = 0;
2523 t->display_info.tty->output = 0;
2525 if (FRAMEP (t->display_info.tty->top_frame))
2526 FRAME_SET_VISIBLE (XFRAME (t->display_info.tty->top_frame), 0);
2530 /* Clear display hooks to prevent further output. */
2531 clear_tty_hooks (t);
2533 return Qnil;
2536 DEFUN ("resume-tty", Fresume_tty, Sresume_tty, 0, 1, 0,
2537 doc: /* Resume the previously suspended terminal device TTY.
2538 The terminal is opened and reinitialized. Frames that are on the
2539 suspended terminal are revived.
2541 It is an error to resume a terminal while another terminal is active
2542 on the same device.
2544 This function runs `resume-tty-functions' after resuming the terminal.
2545 The functions are run with one arg, the id of the resumed terminal
2546 device.
2548 `resume-tty' does nothing if it is called on a device that is not
2549 suspended.
2551 TTY may be a terminal object, a frame, or nil (meaning the selected
2552 frame's terminal). */)
2553 (Lisp_Object tty)
2555 struct terminal *t = get_tty_terminal (tty, 1);
2556 int fd;
2558 if (!t)
2559 error ("Unknown tty device");
2561 if (!t->display_info.tty->input)
2563 if (get_named_tty (t->display_info.tty->name))
2564 error ("Cannot resume display while another display is active on the same device");
2566 #ifdef MSDOS
2567 t->display_info.tty->output = stdout;
2568 t->display_info.tty->input = stdin;
2569 #else /* !MSDOS */
2570 fd = emacs_open (t->display_info.tty->name, O_RDWR | O_NOCTTY, 0);
2572 if (fd == -1)
2573 error ("Can not reopen tty device %s: %s", t->display_info.tty->name, strerror (errno));
2575 if (strcmp (t->display_info.tty->name, DEV_TTY))
2576 dissociate_if_controlling_tty (fd);
2578 t->display_info.tty->output = fdopen (fd, "w+");
2579 t->display_info.tty->input = t->display_info.tty->output;
2580 #endif
2582 add_keyboard_wait_descriptor (fd);
2584 if (FRAMEP (t->display_info.tty->top_frame))
2586 struct frame *f = XFRAME (t->display_info.tty->top_frame);
2587 int width, height;
2588 int old_height = FRAME_COLS (f);
2589 int old_width = FRAME_LINES (f);
2591 /* Check if terminal/window size has changed while the frame
2592 was suspended. */
2593 get_tty_size (fileno (t->display_info.tty->input), &width, &height);
2594 if (width != old_width || height != old_height)
2595 change_frame_size (f, height, width, 0, 0, 0);
2596 FRAME_SET_VISIBLE (XFRAME (t->display_info.tty->top_frame), 1);
2599 set_tty_hooks (t);
2600 init_sys_modes (t->display_info.tty);
2603 /* Run `resume-tty-functions'. */
2604 Lisp_Object args[2];
2605 args[0] = intern ("resume-tty-functions");
2606 XSETTERMINAL (args[1], t);
2607 Frun_hook_with_args (2, args);
2611 set_tty_hooks (t);
2613 return Qnil;
2617 /***********************************************************************
2618 Mouse
2619 ***********************************************************************/
2621 #ifdef HAVE_GPM
2623 #ifndef HAVE_WINDOW_SYSTEM
2624 void
2625 term_mouse_moveto (int x, int y)
2627 /* TODO: how to set mouse position?
2628 const char *name;
2629 int fd;
2630 name = (const char *) ttyname (0);
2631 fd = open (name, O_WRONLY);
2632 SOME_FUNCTION (x, y, fd);
2633 close (fd);
2634 last_mouse_x = x;
2635 last_mouse_y = y; */
2637 #endif /* HAVE_WINDOW_SYSTEM */
2639 /* Implementation of draw_row_with_mouse_face for TTY/GPM. */
2640 void
2641 tty_draw_row_with_mouse_face (struct window *w, struct glyph_row *row,
2642 int start_hpos, int end_hpos,
2643 enum draw_glyphs_face draw)
2645 int nglyphs = end_hpos - start_hpos;
2646 struct frame *f = XFRAME (WINDOW_FRAME (w));
2647 struct tty_display_info *tty = FRAME_TTY (f);
2648 int face_id = tty->mouse_highlight.mouse_face_face_id;
2649 int save_x, save_y, pos_x, pos_y;
2651 if (end_hpos >= row->used[TEXT_AREA])
2652 nglyphs = row->used[TEXT_AREA] - start_hpos;
2654 pos_y = row->y + WINDOW_TOP_EDGE_Y (w);
2655 pos_x = row->used[LEFT_MARGIN_AREA] + start_hpos + WINDOW_LEFT_EDGE_X (w);
2657 /* Save current cursor co-ordinates. */
2658 save_y = curY (tty);
2659 save_x = curX (tty);
2660 cursor_to (f, pos_y, pos_x);
2662 if (draw == DRAW_MOUSE_FACE)
2663 tty_write_glyphs_with_face (f, row->glyphs[TEXT_AREA] + start_hpos,
2664 nglyphs, face_id);
2665 else if (draw == DRAW_NORMAL_TEXT)
2666 write_glyphs (f, row->glyphs[TEXT_AREA] + start_hpos, nglyphs);
2668 cursor_to (f, save_y, save_x);
2671 static int
2672 term_mouse_movement (FRAME_PTR frame, Gpm_Event *event)
2674 /* Has the mouse moved off the glyph it was on at the last sighting? */
2675 if (event->x != last_mouse_x || event->y != last_mouse_y)
2677 frame->mouse_moved = 1;
2678 note_mouse_highlight (frame, event->x, event->y);
2679 /* Remember which glyph we're now on. */
2680 last_mouse_x = event->x;
2681 last_mouse_y = event->y;
2682 return 1;
2684 return 0;
2687 /* Return the current position of the mouse.
2689 Set *f to the frame the mouse is in, or zero if the mouse is in no
2690 Emacs frame. If it is set to zero, all the other arguments are
2691 garbage.
2693 Set *bar_window to Qnil, and *x and *y to the column and
2694 row of the character cell the mouse is over.
2696 Set *timeptr to the time the mouse was at the returned position.
2698 This clears mouse_moved until the next motion
2699 event arrives. */
2700 static void
2701 term_mouse_position (FRAME_PTR *fp, int insist, Lisp_Object *bar_window,
2702 enum scroll_bar_part *part, Lisp_Object *x,
2703 Lisp_Object *y, Time *timeptr)
2705 struct timeval now;
2706 Time sec, usec;
2708 *fp = SELECTED_FRAME ();
2709 (*fp)->mouse_moved = 0;
2711 *bar_window = Qnil;
2712 *part = 0;
2714 XSETINT (*x, last_mouse_x);
2715 XSETINT (*y, last_mouse_y);
2716 gettimeofday(&now, 0);
2717 sec = now.tv_sec;
2718 usec = now.tv_usec;
2719 *timeptr = (sec * 1000) + (usec / 1000);
2722 /* Prepare a mouse-event in *RESULT for placement in the input queue.
2724 If the event is a button press, then note that we have grabbed
2725 the mouse. */
2727 static Lisp_Object
2728 term_mouse_click (struct input_event *result, Gpm_Event *event,
2729 struct frame *f)
2731 struct timeval now;
2732 int i, j;
2734 result->kind = GPM_CLICK_EVENT;
2735 for (i = 0, j = GPM_B_LEFT; i < 3; i++, j >>= 1 )
2737 if (event->buttons & j) {
2738 result->code = i; /* button number */
2739 break;
2742 gettimeofday(&now, 0);
2743 result->timestamp = (now.tv_sec * 1000) + (now.tv_usec / 1000);
2745 if (event->type & GPM_UP)
2746 result->modifiers = up_modifier;
2747 else if (event->type & GPM_DOWN)
2748 result->modifiers = down_modifier;
2749 else
2750 result->modifiers = 0;
2752 if (event->type & GPM_SINGLE)
2753 result->modifiers |= click_modifier;
2755 if (event->type & GPM_DOUBLE)
2756 result->modifiers |= double_modifier;
2758 if (event->type & GPM_TRIPLE)
2759 result->modifiers |= triple_modifier;
2761 if (event->type & GPM_DRAG)
2762 result->modifiers |= drag_modifier;
2764 if (!(event->type & (GPM_MOVE | GPM_DRAG))) {
2766 /* 1 << KG_SHIFT */
2767 if (event->modifiers & (1 << 0))
2768 result->modifiers |= shift_modifier;
2770 /* 1 << KG_CTRL */
2771 if (event->modifiers & (1 << 2))
2772 result->modifiers |= ctrl_modifier;
2774 /* 1 << KG_ALT || KG_ALTGR */
2775 if (event->modifiers & (1 << 3)
2776 || event->modifiers & (1 << 1))
2777 result->modifiers |= meta_modifier;
2780 XSETINT (result->x, event->x);
2781 XSETINT (result->y, event->y);
2782 XSETFRAME (result->frame_or_window, f);
2783 result->arg = Qnil;
2784 return Qnil;
2788 handle_one_term_event (struct tty_display_info *tty, Gpm_Event *event, struct input_event* hold_quit)
2790 struct frame *f = XFRAME (tty->top_frame);
2791 struct input_event ie;
2792 int do_help = 0;
2793 int count = 0;
2795 EVENT_INIT (ie);
2796 ie.kind = NO_EVENT;
2797 ie.arg = Qnil;
2799 if (event->type & (GPM_MOVE | GPM_DRAG)) {
2800 previous_help_echo_string = help_echo_string;
2801 help_echo_string = Qnil;
2803 Gpm_DrawPointer (event->x, event->y, fileno (tty->output));
2805 if (!term_mouse_movement (f, event))
2806 help_echo_string = previous_help_echo_string;
2808 /* If the contents of the global variable help_echo_string
2809 has changed, generate a HELP_EVENT. */
2810 if (!NILP (help_echo_string)
2811 || !NILP (previous_help_echo_string))
2812 do_help = 1;
2814 goto done;
2816 else {
2817 f->mouse_moved = 0;
2818 term_mouse_click (&ie, event, f);
2821 done:
2822 if (ie.kind != NO_EVENT)
2824 kbd_buffer_store_event_hold (&ie, hold_quit);
2825 count++;
2828 if (do_help
2829 && !(hold_quit && hold_quit->kind != NO_EVENT))
2831 Lisp_Object frame;
2833 if (f)
2834 XSETFRAME (frame, f);
2835 else
2836 frame = Qnil;
2838 gen_help_event (help_echo_string, frame, help_echo_window,
2839 help_echo_object, help_echo_pos);
2840 count++;
2843 return count;
2846 DEFUN ("gpm-mouse-start", Fgpm_mouse_start, Sgpm_mouse_start,
2847 0, 0, 0,
2848 doc: /* Open a connection to Gpm.
2849 Gpm-mouse can only be activated for one tty at a time. */)
2850 (void)
2852 struct frame *f = SELECTED_FRAME ();
2853 struct tty_display_info *tty
2854 = ((f)->output_method == output_termcap
2855 ? (f)->terminal->display_info.tty : NULL);
2856 Gpm_Connect connection;
2858 if (!tty)
2859 error ("Gpm-mouse only works in the GNU/Linux console");
2860 if (gpm_tty == tty)
2861 return Qnil; /* Already activated, nothing to do. */
2862 if (gpm_tty)
2863 error ("Gpm-mouse can only be activated for one tty at a time");
2865 connection.eventMask = ~0;
2866 connection.defaultMask = ~GPM_HARD;
2867 connection.maxMod = ~0;
2868 connection.minMod = 0;
2869 gpm_zerobased = 1;
2871 if (Gpm_Open (&connection, 0) < 0)
2872 error ("Gpm-mouse failed to connect to the gpm daemon");
2873 else
2875 gpm_tty = tty;
2876 /* `init_sys_modes' arranges for mouse movements sent through gpm_fd
2877 to generate SIGIOs. Apparently we need to call reset_sys_modes
2878 before calling init_sys_modes. */
2879 reset_sys_modes (tty);
2880 init_sys_modes (tty);
2881 add_gpm_wait_descriptor (gpm_fd);
2882 return Qnil;
2886 void
2887 close_gpm (int fd)
2889 if (fd >= 0)
2890 delete_gpm_wait_descriptor (fd);
2891 while (Gpm_Close()); /* close all the stack */
2892 gpm_tty = NULL;
2895 DEFUN ("gpm-mouse-stop", Fgpm_mouse_stop, Sgpm_mouse_stop,
2896 0, 0, 0,
2897 doc: /* Close a connection to Gpm. */)
2898 (void)
2900 struct frame *f = SELECTED_FRAME ();
2901 struct tty_display_info *tty
2902 = ((f)->output_method == output_termcap
2903 ? (f)->terminal->display_info.tty : NULL);
2905 if (!tty || gpm_tty != tty)
2906 return Qnil; /* Not activated on this terminal, nothing to do. */
2908 close_gpm (gpm_fd);
2909 return Qnil;
2911 #endif /* HAVE_GPM */
2914 #ifndef MSDOS
2915 /***********************************************************************
2916 Initialization
2917 ***********************************************************************/
2919 /* Initialize the tty-dependent part of frame F. The frame must
2920 already have its device initialized. */
2922 void
2923 create_tty_output (struct frame *f)
2925 struct tty_output *t;
2927 if (! FRAME_TERMCAP_P (f))
2928 abort ();
2930 t = xmalloc (sizeof (struct tty_output));
2931 memset (t, 0, sizeof (struct tty_output));
2933 t->display_info = FRAME_TERMINAL (f)->display_info.tty;
2935 f->output_data.tty = t;
2938 /* Delete frame F's face cache, and its tty-dependent part. */
2940 static void
2941 tty_free_frame_resources (struct frame *f)
2943 if (! FRAME_TERMCAP_P (f))
2944 abort ();
2946 if (FRAME_FACE_CACHE (f))
2947 free_frame_faces (f);
2949 xfree (f->output_data.tty);
2952 #else /* MSDOS */
2954 /* Delete frame F's face cache. */
2956 static void
2957 tty_free_frame_resources (struct frame *f)
2959 if (! FRAME_TERMCAP_P (f) && ! FRAME_MSDOS_P (f))
2960 abort ();
2962 if (FRAME_FACE_CACHE (f))
2963 free_frame_faces (f);
2965 #endif /* MSDOS */
2967 /* Reset the hooks in TERMINAL. */
2969 static void
2970 clear_tty_hooks (struct terminal *terminal)
2972 terminal->rif = 0;
2973 terminal->cursor_to_hook = 0;
2974 terminal->raw_cursor_to_hook = 0;
2975 terminal->clear_to_end_hook = 0;
2976 terminal->clear_frame_hook = 0;
2977 terminal->clear_end_of_line_hook = 0;
2978 terminal->ins_del_lines_hook = 0;
2979 terminal->insert_glyphs_hook = 0;
2980 terminal->write_glyphs_hook = 0;
2981 terminal->delete_glyphs_hook = 0;
2982 terminal->ring_bell_hook = 0;
2983 terminal->reset_terminal_modes_hook = 0;
2984 terminal->set_terminal_modes_hook = 0;
2985 terminal->update_begin_hook = 0;
2986 terminal->update_end_hook = 0;
2987 terminal->set_terminal_window_hook = 0;
2988 terminal->mouse_position_hook = 0;
2989 terminal->frame_rehighlight_hook = 0;
2990 terminal->frame_raise_lower_hook = 0;
2991 terminal->fullscreen_hook = 0;
2992 terminal->set_vertical_scroll_bar_hook = 0;
2993 terminal->condemn_scroll_bars_hook = 0;
2994 terminal->redeem_scroll_bar_hook = 0;
2995 terminal->judge_scroll_bars_hook = 0;
2996 terminal->read_socket_hook = 0;
2997 terminal->frame_up_to_date_hook = 0;
2999 /* Leave these two set, or suspended frames are not deleted
3000 correctly. */
3001 terminal->delete_frame_hook = &tty_free_frame_resources;
3002 terminal->delete_terminal_hook = &delete_tty;
3005 /* Initialize hooks in TERMINAL with the values needed for a tty. */
3007 static void
3008 set_tty_hooks (struct terminal *terminal)
3010 terminal->rif = 0; /* ttys don't support window-based redisplay. */
3012 terminal->cursor_to_hook = &tty_cursor_to;
3013 terminal->raw_cursor_to_hook = &tty_raw_cursor_to;
3015 terminal->clear_to_end_hook = &tty_clear_to_end;
3016 terminal->clear_frame_hook = &tty_clear_frame;
3017 terminal->clear_end_of_line_hook = &tty_clear_end_of_line;
3019 terminal->ins_del_lines_hook = &tty_ins_del_lines;
3021 terminal->insert_glyphs_hook = &tty_insert_glyphs;
3022 terminal->write_glyphs_hook = &tty_write_glyphs;
3023 terminal->delete_glyphs_hook = &tty_delete_glyphs;
3025 terminal->ring_bell_hook = &tty_ring_bell;
3027 terminal->reset_terminal_modes_hook = &tty_reset_terminal_modes;
3028 terminal->set_terminal_modes_hook = &tty_set_terminal_modes;
3029 terminal->update_begin_hook = 0; /* Not needed. */
3030 terminal->update_end_hook = &tty_update_end;
3031 terminal->set_terminal_window_hook = &tty_set_terminal_window;
3033 terminal->mouse_position_hook = 0; /* Not needed. */
3034 terminal->frame_rehighlight_hook = 0; /* Not needed. */
3035 terminal->frame_raise_lower_hook = 0; /* Not needed. */
3037 terminal->set_vertical_scroll_bar_hook = 0; /* Not needed. */
3038 terminal->condemn_scroll_bars_hook = 0; /* Not needed. */
3039 terminal->redeem_scroll_bar_hook = 0; /* Not needed. */
3040 terminal->judge_scroll_bars_hook = 0; /* Not needed. */
3042 terminal->read_socket_hook = &tty_read_avail_input; /* keyboard.c */
3043 terminal->frame_up_to_date_hook = 0; /* Not needed. */
3045 terminal->delete_frame_hook = &tty_free_frame_resources;
3046 terminal->delete_terminal_hook = &delete_tty;
3049 /* Drop the controlling terminal if fd is the same device. */
3050 static void
3051 dissociate_if_controlling_tty (int fd)
3053 #ifndef DOS_NT
3054 int pgid = tcgetpgrp (fd); /* If tcgetpgrp succeeds, fd is the ctty. */
3055 if (pgid != -1)
3057 #if defined (USG5)
3058 setpgrp ();
3059 no_controlling_tty = 1;
3060 #elif defined (CYGWIN)
3061 setsid ();
3062 no_controlling_tty = 1;
3063 #else
3064 #ifdef TIOCNOTTY /* Try BSD ioctls. */
3065 sigblock (sigmask (SIGTTOU));
3066 fd = emacs_open (DEV_TTY, O_RDWR, 0);
3067 if (fd != -1 && ioctl (fd, TIOCNOTTY, 0) != -1)
3069 no_controlling_tty = 1;
3071 if (fd != -1)
3072 emacs_close (fd);
3073 sigunblock (sigmask (SIGTTOU));
3074 #else
3075 /* Unknown system. */
3076 croak ();
3077 #endif /* ! TIOCNOTTY */
3078 #endif /* ! USG */
3080 #endif /* !DOS_NT */
3083 /* Create a termcap display on the tty device with the given name and
3084 type.
3086 If NAME is NULL, then use the controlling tty, i.e., "/dev/tty".
3087 Otherwise NAME should be a path to the tty device file,
3088 e.g. "/dev/pts/7".
3090 TERMINAL_TYPE is the termcap type of the device, e.g. "vt100".
3092 If MUST_SUCCEED is true, then all errors are fatal. */
3094 struct terminal *
3095 init_tty (const char *name, const char *terminal_type, int must_succeed)
3097 char *area = NULL;
3098 char **address = &area;
3099 int buffer_size = 4096;
3100 int status;
3101 struct tty_display_info *tty = NULL;
3102 struct terminal *terminal = NULL;
3103 int ctty = 0; /* 1 if asked to open controlling tty. */
3105 if (!terminal_type)
3106 maybe_fatal (must_succeed, 0,
3107 "Unknown terminal type",
3108 "Unknown terminal type");
3110 if (name == NULL)
3111 name = DEV_TTY;
3112 if (!strcmp (name, DEV_TTY))
3113 ctty = 1;
3115 /* If we already have a terminal on the given device, use that. If
3116 all such terminals are suspended, create a new one instead. */
3117 /* XXX Perhaps this should be made explicit by having init_tty
3118 always create a new terminal and separating terminal and frame
3119 creation on Lisp level. */
3120 terminal = get_named_tty (name);
3121 if (terminal)
3122 return terminal;
3124 terminal = create_terminal ();
3125 #ifdef MSDOS
3126 if (been_here > 0)
3127 maybe_fatal (0, 0, "Attempt to create another terminal %s", "",
3128 name, "");
3129 been_here = 1;
3130 tty = &the_only_display_info;
3131 #else
3132 tty = (struct tty_display_info *) xmalloc (sizeof (struct tty_display_info));
3133 #endif
3134 memset (tty, 0, sizeof (struct tty_display_info));
3135 tty->next = tty_list;
3136 tty_list = tty;
3138 terminal->type = output_termcap;
3139 terminal->display_info.tty = tty;
3140 tty->terminal = terminal;
3142 tty->Wcm = (struct cm *) xmalloc (sizeof (struct cm));
3143 Wcm_clear (tty);
3145 encode_terminal_src_size = 0;
3146 encode_terminal_dst_size = 0;
3148 #ifdef HAVE_GPM
3149 terminal->mouse_position_hook = term_mouse_position;
3150 tty->mouse_highlight.mouse_face_window = Qnil;
3151 #endif
3154 #ifndef DOS_NT
3155 set_tty_hooks (terminal);
3158 int fd;
3159 FILE *file;
3161 #ifdef O_IGNORE_CTTY
3162 if (!ctty)
3163 /* Open the terminal device. Don't recognize it as our
3164 controlling terminal, and don't make it the controlling tty
3165 if we don't have one at the moment. */
3166 fd = emacs_open (name, O_RDWR | O_IGNORE_CTTY | O_NOCTTY, 0);
3167 else
3168 #endif /* O_IGNORE_CTTY */
3169 /* Alas, O_IGNORE_CTTY is a GNU extension that seems to be only
3170 defined on Hurd. On other systems, we need to explicitly
3171 dissociate ourselves from the controlling tty when we want to
3172 open a frame on the same terminal. */
3173 fd = emacs_open (name, O_RDWR | O_NOCTTY, 0);
3175 tty->name = xstrdup (name);
3176 terminal->name = xstrdup (name);
3178 if (fd < 0)
3179 maybe_fatal (must_succeed, terminal,
3180 "Could not open file: %s",
3181 "Could not open file: %s",
3182 name);
3183 if (!isatty (fd))
3185 close (fd);
3186 maybe_fatal (must_succeed, terminal,
3187 "Not a tty device: %s",
3188 "Not a tty device: %s",
3189 name);
3192 #ifndef O_IGNORE_CTTY
3193 if (!ctty)
3194 dissociate_if_controlling_tty (fd);
3195 #endif
3197 file = fdopen (fd, "w+");
3198 tty->input = file;
3199 tty->output = file;
3202 tty->type = xstrdup (terminal_type);
3204 add_keyboard_wait_descriptor (fileno (tty->input));
3206 Wcm_clear (tty);
3208 tty->termcap_term_buffer = (char *) xmalloc (buffer_size);
3210 /* On some systems, tgetent tries to access the controlling
3211 terminal. */
3212 sigblock (sigmask (SIGTTOU));
3213 status = tgetent (tty->termcap_term_buffer, terminal_type);
3214 sigunblock (sigmask (SIGTTOU));
3216 if (status < 0)
3218 #ifdef TERMINFO
3219 maybe_fatal (must_succeed, terminal,
3220 "Cannot open terminfo database file",
3221 "Cannot open terminfo database file");
3222 #else
3223 maybe_fatal (must_succeed, terminal,
3224 "Cannot open termcap database file",
3225 "Cannot open termcap database file");
3226 #endif
3228 if (status == 0)
3230 maybe_fatal (must_succeed, terminal,
3231 "Terminal type %s is not defined",
3232 "Terminal type %s is not defined.\n\
3233 If that is not the actual type of terminal you have,\n\
3234 use the Bourne shell command `TERM=... export TERM' (C-shell:\n\
3235 `setenv TERM ...') to specify the correct type. It may be necessary\n"
3236 #ifdef TERMINFO
3237 "to do `unset TERMINFO' (C-shell: `unsetenv TERMINFO') as well.",
3238 #else
3239 "to do `unset TERMCAP' (C-shell: `unsetenv TERMCAP') as well.",
3240 #endif
3241 terminal_type);
3244 #ifndef TERMINFO
3245 if (strlen (tty->termcap_term_buffer) >= buffer_size)
3246 abort ();
3247 buffer_size = strlen (tty->termcap_term_buffer);
3248 #endif
3249 tty->termcap_strings_buffer = area = (char *) xmalloc (buffer_size);
3250 tty->TS_ins_line = tgetstr ("al", address);
3251 tty->TS_ins_multi_lines = tgetstr ("AL", address);
3252 tty->TS_bell = tgetstr ("bl", address);
3253 BackTab (tty) = tgetstr ("bt", address);
3254 tty->TS_clr_to_bottom = tgetstr ("cd", address);
3255 tty->TS_clr_line = tgetstr ("ce", address);
3256 tty->TS_clr_frame = tgetstr ("cl", address);
3257 ColPosition (tty) = NULL; /* tgetstr ("ch", address); */
3258 AbsPosition (tty) = tgetstr ("cm", address);
3259 CR (tty) = tgetstr ("cr", address);
3260 tty->TS_set_scroll_region = tgetstr ("cs", address);
3261 tty->TS_set_scroll_region_1 = tgetstr ("cS", address);
3262 RowPosition (tty) = tgetstr ("cv", address);
3263 tty->TS_del_char = tgetstr ("dc", address);
3264 tty->TS_del_multi_chars = tgetstr ("DC", address);
3265 tty->TS_del_line = tgetstr ("dl", address);
3266 tty->TS_del_multi_lines = tgetstr ("DL", address);
3267 tty->TS_delete_mode = tgetstr ("dm", address);
3268 tty->TS_end_delete_mode = tgetstr ("ed", address);
3269 tty->TS_end_insert_mode = tgetstr ("ei", address);
3270 Home (tty) = tgetstr ("ho", address);
3271 tty->TS_ins_char = tgetstr ("ic", address);
3272 tty->TS_ins_multi_chars = tgetstr ("IC", address);
3273 tty->TS_insert_mode = tgetstr ("im", address);
3274 tty->TS_pad_inserted_char = tgetstr ("ip", address);
3275 tty->TS_end_keypad_mode = tgetstr ("ke", address);
3276 tty->TS_keypad_mode = tgetstr ("ks", address);
3277 LastLine (tty) = tgetstr ("ll", address);
3278 Right (tty) = tgetstr ("nd", address);
3279 Down (tty) = tgetstr ("do", address);
3280 if (!Down (tty))
3281 Down (tty) = tgetstr ("nl", address); /* Obsolete name for "do" */
3282 if (tgetflag ("bs"))
3283 Left (tty) = "\b"; /* can't possibly be longer! */
3284 else /* (Actually, "bs" is obsolete...) */
3285 Left (tty) = tgetstr ("le", address);
3286 if (!Left (tty))
3287 Left (tty) = tgetstr ("bc", address); /* Obsolete name for "le" */
3288 tty->TS_pad_char = tgetstr ("pc", address);
3289 tty->TS_repeat = tgetstr ("rp", address);
3290 tty->TS_end_standout_mode = tgetstr ("se", address);
3291 tty->TS_fwd_scroll = tgetstr ("sf", address);
3292 tty->TS_standout_mode = tgetstr ("so", address);
3293 tty->TS_rev_scroll = tgetstr ("sr", address);
3294 tty->Wcm->cm_tab = tgetstr ("ta", address);
3295 tty->TS_end_termcap_modes = tgetstr ("te", address);
3296 tty->TS_termcap_modes = tgetstr ("ti", address);
3297 Up (tty) = tgetstr ("up", address);
3298 tty->TS_visible_bell = tgetstr ("vb", address);
3299 tty->TS_cursor_normal = tgetstr ("ve", address);
3300 tty->TS_cursor_visible = tgetstr ("vs", address);
3301 tty->TS_cursor_invisible = tgetstr ("vi", address);
3302 tty->TS_set_window = tgetstr ("wi", address);
3304 tty->TS_enter_underline_mode = tgetstr ("us", address);
3305 tty->TS_exit_underline_mode = tgetstr ("ue", address);
3306 tty->TS_enter_bold_mode = tgetstr ("md", address);
3307 tty->TS_enter_dim_mode = tgetstr ("mh", address);
3308 tty->TS_enter_blink_mode = tgetstr ("mb", address);
3309 tty->TS_enter_reverse_mode = tgetstr ("mr", address);
3310 tty->TS_enter_alt_charset_mode = tgetstr ("as", address);
3311 tty->TS_exit_alt_charset_mode = tgetstr ("ae", address);
3312 tty->TS_exit_attribute_mode = tgetstr ("me", address);
3314 MultiUp (tty) = tgetstr ("UP", address);
3315 MultiDown (tty) = tgetstr ("DO", address);
3316 MultiLeft (tty) = tgetstr ("LE", address);
3317 MultiRight (tty) = tgetstr ("RI", address);
3319 /* SVr4/ANSI color suppert. If "op" isn't available, don't support
3320 color because we can't switch back to the default foreground and
3321 background. */
3322 tty->TS_orig_pair = tgetstr ("op", address);
3323 if (tty->TS_orig_pair)
3325 tty->TS_set_foreground = tgetstr ("AF", address);
3326 tty->TS_set_background = tgetstr ("AB", address);
3327 if (!tty->TS_set_foreground)
3329 /* SVr4. */
3330 tty->TS_set_foreground = tgetstr ("Sf", address);
3331 tty->TS_set_background = tgetstr ("Sb", address);
3334 tty->TN_max_colors = tgetnum ("Co");
3335 tty->TN_max_pairs = tgetnum ("pa");
3337 tty->TN_no_color_video = tgetnum ("NC");
3338 if (tty->TN_no_color_video == -1)
3339 tty->TN_no_color_video = 0;
3342 tty_default_color_capabilities (tty, 1);
3344 MagicWrap (tty) = tgetflag ("xn");
3345 /* Since we make MagicWrap terminals look like AutoWrap, we need to have
3346 the former flag imply the latter. */
3347 AutoWrap (tty) = MagicWrap (tty) || tgetflag ("am");
3348 terminal->memory_below_frame = tgetflag ("db");
3349 tty->TF_hazeltine = tgetflag ("hz");
3350 terminal->must_write_spaces = tgetflag ("in");
3351 tty->meta_key = tgetflag ("km") || tgetflag ("MT");
3352 tty->TF_insmode_motion = tgetflag ("mi");
3353 tty->TF_standout_motion = tgetflag ("ms");
3354 tty->TF_underscore = tgetflag ("ul");
3355 tty->TF_teleray = tgetflag ("xt");
3357 #else /* DOS_NT */
3358 #ifdef WINDOWSNT
3360 struct frame *f = XFRAME (selected_frame);
3362 initialize_w32_display (terminal);
3364 FrameRows (tty) = FRAME_LINES (f);
3365 FrameCols (tty) = FRAME_COLS (f);
3366 tty->specified_window = FRAME_LINES (f);
3368 FRAME_CAN_HAVE_SCROLL_BARS (f) = 0;
3369 FRAME_VERTICAL_SCROLL_BAR_TYPE (f) = vertical_scroll_bar_none;
3370 terminal->char_ins_del_ok = 1;
3371 baud_rate = 19200;
3373 #else /* MSDOS */
3375 int height, width;
3376 if (strcmp (terminal_type, "internal") == 0)
3377 terminal->type = output_msdos_raw;
3378 initialize_msdos_display (terminal);
3380 get_tty_size (fileno (tty->input), &width, &height);
3381 FrameCols (tty) = width;
3382 FrameRows (tty) = height;
3383 terminal->char_ins_del_ok = 0;
3384 init_baud_rate (fileno (tty->input));
3386 #endif /* MSDOS */
3387 tty->output = stdout;
3388 tty->input = stdin;
3389 /* The following two are inaccessible from w32console.c. */
3390 terminal->delete_frame_hook = &tty_free_frame_resources;
3391 terminal->delete_terminal_hook = &delete_tty;
3393 tty->name = xstrdup (name);
3394 terminal->name = xstrdup (name);
3395 tty->type = xstrdup (terminal_type);
3397 add_keyboard_wait_descriptor (0);
3399 tty->delete_in_insert_mode = 1;
3401 UseTabs (tty) = 0;
3402 terminal->scroll_region_ok = 0;
3404 /* Seems to insert lines when it's not supposed to, messing up the
3405 display. In doing a trace, it didn't seem to be called much, so I
3406 don't think we're losing anything by turning it off. */
3407 terminal->line_ins_del_ok = 0;
3409 tty->TN_max_colors = 16; /* Required to be non-zero for tty-display-color-p */
3410 #endif /* DOS_NT */
3412 terminal->kboard = (KBOARD *) xmalloc (sizeof (KBOARD));
3413 init_kboard (terminal->kboard);
3414 KVAR (terminal->kboard, Vwindow_system) = Qnil;
3415 terminal->kboard->next_kboard = all_kboards;
3416 all_kboards = terminal->kboard;
3417 terminal->kboard->reference_count++;
3418 /* Don't let the initial kboard remain current longer than necessary.
3419 That would cause problems if a file loaded on startup tries to
3420 prompt in the mini-buffer. */
3421 if (current_kboard == initial_kboard)
3422 current_kboard = terminal->kboard;
3423 #ifndef DOS_NT
3424 term_get_fkeys (address, terminal->kboard);
3426 /* Get frame size from system, or else from termcap. */
3428 int height, width;
3429 get_tty_size (fileno (tty->input), &width, &height);
3430 FrameCols (tty) = width;
3431 FrameRows (tty) = height;
3434 if (FrameCols (tty) <= 0)
3435 FrameCols (tty) = tgetnum ("co");
3436 if (FrameRows (tty) <= 0)
3437 FrameRows (tty) = tgetnum ("li");
3439 if (FrameRows (tty) < 3 || FrameCols (tty) < 3)
3440 maybe_fatal (must_succeed, terminal,
3441 "Screen size %dx%d is too small",
3442 "Screen size %dx%d is too small",
3443 FrameCols (tty), FrameRows (tty));
3445 TabWidth (tty) = tgetnum ("tw");
3447 if (!tty->TS_bell)
3448 tty->TS_bell = "\07";
3450 if (!tty->TS_fwd_scroll)
3451 tty->TS_fwd_scroll = Down (tty);
3453 PC = tty->TS_pad_char ? *tty->TS_pad_char : 0;
3455 if (TabWidth (tty) < 0)
3456 TabWidth (tty) = 8;
3458 /* Turned off since /etc/termcap seems to have :ta= for most terminals
3459 and newer termcap doc does not seem to say there is a default.
3460 if (!tty->Wcm->cm_tab)
3461 tty->Wcm->cm_tab = "\t";
3464 /* We don't support standout modes that use `magic cookies', so
3465 turn off any that do. */
3466 if (tty->TS_standout_mode && tgetnum ("sg") >= 0)
3468 tty->TS_standout_mode = 0;
3469 tty->TS_end_standout_mode = 0;
3471 if (tty->TS_enter_underline_mode && tgetnum ("ug") >= 0)
3473 tty->TS_enter_underline_mode = 0;
3474 tty->TS_exit_underline_mode = 0;
3477 /* If there's no standout mode, try to use underlining instead. */
3478 if (tty->TS_standout_mode == 0)
3480 tty->TS_standout_mode = tty->TS_enter_underline_mode;
3481 tty->TS_end_standout_mode = tty->TS_exit_underline_mode;
3484 /* If no `se' string, try using a `me' string instead.
3485 If that fails, we can't use standout mode at all. */
3486 if (tty->TS_end_standout_mode == 0)
3488 char *s = tgetstr ("me", address);
3489 if (s != 0)
3490 tty->TS_end_standout_mode = s;
3491 else
3492 tty->TS_standout_mode = 0;
3495 if (tty->TF_teleray)
3497 tty->Wcm->cm_tab = 0;
3498 /* We can't support standout mode, because it uses magic cookies. */
3499 tty->TS_standout_mode = 0;
3500 /* But that means we cannot rely on ^M to go to column zero! */
3501 CR (tty) = 0;
3502 /* LF can't be trusted either -- can alter hpos */
3503 /* if move at column 0 thru a line with TS_standout_mode */
3504 Down (tty) = 0;
3507 tty->specified_window = FrameRows (tty);
3509 if (Wcm_init (tty) == -1) /* can't do cursor motion */
3511 maybe_fatal (must_succeed, terminal,
3512 "Terminal type \"%s\" is not powerful enough to run Emacs",
3513 "Terminal type \"%s\" is not powerful enough to run Emacs.\n\
3514 It lacks the ability to position the cursor.\n\
3515 If that is not the actual type of terminal you have,\n\
3516 use the Bourne shell command `TERM=... export TERM' (C-shell:\n\
3517 `setenv TERM ...') to specify the correct type. It may be necessary\n"
3518 # ifdef TERMINFO
3519 "to do `unset TERMINFO' (C-shell: `unsetenv TERMINFO') as well.",
3520 # else /* TERMCAP */
3521 "to do `unset TERMCAP' (C-shell: `unsetenv TERMCAP') as well.",
3522 # endif /* TERMINFO */
3523 terminal_type);
3526 if (FrameRows (tty) <= 0 || FrameCols (tty) <= 0)
3527 maybe_fatal (must_succeed, terminal,
3528 "Could not determine the frame size",
3529 "Could not determine the frame size");
3531 tty->delete_in_insert_mode
3532 = tty->TS_delete_mode && tty->TS_insert_mode
3533 && !strcmp (tty->TS_delete_mode, tty->TS_insert_mode);
3535 tty->se_is_so = (tty->TS_standout_mode
3536 && tty->TS_end_standout_mode
3537 && !strcmp (tty->TS_standout_mode, tty->TS_end_standout_mode));
3539 UseTabs (tty) = tabs_safe_p (fileno (tty->input)) && TabWidth (tty) == 8;
3541 terminal->scroll_region_ok
3542 = (tty->Wcm->cm_abs
3543 && (tty->TS_set_window || tty->TS_set_scroll_region || tty->TS_set_scroll_region_1));
3545 terminal->line_ins_del_ok
3546 = (((tty->TS_ins_line || tty->TS_ins_multi_lines)
3547 && (tty->TS_del_line || tty->TS_del_multi_lines))
3548 || (terminal->scroll_region_ok
3549 && tty->TS_fwd_scroll && tty->TS_rev_scroll));
3551 terminal->char_ins_del_ok
3552 = ((tty->TS_ins_char || tty->TS_insert_mode
3553 || tty->TS_pad_inserted_char || tty->TS_ins_multi_chars)
3554 && (tty->TS_del_char || tty->TS_del_multi_chars));
3556 terminal->fast_clear_end_of_line = tty->TS_clr_line != 0;
3558 init_baud_rate (fileno (tty->input));
3560 #endif /* not DOS_NT */
3562 /* Init system terminal modes (RAW or CBREAK, etc.). */
3563 init_sys_modes (tty);
3565 return terminal;
3569 static void
3570 vfatal (const char *str, va_list ap)
3572 fprintf (stderr, "emacs: ");
3573 vfprintf (stderr, str, ap);
3574 if (!(strlen (str) > 0 && str[strlen (str) - 1] == '\n'))
3575 fprintf (stderr, "\n");
3576 fflush (stderr);
3577 exit (1);
3581 /* Auxiliary error-handling function for init_tty.
3582 Delete TERMINAL, then call error or fatal with str1 or str2,
3583 respectively, according to whether MUST_SUCCEED is zero or not. */
3585 static void
3586 maybe_fatal (int must_succeed, struct terminal *terminal,
3587 const char *str1, const char *str2, ...)
3589 va_list ap;
3590 va_start (ap, str2);
3591 if (terminal)
3592 delete_tty (terminal);
3594 if (must_succeed)
3595 vfatal (str2, ap);
3596 else
3597 verror (str1, ap);
3599 va_end (ap);
3600 abort ();
3603 void
3604 fatal (const char *str, ...)
3606 va_list ap;
3607 va_start (ap, str);
3608 vfatal (str, ap);
3609 va_end (ap);
3614 /* Delete the given tty terminal, closing all frames on it. */
3616 static void
3617 delete_tty (struct terminal *terminal)
3619 struct tty_display_info *tty;
3621 /* Protect against recursive calls. delete_frame in
3622 delete_terminal calls us back when it deletes our last frame. */
3623 if (!terminal->name)
3624 return;
3626 if (terminal->type != output_termcap)
3627 abort ();
3629 tty = terminal->display_info.tty;
3631 if (tty == tty_list)
3632 tty_list = tty->next;
3633 else
3635 struct tty_display_info *p;
3636 for (p = tty_list; p && p->next != tty; p = p->next)
3639 if (! p)
3640 /* This should not happen. */
3641 abort ();
3643 p->next = tty->next;
3644 tty->next = 0;
3647 /* reset_sys_modes needs a valid device, so this call needs to be
3648 before delete_terminal. */
3649 reset_sys_modes (tty);
3651 delete_terminal (terminal);
3653 xfree (tty->name);
3654 xfree (tty->type);
3656 if (tty->input)
3658 delete_keyboard_wait_descriptor (fileno (tty->input));
3659 if (tty->input != stdin)
3660 fclose (tty->input);
3662 if (tty->output && tty->output != stdout && tty->output != tty->input)
3663 fclose (tty->output);
3664 if (tty->termscript)
3665 fclose (tty->termscript);
3667 xfree (tty->old_tty);
3668 xfree (tty->Wcm);
3669 xfree (tty->termcap_strings_buffer);
3670 xfree (tty->termcap_term_buffer);
3672 memset (tty, 0, sizeof (struct tty_display_info));
3673 xfree (tty);
3678 /* Mark the pointers in the tty_display_info objects.
3679 Called by the Fgarbage_collector. */
3681 void
3682 mark_ttys (void)
3684 struct tty_display_info *tty;
3686 for (tty = tty_list; tty; tty = tty->next)
3687 mark_object (tty->top_frame);
3692 void
3693 syms_of_term (void)
3695 DEFVAR_BOOL ("system-uses-terminfo", system_uses_terminfo,
3696 doc: /* Non-nil means the system uses terminfo rather than termcap.
3697 This variable can be used by terminal emulator packages. */);
3698 #ifdef TERMINFO
3699 system_uses_terminfo = 1;
3700 #else
3701 system_uses_terminfo = 0;
3702 #endif
3704 DEFVAR_LISP ("suspend-tty-functions", Vsuspend_tty_functions,
3705 doc: /* Functions to be run after suspending a tty.
3706 The functions are run with one argument, the terminal object to be suspended.
3707 See `suspend-tty'. */);
3708 Vsuspend_tty_functions = Qnil;
3711 DEFVAR_LISP ("resume-tty-functions", Vresume_tty_functions,
3712 doc: /* Functions to be run after resuming a tty.
3713 The functions are run with one argument, the terminal object that was revived.
3714 See `resume-tty'. */);
3715 Vresume_tty_functions = Qnil;
3717 DEFVAR_BOOL ("visible-cursor", visible_cursor,
3718 doc: /* Non-nil means to make the cursor very visible.
3719 This only has an effect when running in a text terminal.
3720 What means \"very visible\" is up to your terminal. It may make the cursor
3721 bigger, or it may make it blink, or it may do nothing at all. */);
3722 visible_cursor = 1;
3724 defsubr (&Stty_display_color_p);
3725 defsubr (&Stty_display_color_cells);
3726 defsubr (&Stty_no_underline);
3727 defsubr (&Stty_type);
3728 defsubr (&Scontrolling_tty_p);
3729 defsubr (&Ssuspend_tty);
3730 defsubr (&Sresume_tty);
3731 #ifdef HAVE_GPM
3732 defsubr (&Sgpm_mouse_start);
3733 defsubr (&Sgpm_mouse_stop);
3734 #endif /* HAVE_GPM */
3736 #ifndef DOS_NT
3737 default_orig_pair = NULL;
3738 default_set_foreground = NULL;
3739 default_set_background = NULL;
3740 #endif /* !DOS_NT */
3742 encode_terminal_src = NULL;
3743 encode_terminal_dst = NULL;