]> ncurses.scripts.mit.edu Git - ncurses.git/blob - progs/dump_entry.c
ncurses 6.0 - patch 20170617
[ncurses.git] / progs / dump_entry.c
1 /****************************************************************************
2  * Copyright (c) 1998-2016,2017 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.152 2017/05/06 18:56:15 tom Exp $")
43
44 #define DISCARD(string) string = ABSENT_STRING
45 #define PRINTF (void) printf
46 #define WRAPPED 32
47
48 #define OkIndex(index,array) ((int)(index) >= 0 && (int)(index) < (int) SIZEOF(array))
49 #define TcOutput() (outform == F_TERMCAP || outform == F_TCONVERR)
50
51 typedef struct {
52     char *text;
53     size_t used;
54     size_t size;
55 } DYNBUF;
56
57 static int tversion;            /* terminfo version */
58 static int outform;             /* output format to use */
59 static int sortmode;            /* sort mode to use */
60 static int width = 60;          /* max line width for listings */
61 static int height = 65535;      /* max number of lines for listings */
62 static int column;              /* current column, limited by 'width' */
63 static int oldcol;              /* last value of column before wrap */
64 static bool pretty;             /* true if we format if-then-else strings */
65 static bool wrapped;            /* true if we wrap too-long strings */
66 static bool did_wrap;           /* true if last wrap_concat did wrapping */
67 static bool checking;           /* true if we are checking for tic */
68 static int quickdump;           /* true if we are dumping compiled data */
69
70 static char *save_sgr;
71
72 static DYNBUF outbuf;
73 static DYNBUF tmpbuf;
74
75 /* indirection pointers for implementing sort and display modes */
76 static const PredIdx *bool_indirect, *num_indirect, *str_indirect;
77 static NCURSES_CONST char *const *bool_names;
78 static NCURSES_CONST char *const *num_names;
79 static NCURSES_CONST char *const *str_names;
80
81 static const char *separator = "", *trailer = "";
82 static int indent = 8;
83
84 /* cover various ports and variants of terminfo */
85 #define V_ALLCAPS       0       /* all capabilities (SVr4, XSI, ncurses) */
86 #define V_SVR1          1       /* SVR1, Ultrix */
87 #define V_HPUX          2       /* HP/UX */
88 #define V_AIX           3       /* AIX */
89 #define V_BSD           4       /* BSD */
90
91 #if NCURSES_XNAMES
92 #define OBSOLETE(n) (!_nc_user_definable && (n[0] == 'O' && n[1] == 'T'))
93 #else
94 #define OBSOLETE(n) (n[0] == 'O' && n[1] == 'T')
95 #endif
96
97 #define isObsolete(f,n) ((f == F_TERMINFO || f == F_VARIABLE) && OBSOLETE(n))
98
99 #if NCURSES_XNAMES
100 #define BoolIndirect(j) ((j >= BOOLCOUNT) ? (j) : ((sortmode == S_NOSORT) ? j : bool_indirect[j]))
101 #define NumIndirect(j)  ((j >= NUMCOUNT)  ? (j) : ((sortmode == S_NOSORT) ? j : num_indirect[j]))
102 #define StrIndirect(j)  ((j >= STRCOUNT)  ? (j) : ((sortmode == S_NOSORT) ? j : str_indirect[j]))
103 #else
104 #define BoolIndirect(j) ((sortmode == S_NOSORT) ? (j) : bool_indirect[j])
105 #define NumIndirect(j)  ((sortmode == S_NOSORT) ? (j) : num_indirect[j])
106 #define StrIndirect(j)  ((sortmode == S_NOSORT) ? (j) : str_indirect[j])
107 #endif
108
109 static void failed(const char *) GCC_NORETURN;
110
111 static void
112 failed(const char *s)
113 {
114     perror(s);
115     ExitProgram(EXIT_FAILURE);
116 }
117
118 static void
119 strncpy_DYN(DYNBUF * dst, const char *src, size_t need)
120 {
121     size_t want = need + dst->used + 1;
122     if (want > dst->size) {
123         dst->size += (want + 1024);     /* be generous */
124         dst->text = typeRealloc(char, dst->size, dst->text);
125         if (dst->text == 0)
126             failed("strncpy_DYN");
127     }
128     _nc_STRNCPY(dst->text + dst->used, src, need + 1);
129     dst->used += need;
130     dst->text[dst->used] = 0;
131 }
132
133 static void
134 strcpy_DYN(DYNBUF * dst, const char *src)
135 {
136     if (src == 0) {
137         dst->used = 0;
138         strcpy_DYN(dst, "");
139     } else {
140         strncpy_DYN(dst, src, strlen(src));
141     }
142 }
143
144 #if NO_LEAKS
145 static void
146 free_DYN(DYNBUF * p)
147 {
148     if (p->text != 0)
149         free(p->text);
150     p->text = 0;
151     p->size = 0;
152     p->used = 0;
153 }
154
155 void
156 _nc_leaks_dump_entry(void)
157 {
158     free_DYN(&outbuf);
159     free_DYN(&tmpbuf);
160 }
161 #endif
162
163 #define NameTrans(check,result) \
164             if ((np->nte_index <= OK_ ## check) \
165                 && check[np->nte_index]) \
166                 return (result[np->nte_index])
167
168 NCURSES_CONST char *
169 nametrans(const char *name)
170 /* translate a capability name to termcap from terminfo */
171 {
172     const struct name_table_entry *np;
173
174     if ((np = _nc_find_entry(name, _nc_get_hash_table(0))) != 0) {
175         switch (np->nte_type) {
176         case BOOLEAN:
177             NameTrans(bool_from_termcap, boolcodes);
178             break;
179
180         case NUMBER:
181             NameTrans(num_from_termcap, numcodes);
182             break;
183
184         case STRING:
185             NameTrans(str_from_termcap, strcodes);
186             break;
187         }
188     }
189
190     return (0);
191 }
192
193 void
194 dump_init(const char *version,
195           int mode,
196           int sort,
197           bool wrap_strings,
198           int twidth,
199           int theight,
200           unsigned traceval,
201           bool formatted,
202           bool check,
203           int quick)
204 /* set up for entry display */
205 {
206     width = twidth;
207     height = theight;
208     pretty = formatted;
209     wrapped = wrap_strings;
210     checking = check;
211     quickdump = (quick & 3);
212
213     did_wrap = (width <= 0);
214
215     /* versions */
216     if (version == 0)
217         tversion = V_ALLCAPS;
218     else if (!strcmp(version, "SVr1") || !strcmp(version, "SVR1")
219              || !strcmp(version, "Ultrix"))
220         tversion = V_SVR1;
221     else if (!strcmp(version, "HP"))
222         tversion = V_HPUX;
223     else if (!strcmp(version, "AIX"))
224         tversion = V_AIX;
225     else if (!strcmp(version, "BSD"))
226         tversion = V_BSD;
227     else
228         tversion = V_ALLCAPS;
229
230     /* implement display modes */
231     switch (outform = mode) {
232     case F_LITERAL:
233     case F_TERMINFO:
234         bool_names = boolnames;
235         num_names = numnames;
236         str_names = strnames;
237         separator = (twidth > 0 && theight > 1) ? ", " : ",";
238         trailer = "\n\t";
239         break;
240
241     case F_VARIABLE:
242         bool_names = boolfnames;
243         num_names = numfnames;
244         str_names = strfnames;
245         separator = (twidth > 0 && theight > 1) ? ", " : ",";
246         trailer = "\n\t";
247         break;
248
249     case F_TERMCAP:
250     case F_TCONVERR:
251         bool_names = boolcodes;
252         num_names = numcodes;
253         str_names = strcodes;
254         separator = ":";
255         trailer = "\\\n\t:";
256         break;
257     }
258     indent = 8;
259
260     /* implement sort modes */
261     switch (sortmode = sort) {
262     case S_NOSORT:
263         if (traceval)
264             (void) fprintf(stderr,
265                            "%s: sorting by term structure order\n", _nc_progname);
266         break;
267
268     case S_TERMINFO:
269         if (traceval)
270             (void) fprintf(stderr,
271                            "%s: sorting by terminfo name order\n", _nc_progname);
272         bool_indirect = bool_terminfo_sort;
273         num_indirect = num_terminfo_sort;
274         str_indirect = str_terminfo_sort;
275         break;
276
277     case S_VARIABLE:
278         if (traceval)
279             (void) fprintf(stderr,
280                            "%s: sorting by C variable order\n", _nc_progname);
281         bool_indirect = bool_variable_sort;
282         num_indirect = num_variable_sort;
283         str_indirect = str_variable_sort;
284         break;
285
286     case S_TERMCAP:
287         if (traceval)
288             (void) fprintf(stderr,
289                            "%s: sorting by termcap name order\n", _nc_progname);
290         bool_indirect = bool_termcap_sort;
291         num_indirect = num_termcap_sort;
292         str_indirect = str_termcap_sort;
293         break;
294     }
295
296     if (traceval)
297         (void) fprintf(stderr,
298                        "%s: width = %d, tversion = %d, outform = %d\n",
299                        _nc_progname, width, tversion, outform);
300 }
301
302 static TERMTYPE2 *cur_type;
303
304 static int
305 dump_predicate(PredType type, PredIdx idx)
306 /* predicate function to use for ordinary decompilation */
307 {
308     switch (type) {
309     case BOOLEAN:
310         return (cur_type->Booleans[idx] == FALSE)
311             ? FAIL : cur_type->Booleans[idx];
312
313     case NUMBER:
314         return (cur_type->Numbers[idx] == ABSENT_NUMERIC)
315             ? FAIL : cur_type->Numbers[idx];
316
317     case STRING:
318         return (cur_type->Strings[idx] != ABSENT_STRING)
319             ? (int) TRUE : FAIL;
320     }
321
322     return (FALSE);             /* pacify compiler */
323 }
324
325 static void set_obsolete_termcaps(TERMTYPE2 *tp);
326
327 /* is this the index of a function key string? */
328 #define FNKEY(i) \
329     (((i) >= STR_IDX(key_f0) && \
330       (i) <= STR_IDX(key_f9)) || \
331      ((i) >= STR_IDX(key_f11) && \
332       (i) <= STR_IDX(key_f63)))
333
334 /*
335  * If we configure with a different Caps file, the offsets into the arrays
336  * will change.  So we use an address expression.
337  */
338 #define BOOL_IDX(name) (PredType) (&(name) - &(CUR Booleans[0]))
339 #define NUM_IDX(name)  (PredType) (&(name) - &(CUR Numbers[0]))
340 #define STR_IDX(name)  (PredType) (&(name) - &(CUR Strings[0]))
341
342 static bool
343 version_filter(PredType type, PredIdx idx)
344 /* filter out capabilities we may want to suppress */
345 {
346     switch (tversion) {
347     case V_ALLCAPS:             /* SVr4, XSI Curses */
348         return (TRUE);
349
350     case V_SVR1:                /* System V Release 1, Ultrix */
351         switch (type) {
352         case BOOLEAN:
353             return ((idx <= BOOL_IDX(xon_xoff)) ? TRUE : FALSE);
354         case NUMBER:
355             return ((idx <= NUM_IDX(width_status_line)) ? TRUE : FALSE);
356         case STRING:
357             return ((idx <= STR_IDX(prtr_non)) ? TRUE : FALSE);
358         }
359         break;
360
361     case V_HPUX:                /* Hewlett-Packard */
362         switch (type) {
363         case BOOLEAN:
364             return ((idx <= BOOL_IDX(xon_xoff)) ? TRUE : FALSE);
365         case NUMBER:
366             return ((idx <= NUM_IDX(label_width)) ? TRUE : FALSE);
367         case STRING:
368             if (idx <= STR_IDX(prtr_non))
369                 return (TRUE);
370             else if (FNKEY(idx))        /* function keys */
371                 return (TRUE);
372             else if (idx == STR_IDX(plab_norm)
373                      || idx == STR_IDX(label_on)
374                      || idx == STR_IDX(label_off))
375                 return (TRUE);
376             else
377                 return (FALSE);
378         }
379         break;
380
381     case V_AIX:         /* AIX */
382         switch (type) {
383         case BOOLEAN:
384             return ((idx <= BOOL_IDX(xon_xoff)) ? TRUE : FALSE);
385         case NUMBER:
386             return ((idx <= NUM_IDX(width_status_line)) ? TRUE : FALSE);
387         case STRING:
388             if (idx <= STR_IDX(prtr_non))
389                 return (TRUE);
390             else if (FNKEY(idx))        /* function keys */
391                 return (TRUE);
392             else
393                 return (FALSE);
394         }
395         break;
396
397 #define is_termcap(type) (OkIndex(idx, type##_from_termcap) && \
398                           type##_from_termcap[idx])
399
400     case V_BSD:         /* BSD */
401         switch (type) {
402         case BOOLEAN:
403             return is_termcap(bool);
404         case NUMBER:
405             return is_termcap(num);
406         case STRING:
407             return is_termcap(str);
408         }
409         break;
410     }
411
412     return (FALSE);             /* pacify the compiler */
413 }
414
415 static void
416 trim_trailing(void)
417 {
418     while (outbuf.used > 0 && outbuf.text[outbuf.used - 1] == ' ')
419         outbuf.text[--outbuf.used] = '\0';
420 }
421
422 static void
423 force_wrap(void)
424 {
425     oldcol = column;
426     trim_trailing();
427     strcpy_DYN(&outbuf, trailer);
428     column = indent;
429 }
430
431 static int
432 op_length(const char *src, int offset)
433 {
434     int result = 0;
435     int ch;
436     if (offset > 0 && src[offset - 1] == '\\') {
437         result = 0;
438     } else {
439         result++;               /* for '%' mark */
440         ch = src[offset + result];
441         if (TcOutput()) {
442             if (ch == '>') {
443                 result += 3;
444             } else if (ch == '+') {
445                 result += 2;
446             } else {
447                 result++;
448             }
449         } else if (ch == '\'') {
450             result += 3;
451         } else if (ch == L_CURL[0]) {
452             int n = result;
453             while ((ch = src[offset + n]) != '\0') {
454                 if (ch == R_CURL[0]) {
455                     result = ++n;
456                     break;
457                 }
458                 n++;
459             }
460         } else if (strchr("pPg", ch) != 0) {
461             result += 2;
462         } else {
463             result++;           /* ordinary operator */
464         }
465     }
466     return result;
467 }
468
469 /*
470  * When wrapping too-long strings, avoid splitting a backslash sequence, or
471  * a terminfo '%' operator.  That will leave things a little ragged, but avoids
472  * a stray backslash at the end of the line, as well as making the result a
473  * little more readable.
474  */
475 static int
476 find_split(const char *src, int step, int size)
477 {
478     int result = size;
479     int n;
480     if (size > 0) {
481         /* check if that would split a backslash-sequence */
482         int mark = size;
483         for (n = size - 1; n > 0; --n) {
484             int ch = UChar(src[step + n]);
485             if (ch == '\\') {
486                 if (n > 0 && src[step + n - 1] == ch)
487                     --n;
488                 mark = n;
489                 break;
490             } else if (!isalnum(ch)) {
491                 break;
492             }
493         }
494         if (mark < size) {
495             result = mark;
496         } else {
497             /* check if that would split a backslash-sequence */
498             for (n = size - 1; n > 0; --n) {
499                 int ch = UChar(src[step + n]);
500                 if (ch == '%') {
501                     int need = op_length(src, step + n);
502                     if ((n + need) > size)
503                         mark = n;
504                     break;
505                 }
506             }
507             if (mark < size) {
508                 result = mark;
509             }
510         }
511     }
512     return result;
513 }
514
515 /*
516  * If we are going to wrap lines, we cannot leave literal spaces because that
517  * would be ambiguous if we split on that space.
518  */
519 static char *
520 fill_spaces(const char *src)
521 {
522     const char *fill = "\\s";
523     size_t need = strlen(src);
524     size_t size = strlen(fill);
525     char *result = 0;
526     int pass;
527     int s, d;
528     for (pass = 0; pass < 2; ++pass) {
529         for (s = d = 0; src[s] != '\0'; ++s) {
530             if (src[s] == ' ') {
531                 if (pass) {
532                     strcpy(&result[d], fill);
533                     d += (int) size;
534                 } else {
535                     need += size;
536                 }
537             } else {
538                 if (pass) {
539                     result[d++] = src[s];
540                 } else {
541                     ++d;
542                 }
543             }
544         }
545         if (pass) {
546             result[d] = '\0';
547         } else {
548             result = malloc(need + 1);
549             if (result == 0)
550                 failed("fill_spaces");
551         }
552     }
553     return result;
554 }
555
556 static void
557 wrap_concat(const char *src)
558 {
559     int need = (int) strlen(src);
560     int gaps = (int) strlen(separator);
561     int want = gaps + need;
562
563     did_wrap = (width <= 0);
564     if (column > indent
565         && column + want > width) {
566         force_wrap();
567     }
568     if (wrapped &&
569         (width >= 0) &&
570         (column + want) > width &&
571         (!TcOutput() || strncmp(src, "..", 2))) {
572         int step = 0;
573         int used = width > WRAPPED ? width : WRAPPED;
574         int size;
575         int base = 0;
576         char *p, align[9];
577         const char *my_t = trailer;
578         char *fill = fill_spaces(src);
579         int last = (int) strlen(fill);
580
581         need = last;
582
583         if (TcOutput())
584             trailer = "\\\n\t ";
585
586         if ((p = strchr(fill, '=')) != 0) {
587             base = (int) (p + 1 - fill);
588             if (base > 8)
589                 base = 8;
590             _nc_SPRINTF(align, _nc_SLIMIT(align) "%*s", base, " ");
591         } else {
592             align[base] = '\0';
593         }
594         /* "pretty" overrides wrapping if it already split the line */
595         if (!pretty || strchr(fill, '\n') == 0) {
596             while ((column + (need + gaps)) > used) {
597                 size = used;
598                 if (step) {
599                     strcpy_DYN(&outbuf, align);
600                     size -= base;
601                 }
602                 if (size > (last - step)) {
603                     size = (last - step);
604                 }
605                 size = find_split(fill, step, size);
606                 strncpy_DYN(&outbuf, fill + step, (size_t) size);
607                 step += size;
608                 need -= size;
609                 if (need > 0) {
610                     force_wrap();
611                     did_wrap = TRUE;
612                 }
613             }
614         }
615         if (need > 0) {
616             if (step)
617                 strcpy_DYN(&outbuf, align);
618             strcpy_DYN(&outbuf, fill + step);
619         }
620         strcpy_DYN(&outbuf, separator);
621         trailer = my_t;
622         force_wrap();
623
624         free(fill);
625     } else {
626         strcpy_DYN(&outbuf, src);
627         strcpy_DYN(&outbuf, separator);
628         column += need;
629     }
630 }
631
632 #define IGNORE_SEP_TRAIL(first,last,sep_trail) \
633         if ((size_t)(last - first) > sizeof(sep_trail)-1 \
634          && !strncmp(first, sep_trail, sizeof(sep_trail)-1)) \
635                 first += sizeof(sep_trail)-2
636
637 /* Returns the nominal length of the buffer assuming it is termcap format,
638  * i.e., the continuation sequence is treated as a single character ":".
639  *
640  * There are several implementations of termcap which read the text into a
641  * fixed-size buffer.  Generally they strip the newlines from the text, but may
642  * not do it until after the buffer is read.  Also, "tc=" resolution may be
643  * expanded in the same buffer.  This function is useful for measuring the size
644  * of the best fixed-buffer implementation; the worst case may be much worse.
645  */
646 #ifdef TEST_TERMCAP_LENGTH
647 static int
648 termcap_length(const char *src)
649 {
650     static const char pattern[] = ":\\\n\t:";
651
652     int len = 0;
653     const char *const t = src + strlen(src);
654
655     while (*src != '\0') {
656         IGNORE_SEP_TRAIL(src, t, pattern);
657         src++;
658         len++;
659     }
660     return len;
661 }
662 #else
663 #define termcap_length(src) strlen(src)
664 #endif
665
666 static void
667 indent_DYN(DYNBUF * buffer, int level)
668 {
669     int n;
670
671     for (n = 0; n < level; n++)
672         strncpy_DYN(buffer, "\t", (size_t) 1);
673 }
674
675 bool
676 has_params(const char *src)
677 {
678     bool result = FALSE;
679     int len = (int) strlen(src);
680     int n;
681     bool ifthen = FALSE;
682     bool params = FALSE;
683
684     for (n = 0; n < len - 1; ++n) {
685         if (!strncmp(src + n, "%p", (size_t) 2)) {
686             params = TRUE;
687         } else if (!strncmp(src + n, "%;", (size_t) 2)) {
688             ifthen = TRUE;
689             result = params;
690             break;
691         }
692     }
693     if (!ifthen) {
694         result = ((len > 50) && params);
695     }
696     return result;
697 }
698
699 static char *
700 fmt_complex(TERMTYPE2 *tterm, const char *capability, char *src, int level)
701 {
702     bool percent = FALSE;
703     bool params = has_params(src);
704
705     while (*src != '\0') {
706         switch (*src) {
707         case '^':
708             percent = FALSE;
709             strncpy_DYN(&tmpbuf, src++, (size_t) 1);
710             break;
711         case '\\':
712             percent = FALSE;
713             strncpy_DYN(&tmpbuf, src++, (size_t) 1);
714             break;
715         case '%':
716             percent = TRUE;
717             break;
718         case '?':               /* "if" */
719         case 't':               /* "then" */
720         case 'e':               /* "else" */
721             if (percent) {
722                 percent = FALSE;
723                 tmpbuf.text[tmpbuf.used - 1] = '\n';
724                 /* treat a "%e" as else-if, on the same level */
725                 if (*src == 'e') {
726                     indent_DYN(&tmpbuf, level);
727                     strncpy_DYN(&tmpbuf, "%", (size_t) 1);
728                     strncpy_DYN(&tmpbuf, src, (size_t) 1);
729                     src++;
730                     params = has_params(src);
731                     if (!params && *src != '\0' && *src != '%') {
732                         strncpy_DYN(&tmpbuf, "\n", (size_t) 1);
733                         indent_DYN(&tmpbuf, level + 1);
734                     }
735                 } else {
736                     indent_DYN(&tmpbuf, level + 1);
737                     strncpy_DYN(&tmpbuf, "%", (size_t) 1);
738                     strncpy_DYN(&tmpbuf, src, (size_t) 1);
739                     if (*src++ == '?') {
740                         src = fmt_complex(tterm, capability, src, level + 1);
741                         if (*src != '\0' && *src != '%') {
742                             strncpy_DYN(&tmpbuf, "\n", (size_t) 1);
743                             indent_DYN(&tmpbuf, level + 1);
744                         }
745                     } else if (level == 1) {
746                         if (checking)
747                             _nc_warning("%s: %%%c without %%? in %s",
748                                         _nc_first_name(tterm->term_names),
749                                         *src, capability);
750                     }
751                 }
752                 continue;
753             }
754             break;
755         case ';':               /* "endif" */
756             if (percent) {
757                 percent = FALSE;
758                 if (level > 1) {
759                     tmpbuf.text[tmpbuf.used - 1] = '\n';
760                     indent_DYN(&tmpbuf, level);
761                     strncpy_DYN(&tmpbuf, "%", (size_t) 1);
762                     strncpy_DYN(&tmpbuf, src++, (size_t) 1);
763                     if (src[0] == '%'
764                         && src[1] != '\0'
765                         && (strchr("?e;", src[1])) == 0) {
766                         tmpbuf.text[tmpbuf.used++] = '\n';
767                         indent_DYN(&tmpbuf, level);
768                     }
769                     return src;
770                 }
771                 if (checking)
772                     _nc_warning("%s: %%; without %%? in %s",
773                                 _nc_first_name(tterm->term_names),
774                                 capability);
775             }
776             break;
777         case 'p':
778             if (percent && params) {
779                 tmpbuf.text[tmpbuf.used - 1] = '\n';
780                 indent_DYN(&tmpbuf, level + 1);
781                 strncpy_DYN(&tmpbuf, "%", (size_t) 1);
782             }
783             params = FALSE;
784             percent = FALSE;
785             break;
786         case ' ':
787             strncpy_DYN(&tmpbuf, "\\s", (size_t) 2);
788             ++src;
789             continue;
790         default:
791             percent = FALSE;
792             break;
793         }
794         strncpy_DYN(&tmpbuf, src++, (size_t) 1);
795     }
796     return src;
797 }
798
799 /*
800  * Make "large" numbers a little easier to read by showing them in hexadecimal
801  * if they are "close" to a power of two.
802  */
803 static const char *
804 number_format(int value)
805 {
806     const char *result = "%d";
807     if ((outform != F_TERMCAP) && (value > 255)) {
808         unsigned long lv = (unsigned long) value;
809         unsigned long mm;
810         int nn;
811         for (nn = 8; (mm = (1UL << nn)) != 0; ++nn) {
812             if ((mm - 16) <= lv && (mm + 16) > lv) {
813                 result = "%#x";
814                 break;
815             }
816         }
817     }
818     return result;
819 }
820
821 #define SAME_CAP(n,cap) (&tterm->Strings[n] == &cap)
822 #define EXTRA_CAP 20
823
824 int
825 fmt_entry(TERMTYPE2 *tterm,
826           PredFunc pred,
827           int content_only,
828           int suppress_untranslatable,
829           int infodump,
830           int numbers)
831 {
832     PredIdx i, j;
833     char buffer[MAX_TERMINFO_LENGTH + EXTRA_CAP];
834     char *capability;
835     NCURSES_CONST char *name;
836     int predval, len;
837     PredIdx num_bools = 0;
838     PredIdx num_values = 0;
839     PredIdx num_strings = 0;
840     bool outcount = 0;
841
842 #define WRAP_CONCAT     \
843         wrap_concat(buffer); \
844         outcount = TRUE
845
846     len = 12;                   /* terminfo file-header */
847
848     if (pred == 0) {
849         cur_type = tterm;
850         pred = dump_predicate;
851     }
852
853     strcpy_DYN(&outbuf, 0);
854     if (content_only) {
855         column = indent;        /* FIXME: workaround to prevent empty lines */
856     } else {
857         strcpy_DYN(&outbuf, tterm->term_names);
858
859         /*
860          * Colon is legal in terminfo descriptions, but not in termcap.
861          */
862         if (!infodump) {
863             char *p = outbuf.text;
864             while (*p) {
865                 if (*p == ':') {
866                     *p = '=';
867                 }
868                 ++p;
869             }
870         }
871         strcpy_DYN(&outbuf, separator);
872         column = (int) outbuf.used;
873         if (height > 1)
874             force_wrap();
875     }
876
877     for_each_boolean(j, tterm) {
878         i = BoolIndirect(j);
879         name = ExtBoolname(tterm, (int) i, bool_names);
880         assert(strlen(name) < sizeof(buffer) - EXTRA_CAP);
881
882         if (!version_filter(BOOLEAN, i))
883             continue;
884         else if (isObsolete(outform, name))
885             continue;
886
887         predval = pred(BOOLEAN, i);
888         if (predval != FAIL) {
889             _nc_STRCPY(buffer, name, sizeof(buffer));
890             if (predval <= 0)
891                 _nc_STRCAT(buffer, "@", sizeof(buffer));
892             else if (i + 1 > num_bools)
893                 num_bools = i + 1;
894             WRAP_CONCAT;
895         }
896     }
897
898     if (column != indent && height > 1)
899         force_wrap();
900
901     for_each_number(j, tterm) {
902         i = NumIndirect(j);
903         name = ExtNumname(tterm, (int) i, num_names);
904         assert(strlen(name) < sizeof(buffer) - EXTRA_CAP);
905
906         if (!version_filter(NUMBER, i))
907             continue;
908         else if (isObsolete(outform, name))
909             continue;
910
911         predval = pred(NUMBER, i);
912         if (predval != FAIL) {
913             if (tterm->Numbers[i] < 0) {
914                 _nc_SPRINTF(buffer, _nc_SLIMIT(sizeof(buffer))
915                             "%s@", name);
916             } else {
917                 size_t nn;
918                 _nc_SPRINTF(buffer, _nc_SLIMIT(sizeof(buffer))
919                             "%s#", name);
920                 nn = strlen(buffer);
921                 _nc_SPRINTF(buffer + nn, _nc_SLIMIT(sizeof(buffer) - nn)
922                             number_format(tterm->Numbers[i]),
923                             tterm->Numbers[i]);
924                 if (i + 1 > num_values)
925                     num_values = i + 1;
926             }
927             WRAP_CONCAT;
928         }
929     }
930
931     if (column != indent && height > 1)
932         force_wrap();
933
934     len += (int) (num_bools
935                   + num_values * 2
936                   + strlen(tterm->term_names) + 1);
937     if (len & 1)
938         len++;
939
940 #undef CUR
941 #define CUR tterm->
942     if (outform == F_TERMCAP) {
943         if (termcap_reset != ABSENT_STRING) {
944             if (init_3string != ABSENT_STRING
945                 && !strcmp(init_3string, termcap_reset))
946                 DISCARD(init_3string);
947
948             if (reset_2string != ABSENT_STRING
949                 && !strcmp(reset_2string, termcap_reset))
950                 DISCARD(reset_2string);
951         }
952     }
953
954     for_each_string(j, tterm) {
955         i = StrIndirect(j);
956         name = ExtStrname(tterm, (int) i, str_names);
957         assert(strlen(name) < sizeof(buffer) - EXTRA_CAP);
958
959         capability = tterm->Strings[i];
960
961         if (!version_filter(STRING, i))
962             continue;
963         else if (isObsolete(outform, name))
964             continue;
965
966 #if NCURSES_XNAMES
967         /*
968          * Extended names can be longer than 2 characters, but termcap programs
969          * cannot read those (filter them out).
970          */
971         if (outform == F_TERMCAP && (strlen(name) > 2))
972             continue;
973 #endif
974
975         if (outform == F_TERMCAP) {
976             /*
977              * Some older versions of vi want rmir/smir to be defined
978              * for ich/ich1 to work.  If they're not defined, force
979              * them to be output as defined and empty.
980              */
981             if (PRESENT(insert_character) || PRESENT(parm_ich)) {
982                 if (SAME_CAP(i, enter_insert_mode)
983                     && enter_insert_mode == ABSENT_STRING) {
984                     _nc_STRCPY(buffer, "im=", sizeof(buffer));
985                     WRAP_CONCAT;
986                     continue;
987                 }
988
989                 if (SAME_CAP(i, exit_insert_mode)
990                     && exit_insert_mode == ABSENT_STRING) {
991                     _nc_STRCPY(buffer, "ei=", sizeof(buffer));
992                     WRAP_CONCAT;
993                     continue;
994                 }
995             }
996             /*
997              * termcap applications such as screen will be confused if sgr0
998              * is translated to a string containing rmacs.  Filter that out.
999              */
1000             if (PRESENT(exit_attribute_mode)) {
1001                 if (SAME_CAP(i, exit_attribute_mode)) {
1002                     char *trimmed_sgr0;
1003                     char *my_sgr = set_attributes;
1004
1005                     set_attributes = save_sgr;
1006
1007                     trimmed_sgr0 = _nc_trim_sgr0(tterm);
1008                     if (strcmp(capability, trimmed_sgr0))
1009                         capability = trimmed_sgr0;
1010                     else {
1011                         if (trimmed_sgr0 != exit_attribute_mode)
1012                             free(trimmed_sgr0);
1013                     }
1014
1015                     set_attributes = my_sgr;
1016                 }
1017             }
1018         }
1019
1020         predval = pred(STRING, i);
1021         buffer[0] = '\0';
1022
1023         if (predval != FAIL) {
1024             if (capability != ABSENT_STRING
1025                 && i + 1 > num_strings)
1026                 num_strings = i + 1;
1027
1028             if (!VALID_STRING(capability)) {
1029                 _nc_SPRINTF(buffer, _nc_SLIMIT(sizeof(buffer))
1030                             "%s@", name);
1031                 WRAP_CONCAT;
1032             } else if (TcOutput()) {
1033                 char *srccap = _nc_tic_expand(capability, TRUE, numbers);
1034                 int params = (((i < (int) SIZEOF(parametrized)) &&
1035                                (i < STRCOUNT))
1036                               ? parametrized[i]
1037                               : ((*srccap == 'k')
1038                                  ? 0
1039                                  : has_params(srccap)));
1040                 char *cv = _nc_infotocap(name, srccap, params);
1041
1042                 if (cv == 0) {
1043                     if (outform == F_TCONVERR) {
1044                         _nc_SPRINTF(buffer, _nc_SLIMIT(sizeof(buffer))
1045                                     "%s=!!! %s WILL NOT CONVERT !!!",
1046                                     name, srccap);
1047                     } else if (suppress_untranslatable) {
1048                         continue;
1049                     } else {
1050                         char *s = srccap, *d = buffer;
1051                         _nc_SPRINTF(d, _nc_SLIMIT(sizeof(buffer)) "..%s=", name);
1052                         d += strlen(d);
1053                         while ((*d = *s++) != 0) {
1054                             if (*d == ':') {
1055                                 *d++ = '\\';
1056                                 *d = ':';
1057                             } else if (*d == '\\') {
1058                                 *++d = *s++;
1059                             }
1060                             d++;
1061                         }
1062                     }
1063                 } else {
1064                     _nc_SPRINTF(buffer, _nc_SLIMIT(sizeof(buffer))
1065                                 "%s=%s", name, cv);
1066                 }
1067                 len += (int) strlen(capability) + 1;
1068                 WRAP_CONCAT;
1069             } else {
1070                 char *src = _nc_tic_expand(capability,
1071                                            outform == F_TERMINFO, numbers);
1072
1073                 strcpy_DYN(&tmpbuf, 0);
1074                 strcpy_DYN(&tmpbuf, name);
1075                 strcpy_DYN(&tmpbuf, "=");
1076                 if (pretty
1077                     && (outform == F_TERMINFO
1078                         || outform == F_VARIABLE)) {
1079                     fmt_complex(tterm, name, src, 1);
1080                 } else {
1081                     strcpy_DYN(&tmpbuf, src);
1082                 }
1083                 len += (int) strlen(capability) + 1;
1084                 wrap_concat(tmpbuf.text);
1085                 outcount = TRUE;
1086             }
1087         }
1088         /* e.g., trimmed_sgr0 */
1089         if (capability != ABSENT_STRING &&
1090             capability != CANCELLED_STRING &&
1091             capability != tterm->Strings[i])
1092             free(capability);
1093     }
1094     len += (int) (num_strings * 2);
1095
1096     /*
1097      * This piece of code should be an effective inverse of the functions
1098      * postprocess_terminfo() and postprocess_terminfo() in parse_entry.c.
1099      * Much more work should be done on this to support dumping termcaps.
1100      */
1101     if (tversion == V_HPUX) {
1102         if (VALID_STRING(memory_lock)) {
1103             _nc_SPRINTF(buffer, _nc_SLIMIT(sizeof(buffer))
1104                         "meml=%s", memory_lock);
1105             WRAP_CONCAT;
1106         }
1107         if (VALID_STRING(memory_unlock)) {
1108             _nc_SPRINTF(buffer, _nc_SLIMIT(sizeof(buffer))
1109                         "memu=%s", memory_unlock);
1110             WRAP_CONCAT;
1111         }
1112     } else if (tversion == V_AIX) {
1113         if (VALID_STRING(acs_chars)) {
1114             bool box_ok = TRUE;
1115             const char *acstrans = "lqkxjmwuvtn";
1116             const char *cp;
1117             char *tp, *sp, boxchars[11];
1118
1119             tp = boxchars;
1120             for (cp = acstrans; *cp; cp++) {
1121                 sp = (strchr) (acs_chars, *cp);
1122                 if (sp)
1123                     *tp++ = sp[1];
1124                 else {
1125                     box_ok = FALSE;
1126                     break;
1127                 }
1128             }
1129             tp[0] = '\0';
1130
1131             if (box_ok) {
1132                 char *tmp = _nc_tic_expand(boxchars,
1133                                            (outform == F_TERMINFO),
1134                                            numbers);
1135                 _nc_STRCPY(buffer, "box1=", sizeof(buffer));
1136                 while (*tmp != '\0') {
1137                     size_t have = strlen(buffer);
1138                     size_t next = strlen(tmp);
1139                     size_t want = have + next + 1;
1140                     size_t last = next;
1141                     char save = '\0';
1142
1143                     /*
1144                      * If the expanded string is too long for the buffer,
1145                      * chop it off and save the location where we chopped it.
1146                      */
1147                     if (want >= sizeof(buffer)) {
1148                         save = tmp[last];
1149                         tmp[last] = '\0';
1150                     }
1151                     _nc_STRCAT(buffer, tmp, sizeof(buffer));
1152
1153                     /*
1154                      * If we chopped the buffer, replace the missing piece and
1155                      * shift everything to append the remainder.
1156                      */
1157                     if (save != '\0') {
1158                         next = 0;
1159                         tmp[last] = save;
1160                         while ((tmp[next] = tmp[last + next]) != '\0') {
1161                             ++next;
1162                         }
1163                     } else {
1164                         break;
1165                     }
1166                 }
1167                 WRAP_CONCAT;
1168             }
1169         }
1170     }
1171
1172     /*
1173      * kludge: trim off trailer to avoid an extra blank line
1174      * in infocmp -u output when there are no string differences
1175      */
1176     if (outcount) {
1177         bool trimmed = FALSE;
1178         j = (PredIdx) outbuf.used;
1179         if (wrapped && did_wrap) {
1180             /* EMPTY */ ;
1181         } else if (j >= 2
1182                    && outbuf.text[j - 1] == '\t'
1183                    && outbuf.text[j - 2] == '\n') {
1184             outbuf.used -= 2;
1185             trimmed = TRUE;
1186         } else if (j >= 4
1187                    && outbuf.text[j - 1] == ':'
1188                    && outbuf.text[j - 2] == '\t'
1189                    && outbuf.text[j - 3] == '\n'
1190                    && outbuf.text[j - 4] == '\\') {
1191             outbuf.used -= 4;
1192             trimmed = TRUE;
1193         }
1194         if (trimmed) {
1195             outbuf.text[outbuf.used] = '\0';
1196             column = oldcol;
1197             strcpy_DYN(&outbuf, " ");
1198         }
1199     }
1200 #if 0
1201     fprintf(stderr, "num_bools = %d\n", num_bools);
1202     fprintf(stderr, "num_values = %d\n", num_values);
1203     fprintf(stderr, "num_strings = %d\n", num_strings);
1204     fprintf(stderr, "term_names=%s, len=%d, strlen(outbuf)=%d, outbuf=%s\n",
1205             tterm->term_names, len, outbuf.used, outbuf.text);
1206 #endif
1207     /*
1208      * Here's where we use infodump to trigger a more stringent length check
1209      * for termcap-translation purposes.
1210      * Return the length of the raw entry, without tc= expansions,
1211      * It gives an idea of which entries are deadly to even *scan past*,
1212      * as opposed to *use*.
1213      */
1214     return (infodump ? len : (int) termcap_length(outbuf.text));
1215 }
1216
1217 static bool
1218 kill_string(TERMTYPE2 *tterm, char *cap)
1219 {
1220     unsigned n;
1221     for (n = 0; n < NUM_STRINGS(tterm); ++n) {
1222         if (cap == tterm->Strings[n]) {
1223             tterm->Strings[n] = ABSENT_STRING;
1224             return TRUE;
1225         }
1226     }
1227     return FALSE;
1228 }
1229
1230 static char *
1231 find_string(TERMTYPE2 *tterm, char *name)
1232 {
1233     PredIdx n;
1234     for (n = 0; n < NUM_STRINGS(tterm); ++n) {
1235         if (version_filter(STRING, n)
1236             && !strcmp(name, strnames[n])) {
1237             char *cap = tterm->Strings[n];
1238             if (VALID_STRING(cap)) {
1239                 return cap;
1240             }
1241             break;
1242         }
1243     }
1244     return ABSENT_STRING;
1245 }
1246
1247 /*
1248  * This is used to remove function-key labels from a termcap entry to
1249  * make it smaller.
1250  */
1251 static int
1252 kill_labels(TERMTYPE2 *tterm, int target)
1253 {
1254     int n;
1255     int result = 0;
1256     char *cap;
1257     char name[10];
1258
1259     for (n = 0; n <= 10; ++n) {
1260         _nc_SPRINTF(name, _nc_SLIMIT(sizeof(name)) "lf%d", n);
1261         if ((cap = find_string(tterm, name)) != ABSENT_STRING
1262             && kill_string(tterm, cap)) {
1263             target -= (int) (strlen(cap) + 5);
1264             ++result;
1265             if (target < 0)
1266                 break;
1267         }
1268     }
1269     return result;
1270 }
1271
1272 /*
1273  * This is used to remove function-key definitions from a termcap entry to
1274  * make it smaller.
1275  */
1276 static int
1277 kill_fkeys(TERMTYPE2 *tterm, int target)
1278 {
1279     int n;
1280     int result = 0;
1281     char *cap;
1282     char name[10];
1283
1284     for (n = 60; n >= 0; --n) {
1285         _nc_SPRINTF(name, _nc_SLIMIT(sizeof(name)) "kf%d", n);
1286         if ((cap = find_string(tterm, name)) != ABSENT_STRING
1287             && kill_string(tterm, cap)) {
1288             target -= (int) (strlen(cap) + 5);
1289             ++result;
1290             if (target < 0)
1291                 break;
1292         }
1293     }
1294     return result;
1295 }
1296
1297 /*
1298  * Check if the given acsc string is a 1-1 mapping, i.e., just-like-vt100.
1299  * Also, since this is for termcap, we only care about the line-drawing map.
1300  */
1301 #define isLine(c) (strchr("lmkjtuvwqxn", c) != 0)
1302
1303 static bool
1304 one_one_mapping(const char *mapping)
1305 {
1306     bool result = TRUE;
1307
1308     if (mapping != ABSENT_STRING) {
1309         int n = 0;
1310         while (mapping[n] != '\0') {
1311             if (isLine(mapping[n]) &&
1312                 mapping[n] != mapping[n + 1]) {
1313                 result = FALSE;
1314                 break;
1315             }
1316             n += 2;
1317         }
1318     }
1319     return result;
1320 }
1321
1322 #define FMT_ENTRY() \
1323                 fmt_entry(tterm, pred, \
1324                         0, \
1325                         suppress_untranslatable, \
1326                         infodump, numbers)
1327
1328 #define SHOW_WHY PRINTF
1329
1330 static bool
1331 purged_acs(TERMTYPE2 *tterm)
1332 {
1333     bool result = FALSE;
1334
1335     if (VALID_STRING(acs_chars)) {
1336         if (!one_one_mapping(acs_chars)) {
1337             enter_alt_charset_mode = ABSENT_STRING;
1338             exit_alt_charset_mode = ABSENT_STRING;
1339             SHOW_WHY("# (rmacs/smacs removed for consistency)\n");
1340         }
1341         result = TRUE;
1342     }
1343     return result;
1344 }
1345
1346 static void
1347 encode_b64(char *target, char *source, unsigned state, int *saved)
1348 {
1349     /* RFC-4648 */
1350     static const char data[] =
1351     "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
1352     "abcdefghijklmnopqrstuvwxyz"
1353     "0123456789" "-_";
1354     int ch = UChar(source[state]);
1355
1356     switch (state % 3) {
1357     case 0:
1358         *target++ = data[(ch >> 2) & 077];
1359         *saved = (ch << 4);
1360         break;
1361     case 1:
1362         *target++ = data[((ch >> 4) | *saved) & 077];
1363         *saved = (ch << 2);
1364         break;
1365     case 2:
1366         *target++ = data[((ch >> 6) | *saved) & 077];
1367         *target++ = data[ch & 077];
1368         *saved = 0;
1369         break;
1370     }
1371     *target = '\0';
1372 }
1373
1374 /*
1375  * Dump a single entry.
1376  */
1377 void
1378 dump_entry(TERMTYPE2 *tterm,
1379            int suppress_untranslatable,
1380            int limited,
1381            int numbers,
1382            PredFunc pred)
1383 {
1384     TERMTYPE2 save_tterm;
1385     int len, critlen;
1386     const char *legend;
1387     bool infodump;
1388
1389     if (quickdump) {
1390         char bigbuf[65536];
1391         unsigned n;
1392         unsigned offset = 0;
1393         separator = "";
1394         trailer = "\n";
1395         indent = 0;
1396         if (_nc_write_object(tterm, bigbuf, &offset, sizeof(bigbuf)) == OK) {
1397             char numbuf[80];
1398             if (quickdump & 1) {
1399                 if (outbuf.used)
1400                     wrap_concat("\n");
1401                 wrap_concat("hex:");
1402                 for (n = 0; n < offset; ++n) {
1403                     _nc_SPRINTF(numbuf, _nc_SLIMIT(sizeof(numbuf))
1404                                 "%02X", UChar(bigbuf[n]));
1405                     wrap_concat(numbuf);
1406                 }
1407             }
1408             if (quickdump & 2) {
1409                 static char padding[] =
1410                 {0, 0};
1411                 int value = 0;
1412                 if (outbuf.used)
1413                     wrap_concat("\n");
1414                 wrap_concat("b64:");
1415                 for (n = 0; n < offset; ++n) {
1416                     encode_b64(numbuf, bigbuf, n, &value);
1417                     wrap_concat(numbuf);
1418                 }
1419                 switch (n % 3) {
1420                 case 0:
1421                     break;
1422                 case 1:
1423                     encode_b64(numbuf, padding, 1, &value);
1424                     wrap_concat(numbuf);
1425                     wrap_concat("==");
1426                     break;
1427                 case 2:
1428                     encode_b64(numbuf, padding, 1, &value);
1429                     wrap_concat(numbuf);
1430                     wrap_concat("=");
1431                     break;
1432                 }
1433             }
1434         }
1435         return;
1436     }
1437
1438     if (TcOutput()) {
1439         critlen = MAX_TERMCAP_LENGTH;
1440         legend = "older termcap";
1441         infodump = FALSE;
1442         set_obsolete_termcaps(tterm);
1443     } else {
1444         critlen = MAX_TERMINFO_LENGTH;
1445         legend = "terminfo";
1446         infodump = TRUE;
1447     }
1448
1449     save_sgr = set_attributes;
1450
1451     if ((FMT_ENTRY() > critlen)
1452         && limited) {
1453
1454         save_tterm = *tterm;
1455         if (!suppress_untranslatable) {
1456             SHOW_WHY("# (untranslatable capabilities removed to fit entry within %d bytes)\n",
1457                      critlen);
1458             suppress_untranslatable = TRUE;
1459         }
1460         if (FMT_ENTRY() > critlen) {
1461             /*
1462              * We pick on sgr because it's a nice long string capability that
1463              * is really just an optimization hack.  Another good candidate is
1464              * acsc since it is both long and unused by BSD termcap.
1465              */
1466             bool changed = FALSE;
1467
1468 #if NCURSES_XNAMES
1469             /*
1470              * Extended names are most likely function-key definitions.  Drop
1471              * those first.
1472              */
1473             unsigned n;
1474             for (n = STRCOUNT; n < NUM_STRINGS(tterm); n++) {
1475                 const char *name = ExtStrname(tterm, (int) n, strnames);
1476
1477                 if (VALID_STRING(tterm->Strings[n])) {
1478                     set_attributes = ABSENT_STRING;
1479                     /* we remove long names anyway - only report the short */
1480                     if (strlen(name) <= 2) {
1481                         SHOW_WHY("# (%s removed to fit entry within %d bytes)\n",
1482                                  name,
1483                                  critlen);
1484                     }
1485                     changed = TRUE;
1486                     if (FMT_ENTRY() <= critlen)
1487                         break;
1488                 }
1489             }
1490 #endif
1491             if (VALID_STRING(set_attributes)) {
1492                 set_attributes = ABSENT_STRING;
1493                 SHOW_WHY("# (sgr removed to fit entry within %d bytes)\n",
1494                          critlen);
1495                 changed = TRUE;
1496             }
1497             if (!changed || (FMT_ENTRY() > critlen)) {
1498                 if (purged_acs(tterm)) {
1499                     acs_chars = ABSENT_STRING;
1500                     SHOW_WHY("# (acsc removed to fit entry within %d bytes)\n",
1501                              critlen);
1502                     changed = TRUE;
1503                 }
1504             }
1505             if (!changed || (FMT_ENTRY() > critlen)) {
1506                 int oldversion = tversion;
1507
1508                 tversion = V_BSD;
1509                 SHOW_WHY("# (terminfo-only capabilities suppressed to fit entry within %d bytes)\n",
1510                          critlen);
1511
1512                 len = FMT_ENTRY();
1513                 if (len > critlen
1514                     && kill_labels(tterm, len - critlen)) {
1515                     SHOW_WHY("# (some labels capabilities suppressed to fit entry within %d bytes)\n",
1516                              critlen);
1517                     len = FMT_ENTRY();
1518                 }
1519                 if (len > critlen
1520                     && kill_fkeys(tterm, len - critlen)) {
1521                     SHOW_WHY("# (some function-key capabilities suppressed to fit entry within %d bytes)\n",
1522                              critlen);
1523                     len = FMT_ENTRY();
1524                 }
1525                 if (len > critlen) {
1526                     (void) fprintf(stderr,
1527                                    "warning: %s entry is %d bytes long\n",
1528                                    _nc_first_name(tterm->term_names),
1529                                    len);
1530                     SHOW_WHY("# WARNING: this entry, %d bytes long, may core-dump %s libraries!\n",
1531                              len, legend);
1532                 }
1533                 tversion = oldversion;
1534             }
1535             set_attributes = save_sgr;
1536             *tterm = save_tterm;
1537         }
1538     } else if (!version_filter(STRING, STR_IDX(acs_chars))) {
1539         save_tterm = *tterm;
1540         if (purged_acs(tterm)) {
1541             (void) FMT_ENTRY();
1542         }
1543         *tterm = save_tterm;
1544     }
1545 }
1546
1547 void
1548 dump_uses(const char *name, bool infodump)
1549 /* dump "use=" clauses in the appropriate format */
1550 {
1551     char buffer[MAX_TERMINFO_LENGTH];
1552
1553     if (TcOutput())
1554         trim_trailing();
1555     _nc_SPRINTF(buffer, _nc_SLIMIT(sizeof(buffer))
1556                 "%s%s", infodump ? "use=" : "tc=", name);
1557     wrap_concat(buffer);
1558 }
1559
1560 int
1561 show_entry(void)
1562 {
1563     /*
1564      * Trim any remaining whitespace.
1565      */
1566     if (outbuf.used != 0) {
1567         bool infodump = !TcOutput();
1568         char delim = (char) (infodump ? ',' : ':');
1569         int j;
1570
1571         for (j = (int) outbuf.used - 1; j > 0; --j) {
1572             char ch = outbuf.text[j];
1573             if (ch == '\n') {
1574                 ;
1575             } else if (isspace(UChar(ch))) {
1576                 outbuf.used = (size_t) j;
1577             } else if (!infodump && ch == '\\') {
1578                 outbuf.used = (size_t) j;
1579             } else if (ch == delim && (j == 0 || outbuf.text[j - 1] != '\\')) {
1580                 outbuf.used = (size_t) (j + 1);
1581             } else {
1582                 break;
1583             }
1584         }
1585         outbuf.text[outbuf.used] = '\0';
1586     }
1587     if (outbuf.text != 0) {
1588         (void) fputs(outbuf.text, stdout);
1589         putchar('\n');
1590     }
1591     return (int) outbuf.used;
1592 }
1593
1594 void
1595 compare_entry(PredHook hook,
1596               TERMTYPE2 *tp GCC_UNUSED,
1597               bool quiet)
1598 /* compare two entries */
1599 {
1600     PredIdx i, j;
1601     NCURSES_CONST char *name;
1602
1603     if (!quiet)
1604         fputs("    comparing booleans.\n", stdout);
1605     for_each_boolean(j, tp) {
1606         i = BoolIndirect(j);
1607         name = ExtBoolname(tp, (int) i, bool_names);
1608
1609         if (isObsolete(outform, name))
1610             continue;
1611
1612         (*hook) (CMP_BOOLEAN, i, name);
1613     }
1614
1615     if (!quiet)
1616         fputs("    comparing numbers.\n", stdout);
1617     for_each_number(j, tp) {
1618         i = NumIndirect(j);
1619         name = ExtNumname(tp, (int) i, num_names);
1620
1621         if (isObsolete(outform, name))
1622             continue;
1623
1624         (*hook) (CMP_NUMBER, i, name);
1625     }
1626
1627     if (!quiet)
1628         fputs("    comparing strings.\n", stdout);
1629     for_each_string(j, tp) {
1630         i = StrIndirect(j);
1631         name = ExtStrname(tp, (int) i, str_names);
1632
1633         if (isObsolete(outform, name))
1634             continue;
1635
1636         (*hook) (CMP_STRING, i, name);
1637     }
1638
1639     /* (void) fputs("    comparing use entries.\n", stdout); */
1640     (*hook) (CMP_USE, 0, "use");
1641
1642 }
1643
1644 #define NOTSET(s)       ((s) == 0)
1645
1646 /*
1647  * This bit of legerdemain turns all the terminfo variable names into
1648  * references to locations in the arrays Booleans, Numbers, and Strings ---
1649  * precisely what's needed.
1650  */
1651 #undef CUR
1652 #define CUR tp->
1653
1654 static void
1655 set_obsolete_termcaps(TERMTYPE2 *tp)
1656 {
1657 #include "capdefaults.c"
1658 }
1659
1660 /*
1661  * Convert an alternate-character-set string to canonical form: sorted and
1662  * unique.
1663  */
1664 void
1665 repair_acsc(TERMTYPE2 *tp)
1666 {
1667     if (VALID_STRING(acs_chars)) {
1668         size_t n, m;
1669         char mapped[256];
1670         char extra = 0;
1671         unsigned source;
1672         unsigned target;
1673         bool fix_needed = FALSE;
1674
1675         for (n = 0, source = 0; acs_chars[n] != 0; n++) {
1676             target = UChar(acs_chars[n]);
1677             if (source >= target) {
1678                 fix_needed = TRUE;
1679                 break;
1680             }
1681             source = target;
1682             if (acs_chars[n + 1])
1683                 n++;
1684         }
1685         if (fix_needed) {
1686             memset(mapped, 0, sizeof(mapped));
1687             for (n = 0; acs_chars[n] != 0; n++) {
1688                 source = UChar(acs_chars[n]);
1689                 if ((target = (unsigned char) acs_chars[n + 1]) != 0) {
1690                     mapped[source] = (char) target;
1691                     n++;
1692                 } else {
1693                     extra = (char) source;
1694                 }
1695             }
1696             for (n = m = 0; n < sizeof(mapped); n++) {
1697                 if (mapped[n]) {
1698                     acs_chars[m++] = (char) n;
1699                     acs_chars[m++] = mapped[n];
1700                 }
1701             }
1702             if (extra)
1703                 acs_chars[m++] = extra;         /* garbage in, garbage out */
1704             acs_chars[m] = 0;
1705         }
1706     }
1707 }