1 /****************************************************************************
2 * Copyright (c) 1998-2015,2016 Free Software Foundation, Inc. *
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: *
12 * The above copyright notice and this permission notice shall be included *
13 * in all copies or substantial portions of the Software. *
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. *
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 *
27 ****************************************************************************/
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 ****************************************************************************/
36 * tic.c --- Main program for terminfo compiler
42 #include <progs.priv.h>
45 #include <dump_entry.h>
46 #include <tparm_type.h>
47 #include <hashed_db.h>
48 #include <parametrized.h>
49 #include <transform.h>
51 MODULE_ID("$Id: tic.c,v 1.221 2016/01/02 20:04:37 tom Exp $")
53 #define STDIN_NAME "<stdin>"
55 const char *_nc_progname
= "tic";
59 static bool capdump
= FALSE
; /* running as infotocap? */
60 static bool infodump
= FALSE
; /* running as captoinfo? */
61 static bool showsummary
= FALSE
;
62 static char **namelst
= 0;
63 static const char *to_remove
;
65 static void (*save_check_termtype
) (TERMTYPE
*, bool);
66 static void check_termtype(TERMTYPE
*tt
, bool);
68 static const char usage_string
[] = "\
99 free_namelist(char **src
)
103 for (n
= 0; src
[n
] != 0; ++n
)
116 free_namelist(namelst
);
120 if (to_remove
!= 0) {
122 rc
= remove(to_remove
);
124 rc
= unlink(to_remove
);
132 failed(const char *msg
)
135 ExitProgram(EXIT_FAILURE
);
141 #define DATA(s) s "\n"
142 static const char options_string
[] =
145 DATA(" -0 format translation output all capabilities on one line")
146 DATA(" -1 format translation output one capability per line")
148 DATA(" -a retain commented-out capabilities (sets -x also)")
150 DATA(" -C translate entries to termcap source form")
151 DATA(" -D print list of tic's database locations (first must be writable)")
152 DATA(" -c check only, validate input without compiling or translating")
153 DATA(" -e<names> translate/compile only entries named by comma-separated list")
154 DATA(" -f format complex strings for readability")
155 DATA(" -G format %{number} to %'char'")
156 DATA(" -g format %'char' to %{number}")
157 DATA(" -I translate entries to terminfo source form")
158 DATA(" -K translate entries to termcap source form with BSD syntax")
159 DATA(" -L translate entries to full terminfo source form")
160 DATA(" -N disable smart defaults for source translation")
161 DATA(" -o<dir> set output directory for compiled entry writes")
162 DATA(" -Q[n] dump compiled description")
163 DATA(" -q brief listing, removes headers")
164 DATA(" -R<name> restrict translation to given terminfo/termcap version")
165 DATA(" -r force resolution of all use entries in source translation")
166 DATA(" -s print summary statistics")
167 DATA(" -T remove size-restrictions on compiled description")
169 DATA(" -t suppress commented-out capabilities")
171 DATA(" -U suppress post-processing of entries")
172 DATA(" -V print version")
173 DATA(" -v[n] set verbosity level")
174 DATA(" -w[n] set format width for translation output")
176 DATA(" -x treat unknown capabilities as user-defined")
180 DATA(" <file> file to translate or compile")
184 fprintf(stderr
, "Usage: %s %s\n", _nc_progname
, usage_string
);
185 fputs(options_string
, stderr
);
186 ExitProgram(EXIT_FAILURE
);
199 char result
[MAX_ENTRY_SIZE
];
202 * Look for strings that contain %{number}, convert them to %'char',
203 * which is shorter and runs a little faster.
205 for (n
= 0; n
< STRCOUNT
; n
++) {
206 s
= ep
->tterm
.Strings
[n
];
208 && strchr(s
, L_BRACE
) != 0) {
211 while ((ch
= *t
++) != 0) {
215 } else if ((ch
== '%')
216 && (*t
== L_BRACE
)) {
218 long value
= strtol(t
+ 1, &v
, 0);
222 && value
!= '\\' /* FIXME */
224 && isprint((int) value
)) {
233 if (strlen(result
) < strlen(s
))
234 _nc_STRCPY(s
, result
, strlen(s
) + 1);
238 _nc_set_type(_nc_first_name(ep
->tterm
.term_names
));
239 _nc_curr_line
= (int) ep
->startline
;
240 _nc_write_entry(&ep
->tterm
);
244 immedhook(ENTRY
* ep GCC_UNUSED
)
245 /* write out entries with no use capabilities immediately to save storage */
249 * This is strictly a core-economy kluge. The really clean way to handle
250 * compilation is to slurp the whole file into core and then do all the
251 * name-collision checks and entry writes in one swell foop. But the
252 * terminfo master file is large enough that some core-poor systems swap
253 * like crazy when you compile it this way...there have been reports of
254 * this process taking *three hours*, rather than the twenty seconds or
255 * less typical on my development box.
257 * So. This hook *immediately* writes out the referenced entry if it
258 * has no use capabilities. The compiler main loop refrains from
259 * adding the entry to the in-core list when this hook fires. If some
260 * other entry later needs to reference an entry that got written
261 * immediately, that's OK; the resolution code will fetch it off disk
262 * when it can't find it in core.
264 * Name collisions will still be detected, just not as cleanly. The
265 * write_entry() code complains before overwriting an entry that
266 * postdates the time of tic's first call to write_entry(). Thus
267 * it will complain about overwriting entries newly made during the
268 * tic run, but not about overwriting ones that predate it.
270 * The reason this is a hook, and not in line with the rest of the
271 * compiler code, is that the support for termcap fallback cannot assume
272 * it has anywhere to spool out these entries!
274 * The _nc_set_type() call here requires a compensating one in
277 * If you define HAVE_BIG_CORE, you'll disable this kluge. This will
278 * make tic a bit faster (because the resolution code won't have to do
279 * disk I/O nearly as often).
281 if (ep
->nuses
== 0) {
282 int oldline
= _nc_curr_line
;
285 _nc_curr_line
= oldline
;
286 free(ep
->tterm
.str_table
);
289 #endif /* HAVE_BIG_CORE */
295 /* emit a comment char, translating terminfo names to termcap names */
297 static bool in_name
= FALSE
;
298 static size_t have
, used
;
299 static char *namebuf
, *suffix
;
302 if (used
+ 1 >= have
) {
304 if ((namebuf
= typeRealloc(char, have
, namebuf
)) == 0)
305 failed("put_translate namebuf");
306 if ((suffix
= typeRealloc(char, have
, suffix
)) == 0)
307 failed("put_translate suffix");
309 if (c
== '\n' || c
== '@') {
310 namebuf
[used
++] = '\0';
312 (void) fputs(namebuf
, stdout
);
315 } else if (c
!= '>') {
316 namebuf
[used
++] = (char) c
;
317 } else { /* ah! candidate name! */
319 NCURSES_CONST
char *tp
;
321 namebuf
[used
++] = '\0';
325 if ((up
= strchr(namebuf
, '#')) != 0
326 || (up
= strchr(namebuf
, '=')) != 0
327 || ((up
= strchr(namebuf
, '@')) != 0 && up
[1] == '>')) {
328 _nc_STRCPY(suffix
, up
, have
);
332 if ((tp
= nametrans(namebuf
)) != 0) {
334 (void) fputs(tp
, stdout
);
335 (void) fputs(suffix
, stdout
);
338 /* couldn't find a translation, just dump the name */
340 (void) fputs(namebuf
, stdout
);
341 (void) fputs(suffix
, stdout
);
355 /* Returns a string, stripped of leading/trailing whitespace */
361 while (isspace(UChar(*src
)))
367 if ((dst
= strdup(src
)) == NULL
) {
371 while (--len
!= 0 && isspace(UChar(dst
[len
])))
379 open_tempfile(char *filename
)
383 _nc_STRCPY(filename
, "/tmp/XXXXXX", PATH_MAX
);
386 int oldmask
= (int) umask(077);
387 int fd
= mkstemp(filename
);
389 result
= fdopen(fd
, "w");
390 umask((mode_t
) oldmask
);
393 if (tmpnam(filename
) != 0)
394 result
= fopen(filename
, "w");
400 copy_input(FILE *source
, const char *filename
, char *alt_file
)
402 char my_altfile
[PATH_MAX
];
408 alt_file
= my_altfile
;
411 failed("copy_input (source)");
412 } else if ((target
= open_tempfile(alt_file
)) == 0) {
413 failed("copy_input (target)");
420 } else if (ferror(source
)) {
422 } else if (ch
== 0) {
423 /* don't loop in case someone wants to convert /dev/zero */
424 fprintf(stderr
, "%s: %s is not a text-file\n", _nc_progname
, filename
);
425 ExitProgram(EXIT_FAILURE
);
431 * rewind() does not force the target file's data to disk (not does
432 * fflush()...). So open a second stream on the data and then close
433 * the one that we were writing on before starting to read from the
436 result
= fopen(alt_file
, "r+");
438 to_remove
= strdup(alt_file
);
444 open_input(const char *filename
, char *alt_file
)
450 if (!strcmp(filename
, "-")) {
451 fp
= copy_input(stdin
, STDIN_NAME
, alt_file
);
452 } else if (stat(filename
, &sb
) < 0) {
453 fprintf(stderr
, "%s: %s %s\n", _nc_progname
, filename
, strerror(errno
));
454 ExitProgram(EXIT_FAILURE
);
455 } else if ((mode
= (sb
.st_mode
& S_IFMT
)) == S_IFDIR
456 || (mode
!= S_IFREG
&& mode
!= S_IFCHR
&& mode
!= S_IFIFO
)) {
457 fprintf(stderr
, "%s: %s is not a file\n", _nc_progname
, filename
);
458 ExitProgram(EXIT_FAILURE
);
460 fp
= fopen(filename
, "r");
463 fprintf(stderr
, "%s: Can't open %s\n", _nc_progname
, filename
);
464 ExitProgram(EXIT_FAILURE
);
466 if (mode
!= S_IFREG
) {
468 FILE *fp2
= copy_input(fp
, filename
, alt_file
);
471 fprintf(stderr
, "%s: %s is not a file\n", _nc_progname
, filename
);
472 ExitProgram(EXIT_FAILURE
);
479 /* Parse the "-e" option-value into a list of names */
481 make_namelist(char *src
)
486 unsigned pass
, n
, nn
;
491 } else if (strchr(src
, '/') != 0) { /* a filename */
492 FILE *fp
= open_input(src
, (char *) 0);
494 for (pass
= 1; pass
<= 2; pass
++) {
496 while (fgets(buffer
, sizeof(buffer
), fp
) != 0) {
497 if ((s
= stripped(buffer
)) != 0) {
506 if ((dst
= typeCalloc(char *, nn
+ 1)) == 0)
507 failed("make_namelist");
512 } else { /* literal list of names */
513 for (pass
= 1; pass
<= 2; pass
++) {
514 for (n
= nn
= 0, base
= src
;; n
++) {
516 if (mark
== ',' || mark
== '\0') {
521 if ((s
= stripped(base
)) != 0)
530 if ((dst
= typeCalloc(char *, nn
+ 1)) == 0)
531 failed("make_namelist");
535 if (showsummary
&& (dst
!= 0)) {
536 fprintf(log_fp
, "Entries that will be compiled:\n");
537 for (n
= 0; dst
[n
] != 0; n
++)
538 fprintf(log_fp
, "%u:%s\n", n
+ 1, dst
[n
]);
544 matches(char **needle
, const char *haystack
)
545 /* does entry in needle list match |-separated field in haystack? */
551 for (n
= 0; needle
[n
] != 0; n
++) {
552 if (_nc_name_match(haystack
, needle
[n
], "|")) {
563 valid_db_path(const char *nominal
)
567 char suffix
[] = DBM_SUFFIX
;
568 size_t need
= strlen(nominal
) + sizeof(suffix
);
569 char *result
= malloc(need
);
572 failed("valid_db_path");
573 _nc_STRCPY(result
, nominal
, need
);
574 if (strcmp(result
+ need
- sizeof(suffix
), suffix
)) {
575 _nc_STRCAT(result
, suffix
, need
);
578 char *result
= strdup(nominal
);
581 DEBUG(1, ("** stat(%s)", result
));
582 if (stat(result
, &sb
) >= 0) {
584 if (!S_ISREG(sb
.st_mode
)
585 || access(result
, R_OK
| W_OK
) != 0) {
586 DEBUG(1, ("...not a writable file"));
591 if (!S_ISDIR(sb
.st_mode
)
592 || access(result
, R_OK
| W_OK
| X_OK
) != 0) {
593 DEBUG(1, ("...not a writable directory"));
599 /* check if parent is directory and is writable */
600 unsigned leaf
= _nc_pathlast(result
);
602 DEBUG(1, ("...not found"));
604 char save
= result
[leaf
];
606 if (stat(result
, &sb
) >= 0
607 && S_ISDIR(sb
.st_mode
)
608 && access(result
, R_OK
| W_OK
| X_OK
) == 0) {
611 DEBUG(1, ("...parent directory %s is not writable", result
));
616 DEBUG(1, ("... no parent directory"));
625 * Show the databases to which tic could write. The location to which it
626 * writes is always the first one. If none are writable, print an error
630 show_databases(const char *outdir
)
632 bool specific
= (outdir
!= 0) || getenv("TERMINFO") != 0;
634 const char *tried
= 0;
637 outdir
= _nc_tic_dir(0);
639 if ((result
= valid_db_path(outdir
)) != 0) {
640 printf("%s\n", result
);
646 if ((outdir
= _nc_home_terminfo())) {
647 if ((result
= valid_db_path(outdir
)) != 0) {
648 printf("%s\n", result
);
650 } else if (!specific
) {
656 * If we can write in neither location, give an error message.
660 fprintf(stderr
, "%s: %s (no permission)\n", _nc_progname
, tried
);
661 ExitProgram(EXIT_FAILURE
);
666 add_digit(int *target
, int source
)
668 *target
= (*target
* 10) + (source
- '0');
671 #define VtoTrace(opt) (unsigned) ((opt > 0) ? opt : (opt == 0))
674 main(int argc
, char *argv
[])
676 char my_tmpname
[PATH_MAX
];
677 char my_altfile
[PATH_MAX
];
679 unsigned debug_level
;
680 int smart_defaults
= TRUE
;
684 int this_opt
, last_opt
= '?';
686 int outform
= F_TERMINFO
; /* output format */
687 int sortmode
= S_TERMINFO
; /* sort_mode */
691 bool formatted
= FALSE
; /* reformat complex strings? */
692 bool literal
= FALSE
; /* suppress post-processing? */
693 int numbers
= 0; /* format "%'char'" to/from "%{number}" */
694 bool forceresolve
= FALSE
; /* force resolution */
696 char *tversion
= (char *) NULL
;
697 const char *source_file
= "terminfo";
698 char *outdir
= (char *) NULL
;
699 bool check_only
= FALSE
;
700 bool suppress_untranslatable
= FALSE
;
706 _nc_progname
= _nc_rootname(argv
[0]);
709 if ((infodump
= same_program(_nc_progname
, PROG_CAPTOINFO
)) != FALSE
) {
710 outform
= F_TERMINFO
;
711 sortmode
= S_TERMINFO
;
713 if ((capdump
= same_program(_nc_progname
, PROG_INFOTOCAP
)) != FALSE
) {
715 sortmode
= S_TERMCAP
;
718 use_extended_names(FALSE
);
720 #ifndef BOOTSTRAPPING
725 * Processing arguments is a little complicated, since someone made a
726 * design decision to allow the numeric values for -w, -v options to
729 while ((this_opt
= getopt(argc
, argv
,
730 "0123456789CDIKLNQR:TUVace:fGgo:qrstvwx")) != -1) {
731 if (isdigit(this_opt
)) {
734 add_digit(&quickdump
, this_opt
);
737 add_digit(&v_opt
, this_opt
);
740 add_digit(&width
, this_opt
);
761 #ifndef BOOTSTRAPPING
764 /* the initial version of -K in 20110730 fell-thru here, but the
765 * same flag is useful when reading sources -TD
771 sortmode
= S_TERMCAP
;
774 debug_level
= VtoTrace(v_opt
);
775 set_trace_level(debug_level
);
776 show_databases(outdir
);
777 ExitProgram(EXIT_SUCCESS
);
781 outform
= F_TERMINFO
;
782 sortmode
= S_TERMINFO
;
786 outform
= F_VARIABLE
;
787 sortmode
= S_VARIABLE
;
790 smart_defaults
= FALSE
;
806 puts(curses_version());
807 ExitProgram(EXIT_SUCCESS
);
812 namelst
= make_namelist(optarg
);
843 _nc_disable_period
= FALSE
;
844 suppress_untranslatable
= TRUE
;
847 _nc_disable_period
= TRUE
;
850 use_extended_names(TRUE
);
859 debug_level
= VtoTrace(v_opt
);
860 set_trace_level(debug_level
);
863 save_check_termtype
= _nc_check_termtype2
;
864 _nc_check_termtype2
= check_termtype
;
868 * Aaargh! immedhook seriously hoses us!
870 * One problem with immedhook is it means we can't do -e. Problem
871 * is that we can't guarantee that for each terminal listed, all the
872 * terminals it depends on will have been kept in core for reference
873 * resolution -- in fact it's certain the primitive types at the end
874 * of reference chains *won't* be in core unless they were explicitly
875 * in the select list themselves.
877 if (namelst
&& (!infodump
&& !capdump
)) {
878 (void) fprintf(stderr
,
879 "%s: Sorry, -e can't be used without -I or -C\n",
881 ExitProgram(EXIT_FAILURE
);
883 #endif /* HAVE_BIG_CORE */
886 source_file
= argv
[optind
++];
889 "%s: Too many file names. Usage:\n\t%s %s",
893 ExitProgram(EXIT_FAILURE
);
896 if (infodump
== TRUE
) {
897 /* captoinfo's no-argument case */
898 source_file
= "/etc/termcap";
899 if ((termcap
= getenv("TERMCAP")) != 0
900 && (namelst
= make_namelist(getenv("TERM"))) != 0) {
901 if (access(termcap
, F_OK
) == 0) {
903 source_file
= termcap
;
905 if ((tmp_fp
= open_tempfile(my_tmpname
)) != 0) {
906 source_file
= my_tmpname
;
907 fprintf(tmp_fp
, "%s\n", termcap
);
909 tmp_fp
= open_input(source_file
, (char *) 0);
910 to_remove
= source_file
;
919 "%s: File name needed. Usage:\n\t%s %s",
923 ExitProgram(EXIT_FAILURE
);
928 tmp_fp
= open_input(source_file
, my_altfile
);
929 if (!strcmp(source_file
, "-")) {
930 source_file
= STDIN_NAME
;
934 if (infodump
|| check_only
) {
939 sortmode
, width
, height
, debug_level
, formatted
||
940 check_only
, check_only
, quickdump
);
941 } else if (capdump
) {
944 sortmode
, width
, height
, debug_level
, FALSE
, FALSE
, FALSE
);
947 /* parse entries out of the source file */
948 _nc_set_source(source_file
);
950 if (!(check_only
|| infodump
|| capdump
))
951 _nc_set_writedir(outdir
);
952 #endif /* HAVE_BIG_CORE */
953 _nc_read_entry_source(tmp_fp
, (char *) NULL
,
954 !smart_defaults
|| literal
, FALSE
,
955 ((check_only
|| infodump
|| capdump
)
959 /* do use resolution */
960 if (check_only
|| (!infodump
&& !capdump
) || forceresolve
) {
961 if (!_nc_resolve_uses2(TRUE
, literal
) && !check_only
) {
962 ExitProgram(EXIT_FAILURE
);
967 if (check_only
&& limited
&& (capdump
|| infodump
)) {
969 if (matches(namelst
, qp
->tterm
.term_names
)) {
970 int len
= fmt_entry(&qp
->tterm
, NULL
, FALSE
, TRUE
, infodump
, numbers
);
972 if (len
> (infodump
? MAX_TERMINFO_LENGTH
: MAX_TERMCAP_LENGTH
))
973 (void) fprintf(stderr
,
974 "warning: resolved %s entry is %d bytes long\n",
975 _nc_first_name(qp
->tterm
.term_names
),
981 /* write or dump all entries */
983 /* this is in case infotocap() generates warnings */
984 _nc_curr_col
= _nc_curr_line
= -1;
987 if (matches(namelst
, qp
->tterm
.term_names
)) {
988 /* this is in case infotocap() generates warnings */
989 _nc_set_type(_nc_first_name(qp
->tterm
.term_names
));
990 _nc_curr_line
= (int) qp
->startline
;
991 repair_acsc(&qp
->tterm
);
992 dump_entry(&qp
->tterm
, suppress_untranslatable
,
993 limited
, numbers
, NULL
);
997 if (!infodump
&& !capdump
) {
998 _nc_set_writedir(outdir
);
1000 if (matches(namelst
, qp
->tterm
.term_names
))
1004 /* this is in case infotocap() generates warnings */
1005 _nc_curr_col
= _nc_curr_line
= -1;
1007 for_entry_list(qp
) {
1008 if (matches(namelst
, qp
->tterm
.term_names
)) {
1009 long j
= qp
->cend
- qp
->cstart
;
1012 /* this is in case infotocap() generates warnings */
1013 _nc_set_type(_nc_first_name(qp
->tterm
.term_names
));
1016 (void) fseek(tmp_fp
, qp
->cstart
, SEEK_SET
);
1019 (void) putchar(fgetc(tmp_fp
));
1021 put_translate(fgetc(tmp_fp
));
1025 repair_acsc(&qp
->tterm
);
1026 dump_entry(&qp
->tterm
, suppress_untranslatable
,
1027 limited
, numbers
, NULL
);
1028 for (j
= 0; j
< (long) qp
->nuses
; j
++)
1029 dump_uses(qp
->uses
[j
].name
, !capdump
);
1031 if (debug_level
!= 0 && !limited
)
1032 printf("# length=%d\n", len
);
1035 if (!namelst
&& _nc_tail
&& !quiet
) {
1037 bool in_comment
= FALSE
;
1038 bool trailing_comment
= FALSE
;
1040 (void) fseek(tmp_fp
, _nc_tail
->cend
, SEEK_SET
);
1041 while ((c
= fgetc(tmp_fp
)) != EOF
) {
1044 trailing_comment
= TRUE
;
1050 if (trailing_comment
1051 && (in_comment
|| (oldc
== '\n' && c
== '\n')))
1059 /* Show the directory into which entries were written, and the total
1063 && (!(check_only
|| infodump
|| capdump
))) {
1064 int total
= _nc_tic_written();
1066 fprintf(log_fp
, "%d entries written to %s\n",
1068 _nc_tic_dir((char *) 0));
1070 fprintf(log_fp
, "No entries written\n");
1072 ExitProgram(EXIT_SUCCESS
);
1076 * This bit of legerdemain turns all the terminfo variable names into
1077 * references to locations in the arrays Booleans, Numbers, and Strings ---
1078 * precisely what's needed (see comp_parse.c).
1084 * Check if the alternate character-set capabilities are consistent.
1087 check_acs(TERMTYPE
*tp
)
1089 if (VALID_STRING(acs_chars
)) {
1090 const char *boxes
= "lmkjtuvwqxn";
1096 memset(mapped
, 0, sizeof(mapped
));
1097 for (p
= acs_chars
; *p
!= '\0'; p
+= 2) {
1099 _nc_warning("acsc has odd number of characters");
1102 mapped
[UChar(p
[0])] = p
[1];
1105 if (mapped
[UChar('I')] && !mapped
[UChar('i')]) {
1106 _nc_warning("acsc refers to 'I', which is probably an error");
1109 for (p
= boxes
, q
= missing
; *p
!= '\0'; ++p
) {
1110 if (!mapped
[UChar(p
[0])]) {
1116 assert(strlen(missing
) <= strlen(boxes
));
1117 if (*missing
!= '\0' && strcmp(missing
, boxes
)) {
1118 _nc_warning("acsc is missing some line-drawing mapping: %s", missing
);
1124 * Check if the color capabilities are consistent
1127 check_colors(TERMTYPE
*tp
)
1129 if ((max_colors
> 0) != (max_pairs
> 0)
1130 || ((max_colors
> max_pairs
) && (initialize_pair
== 0)))
1131 _nc_warning("inconsistent values for max_colors (%d) and max_pairs (%d)",
1132 max_colors
, max_pairs
);
1134 PAIRED(set_foreground
, set_background
);
1135 PAIRED(set_a_foreground
, set_a_background
);
1136 PAIRED(set_color_pair
, initialize_pair
);
1138 if (VALID_STRING(set_foreground
)
1139 && VALID_STRING(set_a_foreground
)
1140 && !_nc_capcmp(set_foreground
, set_a_foreground
))
1141 _nc_warning("expected setf/setaf to be different");
1143 if (VALID_STRING(set_background
)
1144 && VALID_STRING(set_a_background
)
1145 && !_nc_capcmp(set_background
, set_a_background
))
1146 _nc_warning("expected setb/setab to be different");
1148 /* see: has_colors() */
1149 if (VALID_NUMERIC(max_colors
) && VALID_NUMERIC(max_pairs
)
1150 && (((set_foreground
!= NULL
)
1151 && (set_background
!= NULL
))
1152 || ((set_a_foreground
!= NULL
)
1153 && (set_a_background
!= NULL
))
1154 || set_color_pair
)) {
1155 if (!VALID_STRING(orig_pair
) && !VALID_STRING(orig_colors
))
1156 _nc_warning("expected either op/oc string for resetting colors");
1159 if (!VALID_STRING(initialize_pair
) &&
1160 !VALID_STRING(initialize_color
)) {
1161 _nc_warning("expected initc or initp because ccc is given");
1164 if (VALID_STRING(initialize_pair
) ||
1165 VALID_STRING(initialize_color
)) {
1166 _nc_warning("expected ccc because initc is given");
1172 keypad_final(const char *string
)
1176 if (VALID_STRING(string
)
1177 && *string
++ == '\033'
1179 && strlen(string
) == 1) {
1187 keypad_index(const char *string
)
1190 const char *list
= "PQRSwxymtuvlqrsPpn"; /* app-keypad except "Enter" */
1194 if ((ch
= keypad_final(string
)) != '\0') {
1195 test
= (strchr
) (list
, ch
);
1197 result
= (long) (test
- list
);
1203 * list[] is down, up, left, right
1204 * "left" may be ^H rather than \E[D
1205 * "down" may be ^J rather than \E[B
1206 * But up/right are generally consistently escape sequences for ANSI terminals.
1209 check_ansi_cursor(char *list
[4])
1216 bool repeated
= FALSE
;
1218 for (j
= 0; j
< 4; ++j
) {
1220 for (k
= 0; k
< j
; ++k
) {
1222 && !strcmp(list
[j
], list
[k
])) {
1223 char *value
= _nc_tic_expand(list
[k
], TRUE
, 0);
1224 _nc_warning("repeated cursor control %s\n", value
);
1232 if (UChar(up
[0]) == '\033') {
1238 } else if (UChar(up
[0]) == UChar('\233')) {
1243 while (up
[suffix
] && isdigit(UChar(up
[suffix
])))
1246 if (prefix
&& up
[suffix
] == 'A') {
1248 if (!strcmp(list
[0], "\n"))
1250 if (!strcmp(list
[2], "\b"))
1253 for (j
= 0; j
< 4; ++j
) {
1254 if (skip
[j
] || strlen(list
[j
]) == 1)
1256 if (memcmp(list
[j
], up
, prefix
)) {
1257 char *value
= _nc_tic_expand(list
[j
], TRUE
, 0);
1258 _nc_warning("inconsistent prefix for %s\n", value
);
1261 if (strlen(list
[j
]) < suffix
) {
1262 char *value
= _nc_tic_expand(list
[j
], TRUE
, 0);
1263 _nc_warning("inconsistent length for %s, expected %d\n",
1264 value
, (int) suffix
+ 1);
1268 if (list
[j
][suffix
] != want
) {
1269 char *value
= _nc_tic_expand(list
[j
], TRUE
, 0);
1270 _nc_warning("inconsistent suffix for %s, expected %c, have %c\n",
1271 value
, want
, list
[j
][suffix
]);
1278 #define EXPECTED(name) if (!PRESENT(name)) _nc_warning("expected " #name)
1279 #define UNEXPECTED(name) if (PRESENT(name)) _nc_warning("unexpected " #name ", for %s", why)
1282 check_noaddress(TERMTYPE
*tp
, const char *why
)
1284 UNEXPECTED(column_address
);
1285 UNEXPECTED(cursor_address
);
1286 UNEXPECTED(cursor_home
);
1287 UNEXPECTED(cursor_mem_address
);
1288 UNEXPECTED(cursor_to_ll
);
1289 UNEXPECTED(row_address
);
1290 UNEXPECTED(row_address
);
1294 check_cursor(TERMTYPE
*tp
)
1300 check_noaddress(tp
, "hard_copy");
1301 } else if (generic_type
) {
1302 check_noaddress(tp
, "generic_type");
1303 } else if (strchr(tp
->term_names
, '+') == 0) {
1306 if (PRESENT(column_address
))
1308 if (PRESENT(cursor_address
))
1310 if (PRESENT(cursor_home
))
1312 if (PRESENT(cursor_mem_address
))
1314 if (PRESENT(cursor_to_ll
))
1316 if (PRESENT(row_address
))
1318 if (PRESENT(cursor_down
))
1320 if (PRESENT(cursor_up
))
1322 if (PRESENT(cursor_left
))
1324 if (PRESENT(cursor_right
))
1326 if (x
< 2 && y
< 2) {
1327 _nc_warning("terminal lacks cursor addressing");
1330 _nc_warning("terminal lacks cursor column-addressing");
1332 _nc_warning("terminal lacks cursor row-addressing");
1336 /* it is rare to have an insert-line feature without a matching delete */
1337 ANDMISSING(parm_insert_line
, insert_line
);
1338 ANDMISSING(parm_delete_line
, delete_line
);
1339 ANDMISSING(parm_insert_line
, parm_delete_line
);
1341 /* if we have a parameterized form, then the non-parameterized is easy */
1342 ANDMISSING(parm_down_cursor
, cursor_down
);
1343 ANDMISSING(parm_up_cursor
, cursor_up
);
1344 ANDMISSING(parm_left_cursor
, cursor_left
);
1345 ANDMISSING(parm_right_cursor
, cursor_right
);
1347 /* Given any of a set of cursor movement, the whole set should be present.
1348 * Technically this is not true (we could use cursor_address to fill in
1349 * unsupported controls), but it is likely.
1352 if (PRESENT(parm_down_cursor
)) {
1353 list
[count
++] = parm_down_cursor
;
1355 if (PRESENT(parm_up_cursor
)) {
1356 list
[count
++] = parm_up_cursor
;
1358 if (PRESENT(parm_left_cursor
)) {
1359 list
[count
++] = parm_left_cursor
;
1361 if (PRESENT(parm_right_cursor
)) {
1362 list
[count
++] = parm_right_cursor
;
1365 check_ansi_cursor(list
);
1366 } else if (count
!= 0) {
1367 EXPECTED(parm_down_cursor
);
1368 EXPECTED(parm_up_cursor
);
1369 EXPECTED(parm_left_cursor
);
1370 EXPECTED(parm_right_cursor
);
1374 if (PRESENT(cursor_down
)) {
1375 list
[count
++] = cursor_down
;
1377 if (PRESENT(cursor_up
)) {
1378 list
[count
++] = cursor_up
;
1380 if (PRESENT(cursor_left
)) {
1381 list
[count
++] = cursor_left
;
1383 if (PRESENT(cursor_right
)) {
1384 list
[count
++] = cursor_right
;
1387 check_ansi_cursor(list
);
1388 } else if (count
!= 0) {
1390 if (PRESENT(cursor_down
) && strcmp(cursor_down
, "\n"))
1392 if (PRESENT(cursor_left
) && strcmp(cursor_left
, "\b"))
1394 if (PRESENT(cursor_up
) && strlen(cursor_up
) > 1)
1396 if (PRESENT(cursor_right
) && strlen(cursor_right
) > 1)
1399 EXPECTED(cursor_down
);
1400 EXPECTED(cursor_up
);
1401 EXPECTED(cursor_left
);
1402 EXPECTED(cursor_right
);
1409 * Do a quick sanity-check for vt100-style keypads to see if the 5-key keypad
1410 * is mapped inconsistently.
1413 check_keypad(TERMTYPE
*tp
)
1417 if (VALID_STRING(key_a1
) &&
1418 VALID_STRING(key_a3
) &&
1419 VALID_STRING(key_b2
) &&
1420 VALID_STRING(key_c1
) &&
1421 VALID_STRING(key_c3
)) {
1422 char final
[MAX_KP
+ 1];
1429 final
[0] = keypad_final(key_a1
);
1430 final
[1] = keypad_final(key_a3
);
1431 final
[2] = keypad_final(key_b2
);
1432 final
[3] = keypad_final(key_c1
);
1433 final
[4] = keypad_final(key_c3
);
1436 /* special case: legacy coding using 1,2,3,0,. on the bottom */
1437 assert(strlen(final
) <= MAX_KP
);
1438 if (!strcmp(final
, "qsrpn"))
1441 list
[0] = keypad_index(key_a1
);
1442 list
[1] = keypad_index(key_a3
);
1443 list
[2] = keypad_index(key_b2
);
1444 list
[3] = keypad_index(key_c1
);
1445 list
[4] = keypad_index(key_c3
);
1447 /* check that they're all vt100 keys */
1448 for (j
= 0; j
< MAX_KP
; ++j
) {
1454 /* check if they're all in increasing order */
1455 for (j
= 1; j
< MAX_KP
; ++j
) {
1456 if (list
[j
] > list
[j
- 1]) {
1460 if (increase
!= (MAX_KP
- 1)) {
1463 for (j
= 0, last
= -1; j
< MAX_KP
; ++j
) {
1464 for (k
= 0, kk
= -1, test
= 100; k
< 5; ++k
) {
1465 if (list
[k
] > last
&&
1472 assert(strlen(show
) < (MAX_KP
* 4));
1475 _nc_STRCAT(show
, " ka1", sizeof(show
));
1478 _nc_STRCAT(show
, " ka3", sizeof(show
));
1481 _nc_STRCAT(show
, " kb2", sizeof(show
));
1484 _nc_STRCAT(show
, " kc1", sizeof(show
));
1487 _nc_STRCAT(show
, " kc3", sizeof(show
));
1492 _nc_warning("vt100 keypad order inconsistent: %s", show
);
1495 } else if (VALID_STRING(key_a1
) ||
1496 VALID_STRING(key_a3
) ||
1497 VALID_STRING(key_b2
) ||
1498 VALID_STRING(key_c1
) ||
1499 VALID_STRING(key_c3
)) {
1501 if (keypad_index(key_a1
) >= 0)
1502 _nc_STRCAT(show
, " ka1", sizeof(show
));
1503 if (keypad_index(key_a3
) >= 0)
1504 _nc_STRCAT(show
, " ka3", sizeof(show
));
1505 if (keypad_index(key_b2
) >= 0)
1506 _nc_STRCAT(show
, " kb2", sizeof(show
));
1507 if (keypad_index(key_c1
) >= 0)
1508 _nc_STRCAT(show
, " kc1", sizeof(show
));
1509 if (keypad_index(key_c3
) >= 0)
1510 _nc_STRCAT(show
, " kc3", sizeof(show
));
1512 _nc_warning("vt100 keypad map incomplete:%s", show
);
1516 * These warnings are useful for consistency checks - it is possible that
1517 * there are real terminals with mismatches in these
1519 ANDMISSING(key_ic
, key_dc
);
1523 check_printer(TERMTYPE
*tp
)
1525 PAIRED(enter_doublewide_mode
, exit_doublewide_mode
);
1526 PAIRED(enter_italics_mode
, exit_italics_mode
);
1527 PAIRED(enter_leftward_mode
, exit_leftward_mode
);
1528 PAIRED(enter_micro_mode
, exit_micro_mode
);
1529 PAIRED(enter_shadow_mode
, exit_shadow_mode
);
1530 PAIRED(enter_subscript_mode
, exit_subscript_mode
);
1531 PAIRED(enter_superscript_mode
, exit_superscript_mode
);
1532 PAIRED(enter_upward_mode
, exit_upward_mode
);
1534 ANDMISSING(start_char_set_def
, stop_char_set_def
);
1536 /* if we have a parameterized form, then the non-parameterized is easy */
1537 ANDMISSING(set_bottom_margin_parm
, set_bottom_margin
);
1538 ANDMISSING(set_left_margin_parm
, set_left_margin
);
1539 ANDMISSING(set_right_margin_parm
, set_right_margin
);
1540 ANDMISSING(set_top_margin_parm
, set_top_margin
);
1542 ANDMISSING(parm_down_micro
, micro_down
);
1543 ANDMISSING(parm_left_micro
, micro_left
);
1544 ANDMISSING(parm_right_micro
, micro_right
);
1545 ANDMISSING(parm_up_micro
, micro_up
);
1549 uses_SGR_39_49(const char *value
)
1551 return (strstr(value
, "39;49") != 0
1552 || strstr(value
, "49;39") != 0);
1556 * Check consistency of termcap extensions related to "screen".
1559 check_screen(TERMTYPE
*tp
)
1562 if (_nc_user_definable
) {
1563 int have_XT
= tigetflag("XT");
1564 int have_XM
= tigetflag("XM");
1565 int have_bce
= back_color_erase
;
1566 bool have_kmouse
= FALSE
;
1567 bool use_sgr_39_49
= FALSE
;
1568 char *name
= _nc_first_name(tp
->term_names
);
1570 if (!VALID_BOOLEAN(have_bce
)) {
1573 if (!VALID_BOOLEAN(have_XM
)) {
1576 if (!VALID_BOOLEAN(have_XT
)) {
1579 if (VALID_STRING(key_mouse
)) {
1580 have_kmouse
= !strcmp("\033[M", key_mouse
);
1582 if (VALID_STRING(orig_colors
)) {
1583 use_sgr_39_49
= uses_SGR_39_49(orig_colors
);
1584 } else if (VALID_STRING(orig_pair
)) {
1585 use_sgr_39_49
= uses_SGR_39_49(orig_pair
);
1588 if (have_XM
&& have_XT
) {
1589 _nc_warning("Screen's XT capability conflicts with XM");
1591 && strstr(name
, "screen") != 0
1592 && strchr(name
, '.') != 0) {
1593 _nc_warning("Screen's \"screen\" entries should not have XT set");
1594 } else if (have_XT
) {
1595 if (!have_kmouse
&& have_bce
) {
1596 if (VALID_STRING(key_mouse
)) {
1597 _nc_warning("Value of kmous inconsistent with screen's usage");
1599 _nc_warning("Expected kmous capability with XT");
1602 if (!have_bce
&& max_colors
> 0)
1603 _nc_warning("Expected bce capability with XT");
1604 if (!use_sgr_39_49
&& have_bce
&& max_colors
> 0)
1605 _nc_warning("Expected orig_colors capability with XT to have 39/49 parameters");
1606 if (VALID_STRING(to_status_line
))
1607 _nc_warning("\"tsl\" capability is redundant, given XT");
1609 if (have_kmouse
&& !have_XM
)
1610 _nc_warning("Expected XT to be set, given kmous");
1617 * Returns the expected number of parameters for the given capability.
1620 expected_params(const char *name
)
1622 #define DATA(name,count) { { name }, count }
1624 static const struct {
1628 DATA( "S0", 1 ), /* 'screen' extension */
1631 DATA( "colornm", 1 ),
1675 DATA( "setcolor", 1 ),
1679 DATA( "slength", 1 ),
1680 DATA( "slines", 1 ),
1681 DATA( "smgbp", 1 ), /* 2 if smgtp is not given */
1698 int result
= 0; /* function-keys, etc., use none */
1700 for (n
= 0; n
< SIZEOF(table
); n
++) {
1701 if (!strcmp(name
, table
[n
].name
)) {
1702 result
= table
[n
].count
;
1711 * Make a quick sanity check for the parameters which are used in the given
1712 * strings. If there are no "%p" tokens, then there should be no other "%"
1716 check_params(TERMTYPE
*tp
, const char *name
, char *value
)
1718 int expected
= expected_params(name
);
1721 bool params
[NUM_PARM
];
1724 #ifdef set_top_margin_parm
1725 if (!strcmp(name
, "smgbp")
1726 && set_top_margin_parm
== 0)
1730 for (n
= 0; n
< NUM_PARM
; n
++)
1736 _nc_warning("expected character after %% in %s", name
);
1738 } else if (*s
== 'p') {
1739 if (*++s
== '\0' || !isdigit((int) *s
)) {
1740 _nc_warning("expected digit after %%p in %s", name
);
1754 _nc_warning("%s refers to parameter 0 (%%p0), which is not allowed", name
);
1756 if (value
== set_attributes
|| expected
< 0) {
1758 } else if (expected
!= actual
) {
1759 _nc_warning("%s uses %d parameters, expected %d", name
,
1761 for (n
= 1; n
< actual
; n
++) {
1763 _nc_warning("%s omits parameter %d", name
, n
);
1769 check_1_infotocap(const char *name
, NCURSES_CONST
char *value
, int count
)
1773 long numbers
[1 + NUM_PARM
];
1774 char *strings
[1 + NUM_PARM
];
1775 char *p_is_s
[NUM_PARM
];
1777 char blob
[NUM_PARM
* 10];
1781 for (k
= 1; k
<= NUM_PARM
; k
++) {
1783 sprintf(next
, "XYZ%d", count
);
1785 next
+= strlen(next
) + 1;
1788 switch (tparm_type(name
)) {
1790 result
= TPARM_2(value
, numbers
[1], strings
[2]);
1793 result
= TPARM_3(value
, numbers
[1], strings
[2], strings
[3]);
1797 (void) _nc_tparm_analyze(value
, p_is_s
, &ignored
);
1798 #define myParam(n) (p_is_s[n - 1] != 0 ? ((TPARM_ARG) strings[n]) : numbers[n])
1799 result
= TPARM_9(value
,
1814 #define IsDelay(ch) ((ch) == '.' || isdigit(UChar(ch)))
1817 parse_delay_value(const char *src
, double *delays
, int *always
)
1825 while (isdigit(UChar(*src
))) {
1826 (*delays
) = (*delays
) * 10 + (*src
++ - '0');
1832 while (isdigit(UChar(*src
))) {
1834 (*delays
) += (*src
++ - '0') / gotdot
;
1837 while (*src
== '*' || *src
== '/') {
1838 if (always
== 0 && *src
== '/')
1840 if (*src
++ == '*') {
1847 *delays
= -(*delays
);
1852 parse_ti_delay(const char *ti
, double *delays
)
1855 while (*ti
!= '\0') {
1861 && IsDelay(UChar(ti
[2]))) {
1863 const char *last
= parse_delay_value(ti
+ 2, delays
, &ignored
);
1875 parse_tc_delay(const char *tc
, double *delays
)
1877 return parse_delay_value(tc
, delays
, (int *) 0);
1881 * Compare terminfo- and termcap-strings, factoring out delays.
1884 same_ti_tc(const char *ti
, const char *tc
, bool * embedded
)
1887 double ti_delay
= 0.0;
1888 double tc_delay
= 0.0;
1889 const char *ti_last
;
1892 ti_last
= parse_ti_delay(ti
, &ti_delay
);
1893 tc
= parse_tc_delay(tc
, &tc_delay
);
1895 while ((ti
< ti_last
) && *tc
) {
1896 if (*ti
== '\\' && ispunct(UChar(ti
[1]))) {
1898 if ((*ti
== '^') && !strncmp(tc
, "\\136", 4)) {
1903 } else if (ti
[0] == '$' && ti
[1] == '<') {
1905 const char *ss
= parse_ti_delay(ti
, &no_delay
);
1912 if (*tc
== '\\' && ispunct(UChar(tc
[1]))) {
1915 if (*ti
++ != *tc
++) {
1925 *embedded
= FALSE
; /* report only one problem */
1933 * Check terminfo to termcap translation.
1936 check_infotocap(TERMTYPE
*tp
, int i
, const char *value
)
1938 const char *name
= ExtStrname(tp
, i
, strnames
);
1939 int params
= (((i
< (int) SIZEOF(parametrized
)) &&
1944 : has_params(value
)));
1950 if ((ti_value
= _nc_tic_expand(value
, TRUE
, to_char
)) == ABSENT_STRING
) {
1951 _nc_warning("tic-expansion of %s failed", name
);
1952 } else if ((tc_value
= _nc_infotocap(name
, ti_value
, params
)) == ABSENT_STRING
) {
1953 _nc_warning("tic-conversion of %s failed", name
);
1954 } else if (params
> 0) {
1959 if (!strcmp(name
, "setf")
1960 || !strcmp(name
, "setb")
1961 || !strcmp(name
, "setaf")
1962 || !strcmp(name
, "setab")) {
1965 for (count
= 0; count
< limit
; ++count
) {
1966 char *ti_check
= check_1_infotocap(name
, ti_value
, count
);
1967 char *tc_check
= check_1_infotocap(name
, tc_value
, count
);
1969 if (strcmp(ti_check
, tc_check
)) {
1971 fprintf(stderr
, "check_infotocap(%s)\n", name
);
1972 fprintf(stderr
, "...ti '%s'\n", ti_value
);
1973 fprintf(stderr
, "...tc '%s'\n", tc_value
);
1976 _nc_warning("tparm-conversion of %s(%d) differs between\n\tterminfo %s\n\ttermcap %s",
1977 name
, count
, ti_check
, tc_check
);
1980 } else if (params
== 0 && !same_ti_tc(ti_value
, tc_value
, &embedded
)) {
1982 _nc_warning("termcap equivalent of %s cannot use embedded delay", name
);
1984 _nc_warning("tic-conversion of %s changed value\n\tfrom %s\n\tto %s",
1985 name
, ti_value
, tc_value
);
1993 while (*s
== '/' || isdigit(UChar(*s
)))
1999 * Skip a delay altogether, e.g., when comparing a simple string to sgr,
2000 * the latter may have a worst-case delay on the end.
2003 ignore_delays(char *s
)
2035 #define DATA(name) { #name }
2036 static const char sgr_names
[][11] =
2053 * An sgr string may contain several settings other than the one we're
2054 * interested in, essentially sgr0 + rmacs + whatever. As long as the
2055 * "whatever" is contained in the sgr string, that is close enough for our
2059 similar_sgr(int num
, char *a
, char *b
)
2070 } else if (b
[0] == '$'
2072 _nc_warning("Did not find delay %s", _nc_visbuf(b
));
2074 _nc_warning("checking sgr(%s) %s\n\tcompare to %s\n\tunmatched %s",
2075 sgr_names
[num
], _nc_visbuf2(1, base_a
),
2076 _nc_visbuf2(2, base_b
),
2080 } else if (delaying
) {
2083 } else if ((*b
== '0' || (*b
== ';')) && *a
== 'm') {
2105 /* ignore delays on the end of the string */
2106 a
= ignore_delays(a
);
2107 return ((num
!= 0) || (*a
== 0));
2111 check_sgr(TERMTYPE
*tp
, char *zero
, int num
, char *cap
, const char *name
)
2116 test
= TPARM_9(set_attributes
,
2128 if (!similar_sgr(num
, test
, cap
)) {
2129 _nc_warning("%s differs from sgr(%d)\n\t%s=%s\n\tsgr(%d)=%s",
2131 name
, _nc_visbuf2(1, cap
),
2132 num
, _nc_visbuf2(2, test
));
2134 } else if (_nc_capcmp(test
, zero
)) {
2135 _nc_warning("sgr(%d) present, but not %s", num
, name
);
2137 } else if (PRESENT(cap
)) {
2138 _nc_warning("sgr(%d) missing, but %s present", num
, name
);
2141 _nc_warning("stack error in sgr(%d) string", num
);
2145 #define CHECK_SGR(num,name) check_sgr(tp, zero, num, name, #name)
2149 * If tic is compiled with TRACE, we'll be able to see the output from the
2150 * DEBUG() macro. But since it doesn't use traceon(), it always goes to
2151 * the standard error. Use this function to make it simpler to follow the
2152 * resulting debug traces.
2155 show_where(unsigned level
)
2157 if (_nc_tracing
>= DEBUG_LEVEL(level
)) {
2158 char my_name
[MAX_NAME_SIZE
];
2159 _nc_get_type(my_name
);
2160 _tracef("\"%s\", line %d, '%s'",
2162 _nc_curr_line
, my_name
);
2167 #define show_where(level) /* nothing */
2177 get_fkey_list(TERMTYPE
*tp
)
2179 NAME_VALUE
*result
= typeMalloc(NAME_VALUE
, NUM_STRINGS(tp
) + 1);
2180 const struct tinfo_fkeys
*all_fkeys
= _nc_tinfo_fkeys
;
2185 failed("get_fkey_list");
2187 for (j
= 0; all_fkeys
[j
].code
; j
++) {
2188 char *a
= tp
->Strings
[all_fkeys
[j
].offset
];
2189 if (VALID_STRING(a
)) {
2190 result
[used
].keycode
= (int) all_fkeys
[j
].code
;
2191 result
[used
].name
= strnames
[all_fkeys
[j
].offset
];
2192 result
[used
].value
= a
;
2197 for (j
= STRCOUNT
; j
< NUM_STRINGS(tp
); ++j
) {
2198 const char *name
= ExtStrname(tp
, (int) j
, strnames
);
2200 result
[used
].keycode
= -1;
2201 result
[used
].name
= name
;
2202 result
[used
].value
= tp
->Strings
[j
];
2207 result
[used
].keycode
= 0;
2212 show_fkey_name(NAME_VALUE
* data
)
2214 if (data
->keycode
> 0) {
2215 fprintf(stderr
, " %s", keyname(data
->keycode
));
2216 fprintf(stderr
, " (capability \"%s\")", data
->name
);
2218 fprintf(stderr
, " capability \"%s\"", data
->name
);
2223 * A terminal entry may contain more than one keycode assigned to a given
2224 * string (e.g., KEY_END and KEY_LL). But curses will only return one (the
2225 * last one assigned).
2228 check_conflict(TERMTYPE
*tp
)
2230 bool conflict
= FALSE
;
2233 if (!(_nc_syntax
== SYN_TERMCAP
&& capdump
)) {
2234 char *check
= calloc((size_t) (NUM_STRINGS(tp
) + 1), sizeof(char));
2235 NAME_VALUE
*given
= get_fkey_list(tp
);
2238 failed("check_termtype");
2240 for (j
= 0; given
[j
].keycode
; ++j
) {
2241 const char *a
= given
[j
].value
;
2244 for (k
= j
+ 1; given
[k
].keycode
; k
++) {
2245 const char *b
= given
[k
].value
;
2248 if (!_nc_capcmp(a
, b
)) {
2253 _nc_warning("Conflicting key definitions (using the last)");
2256 fprintf(stderr
, "...");
2257 show_fkey_name(given
+ j
);
2258 fprintf(stderr
, " is the same as");
2259 show_fkey_name(given
+ k
);
2262 fprintf(stderr
, ", ");
2263 show_fkey_name(given
+ k
);
2268 fprintf(stderr
, "\n");
2276 * Exiting a video mode should not duplicate sgr0
2279 check_exit_attribute(const char *name
, char *test
, char *trimmed
, char *untrimmed
)
2281 if (VALID_STRING(test
)) {
2282 if (similar_sgr(-1, trimmed
, test
) ||
2283 similar_sgr(-1, untrimmed
, test
)) {
2284 _nc_warning("%s matches exit_attribute_mode", name
);
2290 * Returns true if the string looks like a standard SGR string.
2293 is_sgr_string(char *value
)
2295 bool result
= FALSE
;
2297 if (VALID_STRING(value
)) {
2298 if (value
[0] == '\033' && value
[1] == '[') {
2301 } else if (UChar(value
[0]) == 0x9a) {
2307 while ((ch
= UChar(*value
++)) != '\0') {
2308 if (isdigit(ch
) || ch
== ';') {
2310 } else if (ch
== 'm' && *value
== '\0') {
2323 * Check if the given capability contains a given SGR attribute.
2326 check_sgr_param(TERMTYPE
*tp
, int code
, const char *name
, char *value
)
2328 if (VALID_STRING(value
)) {
2329 int ncv
= ((code
!= 0) ? (1 << (code
- 1)) : 0);
2330 char *test
= tgoto(value
, 0, 0);
2331 if (is_sgr_string(test
)) {
2335 int color
= (value
== set_a_foreground
||
2336 value
== set_a_background
||
2337 value
== set_foreground
||
2338 value
== set_background
);
2339 while (*test
!= 0) {
2340 if (isdigit(UChar(*test
))) {
2341 param
= 10 * param
+ (*test
- '0');
2346 * Avoid unnecessary warning for xterm 256color codes.
2348 if (color
&& (param
== 38 || param
== 48))
2350 if ((skips
-- <= 0) && (param
== code
))
2358 if (count
!= 0 && param
== code
) {
2360 no_color_video
< 0 ||
2361 !(no_color_video
& ncv
)) {
2362 _nc_warning("\"%s\" SGR-attribute used in %s",
2371 /* other sanity-checks (things that we don't want in the normal
2372 * logic that reads a terminfo entry)
2375 check_termtype(TERMTYPE
*tp
, bool literal
)
2381 for_each_string(j
, tp
) {
2382 char *a
= tp
->Strings
[j
];
2383 if (VALID_STRING(a
)) {
2384 check_params(tp
, ExtStrname(tp
, (int) j
, strnames
), a
);
2386 check_infotocap(tp
, (int) j
, a
);
2399 * These may be mismatched because the terminal description relies on
2400 * restoring the cursor visibility by resetting it.
2402 ANDMISSING(cursor_invisible
, cursor_normal
);
2403 ANDMISSING(cursor_visible
, cursor_normal
);
2405 if (PRESENT(cursor_visible
) && PRESENT(cursor_normal
)
2406 && !_nc_capcmp(cursor_visible
, cursor_normal
))
2407 _nc_warning("cursor_visible is same as cursor_normal");
2410 * From XSI & O'Reilly, we gather that sc/rc are required if csr is
2411 * given, because the cursor position after the scrolling operation is
2412 * performed is undefined.
2414 ANDMISSING(change_scroll_region
, save_cursor
);
2415 ANDMISSING(change_scroll_region
, restore_cursor
);
2418 * If we can clear tabs, we should be able to initialize them.
2420 ANDMISSING(clear_all_tabs
, set_tab
);
2422 if (PRESENT(set_attributes
)) {
2426 if (PRESENT(exit_attribute_mode
)) {
2427 zero
= strdup(CHECK_SGR(0, exit_attribute_mode
));
2429 zero
= strdup(TPARM_9(set_attributes
, 0, 0, 0, 0, 0, 0, 0, 0, 0));
2432 _nc_warning("stack error in sgr(0) string");
2435 CHECK_SGR(1, enter_standout_mode
);
2436 CHECK_SGR(2, enter_underline_mode
);
2437 CHECK_SGR(3, enter_reverse_mode
);
2438 CHECK_SGR(4, enter_blink_mode
);
2439 CHECK_SGR(5, enter_dim_mode
);
2440 CHECK_SGR(6, enter_bold_mode
);
2441 CHECK_SGR(7, enter_secure_mode
);
2442 CHECK_SGR(8, enter_protected_mode
);
2443 CHECK_SGR(9, enter_alt_charset_mode
);
2446 _nc_warning("sgr(0) did not return a value");
2448 } else if (PRESENT(exit_attribute_mode
) &&
2449 set_attributes
!= CANCELLED_STRING
) {
2450 if (_nc_syntax
== SYN_TERMINFO
)
2451 _nc_warning("missing sgr string");
2453 #define CHECK_SGR0(name) check_exit_attribute(#name, name, check_sgr0, exit_attribute_mode)
2454 if (PRESENT(exit_attribute_mode
)) {
2455 char *check_sgr0
= _nc_trim_sgr0(tp
);
2457 if (check_sgr0
== 0 || *check_sgr0
== '\0') {
2458 _nc_warning("trimmed sgr0 is empty");
2461 if (check_sgr0
!= exit_attribute_mode
) {
2463 ("will trim sgr0\n\toriginal sgr0=%s\n\ttrimmed sgr0=%s",
2464 _nc_visbuf2(1, exit_attribute_mode
),
2465 _nc_visbuf2(2, check_sgr0
)));
2468 ("will not trim sgr0\n\toriginal sgr0=%s",
2469 _nc_visbuf(exit_attribute_mode
)));
2472 CHECK_SGR0(exit_italics_mode
);
2473 CHECK_SGR0(exit_standout_mode
);
2474 CHECK_SGR0(exit_underline_mode
);
2475 if (check_sgr0
!= exit_attribute_mode
) {
2479 #define CHECK_SGR_PARAM(code, name) check_sgr_param(tp, (int)code, #name, name)
2480 for (j
= 0; *sgr_names
[j
] != '\0'; ++j
) {
2481 CHECK_SGR_PARAM(j
, set_a_foreground
);
2482 CHECK_SGR_PARAM(j
, set_a_background
);
2483 CHECK_SGR_PARAM(j
, set_foreground
);
2484 CHECK_SGR_PARAM(j
, set_background
);
2488 if (!auto_right_margin
) {
2490 ("can write to lower-right directly"));
2491 } else if (PRESENT(enter_am_mode
) && PRESENT(exit_am_mode
)) {
2493 ("can write to lower-right by suppressing automargin"));
2494 } else if ((PRESENT(enter_insert_mode
) && PRESENT(exit_insert_mode
))
2495 || PRESENT(insert_character
) || PRESENT(parm_ich
)) {
2497 ("can write to lower-right by using inserts"));
2500 ("cannot write to lower-right"));
2505 * Some standard applications (e.g., vi) and some non-curses
2506 * applications (e.g., jove) get confused if we have both ich1 and
2507 * smir/rmir. Let's be nice and warn about that, too, even though
2508 * ncurses handles it.
2510 if ((PRESENT(enter_insert_mode
) || PRESENT(exit_insert_mode
))
2511 && PRESENT(parm_ich
)) {
2512 _nc_warning("non-curses applications may be confused by ich1 with smir/rmir");
2516 * Finally, do the non-verbose checks
2518 if (save_check_termtype
!= 0)
2519 save_check_termtype(tp
, literal
);