]> ncurses.scripts.mit.edu Git - ncurses.git/blob - man/term.5
ncurses 6.1 - patch 20180602
[ncurses.git] / man / term.5
1 .\"***************************************************************************
2 .\" Copyright (c) 1998-2017,2018 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 .\" $Id: term.5,v 1.29 2018/05/19 21:09:25 tom Exp $
30 .TH term 5
31 .ie \n(.g .ds `` \(lq
32 .el       .ds `` ``
33 .ie \n(.g .ds '' \(rq
34 .el       .ds '' ''
35 .de NS
36 .ie n  .sp
37 .el    .sp .5
38 .ie n  .in +4
39 .el    .in +2
40 .nf
41 .ft C                   \" Courier
42 ..
43 .de NE
44 .fi
45 .ft R
46 .in -4
47 ..
48 .de bP
49 .ie n  .IP \(bu 4
50 .el    .IP \(bu 2
51 ..
52 .ds n 5
53 .ds d @TERMINFO@
54 .SH NAME
55 term \- format of compiled term file.
56 .SH SYNOPSIS
57 .B term
58 .SH DESCRIPTION
59 .SS STORAGE LOCATION
60 Compiled terminfo descriptions are placed under the directory \fB\*d\fP.
61 Two configurations are supported (when building the \fBncurses\fP libraries):
62 .TP 5
63 .B directory tree
64 A two-level scheme is used to avoid a linear search
65 of a huge \s-1UNIX\s+1 system directory: \fB\*d/c/name\fP where
66 .I name
67 is the name of the terminal, and
68 .I c
69 is the first character of
70 .IR name .
71 Thus,
72 .I act4
73 can be found in the file \fB\*d/a/act4\fP.
74 Synonyms for the same terminal are implemented by multiple
75 links to the same compiled file.
76 .TP 5
77 .B hashed database
78 Using Berkeley database, two types of records are stored:
79 the terminfo data in the same format as stored in a directory tree with
80 the terminfo's primary name as a key,
81 and records containing only aliases pointing to the primary name.
82 .IP
83 If built to write hashed databases,
84 \fBncurses\fP can still read terminfo databases organized as a directory tree,
85 but cannot write entries into the directory tree.
86 It can write (or rewrite) entries in the hashed database.
87 .IP
88 \fBncurses\fP distinguishes the two cases in the TERMINFO and TERMINFO_DIRS
89 environment variable by assuming a directory tree for entries that
90 correspond to an existing directory,
91 and hashed database otherwise.
92 .SS LEGACY STORAGE FORMAT
93 The format has been chosen so that it will be the same on all hardware.
94 An 8 or more bit byte is assumed, but no assumptions about byte ordering
95 or sign extension are made.
96 .PP
97 The compiled file is created with the \fB@TIC@\fP program,
98 and read by the routine \fBsetupterm\fP(3X).
99 The file is divided into six parts:
100 the header,
101 terminal names,
102 boolean flags,
103 numbers,
104 strings,
105 and
106 string table.
107 .PP
108 The header section begins the file.
109 This section contains six short integers in the format
110 described below.
111 These integers are
112 .RS 5
113 .TP 5
114 (1) the magic number (octal 0432);
115 .TP 5
116 (2) the size, in bytes, of the names section;
117 .TP 5
118 (3) the number of bytes in the boolean section;
119 .TP 5
120 (4) the number of short integers in the numbers section;
121 .TP 5
122 (5) the number of offsets (short integers) in the strings section;
123 .TP 5
124 (6) the size, in bytes, of the string table.
125 .RE
126 .PP
127 Short integers are stored in two 8-bit bytes.
128 The first byte contains the least significant 8 bits of the value,
129 and the second byte contains the most significant 8 bits.
130 (Thus, the value represented is 256*second+first.)
131 The value \-1 is represented by the two bytes 0377, 0377; other negative
132 values are illegal.
133 This value generally
134 means that the corresponding capability is missing from this terminal.
135 Note that this format corresponds to the hardware of the \s-1VAX\s+1
136 and \s-1PDP\s+1-11 (that is, little-endian machines).
137 Machines where this does not correspond to the hardware must read the
138 integers as two bytes and compute the little-endian value.
139 .PP
140 The terminal names section comes next.
141 It contains the first line of the terminfo description,
142 listing the various names for the terminal,
143 separated by the \*(``|\*('' character.
144 The section is terminated with an \s-1ASCII NUL\s+1 character.
145 .PP
146 The boolean flags have one byte for each flag.
147 This byte is either 0 or 1 as the flag is present or absent.
148 The capabilities are in the same order as the file <term.h>.
149 .PP
150 Between the boolean section and the number section,
151 a null byte will be inserted, if necessary,
152 to ensure that the number section begins on an even byte (this is a
153 relic of the PDP\-11's word-addressed architecture, originally
154 designed in to avoid IOT traps induced by addressing a word on an
155 odd byte boundary).
156 All short integers are aligned on a short word boundary.
157 .PP
158 The numbers section is similar to the flags section.
159 Each capability takes up two bytes,
160 and is stored as a little-endian short integer.
161 If the value represented is \-1, the capability is taken to be missing.
162 .PP
163 The strings section is also similar.
164 Each capability is stored as a short integer, in the format above.
165 A value of \-1 means the capability is missing.
166 Otherwise, the value is taken as an offset from the beginning
167 of the string table.
168 Special characters in ^X or \ec notation are stored in their
169 interpreted form, not the printing representation.
170 Padding information $<nn> and parameter information %x are
171 stored intact in uninterpreted form.
172 .PP
173 The final section is the string table.
174 It contains all the values of string capabilities referenced in
175 the string section.
176 Each string is null terminated.
177 .SS EXTENDED STORAGE FORMAT
178 The previous section describes the conventional terminfo binary format.
179 With some minor variations of the offsets (see PORTABILITY),
180 the same binary format is used in all modern UNIX systems.
181 Each system uses a predefined set of boolean, number or string capabilities.
182 .PP
183 The \fBncurses\fP libraries and applications support
184 extended terminfo binary format,
185 allowing users to define capabilities which are loaded at runtime.
186 This
187 extension is made possible by using the fact that the other implementations
188 stop reading the terminfo data when they have reached the end of the size given
189 in the header.
190 \fBncurses\fP checks the size,
191 and if it exceeds that due to the predefined data,
192 continues to parse according to its own scheme.
193 .PP
194 First, it reads the extended header (5 short integers):
195 .RS 5
196 .TP 5
197 (1)
198 count of extended boolean capabilities
199 .TP 5
200 (2)
201 count of extended numeric capabilities
202 .TP 5
203 (3)
204 count of extended string capabilities
205 .TP 5
206 (4)
207 count of the items in extended string table
208 .TP 5
209 (5)
210 size of the extended string table in bytes
211 .RE
212 .PP
213 The count- and size-values for the extended string table
214 include the extended capability \fInames\fP as well as
215 extended capability \fIvalues\fP.
216 .PP
217 Using the counts and sizes, \fBncurses\fP allocates arrays and reads data
218 for the extended capabilities in the same order as the header information.
219 .PP
220 The extended string table contains values for string capabilities.
221 After the end of these values, it contains the names for each of
222 the extended capabilities in order, e.g., booleans, then numbers and
223 finally strings.
224 .PP
225 Applications which manipulate terminal data can use the definitions
226 described in \fBterm_variables\fP(3X) which associate the long capability
227 names with members of a \fBTERMTYPE\fP structure.
228 .
229 .SS EXTENDED NUMBER FORMAT
230 .PP
231 On occasion, 16-bit signed integers are not large enough.
232 With \fBncurses\fP 6.1, a new format was introduced by making a few changes
233 to the legacy format:
234 .bP
235 a different magic number (0542)
236 .bP
237 changing the type for the \fInumber\fP array from signed 16-bit integers
238 to signed 32-bit integers.
239 .PP
240 To maintain compatibility, the library presents the same data structures
241 to direct users of the \fBTERMTYPE\fP structure as in previous formats.
242 However, that cannot provide callers with the extended numbers.
243 The library uses a similar but hidden data structure \fBTERMTYPE2\fP
244 to provide data for the terminfo functions.
245 .SH PORTABILITY
246 Note that it is possible for
247 .B setupterm
248 to expect a different set of capabilities
249 than are actually present in the file.
250 Either the database may have been updated since
251 .B setupterm
252 has been recompiled
253 (resulting in extra unrecognized entries in the file)
254 or the program may have been recompiled more recently
255 than the database was updated
256 (resulting in missing entries).
257 The routine
258 .B setupterm
259 must be prepared for both possibilities \-
260 this is why the numbers and sizes are included.
261 Also, new capabilities must always be added at the end of the lists
262 of boolean, number, and string capabilities.
263 .PP
264 Despite the consistent use of little-endian for numbers and the otherwise
265 self-describing format, it is not wise to count on portability of binary
266 terminfo entries between commercial UNIX versions.
267 The problem is that there
268 are at least three versions of terminfo (under HP\-UX, AIX, and OSF/1) which
269 diverged from System V terminfo after SVr1, and have added extension
270 capabilities to the string table that (in the binary format) collide with
271 System V and XSI Curses extensions.
272 See \fBterminfo\fR(\*n) for detailed
273 discussion of terminfo source compatibility issues.
274 .PP
275 Direct access to the \fBTERMTYPE\fP structure is provided for legacy
276 applications.
277 Portable applications should use the \fBtigetflag\fP and related functions
278 described in \fBcurs_terminfo\fP(3X) for reading terminal capabilities.
279 .PP
280 A small number of terminal descriptions use uppercase characters in
281 their names.
282 If the underlying filesystem ignores the difference between
283 uppercase and lowercase,
284 \fBncurses\fP represents the \*(``first character\*(''
285 of the terminal name used as
286 the intermediate level of a directory tree in (two-character) hexadecimal form.
287 .SH EXAMPLE
288 As an example, here is a description for the Lear-Siegler
289 ADM\-3, a popular though rather stupid early terminal:
290 .NS
291 adm3a|lsi adm3a,
292         am,
293         cols#80, lines#24,
294         bel=^G, clear=\032$<1>, cr=^M, cub1=^H, cud1=^J,
295         cuf1=^L, cup=\\E=%p1%{32}%+%c%p2%{32}%+%c, cuu1=^K,
296         home=^^, ind=^J,
297 .NS
298 .PP
299 and a hexadecimal dump of the compiled terminal description:
300 .NS
301 .ft CW
302 \s-20000  1a 01 10 00 02 00 03 00  82 00 31 00 61 64 6d 33  ........ ..1.adm3
303 0010  61 7c 6c 73 69 20 61 64  6d 33 61 00 00 01 50 00  a|lsi ad m3a...P.
304 0020  ff ff 18 00 ff ff 00 00  02 00 ff ff ff ff 04 00  ........ ........
305 0030  ff ff ff ff ff ff ff ff  0a 00 25 00 27 00 ff ff  ........ ..%.'...
306 0040  29 00 ff ff ff ff 2b 00  ff ff 2d 00 ff ff ff ff  ).....+. ..-.....
307 0050  ff ff ff ff ff ff ff ff  ff ff ff ff ff ff ff ff  ........ ........
308 0060  ff ff ff ff ff ff ff ff  ff ff ff ff ff ff ff ff  ........ ........
309 0070  ff ff ff ff ff ff ff ff  ff ff ff ff ff ff ff ff  ........ ........
310 0080  ff ff ff ff ff ff ff ff  ff ff ff ff ff ff ff ff  ........ ........
311 0090  ff ff ff ff ff ff ff ff  ff ff ff ff ff ff ff ff  ........ ........
312 00a0  ff ff ff ff ff ff ff ff  ff ff ff ff ff ff ff ff  ........ ........
313 00b0  ff ff ff ff ff ff ff ff  ff ff ff ff ff ff ff ff  ........ ........
314 00c0  ff ff ff ff ff ff ff ff  ff ff ff ff ff ff ff ff  ........ ........
315 00d0  ff ff ff ff ff ff ff ff  ff ff ff ff ff ff ff ff  ........ ........
316 00e0  ff ff ff ff ff ff ff ff  ff ff ff ff ff ff ff ff  ........ ........
317 00f0  ff ff ff ff ff ff ff ff  ff ff ff ff ff ff ff ff  ........ ........
318 0100  ff ff ff ff ff ff ff ff  ff ff ff ff ff ff ff ff  ........ ........
319 0110  ff ff ff ff ff ff ff ff  ff ff ff ff ff ff ff ff  ........ ........
320 0120  ff ff ff ff ff ff 2f 00  07 00 0d 00 1a 24 3c 31  ....../. .....$<1
321 0130  3e 00 1b 3d 25 70 31 25  7b 33 32 7d 25 2b 25 63  >..=%p1% {32}%+%c
322 0140  25 70 32 25 7b 33 32 7d  25 2b 25 63 00 0a 00 1e  %p2%{32} %+%c....
323 0150  00 08 00 0c 00 0b 00 0a  00                       ........ .\s+2
324 .ft R
325 .NE
326 .sp
327 .SH LIMITS
328 Some limitations:
329 .bP
330 total compiled entries cannot exceed 4096 bytes in the legacy format.
331 .bP
332 total compiled entries cannot exceed 32768 bytes in the extended format.
333 .bP
334 the name field cannot exceed 128 bytes.
335 .SH FILES
336 \*d/*/* compiled terminal capability data base
337 .SH SEE ALSO
338 \fBcurses\fR(3X), \fBterminfo\fR(\*n).
339 .SH AUTHORS
340 Thomas E. Dickey
341 .br
342 extended terminfo format for ncurses 5.0
343 .br
344 hashed database support for ncurses 5.6
345 .br
346 extended number support for ncurses 6.1
347 .sp
348 Eric S. Raymond
349 .br
350 documented legacy terminfo format, e.g., from pcurses.