Add amd64 atomic_lock implementation
[dragonfly.git] / lib / libedit / term.c
1 /*-
2  * Copyright (c) 1992, 1993
3  *      The Regents of the University of California.  All rights reserved.
4  *
5  * This code is derived from software contributed to Berkeley by
6  * Christos Zoulas of Cornell University.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
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.
19  *
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
30  * SUCH DAMAGE.
31  *
32  * @(#)term.c   8.2 (Berkeley) 4/30/95
33  * $NetBSD: term.c,v 1.40 2004/05/22 23:21:28 christos Exp $
34  * $DragonFly: src/lib/libedit/term.c,v 1.4 2005/11/13 11:58:30 corecode Exp $
35  */
36
37 #include "config.h"
38
39 /*
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!
43  */
44 #include <stdio.h>
45 #include <signal.h>
46 #include <string.h>
47 #include <stdlib.h>
48 #include <unistd.h>
49 #ifdef HAVE_TERMCAP_H
50 #include <termcap.h>
51 #endif
52 #ifdef HAVE_CURSES_H
53 #include <curses.h>
54 #endif
55 #ifdef HAVE_NCURSES_H
56 #include <ncurses.h>
57 #endif
58 /* Solaris's term.h does horrid things. */
59 #if (defined(HAVE_TERM_H) && !defined(SUNOS))
60 #include <term.h>
61 #endif
62 #include <sys/types.h>
63 #include <sys/ioctl.h>
64
65 #include "el.h"
66
67 /*
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
71  * assumption...
72  */
73
74 #define TC_BUFSIZE      2048
75
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]
80
81 #ifdef notdef
82 private const struct {
83         const char *b_name;
84         int b_rate;
85 } baud_rate[] = {
86 #ifdef B0
87         { "0", B0 },
88 #endif
89 #ifdef B50
90         { "50", B50 },
91 #endif
92 #ifdef B75
93         { "75", B75 },
94 #endif
95 #ifdef B110
96         { "110", B110 },
97 #endif
98 #ifdef B134
99         { "134", B134 },
100 #endif
101 #ifdef B150
102         { "150", B150 },
103 #endif
104 #ifdef B200
105         { "200", B200 },
106 #endif
107 #ifdef B300
108         { "300", B300 },
109 #endif
110 #ifdef B600
111         { "600", B600 },
112 #endif
113 #ifdef B900
114         { "900", B900 },
115 #endif
116 #ifdef B1200
117         { "1200", B1200 },
118 #endif
119 #ifdef B1800
120         { "1800", B1800 },
121 #endif
122 #ifdef B2400
123         { "2400", B2400 },
124 #endif
125 #ifdef B3600
126         { "3600", B3600 },
127 #endif
128 #ifdef B4800
129         { "4800", B4800 },
130 #endif
131 #ifdef B7200
132         { "7200", B7200 },
133 #endif
134 #ifdef B9600
135         { "9600", B9600 },
136 #endif
137 #ifdef EXTA
138         { "19200", EXTA },
139 #endif
140 #ifdef B19200
141         { "19200", B19200 },
142 #endif
143 #ifdef EXTB
144         { "38400", EXTB },
145 #endif
146 #ifdef B38400
147         { "38400", B38400 },
148 #endif
149         { NULL, 0 }
150 };
151 #endif
152
153 private const struct termcapstr {
154         const char *name;
155         const char *long_name;
156 } tstr[] = {
157 #define T_al    0
158         { "al", "add new blank line" },
159 #define T_bl    1
160         { "bl", "audible bell" },
161 #define T_cd    2
162         { "cd", "clear to bottom" },
163 #define T_ce    3
164         { "ce", "clear to end of line" },
165 #define T_ch    4
166         { "ch", "cursor to horiz pos" },
167 #define T_cl    5
168         { "cl", "clear screen" },
169 #define T_dc    6
170         { "dc", "delete a character" },
171 #define T_dl    7
172         { "dl", "delete a line" },
173 #define T_dm    8
174         { "dm", "start delete mode" },
175 #define T_ed    9
176         { "ed", "end delete mode" },
177 #define T_ei    10
178         { "ei", "end insert mode" },
179 #define T_fs    11
180         { "fs", "cursor from status line" },
181 #define T_ho    12
182         { "ho", "home cursor" },
183 #define T_ic    13
184         { "ic", "insert character" },
185 #define T_im    14
186         { "im", "start insert mode" },
187 #define T_ip    15
188         { "ip", "insert padding" },
189 #define T_kd    16
190         { "kd", "sends cursor down" },
191 #define T_kl    17
192         { "kl", "sends cursor left" },
193 #define T_kr    18
194         { "kr", "sends cursor right" },
195 #define T_ku    19
196         { "ku", "sends cursor up" },
197 #define T_md    20
198         { "md", "begin bold" },
199 #define T_me    21
200         { "me", "end attributes" },
201 #define T_nd    22
202         { "nd", "non destructive space" },
203 #define T_se    23
204         { "se", "end standout" },
205 #define T_so    24
206         { "so", "begin standout" },
207 #define T_ts    25
208         { "ts", "cursor to status line" },
209 #define T_up    26
210         { "up", "cursor up one" },
211 #define T_us    27
212         { "us", "begin underline" },
213 #define T_ue    28
214         { "ue", "end underline" },
215 #define T_vb    29
216         { "vb", "visible bell" },
217 #define T_DC    30
218         { "DC", "delete multiple chars" },
219 #define T_DO    31
220         { "DO", "cursor down multiple" },
221 #define T_IC    32
222         { "IC", "insert multiple chars" },
223 #define T_LE    33
224         { "LE", "cursor left multiple" },
225 #define T_RI    34
226         { "RI", "cursor right multiple" },
227 #define T_UP    35
228         { "UP", "cursor up multiple" },
229 #define T_kh    36
230         { "kh", "send cursor home" },
231 #define T_at7   37
232         { "@7", "send cursor end" },
233 #define T_str   38
234         { NULL, NULL }
235 };
236
237 private const struct termcapval {
238         const char *name;
239         const char *long_name;
240 } tval[] = {
241 #define T_am    0
242         { "am", "has automatic margins" },
243 #define T_pt    1
244         { "pt", "has physical tabs" },
245 #define T_li    2
246         { "li", "Number of lines" },
247 #define T_co    3
248         { "co", "Number of columns" },
249 #define T_km    4
250         { "km", "Has meta key" },
251 #define T_xt    5
252         { "xt", "Tab chars destructive" },
253 #define T_xn    6
254         { "xn", "newline ignored at right margin" },
255 #define T_MT    7
256         { "MT", "Has meta key" },                       /* XXX? */
257 #define T_val   8
258         { NULL, NULL, }
259 };
260 /* do two or more of the attributes use me */
261
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 *);
269
270
271 private FILE *term_outfile = NULL;      /* XXX: How do we fix that? */
272
273
274 /* term_setflags():
275  *      Set the terminal capability flags
276  */
277 private void
278 term_setflags(EditLine *el)
279 {
280         EL_FLAGS = 0;
281         if (el->el_tty.t_tabs)
282                 EL_FLAGS |= (Val(T_pt) && !Val(T_xt)) ? TERM_CAN_TAB : 0;
283
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)) ?
288             TERM_CAN_INSERT : 0;
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;
292
293         if (GoodStr(T_me) && GoodStr(T_ue))
294                 EL_FLAGS |= (strcmp(Str(T_me), Str(T_ue)) == 0) ?
295                     TERM_CAN_ME : 0;
296         else
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) ?
300                     TERM_CAN_ME : 0;
301
302
303 #ifdef DEBUG_SCREEN
304         if (!EL_CAN_UP) {
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");
309         }
310         if (!EL_CAN_CEOL)
311                 (void) fprintf(el->el_errfile, "no clear EOL capability.\n");
312         if (!EL_CAN_DELETE)
313                 (void) fprintf(el->el_errfile, "no delete char capability.\n");
314         if (!EL_CAN_INSERT)
315                 (void) fprintf(el->el_errfile, "no insert char capability.\n");
316 #endif /* DEBUG_SCREEN */
317 }
318
319
320 /* term_init():
321  *      Initialize the terminal stuff
322  */
323 protected int
324 term_init(EditLine *el)
325 {
326
327         el->el_term.t_buf = (char *) el_malloc(TC_BUFSIZE);
328         if (el->el_term.t_buf == NULL)
329                 return (-1);
330         el->el_term.t_cap = (char *) el_malloc(TC_BUFSIZE);
331         if (el->el_term.t_cap == NULL)
332                 return (-1);
333         el->el_term.t_fkey = (fkey_t *) el_malloc(A_K_NKEYS * sizeof(fkey_t));
334         if (el->el_term.t_fkey == NULL)
335                 return (-1);
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)
339                 return (-1);
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)
343                 return (-1);
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);
347         term_init_arrow(el);
348         return (0);
349 }
350
351 /* term_end():
352  *      Clean up the terminal stuff
353  */
354 protected void
355 term_end(EditLine *el)
356 {
357
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);
370 }
371
372
373 /* term_alloc():
374  *      Maintain a string pool for termcap strings
375  */
376 private void
377 term_alloc(EditLine *el, const struct termcapstr *t, const char *cap)
378 {
379         char termbuf[TC_BUFSIZE];
380         int tlen, clen;
381         char **tlist = el->el_term.t_str;
382         char **tmp, **str = &tlist[t - tstr];
383
384         if (cap == NULL || *cap == '\0') {
385                 *str = NULL;
386                 return;
387         } else
388                 clen = strlen(cap);
389
390         tlen = *str == NULL ? 0 : strlen(*str);
391
392         /*
393          * New string is shorter; no need to allocate space
394          */
395         if (clen <= tlen) {
396                 (void) strcpy(*str, cap);       /* XXX strcpy is safe */
397                 return;
398         }
399         /*
400          * New string is longer; see if we have enough space to append
401          */
402         if (el->el_term.t_loc + 3 < TC_BUFSIZE) {
403                                                 /* XXX strcpy is safe */
404                 (void) strcpy(*str = &el->el_term.t_buf[el->el_term.t_loc],
405                     cap);
406                 el->el_term.t_loc += clen + 1;  /* one for \0 */
407                 return;
408         }
409         /*
410          * Compact our buffer; no need to check compaction, cause we know it
411          * fits...
412          */
413         tlen = 0;
414         for (tmp = tlist; tmp < &tlist[T_str]; tmp++)
415                 if (*tmp != NULL && *tmp != '\0' && *tmp != *str) {
416                         char *ptr;
417
418                         for (ptr = *tmp; *ptr != '\0'; termbuf[tlen++] = *ptr++)
419                                 continue;
420                         termbuf[tlen++] = '\0';
421                 }
422         memcpy(el->el_term.t_buf, termbuf, TC_BUFSIZE);
423         el->el_term.t_loc = tlen;
424         if (el->el_term.t_loc + 3 >= TC_BUFSIZE) {
425                 (void) fprintf(el->el_errfile,
426                     "Out of termcap string space.\n");
427                 return;
428         }
429                                         /* XXX strcpy is safe */
430         (void) strcpy(*str = &el->el_term.t_buf[el->el_term.t_loc], cap);
431         el->el_term.t_loc += clen + 1;  /* one for \0 */
432         return;
433 }
434
435
436 /* term_rebuffer_display():
437  *      Rebuffer the display after the screen changed size
438  */
439 private int
440 term_rebuffer_display(EditLine *el)
441 {
442         coord_t *c = &el->el_term.t_size;
443
444         term_free_display(el);
445
446         c->h = Val(T_co);
447         c->v = Val(T_li);
448
449         if (term_alloc_display(el) == -1)
450                 return (-1);
451         return (0);
452 }
453
454
455 /* term_alloc_display():
456  *      Allocate a new display.
457  */
458 private int
459 term_alloc_display(EditLine *el)
460 {
461         int i;
462         char **b;
463         coord_t *c = &el->el_term.t_size;
464
465         b = (char **) el_malloc((size_t) (sizeof(char *) * (c->v + 1)));
466         if (b == NULL)
467                 return (-1);
468         for (i = 0; i < c->v; i++) {
469                 b[i] = (char *) el_malloc((size_t) (sizeof(char) * (c->h + 1)));
470                 if (b[i] == NULL)
471                         return (-1);
472         }
473         b[c->v] = NULL;
474         el->el_display = b;
475
476         b = (char **) el_malloc((size_t) (sizeof(char *) * (c->v + 1)));
477         if (b == NULL)
478                 return (-1);
479         for (i = 0; i < c->v; i++) {
480                 b[i] = (char *) el_malloc((size_t) (sizeof(char) * (c->h + 1)));
481                 if (b[i] == NULL)
482                         return (-1);
483         }
484         b[c->v] = NULL;
485         el->el_vdisplay = b;
486         return (0);
487 }
488
489
490 /* term_free_display():
491  *      Free the display buffers
492  */
493 private void
494 term_free_display(EditLine *el)
495 {
496         char **b;
497         char **bufp;
498
499         b = el->el_display;
500         el->el_display = NULL;
501         if (b != NULL) {
502                 for (bufp = b; *bufp != NULL; bufp++)
503                         el_free((ptr_t) * bufp);
504                 el_free((ptr_t) b);
505         }
506         b = el->el_vdisplay;
507         el->el_vdisplay = NULL;
508         if (b != NULL) {
509                 for (bufp = b; *bufp != NULL; bufp++)
510                         el_free((ptr_t) * bufp);
511                 el_free((ptr_t) b);
512         }
513 }
514
515
516 /* term_move_to_line():
517  *      move to line <where> (first line == 0)
518  *      as efficiently as possible
519  */
520 protected void
521 term_move_to_line(EditLine *el, int where)
522 {
523         int del;
524
525         if (where == el->el_cursor.v)
526                 return;
527
528         if (where > el->el_term.t_size.v) {
529 #ifdef DEBUG_SCREEN
530                 (void) fprintf(el->el_errfile,
531                     "term_move_to_line: where is ridiculous: %d\r\n", where);
532 #endif /* DEBUG_SCREEN */
533                 return;
534         }
535         if ((del = where - el->el_cursor.v) > 0) {
536                 while (del > 0) {
537                         if (EL_HAS_AUTO_MARGINS &&
538                             el->el_display[el->el_cursor.v][0] != '\0') {
539                                 /* move without newline */
540                                 term_move_to_char(el, el->el_term.t_size.h - 1);
541                                 term_overwrite(el,
542                                     &el->el_display[el->el_cursor.v][el->el_cursor.h],
543                                     1);
544                                 /* updates Cursor */
545                                 del--;
546                         } else {
547                                 if ((del > 1) && GoodStr(T_DO)) {
548                                         (void) tputs(tgoto(Str(T_DO), del, del),
549                                             del, term__putc);
550                                         del = 0;
551                                 } else {
552                                         for (; del > 0; del--)
553                                                 term__putc('\n');
554                                         /* because the \n will become \r\n */
555                                         el->el_cursor.h = 0;
556                                 }
557                         }
558                 }
559         } else {                /* del < 0 */
560                 if (GoodStr(T_UP) && (-del > 1 || !GoodStr(T_up)))
561                         (void) tputs(tgoto(Str(T_UP), -del, -del), -del,
562                             term__putc);
563                 else {
564                         if (GoodStr(T_up))
565                                 for (; del < 0; del++)
566                                         (void) tputs(Str(T_up), 1, term__putc);
567                 }
568         }
569         el->el_cursor.v = where;/* now where is here */
570 }
571
572
573 /* term_move_to_char():
574  *      Move to the character position specified
575  */
576 protected void
577 term_move_to_char(EditLine *el, int where)
578 {
579         int del, i;
580
581 mc_again:
582         if (where == el->el_cursor.h)
583                 return;
584
585         if (where > el->el_term.t_size.h) {
586 #ifdef DEBUG_SCREEN
587                 (void) fprintf(el->el_errfile,
588                     "term_move_to_char: where is riduculous: %d\r\n", where);
589 #endif /* DEBUG_SCREEN */
590                 return;
591         }
592         if (!where) {           /* if where is first column */
593                 term__putc('\r');       /* do a CR */
594                 el->el_cursor.h = 0;
595                 return;
596         }
597         del = where - el->el_cursor.h;
598
599         if ((del < -4 || del > 4) && GoodStr(T_ch))
600                 /* go there directly */
601                 (void) tputs(tgoto(Str(T_ch), where, where), where, term__putc);
602         else {
603                 if (del > 0) {  /* moving forward */
604                         if ((del > 4) && GoodStr(T_RI))
605                                 (void) tputs(tgoto(Str(T_RI), del, del),
606                                     del, term__putc);
607                         else {
608                                         /* if I can do tabs, use them */
609                                 if (EL_CAN_TAB) {
610                                         if ((el->el_cursor.h & 0370) !=
611                                             (where & 0370)) {
612                                                 /* if not within tab stop */
613                                                 for (i =
614                                                     (el->el_cursor.h & 0370);
615                                                     i < (where & 0370);
616                                                     i += 8)
617                                                         term__putc('\t');       
618                                                         /* then tab over */
619                                                 el->el_cursor.h = where & 0370;
620                                         }
621                                 }
622                                 /*
623                                  * it's usually cheaper to just write the
624                                  * chars, so we do.
625                                  */
626                                 /*
627                                  * NOTE THAT term_overwrite() WILL CHANGE
628                                  * el->el_cursor.h!!!
629                                  */
630                                 term_overwrite(el,
631                                     &el->el_display[el->el_cursor.v][el->el_cursor.h],
632                                     where - el->el_cursor.h);
633
634                         }
635                 } else {        /* del < 0 := moving backward */
636                         if ((-del > 4) && GoodStr(T_LE))
637                                 (void) tputs(tgoto(Str(T_LE), -del, -del),
638                                     -del, term__putc);
639                         else {  /* can't go directly there */
640                                 /*
641                                  * if the "cost" is greater than the "cost"
642                                  * from col 0
643                                  */
644                                 if (EL_CAN_TAB ?
645                                     ((unsigned int)-del >
646                                     (((unsigned int) where >> 3) +
647                                      (where & 07)))
648                                     : (-del > where)) {
649                                         term__putc('\r');       /* do a CR */
650                                         el->el_cursor.h = 0;
651                                         goto mc_again;  /* and try again */
652                                 }
653                                 for (i = 0; i < -del; i++)
654                                         term__putc('\b');
655                         }
656                 }
657         }
658         el->el_cursor.h = where;                /* now where is here */
659 }
660
661
662 /* term_overwrite():
663  *      Overstrike num characters
664  */
665 protected void
666 term_overwrite(EditLine *el, const char *cp, int n)
667 {
668         if (n <= 0)
669                 return;         /* catch bugs */
670
671         if (n > el->el_term.t_size.h) {
672 #ifdef DEBUG_SCREEN
673                 (void) fprintf(el->el_errfile,
674                     "term_overwrite: n is riduculous: %d\r\n", n);
675 #endif /* DEBUG_SCREEN */
676                 return;
677         }
678         do {
679                 term__putc(*cp++);
680                 el->el_cursor.h++;
681         } while (--n);
682
683         if (el->el_cursor.h >= el->el_term.t_size.h) {  /* wrap? */
684                 if (EL_HAS_AUTO_MARGINS) {      /* yes */
685                         el->el_cursor.h = 0;
686                         el->el_cursor.v++;
687                         if (EL_HAS_MAGIC_MARGINS) {
688                                 /* force the wrap to avoid the "magic"
689                                  * situation */
690                                 char c;
691                                 if ((c = el->el_display[el->el_cursor.v][el->el_cursor.h])
692                                     != '\0')
693                                         term_overwrite(el, &c, 1);
694                                 else
695                                         term__putc(' ');
696                                 el->el_cursor.h = 1;
697                         }
698                 } else          /* no wrap, but cursor stays on screen */
699                         el->el_cursor.h = el->el_term.t_size.h;
700         }
701 }
702
703
704 /* term_deletechars():
705  *      Delete num characters
706  */
707 protected void
708 term_deletechars(EditLine *el, int num)
709 {
710         if (num <= 0)
711                 return;
712
713         if (!EL_CAN_DELETE) {
714 #ifdef DEBUG_EDIT
715                 (void) fprintf(el->el_errfile, "   ERROR: cannot delete   \n");
716 #endif /* DEBUG_EDIT */
717                 return;
718         }
719         if (num > el->el_term.t_size.h) {
720 #ifdef DEBUG_SCREEN
721                 (void) fprintf(el->el_errfile,
722                     "term_deletechars: num is riduculous: %d\r\n", num);
723 #endif /* DEBUG_SCREEN */
724                 return;
725         }
726         if (GoodStr(T_DC))      /* if I have multiple delete */
727                 if ((num > 1) || !GoodStr(T_dc)) {      /* if dc would be more
728                                                          * expen. */
729                         (void) tputs(tgoto(Str(T_DC), num, num),
730                             num, term__putc);
731                         return;
732                 }
733         if (GoodStr(T_dm))      /* if I have delete mode */
734                 (void) tputs(Str(T_dm), 1, term__putc);
735
736         if (GoodStr(T_dc))      /* else do one at a time */
737                 while (num--)
738                         (void) tputs(Str(T_dc), 1, term__putc);
739
740         if (GoodStr(T_ed))      /* if I have delete mode */
741                 (void) tputs(Str(T_ed), 1, term__putc);
742 }
743
744
745 /* term_insertwrite():
746  *      Puts terminal in insert character mode or inserts num
747  *      characters in the line
748  */
749 protected void
750 term_insertwrite(EditLine *el, char *cp, int num)
751 {
752         if (num <= 0)
753                 return;
754         if (!EL_CAN_INSERT) {
755 #ifdef DEBUG_EDIT
756                 (void) fprintf(el->el_errfile, "   ERROR: cannot insert   \n");
757 #endif /* DEBUG_EDIT */
758                 return;
759         }
760         if (num > el->el_term.t_size.h) {
761 #ifdef DEBUG_SCREEN
762                 (void) fprintf(el->el_errfile,
763                     "StartInsert: num is riduculous: %d\r\n", num);
764 #endif /* DEBUG_SCREEN */
765                 return;
766         }
767         if (GoodStr(T_IC))      /* if I have multiple insert */
768                 if ((num > 1) || !GoodStr(T_ic)) {
769                                 /* if ic would be more expensive */
770                         (void) tputs(tgoto(Str(T_IC), num, num),
771                             num, term__putc);
772                         term_overwrite(el, cp, num);
773                                 /* this updates el_cursor.h */
774                         return;
775                 }
776         if (GoodStr(T_im) && GoodStr(T_ei)) {   /* if I have insert mode */
777                 (void) tputs(Str(T_im), 1, term__putc);
778
779                 el->el_cursor.h += num;
780                 do
781                         term__putc(*cp++);
782                 while (--num);
783
784                 if (GoodStr(T_ip))      /* have to make num chars insert */
785                         (void) tputs(Str(T_ip), 1, term__putc);
786
787                 (void) tputs(Str(T_ei), 1, term__putc);
788                 return;
789         }
790         do {
791                 if (GoodStr(T_ic))      /* have to make num chars insert */
792                         (void) tputs(Str(T_ic), 1, term__putc);
793                                         /* insert a char */
794
795                 term__putc(*cp++);
796
797                 el->el_cursor.h++;
798
799                 if (GoodStr(T_ip))      /* have to make num chars insert */
800                         (void) tputs(Str(T_ip), 1, term__putc);
801                                         /* pad the inserted char */
802
803         } while (--num);
804 }
805
806
807 /* term_clear_EOL():
808  *      clear to end of line.  There are num characters to clear
809  */
810 protected void
811 term_clear_EOL(EditLine *el, int num)
812 {
813         int i;
814
815         if (EL_CAN_CEOL && GoodStr(T_ce))
816                 (void) tputs(Str(T_ce), 1, term__putc);
817         else {
818                 for (i = 0; i < num; i++)
819                         term__putc(' ');
820                 el->el_cursor.h += num; /* have written num spaces */
821         }
822 }
823
824
825 /* term_clear_screen():
826  *      Clear the screen
827  */
828 protected void
829 term_clear_screen(EditLine *el)
830 {                               /* clear the whole screen and home */
831
832         if (GoodStr(T_cl))
833                 /* send the clear screen code */
834                 (void) tputs(Str(T_cl), Val(T_li), term__putc);
835         else if (GoodStr(T_ho) && GoodStr(T_cd)) {
836                 (void) tputs(Str(T_ho), Val(T_li), term__putc); /* home */
837                 /* clear to bottom of screen */
838                 (void) tputs(Str(T_cd), Val(T_li), term__putc);
839         } else {
840                 term__putc('\r');
841                 term__putc('\n');
842         }
843 }
844
845
846 /* term_beep():
847  *      Beep the way the terminal wants us
848  */
849 protected void
850 term_beep(EditLine *el)
851 {
852         if (GoodStr(T_bl))
853                 /* what termcap says we should use */
854                 (void) tputs(Str(T_bl), 1, term__putc);
855         else
856                 term__putc('\007');     /* an ASCII bell; ^G */
857 }
858
859
860 #ifdef notdef
861 /* term_clear_to_bottom():
862  *      Clear to the bottom of the screen
863  */
864 protected void
865 term_clear_to_bottom(EditLine *el)
866 {
867         if (GoodStr(T_cd))
868                 (void) tputs(Str(T_cd), Val(T_li), term__putc);
869         else if (GoodStr(T_ce))
870                 (void) tputs(Str(T_ce), Val(T_li), term__putc);
871 }
872 #endif
873
874 protected void
875 term_get(EditLine *el, const char **term)
876 {
877         *term = el->el_term.t_name;
878 }
879
880
881 /* term_set():
882  *      Read in the terminal capabilities from the requested terminal
883  */
884 protected int
885 term_set(EditLine *el, const char *term)
886 {
887         int i;
888         char buf[TC_BUFSIZE];
889         char *area;
890         const struct termcapstr *t;
891         sigset_t oset, nset;
892         int lins, cols;
893
894         (void) sigemptyset(&nset);
895         (void) sigaddset(&nset, SIGWINCH);
896         (void) sigprocmask(SIG_BLOCK, &nset, &oset);
897
898         area = buf;
899
900
901         if (term == NULL)
902                 term = getenv("TERM");
903
904         if (!term || !term[0])
905                 term = "dumb";
906
907         if (strcmp(term, "emacs") == 0)
908                 el->el_flags |= EDIT_DISABLED;
909
910         memset(el->el_term.t_cap, 0, TC_BUFSIZE);
911
912         i = tgetent(el->el_term.t_cap, term);
913
914         if (i <= 0) {
915                 if (i == -1)
916                         (void) fprintf(el->el_errfile,
917                             "Cannot read termcap database;\n");
918                 else if (i == 0)
919                         (void) fprintf(el->el_errfile,
920                             "No entry for terminal type \"%s\";\n", term);
921                 (void) fprintf(el->el_errfile,
922                     "using dumb terminal settings.\n");
923                 Val(T_co) = 80; /* do a dumb terminal */
924                 Val(T_pt) = Val(T_km) = Val(T_li) = 0;
925                 Val(T_xt) = Val(T_MT);
926                 for (t = tstr; t->name != NULL; t++)
927                         term_alloc(el, t, NULL);
928         } else {
929                 /* auto/magic margins */
930                 Val(T_am) = tgetflag("am");
931                 Val(T_xn) = tgetflag("xn");
932                 /* Can we tab */
933                 Val(T_pt) = tgetflag("pt");
934                 Val(T_xt) = tgetflag("xt");
935                 /* do we have a meta? */
936                 Val(T_km) = tgetflag("km");
937                 Val(T_MT) = tgetflag("MT");
938                 /* Get the size */
939                 Val(T_co) = tgetnum("co");
940                 Val(T_li) = tgetnum("li");
941                 for (t = tstr; t->name != NULL; t++) {
942                         /* XXX: some systems tgetstr needs non const */
943                         term_alloc(el, t, tgetstr(strchr(t->name, *t->name),
944                             &area));
945                 }
946         }
947
948         if (Val(T_co) < 2)
949                 Val(T_co) = 80; /* just in case */
950         if (Val(T_li) < 1)
951                 Val(T_li) = 24;
952
953         el->el_term.t_size.v = Val(T_co);
954         el->el_term.t_size.h = Val(T_li);
955
956         term_setflags(el);
957
958                                 /* get the correct window size */
959         (void) term_get_size(el, &lins, &cols);
960         if (term_change_size(el, lins, cols) == -1)
961                 return (-1);
962         (void) sigprocmask(SIG_SETMASK, &oset, NULL);
963         term_bind_arrow(el);
964         el->el_term.t_name = term;
965         return (i <= 0 ? -1 : 0);
966 }
967
968
969 /* term_get_size():
970  *      Return the new window size in lines and cols, and
971  *      true if the size was changed.
972  */
973 protected int
974 term_get_size(EditLine *el, int *lins, int *cols)
975 {
976
977         *cols = Val(T_co);
978         *lins = Val(T_li);
979
980 #ifdef TIOCGWINSZ
981         {
982                 struct winsize ws;
983                 if (ioctl(el->el_infd, TIOCGWINSZ, (ioctl_t) & ws) != -1) {
984                         if (ws.ws_col)
985                                 *cols = ws.ws_col;
986                         if (ws.ws_row)
987                                 *lins = ws.ws_row;
988                 }
989         }
990 #endif
991 #ifdef TIOCGSIZE
992         {
993                 struct ttysize ts;
994                 if (ioctl(el->el_infd, TIOCGSIZE, (ioctl_t) & ts) != -1) {
995                         if (ts.ts_cols)
996                                 *cols = ts.ts_cols;
997                         if (ts.ts_lines)
998                                 *lins = ts.ts_lines;
999                 }
1000         }
1001 #endif
1002         return (Val(T_co) != *cols || Val(T_li) != *lins);
1003 }
1004
1005
1006 /* term_change_size():
1007  *      Change the size of the terminal
1008  */
1009 protected int
1010 term_change_size(EditLine *el, int lins, int cols)
1011 {
1012         /*
1013          * Just in case
1014          */
1015         Val(T_co) = (cols < 2) ? 80 : cols;
1016         Val(T_li) = (lins < 1) ? 24 : lins;
1017
1018         /* re-make display buffers */
1019         if (term_rebuffer_display(el) == -1)
1020                 return (-1);
1021         re_clear_display(el);
1022         return (0);
1023 }
1024
1025
1026 /* term_init_arrow():
1027  *      Initialize the arrow key bindings from termcap
1028  */
1029 private void
1030 term_init_arrow(EditLine *el)
1031 {
1032         fkey_t *arrow = el->el_term.t_fkey;
1033
1034         arrow[A_K_DN].name = "down";
1035         arrow[A_K_DN].key = T_kd;
1036         arrow[A_K_DN].fun.cmd = ED_NEXT_HISTORY;
1037         arrow[A_K_DN].type = XK_CMD;
1038
1039         arrow[A_K_UP].name = "up";
1040         arrow[A_K_UP].key = T_ku;
1041         arrow[A_K_UP].fun.cmd = ED_PREV_HISTORY;
1042         arrow[A_K_UP].type = XK_CMD;
1043
1044         arrow[A_K_LT].name = "left";
1045         arrow[A_K_LT].key = T_kl;
1046         arrow[A_K_LT].fun.cmd = ED_PREV_CHAR;
1047         arrow[A_K_LT].type = XK_CMD;
1048
1049         arrow[A_K_RT].name = "right";
1050         arrow[A_K_RT].key = T_kr;
1051         arrow[A_K_RT].fun.cmd = ED_NEXT_CHAR;
1052         arrow[A_K_RT].type = XK_CMD;
1053
1054         arrow[A_K_HO].name = "home";
1055         arrow[A_K_HO].key = T_kh;
1056         arrow[A_K_HO].fun.cmd = ED_MOVE_TO_BEG;
1057         arrow[A_K_HO].type = XK_CMD;
1058
1059         arrow[A_K_EN].name = "end";
1060         arrow[A_K_EN].key = T_at7;
1061         arrow[A_K_EN].fun.cmd = ED_MOVE_TO_END;
1062         arrow[A_K_EN].type = XK_CMD;
1063 }
1064
1065
1066 /* term_reset_arrow():
1067  *      Reset arrow key bindings
1068  */
1069 private void
1070 term_reset_arrow(EditLine *el)
1071 {
1072         fkey_t *arrow = el->el_term.t_fkey;
1073         static const char strA[] = {033, '[', 'A', '\0'};
1074         static const char strB[] = {033, '[', 'B', '\0'};
1075         static const char strC[] = {033, '[', 'C', '\0'};
1076         static const char strD[] = {033, '[', 'D', '\0'};
1077         static const char strH[] = {033, '[', 'H', '\0'};
1078         static const char strF[] = {033, '[', 'F', '\0'};
1079         static const char stOA[] = {033, 'O', 'A', '\0'};
1080         static const char stOB[] = {033, 'O', 'B', '\0'};
1081         static const char stOC[] = {033, 'O', 'C', '\0'};
1082         static const char stOD[] = {033, 'O', 'D', '\0'};
1083         static const char stOH[] = {033, 'O', 'H', '\0'};
1084         static const char stOF[] = {033, 'O', 'F', '\0'};
1085
1086         key_add(el, strA, &arrow[A_K_UP].fun, arrow[A_K_UP].type);
1087         key_add(el, strB, &arrow[A_K_DN].fun, arrow[A_K_DN].type);
1088         key_add(el, strC, &arrow[A_K_RT].fun, arrow[A_K_RT].type);
1089         key_add(el, strD, &arrow[A_K_LT].fun, arrow[A_K_LT].type);
1090         key_add(el, strH, &arrow[A_K_HO].fun, arrow[A_K_HO].type);
1091         key_add(el, strF, &arrow[A_K_EN].fun, arrow[A_K_EN].type);
1092         key_add(el, stOA, &arrow[A_K_UP].fun, arrow[A_K_UP].type);
1093         key_add(el, stOB, &arrow[A_K_DN].fun, arrow[A_K_DN].type);
1094         key_add(el, stOC, &arrow[A_K_RT].fun, arrow[A_K_RT].type);
1095         key_add(el, stOD, &arrow[A_K_LT].fun, arrow[A_K_LT].type);
1096         key_add(el, stOH, &arrow[A_K_HO].fun, arrow[A_K_HO].type);
1097         key_add(el, stOF, &arrow[A_K_EN].fun, arrow[A_K_EN].type);
1098
1099         if (el->el_map.type == MAP_VI) {
1100                 key_add(el, &strA[1], &arrow[A_K_UP].fun, arrow[A_K_UP].type);
1101                 key_add(el, &strB[1], &arrow[A_K_DN].fun, arrow[A_K_DN].type);
1102                 key_add(el, &strC[1], &arrow[A_K_RT].fun, arrow[A_K_RT].type);
1103                 key_add(el, &strD[1], &arrow[A_K_LT].fun, arrow[A_K_LT].type);
1104                 key_add(el, &strH[1], &arrow[A_K_HO].fun, arrow[A_K_HO].type);
1105                 key_add(el, &strF[1], &arrow[A_K_EN].fun, arrow[A_K_EN].type);
1106                 key_add(el, &stOA[1], &arrow[A_K_UP].fun, arrow[A_K_UP].type);
1107                 key_add(el, &stOB[1], &arrow[A_K_DN].fun, arrow[A_K_DN].type);
1108                 key_add(el, &stOC[1], &arrow[A_K_RT].fun, arrow[A_K_RT].type);
1109                 key_add(el, &stOD[1], &arrow[A_K_LT].fun, arrow[A_K_LT].type);
1110                 key_add(el, &stOH[1], &arrow[A_K_HO].fun, arrow[A_K_HO].type);
1111                 key_add(el, &stOF[1], &arrow[A_K_EN].fun, arrow[A_K_EN].type);
1112         }
1113 }
1114
1115
1116 /* term_set_arrow():
1117  *      Set an arrow key binding
1118  */
1119 protected int
1120 term_set_arrow(EditLine *el, const char *name, key_value_t *fun, int type)
1121 {
1122         fkey_t *arrow = el->el_term.t_fkey;
1123         int i;
1124
1125         for (i = 0; i < A_K_NKEYS; i++)
1126                 if (strcmp(name, arrow[i].name) == 0) {
1127                         arrow[i].fun = *fun;
1128                         arrow[i].type = type;
1129                         return (0);
1130                 }
1131         return (-1);
1132 }
1133
1134
1135 /* term_clear_arrow():
1136  *      Clear an arrow key binding
1137  */
1138 protected int
1139 term_clear_arrow(EditLine *el, const char *name)
1140 {
1141         fkey_t *arrow = el->el_term.t_fkey;
1142         int i;
1143
1144         for (i = 0; i < A_K_NKEYS; i++)
1145                 if (strcmp(name, arrow[i].name) == 0) {
1146                         arrow[i].type = XK_NOD;
1147                         return (0);
1148                 }
1149         return (-1);
1150 }
1151
1152
1153 /* term_print_arrow():
1154  *      Print the arrow key bindings
1155  */
1156 protected void
1157 term_print_arrow(EditLine *el, const char *name)
1158 {
1159         int i;
1160         fkey_t *arrow = el->el_term.t_fkey;
1161
1162         for (i = 0; i < A_K_NKEYS; i++)
1163                 if (*name == '\0' || strcmp(name, arrow[i].name) == 0)
1164                         if (arrow[i].type != XK_NOD)
1165                                 key_kprint(el, arrow[i].name, &arrow[i].fun,
1166                                     arrow[i].type);
1167 }
1168
1169
1170 /* term_bind_arrow():
1171  *      Bind the arrow keys
1172  */
1173 protected void
1174 term_bind_arrow(EditLine *el)
1175 {
1176         el_action_t *map;
1177         const el_action_t *dmap;
1178         int i, j;
1179         char *p;
1180         fkey_t *arrow = el->el_term.t_fkey;
1181
1182         /* Check if the components needed are initialized */
1183         if (el->el_term.t_buf == NULL || el->el_map.key == NULL)
1184                 return;
1185
1186         map = el->el_map.type == MAP_VI ? el->el_map.alt : el->el_map.key;
1187         dmap = el->el_map.type == MAP_VI ? el->el_map.vic : el->el_map.emacs;
1188
1189         term_reset_arrow(el);
1190
1191         for (i = 0; i < A_K_NKEYS; i++) {
1192                 p = el->el_term.t_str[arrow[i].key];
1193                 if (p && *p) {
1194                         j = (unsigned char) *p;
1195                         /*
1196                          * Assign the arrow keys only if:
1197                          *
1198                          * 1. They are multi-character arrow keys and the user
1199                          *    has not re-assigned the leading character, or
1200                          *    has re-assigned the leading character to be
1201                          *        ED_SEQUENCE_LEAD_IN
1202                          * 2. They are single arrow keys pointing to an
1203                          *    unassigned key.
1204                          */
1205                         if (arrow[i].type == XK_NOD)
1206                                 key_clear(el, map, p);
1207                         else {
1208                                 if (p[1] && (dmap[j] == map[j] ||
1209                                         map[j] == ED_SEQUENCE_LEAD_IN)) {
1210                                         key_add(el, p, &arrow[i].fun,
1211                                             arrow[i].type);
1212                                         map[j] = ED_SEQUENCE_LEAD_IN;
1213                                 } else if (map[j] == ED_UNASSIGNED) {
1214                                         key_clear(el, map, p);
1215                                         if (arrow[i].type == XK_CMD)
1216                                                 map[j] = arrow[i].fun.cmd;
1217                                         else
1218                                                 key_add(el, p, &arrow[i].fun,
1219                                                     arrow[i].type);
1220                                 }
1221                         }
1222                 }
1223         }
1224 }
1225
1226
1227 /* term__putc():
1228  *      Add a character
1229  */
1230 protected int
1231 term__putc(int c)
1232 {
1233
1234         return (fputc(c, term_outfile));
1235 }
1236
1237
1238 /* term__flush():
1239  *      Flush output
1240  */
1241 protected void
1242 term__flush(void)
1243 {
1244
1245         (void) fflush(term_outfile);
1246 }
1247
1248
1249 /* term_telltc():
1250  *      Print the current termcap characteristics
1251  */
1252 protected int
1253 /*ARGSUSED*/
1254 term_telltc(EditLine *el, int argc __attribute__((__unused__)), 
1255     const char **argv __attribute__((__unused__)))
1256 {
1257         const struct termcapstr *t;
1258         char **ts;
1259         char upbuf[EL_BUFSIZ];
1260
1261         (void) fprintf(el->el_outfile, "\n\tYour terminal has the\n");
1262         (void) fprintf(el->el_outfile, "\tfollowing characteristics:\n\n");
1263         (void) fprintf(el->el_outfile, "\tIt has %d columns and %d lines\n",
1264             Val(T_co), Val(T_li));
1265         (void) fprintf(el->el_outfile,
1266             "\tIt has %s meta key\n", EL_HAS_META ? "a" : "no");
1267         (void) fprintf(el->el_outfile,
1268             "\tIt can%suse tabs\n", EL_CAN_TAB ? " " : "not ");
1269         (void) fprintf(el->el_outfile, "\tIt %s automatic margins\n",
1270             EL_HAS_AUTO_MARGINS ? "has" : "does not have");
1271         if (EL_HAS_AUTO_MARGINS)
1272                 (void) fprintf(el->el_outfile, "\tIt %s magic margins\n",
1273                     EL_HAS_MAGIC_MARGINS ? "has" : "does not have");
1274
1275         for (t = tstr, ts = el->el_term.t_str; t->name != NULL; t++, ts++)
1276                 (void) fprintf(el->el_outfile, "\t%25s (%s) == %s\n",
1277                     t->long_name,
1278                     t->name, *ts && **ts ?
1279                     key__decode_str(*ts, upbuf, "") : "(empty)");
1280         (void) fputc('\n', el->el_outfile);
1281         return (0);
1282 }
1283
1284
1285 /* term_settc():
1286  *      Change the current terminal characteristics
1287  */
1288 protected int
1289 /*ARGSUSED*/
1290 term_settc(EditLine *el, int argc __attribute__((__unused__)),
1291     const char **argv)
1292 {
1293         const struct termcapstr *ts;
1294         const struct termcapval *tv;
1295         const char *what, *how;
1296
1297         if (argv == NULL || argv[1] == NULL || argv[2] == NULL)
1298                 return (-1);
1299
1300         what = argv[1];
1301         how = argv[2];
1302
1303         /*
1304          * Do the strings first
1305          */
1306         for (ts = tstr; ts->name != NULL; ts++)
1307                 if (strcmp(ts->name, what) == 0)
1308                         break;
1309
1310         if (ts->name != NULL) {
1311                 term_alloc(el, ts, how);
1312                 term_setflags(el);
1313                 return (0);
1314         }
1315         /*
1316          * Do the numeric ones second
1317          */
1318         for (tv = tval; tv->name != NULL; tv++)
1319                 if (strcmp(tv->name, what) == 0)
1320                         break;
1321
1322         if (tv->name != NULL) {
1323                 if (tv == &tval[T_pt] || tv == &tval[T_km] ||
1324                     tv == &tval[T_am] || tv == &tval[T_xn]) {
1325                         if (strcmp(how, "yes") == 0)
1326                                 el->el_term.t_val[tv - tval] = 1;
1327                         else if (strcmp(how, "no") == 0)
1328                                 el->el_term.t_val[tv - tval] = 0;
1329                         else {
1330                                 (void) fprintf(el->el_errfile,
1331                                     "settc: Bad value `%s'.\n", how);
1332                                 return (-1);
1333                         }
1334                         term_setflags(el);
1335                         if (term_change_size(el, Val(T_li), Val(T_co)) == -1)
1336                                 return (-1);
1337                         return (0);
1338                 } else {
1339                         long i;
1340                         char *ep;
1341
1342                         i = strtol(how, &ep, 10);
1343                         if (*ep != '\0') {
1344                                 (void) fprintf(el->el_errfile,
1345                                     "settc: Bad value `%s'.\n", how);
1346                                 return (-1);
1347                         }
1348                         el->el_term.t_val[tv - tval] = (int) i;
1349                         el->el_term.t_size.v = Val(T_co);
1350                         el->el_term.t_size.h = Val(T_li);
1351                         if (tv == &tval[T_co] || tv == &tval[T_li])
1352                                 if (term_change_size(el, Val(T_li), Val(T_co))
1353                                     == -1)
1354                                         return (-1);
1355                         return (0);
1356                 }
1357         }
1358         return (-1);
1359 }
1360
1361
1362 /* term_echotc():
1363  *      Print the termcap string out with variable substitution
1364  */
1365 protected int
1366 /*ARGSUSED*/
1367 term_echotc(EditLine *el, int argc __attribute__((__unused__)),
1368     const char **argv)
1369 {
1370         char *cap, *scap, *ep;
1371         int arg_need, arg_cols, arg_rows;
1372         int verbose = 0, silent = 0;
1373         char *area;
1374         static const char fmts[] = "%s\n", fmtd[] = "%d\n";
1375         const struct termcapstr *t;
1376         char buf[TC_BUFSIZE];
1377         long i;
1378
1379         area = buf;
1380
1381         if (argv == NULL || argv[1] == NULL)
1382                 return (-1);
1383         argv++;
1384
1385         if (argv[0][0] == '-') {
1386                 switch (argv[0][1]) {
1387                 case 'v':
1388                         verbose = 1;
1389                         break;
1390                 case 's':
1391                         silent = 1;
1392                         break;
1393                 default:
1394                         /* stderror(ERR_NAME | ERR_TCUSAGE); */
1395                         break;
1396                 }
1397                 argv++;
1398         }
1399         if (!*argv || *argv[0] == '\0')
1400                 return (0);
1401         if (strcmp(*argv, "tabs") == 0) {
1402                 (void) fprintf(el->el_outfile, fmts, EL_CAN_TAB ? "yes" : "no");
1403                 return (0);
1404         } else if (strcmp(*argv, "meta") == 0) {
1405                 (void) fprintf(el->el_outfile, fmts, Val(T_km) ? "yes" : "no");
1406                 return (0);
1407         } else if (strcmp(*argv, "xn") == 0) {
1408                 (void) fprintf(el->el_outfile, fmts, EL_HAS_MAGIC_MARGINS ?
1409                     "yes" : "no");
1410                 return (0);
1411         } else if (strcmp(*argv, "am") == 0) {
1412                 (void) fprintf(el->el_outfile, fmts, EL_HAS_AUTO_MARGINS ?
1413                     "yes" : "no");
1414                 return (0);
1415         } else if (strcmp(*argv, "baud") == 0) {
1416 #ifdef notdef
1417                 int i;
1418
1419                 for (i = 0; baud_rate[i].b_name != NULL; i++)
1420                         if (el->el_tty.t_speed == baud_rate[i].b_rate) {
1421                                 (void) fprintf(el->el_outfile, fmts,
1422                                     baud_rate[i].b_name);
1423                                 return (0);
1424                         }
1425                 (void) fprintf(el->el_outfile, fmtd, 0);
1426 #else
1427                 (void) fprintf(el->el_outfile, fmtd, (int)el->el_tty.t_speed);
1428 #endif
1429                 return (0);
1430         } else if (strcmp(*argv, "rows") == 0 || strcmp(*argv, "lines") == 0) {
1431                 (void) fprintf(el->el_outfile, fmtd, Val(T_li));
1432                 return (0);
1433         } else if (strcmp(*argv, "cols") == 0) {
1434                 (void) fprintf(el->el_outfile, fmtd, Val(T_co));
1435                 return (0);
1436         }
1437         /*
1438          * Try to use our local definition first
1439          */
1440         scap = NULL;
1441         for (t = tstr; t->name != NULL; t++)
1442                 if (strcmp(t->name, *argv) == 0) {
1443                         scap = el->el_term.t_str[t - tstr];
1444                         break;
1445                 }
1446         if (t->name == NULL) {
1447                 /* XXX: some systems tgetstr needs non const */
1448                 scap = tgetstr(strchr(*argv, **argv), &area);
1449         }
1450         if (!scap || scap[0] == '\0') {
1451                 if (!silent)
1452                         (void) fprintf(el->el_errfile,
1453                             "echotc: Termcap parameter `%s' not found.\n",
1454                             *argv);
1455                 return (-1);
1456         }
1457         /*
1458          * Count home many values we need for this capability.
1459          */
1460         for (cap = scap, arg_need = 0; *cap; cap++)
1461                 if (*cap == '%')
1462                         switch (*++cap) {
1463                         case 'd':
1464                         case '2':
1465                         case '3':
1466                         case '.':
1467                         case '+':
1468                                 arg_need++;
1469                                 break;
1470                         case '%':
1471                         case '>':
1472                         case 'i':
1473                         case 'r':
1474                         case 'n':
1475                         case 'B':
1476                         case 'D':
1477                                 break;
1478                         default:
1479                                 /*
1480                                  * hpux has lot's of them...
1481                                  */
1482                                 if (verbose)
1483                                         (void) fprintf(el->el_errfile,
1484                                 "echotc: Warning: unknown termcap %% `%c'.\n",
1485                                             *cap);
1486                                 /* This is bad, but I won't complain */
1487                                 break;
1488                         }
1489
1490         switch (arg_need) {
1491         case 0:
1492                 argv++;
1493                 if (*argv && *argv[0]) {
1494                         if (!silent)
1495                                 (void) fprintf(el->el_errfile,
1496                                     "echotc: Warning: Extra argument `%s'.\n",
1497                                     *argv);
1498                         return (-1);
1499                 }
1500                 (void) tputs(scap, 1, term__putc);
1501                 break;
1502         case 1:
1503                 argv++;
1504                 if (!*argv || *argv[0] == '\0') {
1505                         if (!silent)
1506                                 (void) fprintf(el->el_errfile,
1507                                     "echotc: Warning: Missing argument.\n");
1508                         return (-1);
1509                 }
1510                 arg_cols = 0;
1511                 i = strtol(*argv, &ep, 10);
1512                 if (*ep != '\0' || i < 0) {
1513                         if (!silent)
1514                                 (void) fprintf(el->el_errfile,
1515                                     "echotc: Bad value `%s' for rows.\n",
1516                                     *argv);
1517                         return (-1);
1518                 }
1519                 arg_rows = (int) i;
1520                 argv++;
1521                 if (*argv && *argv[0]) {
1522                         if (!silent)
1523                                 (void) fprintf(el->el_errfile,
1524                                     "echotc: Warning: Extra argument `%s'.\n",
1525                                     *argv);
1526                         return (-1);
1527                 }
1528                 (void) tputs(tgoto(scap, arg_cols, arg_rows), 1, term__putc);
1529                 break;
1530         default:
1531                 /* This is wrong, but I will ignore it... */
1532                 if (verbose)
1533                         (void) fprintf(el->el_errfile,
1534                          "echotc: Warning: Too many required arguments (%d).\n",
1535                             arg_need);
1536                 /* FALLTHROUGH */
1537         case 2:
1538                 argv++;
1539                 if (!*argv || *argv[0] == '\0') {
1540                         if (!silent)
1541                                 (void) fprintf(el->el_errfile,
1542                                     "echotc: Warning: Missing argument.\n");
1543                         return (-1);
1544                 }
1545                 i = strtol(*argv, &ep, 10);
1546                 if (*ep != '\0' || i < 0) {
1547                         if (!silent)
1548                                 (void) fprintf(el->el_errfile,
1549                                     "echotc: Bad value `%s' for cols.\n",
1550                                     *argv);
1551                         return (-1);
1552                 }
1553                 arg_cols = (int) i;
1554                 argv++;
1555                 if (!*argv || *argv[0] == '\0') {
1556                         if (!silent)
1557                                 (void) fprintf(el->el_errfile,
1558                                     "echotc: Warning: Missing argument.\n");
1559                         return (-1);
1560                 }
1561                 i = strtol(*argv, &ep, 10);
1562                 if (*ep != '\0' || i < 0) {
1563                         if (!silent)
1564                                 (void) fprintf(el->el_errfile,
1565                                     "echotc: Bad value `%s' for rows.\n",
1566                                     *argv);
1567                         return (-1);
1568                 }
1569                 arg_rows = (int) i;
1570                 if (*ep != '\0') {
1571                         if (!silent)
1572                                 (void) fprintf(el->el_errfile,
1573                                     "echotc: Bad value `%s'.\n", *argv);
1574                         return (-1);
1575                 }
1576                 argv++;
1577                 if (*argv && *argv[0]) {
1578                         if (!silent)
1579                                 (void) fprintf(el->el_errfile,
1580                                     "echotc: Warning: Extra argument `%s'.\n",
1581                                     *argv);
1582                         return (-1);
1583                 }
1584                 (void) tputs(tgoto(scap, arg_cols, arg_rows), arg_rows,
1585                     term__putc);
1586                 break;
1587         }
1588         return (0);
1589 }