/*- * Copyright (c) 1980, 1988, 1993 * The Regents of the University of California. All rights reserved. * * %sccs.include.redist.c% */ #ifndef lint static char copyright[] = "@(#) Copyright (c) 1980, 1988, 1993\n\ The Regents of the University of California. All rights reserved.\n"; #endif /* not lint */ #ifndef lint static char sccsid[] = "@(#)tput.c 8.2 (Berkeley) 03/19/94"; #endif /* not lint */ #include #include #include #include #include #include static void prlongname __P((char *)); static void setospeed __P((void)); static void outc __P((int)); static void usage __P((void)); static char **process __P((char *, char *, char **)); int main(argc, argv) int argc; char **argv; { extern char *optarg; extern int optind; int ch, exitval, n; char *cptr, *p, *term, buf[1024], tbuf[1024]; term = NULL; while ((ch = getopt(argc, argv, "T:")) != EOF) switch(ch) { case 'T': term = optarg; break; case '?': default: usage(); } argc -= optind; argv += optind; if (!term && !(term = getenv("TERM"))) errx(2, "no terminal type specified and no TERM environmental variable."); if (tgetent(tbuf, term) != 1) err(2, "tgetent failure"); setospeed(); for (exitval = 0; (p = *argv) != NULL; ++argv) { switch (*p) { case 'c': if (!strcmp(p, "clear")) p = "cl"; break; case 'i': if (!strcmp(p, "init")) p = "is"; break; case 'l': if (!strcmp(p, "longname")) prlongname(tbuf); continue; case 'r': if (!strcmp(p, "reset")) p = "rs"; break; } cptr = buf; if (tgetstr(p, &cptr)) argv = process(p, buf, argv); else if ((n = tgetnum(p)) != -1) (void)printf("%d\n", n); else exitval = !tgetflag(p); } exit(exitval); } static void prlongname(buf) char *buf; { int savech; char *p, *savep; for (p = buf; *p && *p != ':'; ++p); savech = *(savep = p); for (*p = '\0'; p >= buf && *p != '|'; --p); (void)printf("%s\n", p + 1); *savep = savech; } static char ** process(cap, str, argv) char *cap, *str, **argv; { static char errfew[] = "not enough arguments (%d) for capability `%s'"; static char errmany[] = "too many arguments (%d) for capability `%s'"; static char erresc[] = "unknown %% escape `%c' for capability `%s'"; char *cp; int arg_need, arg_rows, arg_cols; /* Count how many values we need for this capability. */ for (cp = str, arg_need = 0; *cp != '\0'; cp++) if (*cp == '%') switch (*++cp) { case 'd': case '2': case '3': case '.': case '+': arg_need++; break; case '%': case '>': case 'i': case 'r': case 'n': case 'B': case 'D': break; default: /* * hpux has lot's of them, but we complain */ errx(2, erresc, *cp, cap); } /* And print them. */ switch (arg_need) { case 0: (void)tputs(str, 1, outc); break; case 1: arg_cols = 0; if (*++argv == NULL || *argv[0] == '\0') errx(2, errfew, 1, cap); arg_rows = atoi(*argv); (void)tputs(tgoto(str, arg_cols, arg_rows), 1, outc); break; case 2: if (*++argv == NULL || *argv[0] == '\0') errx(2, errfew, 2, cap); arg_cols = atoi(*argv); if (*++argv == NULL || *argv[0] == '\0') errx(2, errfew, 2, cap); arg_rows = atoi(*argv); (void) tputs(tgoto(str, arg_cols, arg_rows), arg_rows, outc); break; default: errx(2, errmany, arg_need, cap); } return (argv); } static void setospeed() { #undef ospeed extern short ospeed; struct termios t; if (tcgetattr(STDOUT_FILENO, &t) != -1) ospeed = 0; else ospeed = cfgetospeed(&t); } static void outc(c) int c; { (void)putchar(c); } static void usage() { (void)fprintf(stderr, "usage: tput [-T term] attribute ...\n"); exit(1); }