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