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