]> ncurses.scripts.mit.edu Git - ncurses.git/blob - progs/dump_entry.c
ncurses 6.0 - patch 20170304
[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.149 2017/03/04 20:18:20 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 TERMTYPE *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(TERMTYPE *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(TERMTYPE *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 #define SAME_CAP(n,cap) (&tterm->Strings[n] == &cap)
800 #define EXTRA_CAP 20
801
802 int
803 fmt_entry(TERMTYPE *tterm,
804           PredFunc pred,
805           int content_only,
806           int suppress_untranslatable,
807           int infodump,
808           int numbers)
809 {
810     PredIdx i, j;
811     char buffer[MAX_TERMINFO_LENGTH + EXTRA_CAP];
812     char *capability;
813     NCURSES_CONST char *name;
814     int predval, len;
815     PredIdx num_bools = 0;
816     PredIdx num_values = 0;
817     PredIdx num_strings = 0;
818     bool outcount = 0;
819
820 #define WRAP_CONCAT     \
821         wrap_concat(buffer); \
822         outcount = TRUE
823
824     len = 12;                   /* terminfo file-header */
825
826     if (pred == 0) {
827         cur_type = tterm;
828         pred = dump_predicate;
829     }
830
831     strcpy_DYN(&outbuf, 0);
832     if (content_only) {
833         column = indent;        /* FIXME: workaround to prevent empty lines */
834     } else {
835         strcpy_DYN(&outbuf, tterm->term_names);
836
837         /*
838          * Colon is legal in terminfo descriptions, but not in termcap.
839          */
840         if (!infodump) {
841             char *p = outbuf.text;
842             while (*p) {
843                 if (*p == ':') {
844                     *p = '=';
845                 }
846                 ++p;
847             }
848         }
849         strcpy_DYN(&outbuf, separator);
850         column = (int) outbuf.used;
851         if (height > 1)
852             force_wrap();
853     }
854
855     for_each_boolean(j, tterm) {
856         i = BoolIndirect(j);
857         name = ExtBoolname(tterm, (int) i, bool_names);
858         assert(strlen(name) < sizeof(buffer) - EXTRA_CAP);
859
860         if (!version_filter(BOOLEAN, i))
861             continue;
862         else if (isObsolete(outform, name))
863             continue;
864
865         predval = pred(BOOLEAN, i);
866         if (predval != FAIL) {
867             _nc_STRCPY(buffer, name, sizeof(buffer));
868             if (predval <= 0)
869                 _nc_STRCAT(buffer, "@", sizeof(buffer));
870             else if (i + 1 > num_bools)
871                 num_bools = i + 1;
872             WRAP_CONCAT;
873         }
874     }
875
876     if (column != indent && height > 1)
877         force_wrap();
878
879     for_each_number(j, tterm) {
880         i = NumIndirect(j);
881         name = ExtNumname(tterm, (int) i, num_names);
882         assert(strlen(name) < sizeof(buffer) - EXTRA_CAP);
883
884         if (!version_filter(NUMBER, i))
885             continue;
886         else if (isObsolete(outform, name))
887             continue;
888
889         predval = pred(NUMBER, i);
890         if (predval != FAIL) {
891             if (tterm->Numbers[i] < 0) {
892                 _nc_SPRINTF(buffer, _nc_SLIMIT(sizeof(buffer))
893                             "%s@", name);
894             } else {
895                 _nc_SPRINTF(buffer, _nc_SLIMIT(sizeof(buffer))
896                             "%s#%d", name, tterm->Numbers[i]);
897                 if (i + 1 > num_values)
898                     num_values = i + 1;
899             }
900             WRAP_CONCAT;
901         }
902     }
903
904     if (column != indent && height > 1)
905         force_wrap();
906
907     len += (int) (num_bools
908                   + num_values * 2
909                   + strlen(tterm->term_names) + 1);
910     if (len & 1)
911         len++;
912
913 #undef CUR
914 #define CUR tterm->
915     if (outform == F_TERMCAP) {
916         if (termcap_reset != ABSENT_STRING) {
917             if (init_3string != ABSENT_STRING
918                 && !strcmp(init_3string, termcap_reset))
919                 DISCARD(init_3string);
920
921             if (reset_2string != ABSENT_STRING
922                 && !strcmp(reset_2string, termcap_reset))
923                 DISCARD(reset_2string);
924         }
925     }
926
927     for_each_string(j, tterm) {
928         i = StrIndirect(j);
929         name = ExtStrname(tterm, (int) i, str_names);
930         assert(strlen(name) < sizeof(buffer) - EXTRA_CAP);
931
932         capability = tterm->Strings[i];
933
934         if (!version_filter(STRING, i))
935             continue;
936         else if (isObsolete(outform, name))
937             continue;
938
939 #if NCURSES_XNAMES
940         /*
941          * Extended names can be longer than 2 characters, but termcap programs
942          * cannot read those (filter them out).
943          */
944         if (outform == F_TERMCAP && (strlen(name) > 2))
945             continue;
946 #endif
947
948         if (outform == F_TERMCAP) {
949             /*
950              * Some older versions of vi want rmir/smir to be defined
951              * for ich/ich1 to work.  If they're not defined, force
952              * them to be output as defined and empty.
953              */
954             if (PRESENT(insert_character) || PRESENT(parm_ich)) {
955                 if (SAME_CAP(i, enter_insert_mode)
956                     && enter_insert_mode == ABSENT_STRING) {
957                     _nc_STRCPY(buffer, "im=", sizeof(buffer));
958                     WRAP_CONCAT;
959                     continue;
960                 }
961
962                 if (SAME_CAP(i, exit_insert_mode)
963                     && exit_insert_mode == ABSENT_STRING) {
964                     _nc_STRCPY(buffer, "ei=", sizeof(buffer));
965                     WRAP_CONCAT;
966                     continue;
967                 }
968             }
969             /*
970              * termcap applications such as screen will be confused if sgr0
971              * is translated to a string containing rmacs.  Filter that out.
972              */
973             if (PRESENT(exit_attribute_mode)) {
974                 if (SAME_CAP(i, exit_attribute_mode)) {
975                     char *trimmed_sgr0;
976                     char *my_sgr = set_attributes;
977
978                     set_attributes = save_sgr;
979
980                     trimmed_sgr0 = _nc_trim_sgr0(tterm);
981                     if (strcmp(capability, trimmed_sgr0))
982                         capability = trimmed_sgr0;
983                     else {
984                         if (trimmed_sgr0 != exit_attribute_mode)
985                             free(trimmed_sgr0);
986                     }
987
988                     set_attributes = my_sgr;
989                 }
990             }
991         }
992
993         predval = pred(STRING, i);
994         buffer[0] = '\0';
995
996         if (predval != FAIL) {
997             if (capability != ABSENT_STRING
998                 && i + 1 > num_strings)
999                 num_strings = i + 1;
1000
1001             if (!VALID_STRING(capability)) {
1002                 _nc_SPRINTF(buffer, _nc_SLIMIT(sizeof(buffer))
1003                             "%s@", name);
1004                 WRAP_CONCAT;
1005             } else if (TcOutput()) {
1006                 char *srccap = _nc_tic_expand(capability, TRUE, numbers);
1007                 int params = (((i < (int) SIZEOF(parametrized)) &&
1008                                (i < STRCOUNT))
1009                               ? parametrized[i]
1010                               : ((*srccap == 'k')
1011                                  ? 0
1012                                  : has_params(srccap)));
1013                 char *cv = _nc_infotocap(name, srccap, params);
1014
1015                 if (cv == 0) {
1016                     if (outform == F_TCONVERR) {
1017                         _nc_SPRINTF(buffer, _nc_SLIMIT(sizeof(buffer))
1018                                     "%s=!!! %s WILL NOT CONVERT !!!",
1019                                     name, srccap);
1020                     } else if (suppress_untranslatable) {
1021                         continue;
1022                     } else {
1023                         char *s = srccap, *d = buffer;
1024                         _nc_SPRINTF(d, _nc_SLIMIT(sizeof(buffer)) "..%s=", name);
1025                         d += strlen(d);
1026                         while ((*d = *s++) != 0) {
1027                             if (*d == ':') {
1028                                 *d++ = '\\';
1029                                 *d = ':';
1030                             } else if (*d == '\\') {
1031                                 *++d = *s++;
1032                             }
1033                             d++;
1034                         }
1035                     }
1036                 } else {
1037                     _nc_SPRINTF(buffer, _nc_SLIMIT(sizeof(buffer))
1038                                 "%s=%s", name, cv);
1039                 }
1040                 len += (int) strlen(capability) + 1;
1041                 WRAP_CONCAT;
1042             } else {
1043                 char *src = _nc_tic_expand(capability,
1044                                            outform == F_TERMINFO, numbers);
1045
1046                 strcpy_DYN(&tmpbuf, 0);
1047                 strcpy_DYN(&tmpbuf, name);
1048                 strcpy_DYN(&tmpbuf, "=");
1049                 if (pretty
1050                     && (outform == F_TERMINFO
1051                         || outform == F_VARIABLE)) {
1052                     fmt_complex(tterm, name, src, 1);
1053                 } else {
1054                     strcpy_DYN(&tmpbuf, src);
1055                 }
1056                 len += (int) strlen(capability) + 1;
1057                 wrap_concat(tmpbuf.text);
1058                 outcount = TRUE;
1059             }
1060         }
1061         /* e.g., trimmed_sgr0 */
1062         if (capability != ABSENT_STRING &&
1063             capability != CANCELLED_STRING &&
1064             capability != tterm->Strings[i])
1065             free(capability);
1066     }
1067     len += (int) (num_strings * 2);
1068
1069     /*
1070      * This piece of code should be an effective inverse of the functions
1071      * postprocess_terminfo() and postprocess_terminfo() in parse_entry.c.
1072      * Much more work should be done on this to support dumping termcaps.
1073      */
1074     if (tversion == V_HPUX) {
1075         if (VALID_STRING(memory_lock)) {
1076             _nc_SPRINTF(buffer, _nc_SLIMIT(sizeof(buffer))
1077                         "meml=%s", memory_lock);
1078             WRAP_CONCAT;
1079         }
1080         if (VALID_STRING(memory_unlock)) {
1081             _nc_SPRINTF(buffer, _nc_SLIMIT(sizeof(buffer))
1082                         "memu=%s", memory_unlock);
1083             WRAP_CONCAT;
1084         }
1085     } else if (tversion == V_AIX) {
1086         if (VALID_STRING(acs_chars)) {
1087             bool box_ok = TRUE;
1088             const char *acstrans = "lqkxjmwuvtn";
1089             const char *cp;
1090             char *tp, *sp, boxchars[11];
1091
1092             tp = boxchars;
1093             for (cp = acstrans; *cp; cp++) {
1094                 sp = (strchr) (acs_chars, *cp);
1095                 if (sp)
1096                     *tp++ = sp[1];
1097                 else {
1098                     box_ok = FALSE;
1099                     break;
1100                 }
1101             }
1102             tp[0] = '\0';
1103
1104             if (box_ok) {
1105                 char *tmp = _nc_tic_expand(boxchars,
1106                                            (outform == F_TERMINFO),
1107                                            numbers);
1108                 _nc_STRCPY(buffer, "box1=", sizeof(buffer));
1109                 while (*tmp != '\0') {
1110                     size_t have = strlen(buffer);
1111                     size_t next = strlen(tmp);
1112                     size_t want = have + next + 1;
1113                     size_t last = next;
1114                     char save = '\0';
1115
1116                     /*
1117                      * If the expanded string is too long for the buffer,
1118                      * chop it off and save the location where we chopped it.
1119                      */
1120                     if (want >= sizeof(buffer)) {
1121                         save = tmp[last];
1122                         tmp[last] = '\0';
1123                     }
1124                     _nc_STRCAT(buffer, tmp, sizeof(buffer));
1125
1126                     /*
1127                      * If we chopped the buffer, replace the missing piece and
1128                      * shift everything to append the remainder.
1129                      */
1130                     if (save != '\0') {
1131                         next = 0;
1132                         tmp[last] = save;
1133                         while ((tmp[next] = tmp[last + next]) != '\0') {
1134                             ++next;
1135                         }
1136                     } else {
1137                         break;
1138                     }
1139                 }
1140                 WRAP_CONCAT;
1141             }
1142         }
1143     }
1144
1145     /*
1146      * kludge: trim off trailer to avoid an extra blank line
1147      * in infocmp -u output when there are no string differences
1148      */
1149     if (outcount) {
1150         bool trimmed = FALSE;
1151         j = (PredIdx) outbuf.used;
1152         if (wrapped && did_wrap) {
1153             /* EMPTY */ ;
1154         } else if (j >= 2
1155                    && outbuf.text[j - 1] == '\t'
1156                    && outbuf.text[j - 2] == '\n') {
1157             outbuf.used -= 2;
1158             trimmed = TRUE;
1159         } else if (j >= 4
1160                    && outbuf.text[j - 1] == ':'
1161                    && outbuf.text[j - 2] == '\t'
1162                    && outbuf.text[j - 3] == '\n'
1163                    && outbuf.text[j - 4] == '\\') {
1164             outbuf.used -= 4;
1165             trimmed = TRUE;
1166         }
1167         if (trimmed) {
1168             outbuf.text[outbuf.used] = '\0';
1169             column = oldcol;
1170             strcpy_DYN(&outbuf, " ");
1171         }
1172     }
1173 #if 0
1174     fprintf(stderr, "num_bools = %d\n", num_bools);
1175     fprintf(stderr, "num_values = %d\n", num_values);
1176     fprintf(stderr, "num_strings = %d\n", num_strings);
1177     fprintf(stderr, "term_names=%s, len=%d, strlen(outbuf)=%d, outbuf=%s\n",
1178             tterm->term_names, len, outbuf.used, outbuf.text);
1179 #endif
1180     /*
1181      * Here's where we use infodump to trigger a more stringent length check
1182      * for termcap-translation purposes.
1183      * Return the length of the raw entry, without tc= expansions,
1184      * It gives an idea of which entries are deadly to even *scan past*,
1185      * as opposed to *use*.
1186      */
1187     return (infodump ? len : (int) termcap_length(outbuf.text));
1188 }
1189
1190 static bool
1191 kill_string(TERMTYPE *tterm, char *cap)
1192 {
1193     unsigned n;
1194     for (n = 0; n < NUM_STRINGS(tterm); ++n) {
1195         if (cap == tterm->Strings[n]) {
1196             tterm->Strings[n] = ABSENT_STRING;
1197             return TRUE;
1198         }
1199     }
1200     return FALSE;
1201 }
1202
1203 static char *
1204 find_string(TERMTYPE *tterm, char *name)
1205 {
1206     PredIdx n;
1207     for (n = 0; n < NUM_STRINGS(tterm); ++n) {
1208         if (version_filter(STRING, n)
1209             && !strcmp(name, strnames[n])) {
1210             char *cap = tterm->Strings[n];
1211             if (VALID_STRING(cap)) {
1212                 return cap;
1213             }
1214             break;
1215         }
1216     }
1217     return ABSENT_STRING;
1218 }
1219
1220 /*
1221  * This is used to remove function-key labels from a termcap entry to
1222  * make it smaller.
1223  */
1224 static int
1225 kill_labels(TERMTYPE *tterm, int target)
1226 {
1227     int n;
1228     int result = 0;
1229     char *cap;
1230     char name[10];
1231
1232     for (n = 0; n <= 10; ++n) {
1233         _nc_SPRINTF(name, _nc_SLIMIT(sizeof(name)) "lf%d", n);
1234         if ((cap = find_string(tterm, name)) != ABSENT_STRING
1235             && kill_string(tterm, cap)) {
1236             target -= (int) (strlen(cap) + 5);
1237             ++result;
1238             if (target < 0)
1239                 break;
1240         }
1241     }
1242     return result;
1243 }
1244
1245 /*
1246  * This is used to remove function-key definitions from a termcap entry to
1247  * make it smaller.
1248  */
1249 static int
1250 kill_fkeys(TERMTYPE *tterm, int target)
1251 {
1252     int n;
1253     int result = 0;
1254     char *cap;
1255     char name[10];
1256
1257     for (n = 60; n >= 0; --n) {
1258         _nc_SPRINTF(name, _nc_SLIMIT(sizeof(name)) "kf%d", n);
1259         if ((cap = find_string(tterm, name)) != ABSENT_STRING
1260             && kill_string(tterm, cap)) {
1261             target -= (int) (strlen(cap) + 5);
1262             ++result;
1263             if (target < 0)
1264                 break;
1265         }
1266     }
1267     return result;
1268 }
1269
1270 /*
1271  * Check if the given acsc string is a 1-1 mapping, i.e., just-like-vt100.
1272  * Also, since this is for termcap, we only care about the line-drawing map.
1273  */
1274 #define isLine(c) (strchr("lmkjtuvwqxn", c) != 0)
1275
1276 static bool
1277 one_one_mapping(const char *mapping)
1278 {
1279     bool result = TRUE;
1280
1281     if (mapping != ABSENT_STRING) {
1282         int n = 0;
1283         while (mapping[n] != '\0') {
1284             if (isLine(mapping[n]) &&
1285                 mapping[n] != mapping[n + 1]) {
1286                 result = FALSE;
1287                 break;
1288             }
1289             n += 2;
1290         }
1291     }
1292     return result;
1293 }
1294
1295 #define FMT_ENTRY() \
1296                 fmt_entry(tterm, pred, \
1297                         0, \
1298                         suppress_untranslatable, \
1299                         infodump, numbers)
1300
1301 #define SHOW_WHY PRINTF
1302
1303 static bool
1304 purged_acs(TERMTYPE *tterm)
1305 {
1306     bool result = FALSE;
1307
1308     if (VALID_STRING(acs_chars)) {
1309         if (!one_one_mapping(acs_chars)) {
1310             enter_alt_charset_mode = ABSENT_STRING;
1311             exit_alt_charset_mode = ABSENT_STRING;
1312             SHOW_WHY("# (rmacs/smacs removed for consistency)\n");
1313         }
1314         result = TRUE;
1315     }
1316     return result;
1317 }
1318
1319 static void
1320 encode_b64(char *target, char *source, unsigned state, int *saved)
1321 {
1322     /* RFC-4648 */
1323     static const char data[] =
1324     "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
1325     "abcdefghijklmnopqrstuvwxyz"
1326     "0123456789" "-_";
1327     int ch = UChar(source[state]);
1328
1329     switch (state % 3) {
1330     case 0:
1331         *target++ = data[(ch >> 2) & 077];
1332         *saved = (ch << 4);
1333         break;
1334     case 1:
1335         *target++ = data[((ch >> 4) | *saved) & 077];
1336         *saved = (ch << 2);
1337         break;
1338     case 2:
1339         *target++ = data[((ch >> 6) | *saved) & 077];
1340         *target++ = data[ch & 077];
1341         *saved = 0;
1342         break;
1343     }
1344     *target = '\0';
1345 }
1346
1347 /*
1348  * Dump a single entry.
1349  */
1350 void
1351 dump_entry(TERMTYPE *tterm,
1352            int suppress_untranslatable,
1353            int limited,
1354            int numbers,
1355            PredFunc pred)
1356 {
1357     TERMTYPE save_tterm;
1358     int len, critlen;
1359     const char *legend;
1360     bool infodump;
1361
1362     if (quickdump) {
1363         char bigbuf[65536];
1364         unsigned n;
1365         unsigned offset = 0;
1366         separator = "";
1367         trailer = "\n";
1368         indent = 0;
1369         if (_nc_write_object(tterm, bigbuf, &offset, sizeof(bigbuf)) == OK) {
1370             char numbuf[80];
1371             if (quickdump & 1) {
1372                 if (outbuf.used)
1373                     wrap_concat("\n");
1374                 wrap_concat("hex:");
1375                 for (n = 0; n < offset; ++n) {
1376                     _nc_SPRINTF(numbuf, _nc_SLIMIT(sizeof(numbuf))
1377                                 "%02X", UChar(bigbuf[n]));
1378                     wrap_concat(numbuf);
1379                 }
1380             }
1381             if (quickdump & 2) {
1382                 static char padding[] =
1383                 {0, 0};
1384                 int value = 0;
1385                 if (outbuf.used)
1386                     wrap_concat("\n");
1387                 wrap_concat("b64:");
1388                 for (n = 0; n < offset; ++n) {
1389                     encode_b64(numbuf, bigbuf, n, &value);
1390                     wrap_concat(numbuf);
1391                 }
1392                 switch (n % 3) {
1393                 case 0:
1394                     break;
1395                 case 1:
1396                     encode_b64(numbuf, padding, 1, &value);
1397                     wrap_concat(numbuf);
1398                     wrap_concat("==");
1399                     break;
1400                 case 2:
1401                     encode_b64(numbuf, padding, 1, &value);
1402                     wrap_concat(numbuf);
1403                     wrap_concat("=");
1404                     break;
1405                 }
1406             }
1407         }
1408         return;
1409     }
1410
1411     if (TcOutput()) {
1412         critlen = MAX_TERMCAP_LENGTH;
1413         legend = "older termcap";
1414         infodump = FALSE;
1415         set_obsolete_termcaps(tterm);
1416     } else {
1417         critlen = MAX_TERMINFO_LENGTH;
1418         legend = "terminfo";
1419         infodump = TRUE;
1420     }
1421
1422     save_sgr = set_attributes;
1423
1424     if ((FMT_ENTRY() > critlen)
1425         && limited) {
1426
1427         save_tterm = *tterm;
1428         if (!suppress_untranslatable) {
1429             SHOW_WHY("# (untranslatable capabilities removed to fit entry within %d bytes)\n",
1430                      critlen);
1431             suppress_untranslatable = TRUE;
1432         }
1433         if (FMT_ENTRY() > critlen) {
1434             /*
1435              * We pick on sgr because it's a nice long string capability that
1436              * is really just an optimization hack.  Another good candidate is
1437              * acsc since it is both long and unused by BSD termcap.
1438              */
1439             bool changed = FALSE;
1440
1441 #if NCURSES_XNAMES
1442             /*
1443              * Extended names are most likely function-key definitions.  Drop
1444              * those first.
1445              */
1446             unsigned n;
1447             for (n = STRCOUNT; n < NUM_STRINGS(tterm); n++) {
1448                 const char *name = ExtStrname(tterm, (int) n, strnames);
1449
1450                 if (VALID_STRING(tterm->Strings[n])) {
1451                     set_attributes = ABSENT_STRING;
1452                     /* we remove long names anyway - only report the short */
1453                     if (strlen(name) <= 2) {
1454                         SHOW_WHY("# (%s removed to fit entry within %d bytes)\n",
1455                                  name,
1456                                  critlen);
1457                     }
1458                     changed = TRUE;
1459                     if (FMT_ENTRY() <= critlen)
1460                         break;
1461                 }
1462             }
1463 #endif
1464             if (VALID_STRING(set_attributes)) {
1465                 set_attributes = ABSENT_STRING;
1466                 SHOW_WHY("# (sgr removed to fit entry within %d bytes)\n",
1467                          critlen);
1468                 changed = TRUE;
1469             }
1470             if (!changed || (FMT_ENTRY() > critlen)) {
1471                 if (purged_acs(tterm)) {
1472                     acs_chars = ABSENT_STRING;
1473                     SHOW_WHY("# (acsc removed to fit entry within %d bytes)\n",
1474                              critlen);
1475                     changed = TRUE;
1476                 }
1477             }
1478             if (!changed || (FMT_ENTRY() > critlen)) {
1479                 int oldversion = tversion;
1480
1481                 tversion = V_BSD;
1482                 SHOW_WHY("# (terminfo-only capabilities suppressed to fit entry within %d bytes)\n",
1483                          critlen);
1484
1485                 len = FMT_ENTRY();
1486                 if (len > critlen
1487                     && kill_labels(tterm, len - critlen)) {
1488                     SHOW_WHY("# (some labels capabilities suppressed to fit entry within %d bytes)\n",
1489                              critlen);
1490                     len = FMT_ENTRY();
1491                 }
1492                 if (len > critlen
1493                     && kill_fkeys(tterm, len - critlen)) {
1494                     SHOW_WHY("# (some function-key capabilities suppressed to fit entry within %d bytes)\n",
1495                              critlen);
1496                     len = FMT_ENTRY();
1497                 }
1498                 if (len > critlen) {
1499                     (void) fprintf(stderr,
1500                                    "warning: %s entry is %d bytes long\n",
1501                                    _nc_first_name(tterm->term_names),
1502                                    len);
1503                     SHOW_WHY("# WARNING: this entry, %d bytes long, may core-dump %s libraries!\n",
1504                              len, legend);
1505                 }
1506                 tversion = oldversion;
1507             }
1508             set_attributes = save_sgr;
1509             *tterm = save_tterm;
1510         }
1511     } else if (!version_filter(STRING, STR_IDX(acs_chars))) {
1512         save_tterm = *tterm;
1513         if (purged_acs(tterm)) {
1514             (void) FMT_ENTRY();
1515         }
1516         *tterm = save_tterm;
1517     }
1518 }
1519
1520 void
1521 dump_uses(const char *name, bool infodump)
1522 /* dump "use=" clauses in the appropriate format */
1523 {
1524     char buffer[MAX_TERMINFO_LENGTH];
1525
1526     if (TcOutput())
1527         trim_trailing();
1528     _nc_SPRINTF(buffer, _nc_SLIMIT(sizeof(buffer))
1529                 "%s%s", infodump ? "use=" : "tc=", name);
1530     wrap_concat(buffer);
1531 }
1532
1533 int
1534 show_entry(void)
1535 {
1536     /*
1537      * Trim any remaining whitespace.
1538      */
1539     if (outbuf.used != 0) {
1540         bool infodump = !TcOutput();
1541         char delim = (char) (infodump ? ',' : ':');
1542         int j;
1543
1544         for (j = (int) outbuf.used - 1; j > 0; --j) {
1545             char ch = outbuf.text[j];
1546             if (ch == '\n') {
1547                 ;
1548             } else if (isspace(UChar(ch))) {
1549                 outbuf.used = (size_t) j;
1550             } else if (!infodump && ch == '\\') {
1551                 outbuf.used = (size_t) j;
1552             } else if (ch == delim && (j == 0 || outbuf.text[j - 1] != '\\')) {
1553                 outbuf.used = (size_t) (j + 1);
1554             } else {
1555                 break;
1556             }
1557         }
1558         outbuf.text[outbuf.used] = '\0';
1559     }
1560     if (outbuf.text != 0) {
1561         (void) fputs(outbuf.text, stdout);
1562         putchar('\n');
1563     }
1564     return (int) outbuf.used;
1565 }
1566
1567 void
1568 compare_entry(PredHook hook,
1569               TERMTYPE *tp GCC_UNUSED,
1570               bool quiet)
1571 /* compare two entries */
1572 {
1573     PredIdx i, j;
1574     NCURSES_CONST char *name;
1575
1576     if (!quiet)
1577         fputs("    comparing booleans.\n", stdout);
1578     for_each_boolean(j, tp) {
1579         i = BoolIndirect(j);
1580         name = ExtBoolname(tp, (int) i, bool_names);
1581
1582         if (isObsolete(outform, name))
1583             continue;
1584
1585         (*hook) (CMP_BOOLEAN, i, name);
1586     }
1587
1588     if (!quiet)
1589         fputs("    comparing numbers.\n", stdout);
1590     for_each_number(j, tp) {
1591         i = NumIndirect(j);
1592         name = ExtNumname(tp, (int) i, num_names);
1593
1594         if (isObsolete(outform, name))
1595             continue;
1596
1597         (*hook) (CMP_NUMBER, i, name);
1598     }
1599
1600     if (!quiet)
1601         fputs("    comparing strings.\n", stdout);
1602     for_each_string(j, tp) {
1603         i = StrIndirect(j);
1604         name = ExtStrname(tp, (int) i, str_names);
1605
1606         if (isObsolete(outform, name))
1607             continue;
1608
1609         (*hook) (CMP_STRING, i, name);
1610     }
1611
1612     /* (void) fputs("    comparing use entries.\n", stdout); */
1613     (*hook) (CMP_USE, 0, "use");
1614
1615 }
1616
1617 #define NOTSET(s)       ((s) == 0)
1618
1619 /*
1620  * This bit of legerdemain turns all the terminfo variable names into
1621  * references to locations in the arrays Booleans, Numbers, and Strings ---
1622  * precisely what's needed.
1623  */
1624 #undef CUR
1625 #define CUR tp->
1626
1627 static void
1628 set_obsolete_termcaps(TERMTYPE *tp)
1629 {
1630 #include "capdefaults.c"
1631 }
1632
1633 /*
1634  * Convert an alternate-character-set string to canonical form: sorted and
1635  * unique.
1636  */
1637 void
1638 repair_acsc(TERMTYPE *tp)
1639 {
1640     if (VALID_STRING(acs_chars)) {
1641         size_t n, m;
1642         char mapped[256];
1643         char extra = 0;
1644         unsigned source;
1645         unsigned target;
1646         bool fix_needed = FALSE;
1647
1648         for (n = 0, source = 0; acs_chars[n] != 0; n++) {
1649             target = UChar(acs_chars[n]);
1650             if (source >= target) {
1651                 fix_needed = TRUE;
1652                 break;
1653             }
1654             source = target;
1655             if (acs_chars[n + 1])
1656                 n++;
1657         }
1658         if (fix_needed) {
1659             memset(mapped, 0, sizeof(mapped));
1660             for (n = 0; acs_chars[n] != 0; n++) {
1661                 source = UChar(acs_chars[n]);
1662                 if ((target = (unsigned char) acs_chars[n + 1]) != 0) {
1663                     mapped[source] = (char) target;
1664                     n++;
1665                 } else {
1666                     extra = (char) source;
1667                 }
1668             }
1669             for (n = m = 0; n < sizeof(mapped); n++) {
1670                 if (mapped[n]) {
1671                     acs_chars[m++] = (char) n;
1672                     acs_chars[m++] = mapped[n];
1673                 }
1674             }
1675             if (extra)
1676                 acs_chars[m++] = extra;         /* garbage in, garbage out */
1677             acs_chars[m] = 0;
1678         }
1679     }
1680 }