]> ncurses.scripts.mit.edu Git - ncurses.git/blob - progs/dump_entry.c
ncurses 5.9 - patch 20150307
[ncurses.git] / progs / dump_entry.c
1 /****************************************************************************
2  * Copyright (c) 1998-2013,2014 Free Software Foundation, Inc.              *
3  *                                                                          *
4  * Permission is hereby granted, free of charge, to any person obtaining a  *
5  * copy of this software and associated documentation files (the            *
6  * "Software"), to deal in the Software without restriction, including      *
7  * without limitation the rights to use, copy, modify, merge, publish,      *
8  * distribute, distribute with modifications, sublicense, and/or sell       *
9  * copies of the Software, and to permit persons to whom the Software is    *
10  * furnished to do so, subject to the following conditions:                 *
11  *                                                                          *
12  * The above copyright notice and this permission notice shall be included  *
13  * in all copies or substantial portions of the Software.                   *
14  *                                                                          *
15  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS  *
16  * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF               *
17  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.   *
18  * IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,   *
19  * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR    *
20  * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR    *
21  * THE USE OR OTHER DEALINGS IN THE SOFTWARE.                               *
22  *                                                                          *
23  * Except as contained in this notice, the name(s) of the above copyright   *
24  * holders shall not be used in advertising or otherwise to promote the     *
25  * sale, use or other dealings in this Software without prior written       *
26  * authorization.                                                           *
27  ****************************************************************************/
28
29 /****************************************************************************
30  *  Author: Zeyd M. Ben-Halim <zmbenhal@netcom.com> 1992,1995               *
31  *     and: Eric S. Raymond <esr@snark.thyrsus.com>                         *
32  *     and: Thomas E. Dickey                        1996 on                 *
33  ****************************************************************************/
34
35 #define __INTERNAL_CAPS_VISIBLE
36 #include <progs.priv.h>
37
38 #include "dump_entry.h"
39 #include "termsort.c"           /* this C file is generated */
40 #include <parametrized.h>       /* so is this */
41
42 MODULE_ID("$Id: dump_entry.c,v 1.114 2014/10/18 09:32:54 tom Exp $")
43
44 #define INDENT                  8
45 #define DISCARD(string) string = ABSENT_STRING
46 #define PRINTF (void) printf
47
48 #define OkIndex(index,array) ((int)(index) >= 0 && (int)(index) < (int) SIZEOF(array))
49
50 typedef struct {
51     char *text;
52     size_t used;
53     size_t size;
54 } DYNBUF;
55
56 static int tversion;            /* terminfo version */
57 static int outform;             /* output format to use */
58 static int sortmode;            /* sort mode to use */
59 static int width = 60;          /* max line width for listings */
60 static int height = 65535;      /* max number of lines for listings */
61 static int column;              /* current column, limited by 'width' */
62 static int oldcol;              /* last value of column before wrap */
63 static bool pretty;             /* true if we format if-then-else strings */
64
65 static char *save_sgr;
66
67 static DYNBUF outbuf;
68 static DYNBUF tmpbuf;
69
70 /* indirection pointers for implementing sort and display modes */
71 static const PredIdx *bool_indirect, *num_indirect, *str_indirect;
72 static NCURSES_CONST char *const *bool_names;
73 static NCURSES_CONST char *const *num_names;
74 static NCURSES_CONST char *const *str_names;
75
76 static const char *separator = "", *trailer = "";
77
78 /* cover various ports and variants of terminfo */
79 #define V_ALLCAPS       0       /* all capabilities (SVr4, XSI, ncurses) */
80 #define V_SVR1          1       /* SVR1, Ultrix */
81 #define V_HPUX          2       /* HP/UX */
82 #define V_AIX           3       /* AIX */
83 #define V_BSD           4       /* BSD */
84
85 #if NCURSES_XNAMES
86 #define OBSOLETE(n) (!_nc_user_definable && (n[0] == 'O' && n[1] == 'T'))
87 #else
88 #define OBSOLETE(n) (n[0] == 'O' && n[1] == 'T')
89 #endif
90
91 #define isObsolete(f,n) ((f == F_TERMINFO || f == F_VARIABLE) && OBSOLETE(n))
92
93 #if NCURSES_XNAMES
94 #define BoolIndirect(j) ((j >= BOOLCOUNT) ? (j) : ((sortmode == S_NOSORT) ? j : bool_indirect[j]))
95 #define NumIndirect(j)  ((j >= NUMCOUNT)  ? (j) : ((sortmode == S_NOSORT) ? j : num_indirect[j]))
96 #define StrIndirect(j)  ((j >= STRCOUNT)  ? (j) : ((sortmode == S_NOSORT) ? j : str_indirect[j]))
97 #else
98 #define BoolIndirect(j) ((sortmode == S_NOSORT) ? (j) : bool_indirect[j])
99 #define NumIndirect(j)  ((sortmode == S_NOSORT) ? (j) : num_indirect[j])
100 #define StrIndirect(j)  ((sortmode == S_NOSORT) ? (j) : str_indirect[j])
101 #endif
102
103 static void failed(const char *) GCC_NORETURN;
104
105 static void
106 failed(const char *s)
107 {
108     perror(s);
109     ExitProgram(EXIT_FAILURE);
110 }
111
112 static void
113 strncpy_DYN(DYNBUF * dst, const char *src, size_t need)
114 {
115     size_t want = need + dst->used + 1;
116     if (want > dst->size) {
117         dst->size += (want + 1024);     /* be generous */
118         dst->text = typeRealloc(char, dst->size, dst->text);
119         if (dst->text == 0)
120             failed("strncpy_DYN");
121     }
122     (void) strncpy(dst->text + dst->used, src, need);
123     dst->used += need;
124     dst->text[dst->used] = 0;
125 }
126
127 static void
128 strcpy_DYN(DYNBUF * dst, const char *src)
129 {
130     if (src == 0) {
131         dst->used = 0;
132         strcpy_DYN(dst, "");
133     } else {
134         strncpy_DYN(dst, src, strlen(src));
135     }
136 }
137
138 #if NO_LEAKS
139 static void
140 free_DYN(DYNBUF * p)
141 {
142     if (p->text != 0)
143         free(p->text);
144     p->text = 0;
145     p->size = 0;
146     p->used = 0;
147 }
148
149 void
150 _nc_leaks_dump_entry(void)
151 {
152     free_DYN(&outbuf);
153     free_DYN(&tmpbuf);
154 }
155 #endif
156
157 #define NameTrans(check,result) \
158             if (OkIndex(np->nte_index, check) \
159                 && check[np->nte_index]) \
160                 return (result[np->nte_index])
161
162 NCURSES_CONST char *
163 nametrans(const char *name)
164 /* translate a capability name from termcap to terminfo */
165 {
166     const struct name_table_entry *np;
167
168     if ((np = _nc_find_entry(name, _nc_get_hash_table(0))) != 0)
169         switch (np->nte_type) {
170         case BOOLEAN:
171             NameTrans(bool_from_termcap, boolcodes);
172             break;
173
174         case NUMBER:
175             NameTrans(num_from_termcap, numcodes);
176             break;
177
178         case STRING:
179             NameTrans(str_from_termcap, strcodes);
180             break;
181         }
182
183     return (0);
184 }
185
186 void
187 dump_init(const char *version,
188           int mode,
189           int sort,
190           int twidth,
191           int theight,
192           unsigned traceval,
193           bool formatted)
194 /* set up for entry display */
195 {
196     width = twidth;
197     height = theight;
198     pretty = formatted;
199
200     /* versions */
201     if (version == 0)
202         tversion = V_ALLCAPS;
203     else if (!strcmp(version, "SVr1") || !strcmp(version, "SVR1")
204              || !strcmp(version, "Ultrix"))
205         tversion = V_SVR1;
206     else if (!strcmp(version, "HP"))
207         tversion = V_HPUX;
208     else if (!strcmp(version, "AIX"))
209         tversion = V_AIX;
210     else if (!strcmp(version, "BSD"))
211         tversion = V_BSD;
212     else
213         tversion = V_ALLCAPS;
214
215     /* implement display modes */
216     switch (outform = mode) {
217     case F_LITERAL:
218     case F_TERMINFO:
219         bool_names = boolnames;
220         num_names = numnames;
221         str_names = strnames;
222         separator = (twidth > 0 && theight > 1) ? ", " : ",";
223         trailer = "\n\t";
224         break;
225
226     case F_VARIABLE:
227         bool_names = boolfnames;
228         num_names = numfnames;
229         str_names = strfnames;
230         separator = (twidth > 0 && theight > 1) ? ", " : ",";
231         trailer = "\n\t";
232         break;
233
234     case F_TERMCAP:
235     case F_TCONVERR:
236         bool_names = boolcodes;
237         num_names = numcodes;
238         str_names = strcodes;
239         separator = ":";
240         trailer = "\\\n\t:";
241         break;
242     }
243
244     /* implement sort modes */
245     switch (sortmode = sort) {
246     case S_NOSORT:
247         if (traceval)
248             (void) fprintf(stderr,
249                            "%s: sorting by term structure order\n", _nc_progname);
250         break;
251
252     case S_TERMINFO:
253         if (traceval)
254             (void) fprintf(stderr,
255                            "%s: sorting by terminfo name order\n", _nc_progname);
256         bool_indirect = bool_terminfo_sort;
257         num_indirect = num_terminfo_sort;
258         str_indirect = str_terminfo_sort;
259         break;
260
261     case S_VARIABLE:
262         if (traceval)
263             (void) fprintf(stderr,
264                            "%s: sorting by C variable order\n", _nc_progname);
265         bool_indirect = bool_variable_sort;
266         num_indirect = num_variable_sort;
267         str_indirect = str_variable_sort;
268         break;
269
270     case S_TERMCAP:
271         if (traceval)
272             (void) fprintf(stderr,
273                            "%s: sorting by termcap name order\n", _nc_progname);
274         bool_indirect = bool_termcap_sort;
275         num_indirect = num_termcap_sort;
276         str_indirect = str_termcap_sort;
277         break;
278     }
279
280     if (traceval)
281         (void) fprintf(stderr,
282                        "%s: width = %d, tversion = %d, outform = %d\n",
283                        _nc_progname, width, tversion, outform);
284 }
285
286 static TERMTYPE *cur_type;
287
288 static int
289 dump_predicate(PredType type, PredIdx idx)
290 /* predicate function to use for ordinary decompilation */
291 {
292     switch (type) {
293     case BOOLEAN:
294         return (cur_type->Booleans[idx] == FALSE)
295             ? FAIL : cur_type->Booleans[idx];
296
297     case NUMBER:
298         return (cur_type->Numbers[idx] == ABSENT_NUMERIC)
299             ? FAIL : cur_type->Numbers[idx];
300
301     case STRING:
302         return (cur_type->Strings[idx] != ABSENT_STRING)
303             ? (int) TRUE : FAIL;
304     }
305
306     return (FALSE);             /* pacify compiler */
307 }
308
309 static void set_obsolete_termcaps(TERMTYPE *tp);
310
311 /* is this the index of a function key string? */
312 #define FNKEY(i) \
313     (((i) >= STR_IDX(key_f0) && \
314       (i) <= STR_IDX(key_f9)) || \
315      ((i) >= STR_IDX(key_f11) && \
316       (i) <= STR_IDX(key_f63)))
317
318 /*
319  * If we configure with a different Caps file, the offsets into the arrays
320  * will change.  So we use an address expression.
321  */
322 #define BOOL_IDX(name) (PredType) (&(name) - &(CUR Booleans[0]))
323 #define NUM_IDX(name)  (PredType) (&(name) - &(CUR Numbers[0]))
324 #define STR_IDX(name)  (PredType) (&(name) - &(CUR Strings[0]))
325
326 static bool
327 version_filter(PredType type, PredIdx idx)
328 /* filter out capabilities we may want to suppress */
329 {
330     switch (tversion) {
331     case V_ALLCAPS:             /* SVr4, XSI Curses */
332         return (TRUE);
333
334     case V_SVR1:                /* System V Release 1, Ultrix */
335         switch (type) {
336         case BOOLEAN:
337             return ((idx <= BOOL_IDX(xon_xoff)) ? TRUE : FALSE);
338         case NUMBER:
339             return ((idx <= NUM_IDX(width_status_line)) ? TRUE : FALSE);
340         case STRING:
341             return ((idx <= STR_IDX(prtr_non)) ? TRUE : FALSE);
342         }
343         break;
344
345     case V_HPUX:                /* Hewlett-Packard */
346         switch (type) {
347         case BOOLEAN:
348             return ((idx <= BOOL_IDX(xon_xoff)) ? TRUE : FALSE);
349         case NUMBER:
350             return ((idx <= NUM_IDX(label_width)) ? TRUE : FALSE);
351         case STRING:
352             if (idx <= STR_IDX(prtr_non))
353                 return (TRUE);
354             else if (FNKEY(idx))        /* function keys */
355                 return (TRUE);
356             else if (idx == STR_IDX(plab_norm)
357                      || idx == STR_IDX(label_on)
358                      || idx == STR_IDX(label_off))
359                 return (TRUE);
360             else
361                 return (FALSE);
362         }
363         break;
364
365     case V_AIX:         /* AIX */
366         switch (type) {
367         case BOOLEAN:
368             return ((idx <= BOOL_IDX(xon_xoff)) ? TRUE : FALSE);
369         case NUMBER:
370             return ((idx <= NUM_IDX(width_status_line)) ? TRUE : FALSE);
371         case STRING:
372             if (idx <= STR_IDX(prtr_non))
373                 return (TRUE);
374             else if (FNKEY(idx))        /* function keys */
375                 return (TRUE);
376             else
377                 return (FALSE);
378         }
379         break;
380
381 #define is_termcap(type) (OkIndex(idx, type##_from_termcap) && \
382                           type##_from_termcap[idx])
383
384     case V_BSD:         /* BSD */
385         switch (type) {
386         case BOOLEAN:
387             return is_termcap(bool);
388         case NUMBER:
389             return is_termcap(num);
390         case STRING:
391             return is_termcap(str);
392         }
393         break;
394     }
395
396     return (FALSE);             /* pacify the compiler */
397 }
398
399 static void
400 trim_trailing(void)
401 {
402     while (outbuf.used > 0 && outbuf.text[outbuf.used - 1] == ' ')
403         outbuf.text[--outbuf.used] = '\0';
404 }
405
406 static void
407 force_wrap(void)
408 {
409     oldcol = column;
410     trim_trailing();
411     strcpy_DYN(&outbuf, trailer);
412     column = INDENT;
413 }
414
415 static void
416 wrap_concat(const char *src)
417 {
418     size_t need = strlen(src);
419     size_t want = strlen(separator) + need;
420
421     if (column > INDENT
422         && column + (int) want > width) {
423         force_wrap();
424     }
425     strcpy_DYN(&outbuf, src);
426     strcpy_DYN(&outbuf, separator);
427     column += (int) need;
428 }
429
430 #define IGNORE_SEP_TRAIL(first,last,sep_trail) \
431         if ((size_t)(last - first) > sizeof(sep_trail)-1 \
432          && !strncmp(first, sep_trail, sizeof(sep_trail)-1)) \
433                 first += sizeof(sep_trail)-2
434
435 /* Returns the nominal length of the buffer assuming it is termcap format,
436  * i.e., the continuation sequence is treated as a single character ":".
437  *
438  * There are several implementations of termcap which read the text into a
439  * fixed-size buffer.  Generally they strip the newlines from the text, but may
440  * not do it until after the buffer is read.  Also, "tc=" resolution may be
441  * expanded in the same buffer.  This function is useful for measuring the size
442  * of the best fixed-buffer implementation; the worst case may be much worse.
443  */
444 #ifdef TEST_TERMCAP_LENGTH
445 static int
446 termcap_length(const char *src)
447 {
448     static const char pattern[] = ":\\\n\t:";
449
450     int len = 0;
451     const char *const t = src + strlen(src);
452
453     while (*src != '\0') {
454         IGNORE_SEP_TRAIL(src, t, pattern);
455         src++;
456         len++;
457     }
458     return len;
459 }
460 #else
461 #define termcap_length(src) strlen(src)
462 #endif
463
464 static void
465 indent_DYN(DYNBUF * buffer, int level)
466 {
467     int n;
468
469     for (n = 0; n < level; n++)
470         strncpy_DYN(buffer, "\t", (size_t) 1);
471 }
472
473 bool
474 has_params(const char *src)
475 {
476     bool result = FALSE;
477     int len = (int) strlen(src);
478     int n;
479     bool ifthen = FALSE;
480     bool params = FALSE;
481
482     for (n = 0; n < len - 1; ++n) {
483         if (!strncmp(src + n, "%p", (size_t) 2)) {
484             params = TRUE;
485         } else if (!strncmp(src + n, "%;", (size_t) 2)) {
486             ifthen = TRUE;
487             result = params;
488             break;
489         }
490     }
491     if (!ifthen) {
492         result = ((len > 50) && params);
493     }
494     return result;
495 }
496
497 static char *
498 fmt_complex(TERMTYPE *tterm, const char *capability, char *src, int level)
499 {
500     bool percent = FALSE;
501     bool params = has_params(src);
502
503     while (*src != '\0') {
504         switch (*src) {
505         case '\\':
506             percent = FALSE;
507             strncpy_DYN(&tmpbuf, src++, (size_t) 1);
508             break;
509         case '%':
510             percent = TRUE;
511             break;
512         case '?':               /* "if" */
513         case 't':               /* "then" */
514         case 'e':               /* "else" */
515             if (percent) {
516                 percent = FALSE;
517                 tmpbuf.text[tmpbuf.used - 1] = '\n';
518                 /* treat a "%e" as else-if, on the same level */
519                 if (*src == 'e') {
520                     indent_DYN(&tmpbuf, level);
521                     strncpy_DYN(&tmpbuf, "%", (size_t) 1);
522                     strncpy_DYN(&tmpbuf, src, (size_t) 1);
523                     src++;
524                     params = has_params(src);
525                     if (!params && *src != '\0' && *src != '%') {
526                         strncpy_DYN(&tmpbuf, "\n", (size_t) 1);
527                         indent_DYN(&tmpbuf, level + 1);
528                     }
529                 } else {
530                     indent_DYN(&tmpbuf, level + 1);
531                     strncpy_DYN(&tmpbuf, "%", (size_t) 1);
532                     strncpy_DYN(&tmpbuf, src, (size_t) 1);
533                     if (*src++ == '?') {
534                         src = fmt_complex(tterm, capability, src, level + 1);
535                         if (*src != '\0' && *src != '%') {
536                             strncpy_DYN(&tmpbuf, "\n", (size_t) 1);
537                             indent_DYN(&tmpbuf, level + 1);
538                         }
539                     } else if (level == 1) {
540                         _nc_warning("%s: %%%c without %%? in %s",
541                                     _nc_first_name(tterm->term_names),
542                                     *src, capability);
543                     }
544                 }
545                 continue;
546             }
547             break;
548         case ';':               /* "endif" */
549             if (percent) {
550                 percent = FALSE;
551                 if (level > 1) {
552                     tmpbuf.text[tmpbuf.used - 1] = '\n';
553                     indent_DYN(&tmpbuf, level);
554                     strncpy_DYN(&tmpbuf, "%", (size_t) 1);
555                     strncpy_DYN(&tmpbuf, src++, (size_t) 1);
556                     if (src[0] == '%'
557                         && src[1] != '\0'
558                         && (strchr("?e;", src[1])) == 0) {
559                         tmpbuf.text[tmpbuf.used++] = '\n';
560                         indent_DYN(&tmpbuf, level);
561                     }
562                     return src;
563                 }
564                 _nc_warning("%s: %%; without %%? in %s",
565                             _nc_first_name(tterm->term_names),
566                             capability);
567             }
568             break;
569         case 'p':
570             if (percent && params) {
571                 tmpbuf.text[tmpbuf.used - 1] = '\n';
572                 indent_DYN(&tmpbuf, level + 1);
573                 strncpy_DYN(&tmpbuf, "%", (size_t) 1);
574             }
575             params = FALSE;
576             percent = FALSE;
577             break;
578         case ' ':
579             strncpy_DYN(&tmpbuf, "\\s", (size_t) 2);
580             ++src;
581             continue;
582         default:
583             percent = FALSE;
584             break;
585         }
586         strncpy_DYN(&tmpbuf, src++, (size_t) 1);
587     }
588     return src;
589 }
590
591 #define SAME_CAP(n,cap) (&tterm->Strings[n] == &cap)
592 #define EXTRA_CAP 20
593
594 int
595 fmt_entry(TERMTYPE *tterm,
596           PredFunc pred,
597           int content_only,
598           int suppress_untranslatable,
599           int infodump,
600           int numbers)
601 {
602     PredIdx i, j;
603     char buffer[MAX_TERMINFO_LENGTH + EXTRA_CAP];
604     char *capability;
605     NCURSES_CONST char *name;
606     int predval, len;
607     PredIdx num_bools = 0;
608     PredIdx num_values = 0;
609     PredIdx num_strings = 0;
610     bool outcount = 0;
611
612 #define WRAP_CONCAT     \
613         wrap_concat(buffer); \
614         outcount = TRUE
615
616     len = 12;                   /* terminfo file-header */
617
618     if (pred == 0) {
619         cur_type = tterm;
620         pred = dump_predicate;
621     }
622
623     strcpy_DYN(&outbuf, 0);
624     if (content_only) {
625         column = INDENT;        /* FIXME: workaround to prevent empty lines */
626     } else {
627         strcpy_DYN(&outbuf, tterm->term_names);
628
629         /*
630          * Colon is legal in terminfo descriptions, but not in termcap.
631          */
632         if (!infodump) {
633             char *p = outbuf.text;
634             while (*p) {
635                 if (*p == ':') {
636                     *p = '=';
637                 }
638                 ++p;
639             }
640         }
641         strcpy_DYN(&outbuf, separator);
642         column = (int) outbuf.used;
643         if (height > 1)
644             force_wrap();
645     }
646
647     for_each_boolean(j, tterm) {
648         i = BoolIndirect(j);
649         name = ExtBoolname(tterm, (int) i, bool_names);
650         assert(strlen(name) < sizeof(buffer) - EXTRA_CAP);
651
652         if (!version_filter(BOOLEAN, i))
653             continue;
654         else if (isObsolete(outform, name))
655             continue;
656
657         predval = pred(BOOLEAN, i);
658         if (predval != FAIL) {
659             _nc_STRCPY(buffer, name, sizeof(buffer));
660             if (predval <= 0)
661                 _nc_STRCAT(buffer, "@", sizeof(buffer));
662             else if (i + 1 > num_bools)
663                 num_bools = i + 1;
664             WRAP_CONCAT;
665         }
666     }
667
668     if (column != INDENT && height > 1)
669         force_wrap();
670
671     for_each_number(j, tterm) {
672         i = NumIndirect(j);
673         name = ExtNumname(tterm, (int) i, num_names);
674         assert(strlen(name) < sizeof(buffer) - EXTRA_CAP);
675
676         if (!version_filter(NUMBER, i))
677             continue;
678         else if (isObsolete(outform, name))
679             continue;
680
681         predval = pred(NUMBER, i);
682         if (predval != FAIL) {
683             if (tterm->Numbers[i] < 0) {
684                 _nc_SPRINTF(buffer, _nc_SLIMIT(sizeof(buffer))
685                             "%s@", name);
686             } else {
687                 _nc_SPRINTF(buffer, _nc_SLIMIT(sizeof(buffer))
688                             "%s#%d", name, tterm->Numbers[i]);
689                 if (i + 1 > num_values)
690                     num_values = i + 1;
691             }
692             WRAP_CONCAT;
693         }
694     }
695
696     if (column != INDENT && height > 1)
697         force_wrap();
698
699     len += (int) (num_bools
700                   + num_values * 2
701                   + strlen(tterm->term_names) + 1);
702     if (len & 1)
703         len++;
704
705 #undef CUR
706 #define CUR tterm->
707     if (outform == F_TERMCAP) {
708         if (termcap_reset != ABSENT_STRING) {
709             if (init_3string != ABSENT_STRING
710                 && !strcmp(init_3string, termcap_reset))
711                 DISCARD(init_3string);
712
713             if (reset_2string != ABSENT_STRING
714                 && !strcmp(reset_2string, termcap_reset))
715                 DISCARD(reset_2string);
716         }
717     }
718
719     for_each_string(j, tterm) {
720         i = StrIndirect(j);
721         name = ExtStrname(tterm, (int) i, str_names);
722         assert(strlen(name) < sizeof(buffer) - EXTRA_CAP);
723
724         capability = tterm->Strings[i];
725
726         if (!version_filter(STRING, i))
727             continue;
728         else if (isObsolete(outform, name))
729             continue;
730
731 #if NCURSES_XNAMES
732         /*
733          * Extended names can be longer than 2 characters, but termcap programs
734          * cannot read those (filter them out).
735          */
736         if (outform == F_TERMCAP && (strlen(name) > 2))
737             continue;
738 #endif
739
740         if (outform == F_TERMCAP) {
741             /*
742              * Some older versions of vi want rmir/smir to be defined
743              * for ich/ich1 to work.  If they're not defined, force
744              * them to be output as defined and empty.
745              */
746             if (PRESENT(insert_character) || PRESENT(parm_ich)) {
747                 if (SAME_CAP(i, enter_insert_mode)
748                     && enter_insert_mode == ABSENT_STRING) {
749                     _nc_STRCPY(buffer, "im=", sizeof(buffer));
750                     WRAP_CONCAT;
751                     continue;
752                 }
753
754                 if (SAME_CAP(i, exit_insert_mode)
755                     && exit_insert_mode == ABSENT_STRING) {
756                     _nc_STRCPY(buffer, "ei=", sizeof(buffer));
757                     WRAP_CONCAT;
758                     continue;
759                 }
760             }
761             /*
762              * termcap applications such as screen will be confused if sgr0
763              * is translated to a string containing rmacs.  Filter that out.
764              */
765             if (PRESENT(exit_attribute_mode)) {
766                 if (SAME_CAP(i, exit_attribute_mode)) {
767                     char *trimmed_sgr0;
768                     char *my_sgr = set_attributes;
769
770                     set_attributes = save_sgr;
771
772                     trimmed_sgr0 = _nc_trim_sgr0(tterm);
773                     if (strcmp(capability, trimmed_sgr0))
774                         capability = trimmed_sgr0;
775
776                     set_attributes = my_sgr;
777                 }
778             }
779         }
780
781         predval = pred(STRING, i);
782         buffer[0] = '\0';
783
784         if (predval != FAIL) {
785             if (capability != ABSENT_STRING
786                 && i + 1 > num_strings)
787                 num_strings = i + 1;
788
789             if (!VALID_STRING(capability)) {
790                 _nc_SPRINTF(buffer, _nc_SLIMIT(sizeof(buffer))
791                             "%s@", name);
792                 WRAP_CONCAT;
793             } else if (outform == F_TERMCAP || outform == F_TCONVERR) {
794                 char *srccap = _nc_tic_expand(capability, TRUE, numbers);
795                 int params = (((i < (int) SIZEOF(parametrized)) &&
796                                (i < STRCOUNT))
797                               ? parametrized[i]
798                               : ((*srccap == 'k')
799                                  ? 0
800                                  : has_params(srccap)));
801                 char *cv = _nc_infotocap(name, srccap, params);
802
803                 if (cv == 0) {
804                     if (outform == F_TCONVERR) {
805                         _nc_SPRINTF(buffer, _nc_SLIMIT(sizeof(buffer))
806                                     "%s=!!! %s WILL NOT CONVERT !!!",
807                                     name, srccap);
808                     } else if (suppress_untranslatable) {
809                         continue;
810                     } else {
811                         char *s = srccap, *d = buffer;
812                         _nc_SPRINTF(d, _nc_SLIMIT(sizeof(buffer)) "..%s=", name);
813                         d += strlen(d);
814                         while ((*d = *s++) != 0) {
815                             if (*d == ':') {
816                                 *d++ = '\\';
817                                 *d = ':';
818                             } else if (*d == '\\') {
819                                 *++d = *s++;
820                             }
821                             d++;
822                         }
823                     }
824                 } else {
825                     _nc_SPRINTF(buffer, _nc_SLIMIT(sizeof(buffer))
826                                 "%s=%s", name, cv);
827                 }
828                 len += (int) strlen(capability) + 1;
829                 WRAP_CONCAT;
830             } else {
831                 char *src = _nc_tic_expand(capability,
832                                            outform == F_TERMINFO, numbers);
833
834                 strcpy_DYN(&tmpbuf, 0);
835                 strcpy_DYN(&tmpbuf, name);
836                 strcpy_DYN(&tmpbuf, "=");
837                 if (pretty
838                     && (outform == F_TERMINFO
839                         || outform == F_VARIABLE)) {
840                     fmt_complex(tterm, name, src, 1);
841                 } else {
842                     strcpy_DYN(&tmpbuf, src);
843                 }
844                 len += (int) strlen(capability) + 1;
845                 wrap_concat(tmpbuf.text);
846                 outcount = TRUE;
847             }
848         }
849         /* e.g., trimmed_sgr0 */
850         if (capability != ABSENT_STRING &&
851             capability != CANCELLED_STRING &&
852             capability != tterm->Strings[i])
853             free(capability);
854     }
855     len += (int) (num_strings * 2);
856
857     /*
858      * This piece of code should be an effective inverse of the functions
859      * postprocess_terminfo() and postprocess_terminfo() in parse_entry.c.
860      * Much more work should be done on this to support dumping termcaps.
861      */
862     if (tversion == V_HPUX) {
863         if (VALID_STRING(memory_lock)) {
864             _nc_SPRINTF(buffer, _nc_SLIMIT(sizeof(buffer))
865                         "meml=%s", memory_lock);
866             WRAP_CONCAT;
867         }
868         if (VALID_STRING(memory_unlock)) {
869             _nc_SPRINTF(buffer, _nc_SLIMIT(sizeof(buffer))
870                         "memu=%s", memory_unlock);
871             WRAP_CONCAT;
872         }
873     } else if (tversion == V_AIX) {
874         if (VALID_STRING(acs_chars)) {
875             bool box_ok = TRUE;
876             const char *acstrans = "lqkxjmwuvtn";
877             const char *cp;
878             char *tp, *sp, boxchars[11];
879
880             tp = boxchars;
881             for (cp = acstrans; *cp; cp++) {
882                 sp = (strchr) (acs_chars, *cp);
883                 if (sp)
884                     *tp++ = sp[1];
885                 else {
886                     box_ok = FALSE;
887                     break;
888                 }
889             }
890             tp[0] = '\0';
891
892             if (box_ok) {
893                 char *tmp = _nc_tic_expand(boxchars,
894                                            (outform == F_TERMINFO),
895                                            numbers);
896                 _nc_STRCPY(buffer, "box1=", sizeof(buffer));
897                 while (*tmp != '\0') {
898                     size_t have = strlen(buffer);
899                     size_t next = strlen(tmp);
900                     size_t want = have + next + 1;
901                     size_t last = next;
902                     char save = '\0';
903
904                     /*
905                      * If the expanded string is too long for the buffer,
906                      * chop it off and save the location where we chopped it.
907                      */
908                     if (want >= sizeof(buffer)) {
909                         save = tmp[last];
910                         tmp[last] = '\0';
911                     }
912                     _nc_STRCAT(buffer, tmp, sizeof(buffer));
913
914                     /*
915                      * If we chopped the buffer, replace the missing piece and
916                      * shift everything to append the remainder.
917                      */
918                     if (save != '\0') {
919                         next = 0;
920                         tmp[last] = save;
921                         while ((tmp[next] = tmp[last + next]) != '\0') {
922                             ++next;
923                         }
924                     } else {
925                         break;
926                     }
927                 }
928                 WRAP_CONCAT;
929             }
930         }
931     }
932
933     /*
934      * kludge: trim off trailer to avoid an extra blank line
935      * in infocmp -u output when there are no string differences
936      */
937     if (outcount) {
938         bool trimmed = FALSE;
939         j = (PredIdx) outbuf.used;
940         if (j >= 2
941             && outbuf.text[j - 1] == '\t'
942             && outbuf.text[j - 2] == '\n') {
943             outbuf.used -= 2;
944             trimmed = TRUE;
945         } else if (j >= 4
946                    && outbuf.text[j - 1] == ':'
947                    && outbuf.text[j - 2] == '\t'
948                    && outbuf.text[j - 3] == '\n'
949                    && outbuf.text[j - 4] == '\\') {
950             outbuf.used -= 4;
951             trimmed = TRUE;
952         }
953         if (trimmed) {
954             outbuf.text[outbuf.used] = '\0';
955             column = oldcol;
956             strcpy_DYN(&outbuf, " ");
957         }
958     }
959 #if 0
960     fprintf(stderr, "num_bools = %d\n", num_bools);
961     fprintf(stderr, "num_values = %d\n", num_values);
962     fprintf(stderr, "num_strings = %d\n", num_strings);
963     fprintf(stderr, "term_names=%s, len=%d, strlen(outbuf)=%d, outbuf=%s\n",
964             tterm->term_names, len, outbuf.used, outbuf.text);
965 #endif
966     /*
967      * Here's where we use infodump to trigger a more stringent length check
968      * for termcap-translation purposes.
969      * Return the length of the raw entry, without tc= expansions,
970      * It gives an idea of which entries are deadly to even *scan past*,
971      * as opposed to *use*.
972      */
973     return (infodump ? len : (int) termcap_length(outbuf.text));
974 }
975
976 static bool
977 kill_string(TERMTYPE *tterm, char *cap)
978 {
979     unsigned n;
980     for (n = 0; n < NUM_STRINGS(tterm); ++n) {
981         if (cap == tterm->Strings[n]) {
982             tterm->Strings[n] = ABSENT_STRING;
983             return TRUE;
984         }
985     }
986     return FALSE;
987 }
988
989 static char *
990 find_string(TERMTYPE *tterm, char *name)
991 {
992     PredIdx n;
993     for (n = 0; n < NUM_STRINGS(tterm); ++n) {
994         if (version_filter(STRING, n)
995             && !strcmp(name, strnames[n])) {
996             char *cap = tterm->Strings[n];
997             if (VALID_STRING(cap)) {
998                 return cap;
999             }
1000             break;
1001         }
1002     }
1003     return ABSENT_STRING;
1004 }
1005
1006 /*
1007  * This is used to remove function-key labels from a termcap entry to
1008  * make it smaller.
1009  */
1010 static int
1011 kill_labels(TERMTYPE *tterm, int target)
1012 {
1013     int n;
1014     int result = 0;
1015     char *cap;
1016     char name[10];
1017
1018     for (n = 0; n <= 10; ++n) {
1019         _nc_SPRINTF(name, _nc_SLIMIT(sizeof(name)) "lf%d", n);
1020         if ((cap = find_string(tterm, name)) != ABSENT_STRING
1021             && kill_string(tterm, cap)) {
1022             target -= (int) (strlen(cap) + 5);
1023             ++result;
1024             if (target < 0)
1025                 break;
1026         }
1027     }
1028     return result;
1029 }
1030
1031 /*
1032  * This is used to remove function-key definitions from a termcap entry to
1033  * make it smaller.
1034  */
1035 static int
1036 kill_fkeys(TERMTYPE *tterm, int target)
1037 {
1038     int n;
1039     int result = 0;
1040     char *cap;
1041     char name[10];
1042
1043     for (n = 60; n >= 0; --n) {
1044         _nc_SPRINTF(name, _nc_SLIMIT(sizeof(name)) "kf%d", n);
1045         if ((cap = find_string(tterm, name)) != ABSENT_STRING
1046             && kill_string(tterm, cap)) {
1047             target -= (int) (strlen(cap) + 5);
1048             ++result;
1049             if (target < 0)
1050                 break;
1051         }
1052     }
1053     return result;
1054 }
1055
1056 /*
1057  * Check if the given acsc string is a 1-1 mapping, i.e., just-like-vt100.
1058  * Also, since this is for termcap, we only care about the line-drawing map.
1059  */
1060 #define isLine(c) (strchr("lmkjtuvwqxn", c) != 0)
1061
1062 static bool
1063 one_one_mapping(const char *mapping)
1064 {
1065     bool result = TRUE;
1066
1067     if (mapping != ABSENT_STRING) {
1068         int n = 0;
1069         while (mapping[n] != '\0') {
1070             if (isLine(mapping[n]) &&
1071                 mapping[n] != mapping[n + 1]) {
1072                 result = FALSE;
1073                 break;
1074             }
1075             n += 2;
1076         }
1077     }
1078     return result;
1079 }
1080
1081 #define FMT_ENTRY() \
1082                 fmt_entry(tterm, pred, \
1083                         0, \
1084                         suppress_untranslatable, \
1085                         infodump, numbers)
1086
1087 #define SHOW_WHY PRINTF
1088
1089 static bool
1090 purged_acs(TERMTYPE *tterm)
1091 {
1092     bool result = FALSE;
1093
1094     if (VALID_STRING(acs_chars)) {
1095         if (!one_one_mapping(acs_chars)) {
1096             enter_alt_charset_mode = ABSENT_STRING;
1097             exit_alt_charset_mode = ABSENT_STRING;
1098             SHOW_WHY("# (rmacs/smacs removed for consistency)\n");
1099         }
1100         result = TRUE;
1101     }
1102     return result;
1103 }
1104
1105 /*
1106  * Dump a single entry.
1107  */
1108 void
1109 dump_entry(TERMTYPE *tterm,
1110            int suppress_untranslatable,
1111            int limited,
1112            int numbers,
1113            PredFunc pred)
1114 {
1115     TERMTYPE save_tterm;
1116     int len, critlen;
1117     const char *legend;
1118     bool infodump;
1119
1120     if (outform == F_TERMCAP || outform == F_TCONVERR) {
1121         critlen = MAX_TERMCAP_LENGTH;
1122         legend = "older termcap";
1123         infodump = FALSE;
1124         set_obsolete_termcaps(tterm);
1125     } else {
1126         critlen = MAX_TERMINFO_LENGTH;
1127         legend = "terminfo";
1128         infodump = TRUE;
1129     }
1130
1131     save_sgr = set_attributes;
1132
1133     if ((FMT_ENTRY() > critlen)
1134         && limited) {
1135
1136         save_tterm = *tterm;
1137         if (!suppress_untranslatable) {
1138             SHOW_WHY("# (untranslatable capabilities removed to fit entry within %d bytes)\n",
1139                      critlen);
1140             suppress_untranslatable = TRUE;
1141         }
1142         if (FMT_ENTRY() > critlen) {
1143             /*
1144              * We pick on sgr because it's a nice long string capability that
1145              * is really just an optimization hack.  Another good candidate is
1146              * acsc since it is both long and unused by BSD termcap.
1147              */
1148             bool changed = FALSE;
1149
1150 #if NCURSES_XNAMES
1151             /*
1152              * Extended names are most likely function-key definitions.  Drop
1153              * those first.
1154              */
1155             unsigned n;
1156             for (n = STRCOUNT; n < NUM_STRINGS(tterm); n++) {
1157                 const char *name = ExtStrname(tterm, (int) n, strnames);
1158
1159                 if (VALID_STRING(tterm->Strings[n])) {
1160                     set_attributes = ABSENT_STRING;
1161                     /* we remove long names anyway - only report the short */
1162                     if (strlen(name) <= 2) {
1163                         SHOW_WHY("# (%s removed to fit entry within %d bytes)\n",
1164                                  name,
1165                                  critlen);
1166                     }
1167                     changed = TRUE;
1168                     if (FMT_ENTRY() <= critlen)
1169                         break;
1170                 }
1171             }
1172 #endif
1173             if (VALID_STRING(set_attributes)) {
1174                 set_attributes = ABSENT_STRING;
1175                 SHOW_WHY("# (sgr removed to fit entry within %d bytes)\n",
1176                          critlen);
1177                 changed = TRUE;
1178             }
1179             if (!changed || (FMT_ENTRY() > critlen)) {
1180                 if (purged_acs(tterm)) {
1181                     acs_chars = ABSENT_STRING;
1182                     SHOW_WHY("# (acsc removed to fit entry within %d bytes)\n",
1183                              critlen);
1184                     changed = TRUE;
1185                 }
1186             }
1187             if (!changed || (FMT_ENTRY() > critlen)) {
1188                 int oldversion = tversion;
1189
1190                 tversion = V_BSD;
1191                 SHOW_WHY("# (terminfo-only capabilities suppressed to fit entry within %d bytes)\n",
1192                          critlen);
1193
1194                 len = FMT_ENTRY();
1195                 if (len > critlen
1196                     && kill_labels(tterm, len - critlen)) {
1197                     SHOW_WHY("# (some labels capabilities suppressed to fit entry within %d bytes)\n",
1198                              critlen);
1199                     len = FMT_ENTRY();
1200                 }
1201                 if (len > critlen
1202                     && kill_fkeys(tterm, len - critlen)) {
1203                     SHOW_WHY("# (some function-key capabilities suppressed to fit entry within %d bytes)\n",
1204                              critlen);
1205                     len = FMT_ENTRY();
1206                 }
1207                 if (len > critlen) {
1208                     (void) fprintf(stderr,
1209                                    "warning: %s entry is %d bytes long\n",
1210                                    _nc_first_name(tterm->term_names),
1211                                    len);
1212                     SHOW_WHY("# WARNING: this entry, %d bytes long, may core-dump %s libraries!\n",
1213                              len, legend);
1214                 }
1215                 tversion = oldversion;
1216             }
1217             set_attributes = save_sgr;
1218             *tterm = save_tterm;
1219         }
1220     } else if (!version_filter(STRING, STR_IDX(acs_chars))) {
1221         save_tterm = *tterm;
1222         if (purged_acs(tterm)) {
1223             (void) FMT_ENTRY();
1224         }
1225         *tterm = save_tterm;
1226     }
1227 }
1228
1229 void
1230 dump_uses(const char *name, bool infodump)
1231 /* dump "use=" clauses in the appropriate format */
1232 {
1233     char buffer[MAX_TERMINFO_LENGTH];
1234
1235     if (outform == F_TERMCAP || outform == F_TCONVERR)
1236         trim_trailing();
1237     _nc_SPRINTF(buffer, _nc_SLIMIT(sizeof(buffer))
1238                 "%s%s", infodump ? "use=" : "tc=", name);
1239     wrap_concat(buffer);
1240 }
1241
1242 int
1243 show_entry(void)
1244 {
1245     /*
1246      * Trim any remaining whitespace.
1247      */
1248     if (outbuf.used != 0) {
1249         bool infodump = (outform != F_TERMCAP && outform != F_TCONVERR);
1250         char delim = (char) (infodump ? ',' : ':');
1251         int j;
1252
1253         for (j = (int) outbuf.used - 1; j > 0; --j) {
1254             char ch = outbuf.text[j];
1255             if (ch == '\n') {
1256                 ;
1257             } else if (isspace(UChar(ch))) {
1258                 outbuf.used = (size_t) j;
1259             } else if (!infodump && ch == '\\') {
1260                 outbuf.used = (size_t) j;
1261             } else if (ch == delim && (j == 0 || outbuf.text[j - 1] != '\\')) {
1262                 outbuf.used = (size_t) (j + 1);
1263             } else {
1264                 break;
1265             }
1266         }
1267         outbuf.text[outbuf.used] = '\0';
1268     }
1269     (void) fputs(outbuf.text, stdout);
1270     putchar('\n');
1271     return (int) outbuf.used;
1272 }
1273
1274 void
1275 compare_entry(PredHook hook,
1276               TERMTYPE *tp GCC_UNUSED,
1277               bool quiet)
1278 /* compare two entries */
1279 {
1280     PredIdx i, j;
1281     NCURSES_CONST char *name;
1282
1283     if (!quiet)
1284         fputs("    comparing booleans.\n", stdout);
1285     for_each_boolean(j, tp) {
1286         i = BoolIndirect(j);
1287         name = ExtBoolname(tp, (int) i, bool_names);
1288
1289         if (isObsolete(outform, name))
1290             continue;
1291
1292         (*hook) (CMP_BOOLEAN, i, name);
1293     }
1294
1295     if (!quiet)
1296         fputs("    comparing numbers.\n", stdout);
1297     for_each_number(j, tp) {
1298         i = NumIndirect(j);
1299         name = ExtNumname(tp, (int) i, num_names);
1300
1301         if (isObsolete(outform, name))
1302             continue;
1303
1304         (*hook) (CMP_NUMBER, i, name);
1305     }
1306
1307     if (!quiet)
1308         fputs("    comparing strings.\n", stdout);
1309     for_each_string(j, tp) {
1310         i = StrIndirect(j);
1311         name = ExtStrname(tp, (int) i, str_names);
1312
1313         if (isObsolete(outform, name))
1314             continue;
1315
1316         (*hook) (CMP_STRING, i, name);
1317     }
1318
1319     /* (void) fputs("    comparing use entries.\n", stdout); */
1320     (*hook) (CMP_USE, 0, "use");
1321
1322 }
1323
1324 #define NOTSET(s)       ((s) == 0)
1325
1326 /*
1327  * This bit of legerdemain turns all the terminfo variable names into
1328  * references to locations in the arrays Booleans, Numbers, and Strings ---
1329  * precisely what's needed.
1330  */
1331 #undef CUR
1332 #define CUR tp->
1333
1334 static void
1335 set_obsolete_termcaps(TERMTYPE *tp)
1336 {
1337 #include "capdefaults.c"
1338 }
1339
1340 /*
1341  * Convert an alternate-character-set string to canonical form: sorted and
1342  * unique.
1343  */
1344 void
1345 repair_acsc(TERMTYPE *tp)
1346 {
1347     if (VALID_STRING(acs_chars)) {
1348         size_t n, m;
1349         char mapped[256];
1350         char extra = 0;
1351         unsigned source;
1352         unsigned target;
1353         bool fix_needed = FALSE;
1354
1355         for (n = 0, source = 0; acs_chars[n] != 0; n++) {
1356             target = UChar(acs_chars[n]);
1357             if (source >= target) {
1358                 fix_needed = TRUE;
1359                 break;
1360             }
1361             source = target;
1362             if (acs_chars[n + 1])
1363                 n++;
1364         }
1365         if (fix_needed) {
1366             memset(mapped, 0, sizeof(mapped));
1367             for (n = 0; acs_chars[n] != 0; n++) {
1368                 source = UChar(acs_chars[n]);
1369                 if ((target = (unsigned char) acs_chars[n + 1]) != 0) {
1370                     mapped[source] = (char) target;
1371                     n++;
1372                 } else {
1373                     extra = (char) source;
1374                 }
1375             }
1376             for (n = m = 0; n < sizeof(mapped); n++) {
1377                 if (mapped[n]) {
1378                     acs_chars[m++] = (char) n;
1379                     acs_chars[m++] = mapped[n];
1380                 }
1381             }
1382             if (extra)
1383                 acs_chars[m++] = extra;         /* garbage in, garbage out */
1384             acs_chars[m] = 0;
1385         }
1386     }
1387 }