X-Git-Url: https://ncurses.scripts.mit.edu/?a=blobdiff_plain;f=progs%2Ftic.c;h=1b0aea85d24818ffe5ddc6238e482e29a7b4e856;hb=cba932f979e14e49b63e06715e80f64d9ffe6e5e;hp=1b0e8683e04bb01691afe62048907aa6a4d4e027;hpb=d4d1d81ab6fc1ad681ff120d925099f947fefcf3;p=ncurses.git diff --git a/progs/tic.c b/progs/tic.c index 1b0e8683..1b0aea85 100644 --- a/progs/tic.c +++ b/progs/tic.c @@ -35,6 +35,7 @@ /* * tic.c --- Main program for terminfo compiler * by Eric S. Raymond + * and Thomas E Dickey * */ @@ -44,7 +45,7 @@ #include #include -MODULE_ID("$Id: tic.c,v 1.152 2011/08/06 17:41:36 tom Exp $") +MODULE_ID("$Id: tic.c,v 1.156 2011/11/27 01:32:06 tom Exp $") const char *_nc_progname = "tic"; @@ -69,6 +70,7 @@ static const char usage_string[] = "\ 1\ a\ C\ +D\ c\ f\ G\ @@ -136,6 +138,7 @@ usage(void) #endif " -K translate entries to termcap source form with BSD syntax", " -C translate entries to termcap source form", + " -D print list of tic's database locations (first must be writable)", " -c check only, validate input without compiling or translating", " -e translate/compile only entries named by comma-separated list", " -f format complex strings for readability", @@ -473,6 +476,25 @@ open_tempfile(char *name) return result; } +/* + * Show the databases that tic knows about. The location to which it writes is + * always the first one. If that is not writable, then tic errors out before + * reaching this function. + */ +static void +show_databases(void) +{ + DBDIRS state; + int offset; + const char *path; + + _nc_first_db(&state, &offset); + while ((path = _nc_next_db(&state, &offset)) != 0) { + printf("%s\n", path); + } + _nc_last_db(); +} + int main(int argc, char *argv[]) { @@ -525,7 +547,7 @@ main(int argc, char *argv[]) * be optional. */ while ((this_opt = getopt(argc, argv, - "0123456789CIKLNR:TUVace:fGgo:rstvwx")) != -1) { + "0123456789CDIKLNR:TUVace:fGgo:rstvwx")) != -1) { if (isdigit(this_opt)) { switch (last_opt) { case 'v': @@ -554,12 +576,20 @@ main(int argc, char *argv[]) switch (this_opt) { case 'K': _nc_strict_bsd = 1; - /* FALLTHRU */ + /* the initial version of -K in 20110730 fell-thru here, but the + * same flag is useful when reading sources -TD + */ + break; case 'C': capdump = TRUE; outform = F_TERMCAP; sortmode = S_TERMCAP; break; + case 'D': + _nc_set_writedir(outdir); + show_databases(); + ExitProgram(EXIT_SUCCESS); + break; case 'I': infodump = TRUE; outform = F_TERMINFO;