2 * Copyright (c) 1992, 1993
3 * The Regents of the University of California. All rights reserved.
5 * This code is derived from software contributed to Berkeley by
6 * Christos Zoulas of Cornell University.
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
16 * 3. Neither the name of the University nor the names of its contributors
17 * may be used to endorse or promote products derived from this software
18 * without specific prior written permission.
20 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 * @(#)term.c 8.2 (Berkeley) 4/30/95
33 * $NetBSD: term.c,v 1.46 2006/11/24 00:01:17 christos Exp $
34 * $DragonFly: src/lib/libedit/term.c,v 1.5 2007/05/05 00:27:39 pavalos Exp $
40 * term.c: Editor/termcap-curses interface
41 * We have to declare a static variable here, since the
42 * termcap putchar routine does not take an argument!
58 /* Solaris's term.h does horrid things. */
59 #if (defined(HAVE_TERM_H) && !defined(SUNOS))
62 #include <sys/types.h>
63 #include <sys/ioctl.h>
68 * IMPORTANT NOTE: these routines are allowed to look at the current screen
69 * and the current possition assuming that it is correct. If this is not
70 * true, then the update will be WRONG! This is (should be) a valid
74 #define TC_BUFSIZE 2048
76 #define GoodStr(a) (el->el_term.t_str[a] != NULL && \
77 el->el_term.t_str[a][0] != '\0')
78 #define Str(a) el->el_term.t_str[a]
79 #define Val(a) el->el_term.t_val[a]
82 private const struct {
153 private const struct termcapstr
{
155 const char *long_name
;
158 { "al", "add new blank line" },
160 { "bl", "audible bell" },
162 { "cd", "clear to bottom" },
164 { "ce", "clear to end of line" },
166 { "ch", "cursor to horiz pos" },
168 { "cl", "clear screen" },
170 { "dc", "delete a character" },
172 { "dl", "delete a line" },
174 { "dm", "start delete mode" },
176 { "ed", "end delete mode" },
178 { "ei", "end insert mode" },
180 { "fs", "cursor from status line" },
182 { "ho", "home cursor" },
184 { "ic", "insert character" },
186 { "im", "start insert mode" },
188 { "ip", "insert padding" },
190 { "kd", "sends cursor down" },
192 { "kl", "sends cursor left" },
194 { "kr", "sends cursor right" },
196 { "ku", "sends cursor up" },
198 { "md", "begin bold" },
200 { "me", "end attributes" },
202 { "nd", "non destructive space" },
204 { "se", "end standout" },
206 { "so", "begin standout" },
208 { "ts", "cursor to status line" },
210 { "up", "cursor up one" },
212 { "us", "begin underline" },
214 { "ue", "end underline" },
216 { "vb", "visible bell" },
218 { "DC", "delete multiple chars" },
220 { "DO", "cursor down multiple" },
222 { "IC", "insert multiple chars" },
224 { "LE", "cursor left multiple" },
226 { "RI", "cursor right multiple" },
228 { "UP", "cursor up multiple" },
230 { "kh", "send cursor home" },
232 { "@7", "send cursor end" },
237 private const struct termcapval
{
239 const char *long_name
;
242 { "am", "has automatic margins" },
244 { "pt", "has physical tabs" },
246 { "li", "Number of lines" },
248 { "co", "Number of columns" },
250 { "km", "Has meta key" },
252 { "xt", "Tab chars destructive" },
254 { "xn", "newline ignored at right margin" },
256 { "MT", "Has meta key" }, /* XXX? */
260 /* do two or more of the attributes use me */
262 private void term_setflags(EditLine
*);
263 private int term_rebuffer_display(EditLine
*);
264 private void term_free_display(EditLine
*);
265 private int term_alloc_display(EditLine
*);
266 private void term_alloc(EditLine
*, const struct termcapstr
*, const char *);
267 private void term_init_arrow(EditLine
*);
268 private void term_reset_arrow(EditLine
*);
271 private FILE *term_outfile
= NULL
; /* XXX: How do we fix that? */
275 * Set the terminal capability flags
278 term_setflags(EditLine
*el
)
281 if (el
->el_tty
.t_tabs
)
282 EL_FLAGS
|= (Val(T_pt
) && !Val(T_xt
)) ? TERM_CAN_TAB
: 0;
284 EL_FLAGS
|= (Val(T_km
) || Val(T_MT
)) ? TERM_HAS_META
: 0;
285 EL_FLAGS
|= GoodStr(T_ce
) ? TERM_CAN_CEOL
: 0;
286 EL_FLAGS
|= (GoodStr(T_dc
) || GoodStr(T_DC
)) ? TERM_CAN_DELETE
: 0;
287 EL_FLAGS
|= (GoodStr(T_im
) || GoodStr(T_ic
) || GoodStr(T_IC
)) ?
289 EL_FLAGS
|= (GoodStr(T_up
) || GoodStr(T_UP
)) ? TERM_CAN_UP
: 0;
290 EL_FLAGS
|= Val(T_am
) ? TERM_HAS_AUTO_MARGINS
: 0;
291 EL_FLAGS
|= Val(T_xn
) ? TERM_HAS_MAGIC_MARGINS
: 0;
293 if (GoodStr(T_me
) && GoodStr(T_ue
))
294 EL_FLAGS
|= (strcmp(Str(T_me
), Str(T_ue
)) == 0) ?
297 EL_FLAGS
&= ~TERM_CAN_ME
;
298 if (GoodStr(T_me
) && GoodStr(T_se
))
299 EL_FLAGS
|= (strcmp(Str(T_me
), Str(T_se
)) == 0) ?
305 (void) fprintf(el
->el_errfile
,
306 "WARNING: Your terminal cannot move up.\n");
307 (void) fprintf(el
->el_errfile
,
308 "Editing may be odd for long lines.\n");
311 (void) fprintf(el
->el_errfile
, "no clear EOL capability.\n");
313 (void) fprintf(el
->el_errfile
, "no delete char capability.\n");
315 (void) fprintf(el
->el_errfile
, "no insert char capability.\n");
316 #endif /* DEBUG_SCREEN */
321 * Initialize the terminal stuff
324 term_init(EditLine
*el
)
327 el
->el_term
.t_buf
= (char *) el_malloc(TC_BUFSIZE
);
328 if (el
->el_term
.t_buf
== NULL
)
330 el
->el_term
.t_cap
= (char *) el_malloc(TC_BUFSIZE
);
331 if (el
->el_term
.t_cap
== NULL
)
333 el
->el_term
.t_fkey
= (fkey_t
*) el_malloc(A_K_NKEYS
* sizeof(fkey_t
));
334 if (el
->el_term
.t_fkey
== NULL
)
336 el
->el_term
.t_loc
= 0;
337 el
->el_term
.t_str
= (char **) el_malloc(T_str
* sizeof(char *));
338 if (el
->el_term
.t_str
== NULL
)
340 (void) memset(el
->el_term
.t_str
, 0, T_str
* sizeof(char *));
341 el
->el_term
.t_val
= (int *) el_malloc(T_val
* sizeof(int));
342 if (el
->el_term
.t_val
== NULL
)
344 (void) memset(el
->el_term
.t_val
, 0, T_val
* sizeof(int));
345 term_outfile
= el
->el_outfile
;
346 (void) term_set(el
, NULL
);
352 * Clean up the terminal stuff
355 term_end(EditLine
*el
)
358 el_free((ptr_t
) el
->el_term
.t_buf
);
359 el
->el_term
.t_buf
= NULL
;
360 el_free((ptr_t
) el
->el_term
.t_cap
);
361 el
->el_term
.t_cap
= NULL
;
362 el
->el_term
.t_loc
= 0;
363 el_free((ptr_t
) el
->el_term
.t_str
);
364 el
->el_term
.t_str
= NULL
;
365 el_free((ptr_t
) el
->el_term
.t_val
);
366 el
->el_term
.t_val
= NULL
;
367 el_free((ptr_t
) el
->el_term
.t_fkey
);
368 el
->el_term
.t_fkey
= NULL
;
369 term_free_display(el
);
374 * Maintain a string pool for termcap strings
377 term_alloc(EditLine
*el
, const struct termcapstr
*t
, const char *cap
)
379 char termbuf
[TC_BUFSIZE
];
381 char **tlist
= el
->el_term
.t_str
;
382 char **tmp
, **str
= &tlist
[t
- tstr
];
384 if (cap
== NULL
|| *cap
== '\0') {
390 tlen
= *str
== NULL
? 0 : strlen(*str
);
393 * New string is shorter; no need to allocate space
397 (void) strcpy(*str
, cap
); /* XXX strcpy is safe */
401 * New string is longer; see if we have enough space to append
403 if (el
->el_term
.t_loc
+ 3 < TC_BUFSIZE
) {
404 /* XXX strcpy is safe */
405 (void) strcpy(*str
= &el
->el_term
.t_buf
[el
->el_term
.t_loc
],
407 el
->el_term
.t_loc
+= clen
+ 1; /* one for \0 */
411 * Compact our buffer; no need to check compaction, cause we know it
415 for (tmp
= tlist
; tmp
< &tlist
[T_str
]; tmp
++)
416 if (*tmp
!= NULL
&& *tmp
!= '\0' && *tmp
!= *str
) {
419 for (ptr
= *tmp
; *ptr
!= '\0'; termbuf
[tlen
++] = *ptr
++)
421 termbuf
[tlen
++] = '\0';
423 memcpy(el
->el_term
.t_buf
, termbuf
, TC_BUFSIZE
);
424 el
->el_term
.t_loc
= tlen
;
425 if (el
->el_term
.t_loc
+ 3 >= TC_BUFSIZE
) {
426 (void) fprintf(el
->el_errfile
,
427 "Out of termcap string space.\n");
430 /* XXX strcpy is safe */
431 (void) strcpy(*str
= &el
->el_term
.t_buf
[el
->el_term
.t_loc
], cap
);
432 el
->el_term
.t_loc
+= clen
+ 1; /* one for \0 */
437 /* term_rebuffer_display():
438 * Rebuffer the display after the screen changed size
441 term_rebuffer_display(EditLine
*el
)
443 coord_t
*c
= &el
->el_term
.t_size
;
445 term_free_display(el
);
450 if (term_alloc_display(el
) == -1)
456 /* term_alloc_display():
457 * Allocate a new display.
460 term_alloc_display(EditLine
*el
)
464 coord_t
*c
= &el
->el_term
.t_size
;
466 b
= (char **) el_malloc((size_t) (sizeof(char *) * (c
->v
+ 1)));
469 for (i
= 0; i
< c
->v
; i
++) {
470 b
[i
] = (char *) el_malloc((size_t) (sizeof(char) * (c
->h
+ 1)));
473 el_free((ptr_t
) b
[i
]);
481 b
= (char **) el_malloc((size_t) (sizeof(char *) * (c
->v
+ 1)));
484 for (i
= 0; i
< c
->v
; i
++) {
485 b
[i
] = (char *) el_malloc((size_t) (sizeof(char) * (c
->h
+ 1)));
488 el_free((ptr_t
) b
[i
]);
499 /* term_free_display():
500 * Free the display buffers
503 term_free_display(EditLine
*el
)
509 el
->el_display
= NULL
;
511 for (bufp
= b
; *bufp
!= NULL
; bufp
++)
512 el_free((ptr_t
) * bufp
);
516 el
->el_vdisplay
= NULL
;
518 for (bufp
= b
; *bufp
!= NULL
; bufp
++)
519 el_free((ptr_t
) * bufp
);
525 /* term_move_to_line():
526 * move to line <where> (first line == 0)
527 * as efficiently as possible
530 term_move_to_line(EditLine
*el
, int where
)
534 if (where
== el
->el_cursor
.v
)
537 if (where
> el
->el_term
.t_size
.v
) {
539 (void) fprintf(el
->el_errfile
,
540 "term_move_to_line: where is ridiculous: %d\r\n", where
);
541 #endif /* DEBUG_SCREEN */
544 if ((del
= where
- el
->el_cursor
.v
) > 0) {
546 if (EL_HAS_AUTO_MARGINS
&&
547 el
->el_display
[el
->el_cursor
.v
][0] != '\0') {
548 /* move without newline */
549 term_move_to_char(el
, el
->el_term
.t_size
.h
- 1);
551 &el
->el_display
[el
->el_cursor
.v
][el
->el_cursor
.h
],
556 if ((del
> 1) && GoodStr(T_DO
)) {
557 (void) tputs(tgoto(Str(T_DO
), del
, del
),
561 for (; del
> 0; del
--)
563 /* because the \n will become \r\n */
568 } else { /* del < 0 */
569 if (GoodStr(T_UP
) && (-del
> 1 || !GoodStr(T_up
)))
570 (void) tputs(tgoto(Str(T_UP
), -del
, -del
), -del
,
574 for (; del
< 0; del
++)
575 (void) tputs(Str(T_up
), 1, term__putc
);
578 el
->el_cursor
.v
= where
;/* now where is here */
582 /* term_move_to_char():
583 * Move to the character position specified
586 term_move_to_char(EditLine
*el
, int where
)
591 if (where
== el
->el_cursor
.h
)
594 if (where
> el
->el_term
.t_size
.h
) {
596 (void) fprintf(el
->el_errfile
,
597 "term_move_to_char: where is riduculous: %d\r\n", where
);
598 #endif /* DEBUG_SCREEN */
601 if (!where
) { /* if where is first column */
602 term__putc('\r'); /* do a CR */
606 del
= where
- el
->el_cursor
.h
;
608 if ((del
< -4 || del
> 4) && GoodStr(T_ch
))
609 /* go there directly */
610 (void) tputs(tgoto(Str(T_ch
), where
, where
), where
, term__putc
);
612 if (del
> 0) { /* moving forward */
613 if ((del
> 4) && GoodStr(T_RI
))
614 (void) tputs(tgoto(Str(T_RI
), del
, del
),
617 /* if I can do tabs, use them */
619 if ((el
->el_cursor
.h
& 0370) !=
621 /* if not within tab stop */
623 (el
->el_cursor
.h
& 0370);
628 el
->el_cursor
.h
= where
& 0370;
632 * it's usually cheaper to just write the
636 * NOTE THAT term_overwrite() WILL CHANGE
640 &el
->el_display
[el
->el_cursor
.v
][el
->el_cursor
.h
],
641 where
- el
->el_cursor
.h
);
644 } else { /* del < 0 := moving backward */
645 if ((-del
> 4) && GoodStr(T_LE
))
646 (void) tputs(tgoto(Str(T_LE
), -del
, -del
),
648 else { /* can't go directly there */
650 * if the "cost" is greater than the "cost"
654 ((unsigned int)-del
>
655 (((unsigned int) where
>> 3) +
658 term__putc('\r'); /* do a CR */
660 goto mc_again
; /* and try again */
662 for (i
= 0; i
< -del
; i
++)
667 el
->el_cursor
.h
= where
; /* now where is here */
672 * Overstrike num characters
675 term_overwrite(EditLine
*el
, const char *cp
, int n
)
678 return; /* catch bugs */
680 if (n
> el
->el_term
.t_size
.h
) {
682 (void) fprintf(el
->el_errfile
,
683 "term_overwrite: n is riduculous: %d\r\n", n
);
684 #endif /* DEBUG_SCREEN */
692 if (el
->el_cursor
.h
>= el
->el_term
.t_size
.h
) { /* wrap? */
693 if (EL_HAS_AUTO_MARGINS
) { /* yes */
696 if (EL_HAS_MAGIC_MARGINS
) {
697 /* force the wrap to avoid the "magic"
700 if ((c
= el
->el_display
[el
->el_cursor
.v
][el
->el_cursor
.h
])
702 term_overwrite(el
, &c
, 1);
707 } else /* no wrap, but cursor stays on screen */
708 el
->el_cursor
.h
= el
->el_term
.t_size
.h
;
713 /* term_deletechars():
714 * Delete num characters
717 term_deletechars(EditLine
*el
, int num
)
722 if (!EL_CAN_DELETE
) {
724 (void) fprintf(el
->el_errfile
, " ERROR: cannot delete \n");
725 #endif /* DEBUG_EDIT */
728 if (num
> el
->el_term
.t_size
.h
) {
730 (void) fprintf(el
->el_errfile
,
731 "term_deletechars: num is riduculous: %d\r\n", num
);
732 #endif /* DEBUG_SCREEN */
735 if (GoodStr(T_DC
)) /* if I have multiple delete */
736 if ((num
> 1) || !GoodStr(T_dc
)) { /* if dc would be more
738 (void) tputs(tgoto(Str(T_DC
), num
, num
),
742 if (GoodStr(T_dm
)) /* if I have delete mode */
743 (void) tputs(Str(T_dm
), 1, term__putc
);
745 if (GoodStr(T_dc
)) /* else do one at a time */
747 (void) tputs(Str(T_dc
), 1, term__putc
);
749 if (GoodStr(T_ed
)) /* if I have delete mode */
750 (void) tputs(Str(T_ed
), 1, term__putc
);
754 /* term_insertwrite():
755 * Puts terminal in insert character mode or inserts num
756 * characters in the line
759 term_insertwrite(EditLine
*el
, char *cp
, int num
)
763 if (!EL_CAN_INSERT
) {
765 (void) fprintf(el
->el_errfile
, " ERROR: cannot insert \n");
766 #endif /* DEBUG_EDIT */
769 if (num
> el
->el_term
.t_size
.h
) {
771 (void) fprintf(el
->el_errfile
,
772 "StartInsert: num is riduculous: %d\r\n", num
);
773 #endif /* DEBUG_SCREEN */
776 if (GoodStr(T_IC
)) /* if I have multiple insert */
777 if ((num
> 1) || !GoodStr(T_ic
)) {
778 /* if ic would be more expensive */
779 (void) tputs(tgoto(Str(T_IC
), num
, num
),
781 term_overwrite(el
, cp
, num
);
782 /* this updates el_cursor.h */
785 if (GoodStr(T_im
) && GoodStr(T_ei
)) { /* if I have insert mode */
786 (void) tputs(Str(T_im
), 1, term__putc
);
788 el
->el_cursor
.h
+= num
;
793 if (GoodStr(T_ip
)) /* have to make num chars insert */
794 (void) tputs(Str(T_ip
), 1, term__putc
);
796 (void) tputs(Str(T_ei
), 1, term__putc
);
800 if (GoodStr(T_ic
)) /* have to make num chars insert */
801 (void) tputs(Str(T_ic
), 1, term__putc
);
808 if (GoodStr(T_ip
)) /* have to make num chars insert */
809 (void) tputs(Str(T_ip
), 1, term__putc
);
810 /* pad the inserted char */
817 * clear to end of line. There are num characters to clear
820 term_clear_EOL(EditLine
*el
, int num
)
824 if (EL_CAN_CEOL
&& GoodStr(T_ce
))
825 (void) tputs(Str(T_ce
), 1, term__putc
);
827 for (i
= 0; i
< num
; i
++)
829 el
->el_cursor
.h
+= num
; /* have written num spaces */
834 /* term_clear_screen():
838 term_clear_screen(EditLine
*el
)
839 { /* clear the whole screen and home */
842 /* send the clear screen code */
843 (void) tputs(Str(T_cl
), Val(T_li
), term__putc
);
844 else if (GoodStr(T_ho
) && GoodStr(T_cd
)) {
845 (void) tputs(Str(T_ho
), Val(T_li
), term__putc
); /* home */
846 /* clear to bottom of screen */
847 (void) tputs(Str(T_cd
), Val(T_li
), term__putc
);
856 * Beep the way the terminal wants us
859 term_beep(EditLine
*el
)
862 /* what termcap says we should use */
863 (void) tputs(Str(T_bl
), 1, term__putc
);
865 term__putc('\007'); /* an ASCII bell; ^G */
870 /* term_clear_to_bottom():
871 * Clear to the bottom of the screen
874 term_clear_to_bottom(EditLine
*el
)
877 (void) tputs(Str(T_cd
), Val(T_li
), term__putc
);
878 else if (GoodStr(T_ce
))
879 (void) tputs(Str(T_ce
), Val(T_li
), term__putc
);
884 term_get(EditLine
*el
, const char **term
)
886 *term
= el
->el_term
.t_name
;
891 * Read in the terminal capabilities from the requested terminal
894 term_set(EditLine
*el
, const char *term
)
897 char buf
[TC_BUFSIZE
];
899 const struct termcapstr
*t
;
903 (void) sigemptyset(&nset
);
904 (void) sigaddset(&nset
, SIGWINCH
);
905 (void) sigprocmask(SIG_BLOCK
, &nset
, &oset
);
911 term
= getenv("TERM");
913 if (!term
|| !term
[0])
916 if (strcmp(term
, "emacs") == 0)
917 el
->el_flags
|= EDIT_DISABLED
;
919 memset(el
->el_term
.t_cap
, 0, TC_BUFSIZE
);
921 i
= tgetent(el
->el_term
.t_cap
, term
);
925 (void) fprintf(el
->el_errfile
,
926 "Cannot read termcap database;\n");
928 (void) fprintf(el
->el_errfile
,
929 "No entry for terminal type \"%s\";\n", term
);
930 (void) fprintf(el
->el_errfile
,
931 "using dumb terminal settings.\n");
932 Val(T_co
) = 80; /* do a dumb terminal */
933 Val(T_pt
) = Val(T_km
) = Val(T_li
) = 0;
934 Val(T_xt
) = Val(T_MT
);
935 for (t
= tstr
; t
->name
!= NULL
; t
++)
936 term_alloc(el
, t
, NULL
);
938 /* auto/magic margins */
939 Val(T_am
) = tgetflag("am");
940 Val(T_xn
) = tgetflag("xn");
942 Val(T_pt
) = tgetflag("pt");
943 Val(T_xt
) = tgetflag("xt");
944 /* do we have a meta? */
945 Val(T_km
) = tgetflag("km");
946 Val(T_MT
) = tgetflag("MT");
948 Val(T_co
) = tgetnum("co");
949 Val(T_li
) = tgetnum("li");
950 for (t
= tstr
; t
->name
!= NULL
; t
++) {
951 /* XXX: some systems' tgetstr needs non const */
952 term_alloc(el
, t
, tgetstr(strchr(t
->name
, *t
->name
),
958 Val(T_co
) = 80; /* just in case */
962 el
->el_term
.t_size
.v
= Val(T_co
);
963 el
->el_term
.t_size
.h
= Val(T_li
);
967 /* get the correct window size */
968 (void) term_get_size(el
, &lins
, &cols
);
969 if (term_change_size(el
, lins
, cols
) == -1)
971 (void) sigprocmask(SIG_SETMASK
, &oset
, NULL
);
973 el
->el_term
.t_name
= term
;
974 return (i
<= 0 ? -1 : 0);
979 * Return the new window size in lines and cols, and
980 * true if the size was changed.
983 term_get_size(EditLine
*el
, int *lins
, int *cols
)
992 if (ioctl(el
->el_infd
, TIOCGWINSZ
, (ioctl_t
) & ws
) != -1) {
1003 if (ioctl(el
->el_infd
, TIOCGSIZE
, (ioctl_t
) & ts
) != -1) {
1007 *lins
= ts
.ts_lines
;
1011 return (Val(T_co
) != *cols
|| Val(T_li
) != *lins
);
1015 /* term_change_size():
1016 * Change the size of the terminal
1019 term_change_size(EditLine
*el
, int lins
, int cols
)
1024 Val(T_co
) = (cols
< 2) ? 80 : cols
;
1025 Val(T_li
) = (lins
< 1) ? 24 : lins
;
1027 /* re-make display buffers */
1028 if (term_rebuffer_display(el
) == -1)
1030 re_clear_display(el
);
1035 /* term_init_arrow():
1036 * Initialize the arrow key bindings from termcap
1039 term_init_arrow(EditLine
*el
)
1041 fkey_t
*arrow
= el
->el_term
.t_fkey
;
1043 arrow
[A_K_DN
].name
= "down";
1044 arrow
[A_K_DN
].key
= T_kd
;
1045 arrow
[A_K_DN
].fun
.cmd
= ED_NEXT_HISTORY
;
1046 arrow
[A_K_DN
].type
= XK_CMD
;
1048 arrow
[A_K_UP
].name
= "up";
1049 arrow
[A_K_UP
].key
= T_ku
;
1050 arrow
[A_K_UP
].fun
.cmd
= ED_PREV_HISTORY
;
1051 arrow
[A_K_UP
].type
= XK_CMD
;
1053 arrow
[A_K_LT
].name
= "left";
1054 arrow
[A_K_LT
].key
= T_kl
;
1055 arrow
[A_K_LT
].fun
.cmd
= ED_PREV_CHAR
;
1056 arrow
[A_K_LT
].type
= XK_CMD
;
1058 arrow
[A_K_RT
].name
= "right";
1059 arrow
[A_K_RT
].key
= T_kr
;
1060 arrow
[A_K_RT
].fun
.cmd
= ED_NEXT_CHAR
;
1061 arrow
[A_K_RT
].type
= XK_CMD
;
1063 arrow
[A_K_HO
].name
= "home";
1064 arrow
[A_K_HO
].key
= T_kh
;
1065 arrow
[A_K_HO
].fun
.cmd
= ED_MOVE_TO_BEG
;
1066 arrow
[A_K_HO
].type
= XK_CMD
;
1068 arrow
[A_K_EN
].name
= "end";
1069 arrow
[A_K_EN
].key
= T_at7
;
1070 arrow
[A_K_EN
].fun
.cmd
= ED_MOVE_TO_END
;
1071 arrow
[A_K_EN
].type
= XK_CMD
;
1075 /* term_reset_arrow():
1076 * Reset arrow key bindings
1079 term_reset_arrow(EditLine
*el
)
1081 fkey_t
*arrow
= el
->el_term
.t_fkey
;
1082 static const char strA
[] = {033, '[', 'A', '\0'};
1083 static const char strB
[] = {033, '[', 'B', '\0'};
1084 static const char strC
[] = {033, '[', 'C', '\0'};
1085 static const char strD
[] = {033, '[', 'D', '\0'};
1086 static const char strH
[] = {033, '[', 'H', '\0'};
1087 static const char strF
[] = {033, '[', 'F', '\0'};
1088 static const char stOA
[] = {033, 'O', 'A', '\0'};
1089 static const char stOB
[] = {033, 'O', 'B', '\0'};
1090 static const char stOC
[] = {033, 'O', 'C', '\0'};
1091 static const char stOD
[] = {033, 'O', 'D', '\0'};
1092 static const char stOH
[] = {033, 'O', 'H', '\0'};
1093 static const char stOF
[] = {033, 'O', 'F', '\0'};
1095 key_add(el
, strA
, &arrow
[A_K_UP
].fun
, arrow
[A_K_UP
].type
);
1096 key_add(el
, strB
, &arrow
[A_K_DN
].fun
, arrow
[A_K_DN
].type
);
1097 key_add(el
, strC
, &arrow
[A_K_RT
].fun
, arrow
[A_K_RT
].type
);
1098 key_add(el
, strD
, &arrow
[A_K_LT
].fun
, arrow
[A_K_LT
].type
);
1099 key_add(el
, strH
, &arrow
[A_K_HO
].fun
, arrow
[A_K_HO
].type
);
1100 key_add(el
, strF
, &arrow
[A_K_EN
].fun
, arrow
[A_K_EN
].type
);
1101 key_add(el
, stOA
, &arrow
[A_K_UP
].fun
, arrow
[A_K_UP
].type
);
1102 key_add(el
, stOB
, &arrow
[A_K_DN
].fun
, arrow
[A_K_DN
].type
);
1103 key_add(el
, stOC
, &arrow
[A_K_RT
].fun
, arrow
[A_K_RT
].type
);
1104 key_add(el
, stOD
, &arrow
[A_K_LT
].fun
, arrow
[A_K_LT
].type
);
1105 key_add(el
, stOH
, &arrow
[A_K_HO
].fun
, arrow
[A_K_HO
].type
);
1106 key_add(el
, stOF
, &arrow
[A_K_EN
].fun
, arrow
[A_K_EN
].type
);
1108 if (el
->el_map
.type
== MAP_VI
) {
1109 key_add(el
, &strA
[1], &arrow
[A_K_UP
].fun
, arrow
[A_K_UP
].type
);
1110 key_add(el
, &strB
[1], &arrow
[A_K_DN
].fun
, arrow
[A_K_DN
].type
);
1111 key_add(el
, &strC
[1], &arrow
[A_K_RT
].fun
, arrow
[A_K_RT
].type
);
1112 key_add(el
, &strD
[1], &arrow
[A_K_LT
].fun
, arrow
[A_K_LT
].type
);
1113 key_add(el
, &strH
[1], &arrow
[A_K_HO
].fun
, arrow
[A_K_HO
].type
);
1114 key_add(el
, &strF
[1], &arrow
[A_K_EN
].fun
, arrow
[A_K_EN
].type
);
1115 key_add(el
, &stOA
[1], &arrow
[A_K_UP
].fun
, arrow
[A_K_UP
].type
);
1116 key_add(el
, &stOB
[1], &arrow
[A_K_DN
].fun
, arrow
[A_K_DN
].type
);
1117 key_add(el
, &stOC
[1], &arrow
[A_K_RT
].fun
, arrow
[A_K_RT
].type
);
1118 key_add(el
, &stOD
[1], &arrow
[A_K_LT
].fun
, arrow
[A_K_LT
].type
);
1119 key_add(el
, &stOH
[1], &arrow
[A_K_HO
].fun
, arrow
[A_K_HO
].type
);
1120 key_add(el
, &stOF
[1], &arrow
[A_K_EN
].fun
, arrow
[A_K_EN
].type
);
1125 /* term_set_arrow():
1126 * Set an arrow key binding
1129 term_set_arrow(EditLine
*el
, const char *name
, key_value_t
*fun
, int type
)
1131 fkey_t
*arrow
= el
->el_term
.t_fkey
;
1134 for (i
= 0; i
< A_K_NKEYS
; i
++)
1135 if (strcmp(name
, arrow
[i
].name
) == 0) {
1136 arrow
[i
].fun
= *fun
;
1137 arrow
[i
].type
= type
;
1144 /* term_clear_arrow():
1145 * Clear an arrow key binding
1148 term_clear_arrow(EditLine
*el
, const char *name
)
1150 fkey_t
*arrow
= el
->el_term
.t_fkey
;
1153 for (i
= 0; i
< A_K_NKEYS
; i
++)
1154 if (strcmp(name
, arrow
[i
].name
) == 0) {
1155 arrow
[i
].type
= XK_NOD
;
1162 /* term_print_arrow():
1163 * Print the arrow key bindings
1166 term_print_arrow(EditLine
*el
, const char *name
)
1169 fkey_t
*arrow
= el
->el_term
.t_fkey
;
1171 for (i
= 0; i
< A_K_NKEYS
; i
++)
1172 if (*name
== '\0' || strcmp(name
, arrow
[i
].name
) == 0)
1173 if (arrow
[i
].type
!= XK_NOD
)
1174 key_kprint(el
, arrow
[i
].name
, &arrow
[i
].fun
,
1179 /* term_bind_arrow():
1180 * Bind the arrow keys
1183 term_bind_arrow(EditLine
*el
)
1186 const el_action_t
*dmap
;
1189 fkey_t
*arrow
= el
->el_term
.t_fkey
;
1191 /* Check if the components needed are initialized */
1192 if (el
->el_term
.t_buf
== NULL
|| el
->el_map
.key
== NULL
)
1195 map
= el
->el_map
.type
== MAP_VI
? el
->el_map
.alt
: el
->el_map
.key
;
1196 dmap
= el
->el_map
.type
== MAP_VI
? el
->el_map
.vic
: el
->el_map
.emacs
;
1198 term_reset_arrow(el
);
1200 for (i
= 0; i
< A_K_NKEYS
; i
++) {
1201 p
= el
->el_term
.t_str
[arrow
[i
].key
];
1203 j
= (unsigned char) *p
;
1205 * Assign the arrow keys only if:
1207 * 1. They are multi-character arrow keys and the user
1208 * has not re-assigned the leading character, or
1209 * has re-assigned the leading character to be
1210 * ED_SEQUENCE_LEAD_IN
1211 * 2. They are single arrow keys pointing to an
1214 if (arrow
[i
].type
== XK_NOD
)
1215 key_clear(el
, map
, p
);
1217 if (p
[1] && (dmap
[j
] == map
[j
] ||
1218 map
[j
] == ED_SEQUENCE_LEAD_IN
)) {
1219 key_add(el
, p
, &arrow
[i
].fun
,
1221 map
[j
] = ED_SEQUENCE_LEAD_IN
;
1222 } else if (map
[j
] == ED_UNASSIGNED
) {
1223 key_clear(el
, map
, p
);
1224 if (arrow
[i
].type
== XK_CMD
)
1225 map
[j
] = arrow
[i
].fun
.cmd
;
1227 key_add(el
, p
, &arrow
[i
].fun
,
1243 return (fputc(c
, term_outfile
));
1254 (void) fflush(term_outfile
);
1258 * Write the given character out, in a human readable form
1261 term_writec(EditLine
*el
, int c
)
1264 int cnt
= key__decode_char(buf
, sizeof(buf
), 0, c
);
1266 term_overwrite(el
, buf
, cnt
);
1272 * Print the current termcap characteristics
1276 term_telltc(EditLine
*el
, int argc
__attribute__((__unused__
)),
1277 const char **argv
__attribute__((__unused__
)))
1279 const struct termcapstr
*t
;
1281 char upbuf
[EL_BUFSIZ
];
1283 (void) fprintf(el
->el_outfile
, "\n\tYour terminal has the\n");
1284 (void) fprintf(el
->el_outfile
, "\tfollowing characteristics:\n\n");
1285 (void) fprintf(el
->el_outfile
, "\tIt has %d columns and %d lines\n",
1286 Val(T_co
), Val(T_li
));
1287 (void) fprintf(el
->el_outfile
,
1288 "\tIt has %s meta key\n", EL_HAS_META
? "a" : "no");
1289 (void) fprintf(el
->el_outfile
,
1290 "\tIt can%suse tabs\n", EL_CAN_TAB
? " " : "not ");
1291 (void) fprintf(el
->el_outfile
, "\tIt %s automatic margins\n",
1292 EL_HAS_AUTO_MARGINS
? "has" : "does not have");
1293 if (EL_HAS_AUTO_MARGINS
)
1294 (void) fprintf(el
->el_outfile
, "\tIt %s magic margins\n",
1295 EL_HAS_MAGIC_MARGINS
? "has" : "does not have");
1297 for (t
= tstr
, ts
= el
->el_term
.t_str
; t
->name
!= NULL
; t
++, ts
++) {
1300 (void) key__decode_str(*ts
, upbuf
, sizeof(upbuf
), "");
1305 (void) fprintf(el
->el_outfile
, "\t%25s (%s) == %s\n",
1306 t
->long_name
, t
->name
, ub
);
1308 (void) fputc('\n', el
->el_outfile
);
1314 * Change the current terminal characteristics
1318 term_settc(EditLine
*el
, int argc
__attribute__((__unused__
)),
1321 const struct termcapstr
*ts
;
1322 const struct termcapval
*tv
;
1323 const char *what
, *how
;
1325 if (argv
== NULL
|| argv
[1] == NULL
|| argv
[2] == NULL
)
1332 * Do the strings first
1334 for (ts
= tstr
; ts
->name
!= NULL
; ts
++)
1335 if (strcmp(ts
->name
, what
) == 0)
1338 if (ts
->name
!= NULL
) {
1339 term_alloc(el
, ts
, how
);
1344 * Do the numeric ones second
1346 for (tv
= tval
; tv
->name
!= NULL
; tv
++)
1347 if (strcmp(tv
->name
, what
) == 0)
1350 if (tv
->name
!= NULL
)
1353 if (tv
== &tval
[T_pt
] || tv
== &tval
[T_km
] ||
1354 tv
== &tval
[T_am
] || tv
== &tval
[T_xn
]) {
1355 if (strcmp(how
, "yes") == 0)
1356 el
->el_term
.t_val
[tv
- tval
] = 1;
1357 else if (strcmp(how
, "no") == 0)
1358 el
->el_term
.t_val
[tv
- tval
] = 0;
1360 (void) fprintf(el
->el_errfile
,
1361 "%s: Bad value `%s'.\n", argv
[0], how
);
1365 if (term_change_size(el
, Val(T_li
), Val(T_co
)) == -1)
1372 i
= strtol(how
, &ep
, 10);
1374 (void) fprintf(el
->el_errfile
,
1375 "%s: Bad value `%s'.\n", argv
[0], how
);
1378 el
->el_term
.t_val
[tv
- tval
] = (int) i
;
1379 el
->el_term
.t_size
.v
= Val(T_co
);
1380 el
->el_term
.t_size
.h
= Val(T_li
);
1381 if (tv
== &tval
[T_co
] || tv
== &tval
[T_li
])
1382 if (term_change_size(el
, Val(T_li
), Val(T_co
))
1391 * Get the current terminal characteristics
1395 term_gettc(EditLine
*el
, int argc
__attribute__((__unused__
)), char **argv
)
1397 const struct termcapstr
*ts
;
1398 const struct termcapval
*tv
;
1402 if (argv
== NULL
|| argv
[1] == NULL
|| argv
[2] == NULL
)
1409 * Do the strings first
1411 for (ts
= tstr
; ts
->name
!= NULL
; ts
++)
1412 if (strcmp(ts
->name
, what
) == 0)
1415 if (ts
->name
!= NULL
) {
1416 *(char **)how
= el
->el_term
.t_str
[ts
- tstr
];
1420 * Do the numeric ones second
1422 for (tv
= tval
; tv
->name
!= NULL
; tv
++)
1423 if (strcmp(tv
->name
, what
) == 0)
1426 if (tv
->name
== NULL
)
1429 if (tv
== &tval
[T_pt
] || tv
== &tval
[T_km
] ||
1430 tv
== &tval
[T_am
] || tv
== &tval
[T_xn
]) {
1431 static char yes
[] = "yes";
1432 static char no
[] = "no";
1433 if (el
->el_term
.t_val
[tv
- tval
])
1434 *(char **)how
= yes
;
1439 *(int *)how
= el
->el_term
.t_val
[tv
- tval
];
1445 * Print the termcap string out with variable substitution
1449 term_echotc(EditLine
*el
, int argc
__attribute__((__unused__
)),
1452 char *cap
, *scap
, *ep
;
1453 int arg_need
, arg_cols
, arg_rows
;
1454 int verbose
= 0, silent
= 0;
1456 static const char fmts
[] = "%s\n", fmtd
[] = "%d\n";
1457 const struct termcapstr
*t
;
1458 char buf
[TC_BUFSIZE
];
1463 if (argv
== NULL
|| argv
[1] == NULL
)
1467 if (argv
[0][0] == '-') {
1468 switch (argv
[0][1]) {
1476 /* stderror(ERR_NAME | ERR_TCUSAGE); */
1481 if (!*argv
|| *argv
[0] == '\0')
1483 if (strcmp(*argv
, "tabs") == 0) {
1484 (void) fprintf(el
->el_outfile
, fmts
, EL_CAN_TAB
? "yes" : "no");
1486 } else if (strcmp(*argv
, "meta") == 0) {
1487 (void) fprintf(el
->el_outfile
, fmts
, Val(T_km
) ? "yes" : "no");
1489 } else if (strcmp(*argv
, "xn") == 0) {
1490 (void) fprintf(el
->el_outfile
, fmts
, EL_HAS_MAGIC_MARGINS
?
1493 } else if (strcmp(*argv
, "am") == 0) {
1494 (void) fprintf(el
->el_outfile
, fmts
, EL_HAS_AUTO_MARGINS
?
1497 } else if (strcmp(*argv
, "baud") == 0) {
1501 for (i
= 0; baud_rate
[i
].b_name
!= NULL
; i
++)
1502 if (el
->el_tty
.t_speed
== baud_rate
[i
].b_rate
) {
1503 (void) fprintf(el
->el_outfile
, fmts
,
1504 baud_rate
[i
].b_name
);
1507 (void) fprintf(el
->el_outfile
, fmtd
, 0);
1509 (void) fprintf(el
->el_outfile
, fmtd
, (int)el
->el_tty
.t_speed
);
1512 } else if (strcmp(*argv
, "rows") == 0 || strcmp(*argv
, "lines") == 0) {
1513 (void) fprintf(el
->el_outfile
, fmtd
, Val(T_li
));
1515 } else if (strcmp(*argv
, "cols") == 0) {
1516 (void) fprintf(el
->el_outfile
, fmtd
, Val(T_co
));
1520 * Try to use our local definition first
1523 for (t
= tstr
; t
->name
!= NULL
; t
++)
1524 if (strcmp(t
->name
, *argv
) == 0) {
1525 scap
= el
->el_term
.t_str
[t
- tstr
];
1528 if (t
->name
== NULL
) {
1529 /* XXX: some systems' tgetstr needs non const */
1530 scap
= tgetstr(strchr(*argv
, **argv
), &area
);
1532 if (!scap
|| scap
[0] == '\0') {
1534 (void) fprintf(el
->el_errfile
,
1535 "echotc: Termcap parameter `%s' not found.\n",
1540 * Count home many values we need for this capability.
1542 for (cap
= scap
, arg_need
= 0; *cap
; cap
++)
1562 * hpux has lot's of them...
1565 (void) fprintf(el
->el_errfile
,
1566 "echotc: Warning: unknown termcap %% `%c'.\n",
1568 /* This is bad, but I won't complain */
1575 if (*argv
&& *argv
[0]) {
1577 (void) fprintf(el
->el_errfile
,
1578 "echotc: Warning: Extra argument `%s'.\n",
1582 (void) tputs(scap
, 1, term__putc
);
1586 if (!*argv
|| *argv
[0] == '\0') {
1588 (void) fprintf(el
->el_errfile
,
1589 "echotc: Warning: Missing argument.\n");
1593 i
= strtol(*argv
, &ep
, 10);
1594 if (*ep
!= '\0' || i
< 0) {
1596 (void) fprintf(el
->el_errfile
,
1597 "echotc: Bad value `%s' for rows.\n",
1603 if (*argv
&& *argv
[0]) {
1605 (void) fprintf(el
->el_errfile
,
1606 "echotc: Warning: Extra argument `%s'.\n",
1610 (void) tputs(tgoto(scap
, arg_cols
, arg_rows
), 1, term__putc
);
1613 /* This is wrong, but I will ignore it... */
1615 (void) fprintf(el
->el_errfile
,
1616 "echotc: Warning: Too many required arguments (%d).\n",
1621 if (!*argv
|| *argv
[0] == '\0') {
1623 (void) fprintf(el
->el_errfile
,
1624 "echotc: Warning: Missing argument.\n");
1627 i
= strtol(*argv
, &ep
, 10);
1628 if (*ep
!= '\0' || i
< 0) {
1630 (void) fprintf(el
->el_errfile
,
1631 "echotc: Bad value `%s' for cols.\n",
1637 if (!*argv
|| *argv
[0] == '\0') {
1639 (void) fprintf(el
->el_errfile
,
1640 "echotc: Warning: Missing argument.\n");
1643 i
= strtol(*argv
, &ep
, 10);
1644 if (*ep
!= '\0' || i
< 0) {
1646 (void) fprintf(el
->el_errfile
,
1647 "echotc: Bad value `%s' for rows.\n",
1654 (void) fprintf(el
->el_errfile
,
1655 "echotc: Bad value `%s'.\n", *argv
);
1659 if (*argv
&& *argv
[0]) {
1661 (void) fprintf(el
->el_errfile
,
1662 "echotc: Warning: Extra argument `%s'.\n",
1666 (void) tputs(tgoto(scap
, arg_cols
, arg_rows
), arg_rows
,