Terminal capabilities


In computing and telecommunications, the capabilities of a terminal are various terminal features, above and beyond what is available from a pure teletypewriter, that host systems can make use of. They are of control codes and escape codes that can be sent to or received from the terminal. The escape codes sent to the terminal perform various functions that a CRT terminal is capable of, but that a teletypewriter is not; such as moving the terminal's cursor to positions on the screen, clearing and scrolling all or parts of the screen, turning on and off attached printer devices, programming programmable function keys, changing display colours and attributes, and setting display title strings. The escape codes received from the terminal signify things such as function key, arrow key, and other special key keystrokes.

Unix and POSIX: termcap, terminfo, et al.

In Unix and other POSIX-compliant systems that support the POSIX terminal interface, these capabilities are encoded in databases that are configured by a system administrator and accessed from programs via the terminfo library, upon which in turn are built libraries such as the curses and ncurses libraries, by which applications programs use the terminal capabilities to provide textual user interfaces with windows, dialogue boxes, buttons, labels, input fields, menus, and so forth. The intention is that this allows applications programs to be independent of actual terminal characteristics. They don't need to hardwire any control codes or escape sequences into their code, and so don't have problems being used on a range of terminals with a range of capabilities.

termcap

The termcap library was developed for BSD systems. It uses a database stored in the file /etc/termcap. This database consists of a series of records each of which represents the capabilities of a particular terminal. The fields of the record comprise the terminal type name, or names, followed by a sequence of capabilities, separated by colons. The capability fields themselves fall into three groups:
;characteristics of the terminal
;control sequences sent as output to the terminal
;control sequences sent as input by the terminal

terminfo

The terminfo library was developed for System V systems. It uses a database stored in multiple files within a directory, which can be variously /usr/lib/terminfo, /usr/share/terminfo, or even /usr/share/lib/terminfo.
Unlike the termcap database, the terminfo database is compiled, a machine-readable database that is constructed from a human-readable source file format by a utility program, tic. They can be decompiled from machine-readable form back to human-readable form by another utility program, infocmp. The command to output the human-readable form of the "vt100" terminal definition, for example, is:infocmp vt100
The use of a machine-readable format was to avoid the unnecessary overhead, in applications programs using systems such as the termcap library, of repeatedly parsing the database content to read the fields of a record. The use of multiple files was to avoid the similar overhead of parsing the database content to find the database record for the target terminal type. The terminal type name index is, effectively, the Unix/POSIX filesystem's ordinary directory structure. Originally, Unix had severe performance problems with large directories containing lots of files, and thus terminfo uses a two-level structure, dividing up the directory entries by first letter into a series of subdirectories. More recent filesystem formats used on Unix systems don't suffer as much from such problems and so the necessity for this design element, that still exists in modern terminfo implementations, has since disappeared.

Utility programs to exercise terminal capabilities

On Unix systems, the tput command is used to look up a specific capability in the system's database, and output it to the command's standard output. One of the simplest operations is clearing the screen. The name of the database field that stores the output sequence for this is clear, so the command arguments to the tput program to clear the screen are tput clear Another operation is initializing or resetting the terminal to a known default state. The commands for this are:tput init and tput reset
Normally the tput command uses the terminal type specified by the TERM environment variable, one of the. This can be overridden, however, to force tput to look up a different terminal type in the database, with a command-line option to the command. So, for example, to issue the reset sequence appropriate for the type of terminal named "vt100" in the database, irrespective of terminal type specified in environment variables, the command is:tput -T vt100 reset

What supports what