]> ncurses.scripts.mit.edu Git - ncurses.git/blob - man/term.5
ncurses 6.1 - patch 20180414
[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.28 2018/03/31 22:41:29 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 extended terminfo binary format,
184 allowing users to define capabilities which are loaded at runtime.
185 This
186 extension is made possible by using the fact that the other implementations
187 stop reading the terminfo data when they have reached the end of the size given
188 in the header.
189 \fBncurses\fP checks the size,
190 and if it exceeds that due to the predefined data,
191 continues to parse according to its own scheme.
192 .PP
193 First, it reads the extended header (5 short integers):
194 .RS 5
195 .TP 5
196 (1)
197 count of extended boolean capabilities
198 .TP 5
199 (2)
200 count of extended numeric capabilities
201 .TP 5
202 (3)
203 count of extended string capabilities
204 .TP 5
205 (4)
206 count of the items in extended string table
207 .TP 5
208 (5)
209 size of the extended string table in bytes
210 .RE
211 .PP
212 The count- and size-values for the extended string table
213 include the extended capability \fInames\fP as well as
214 extended capability \fIvalues\fP.
215 .PP
216 Using the counts and sizes, \fBncurses\fP allocates arrays and reads data
217 for the extended capabilities in the same order as the header information.
218 .PP
219 The extended string table contains values for string capabilities.
220 After the end of these values, it contains the names for each of
221 the extended capabilities in order, e.g., booleans, then numbers and
222 finally strings.
223 .PP
224 Applications which manipulate terminal data can use the definitions
225 described in \fBterm_variables\fP(3X) which associate the long capability
226 names with members of a \fBTERMTYPE\fP structure.
227 .
228 .SS EXTENDED NUMBER FORMAT
229 .PP
230 On occasion, 16-bit signed integers are not large enough.
231 With \fBncurses\fP 6.1, a new format was introduced by making a few changes
232 to the legacy format:
233 .bP
234 a different magic number (0542)
235 .bP
236 changing the type for the \fInumber\fP array from signed 16-bit integers
237 to signed 32-bit integers.
238 .PP
239 To maintain compatibility, the library presents the same data structures
240 to direct users of the \fBTERMTYPE\fP structure as in previous formats.
241 However, that cannot provide callers with the extended numbers.
242 The library uses a similar but hidden data structure \fBTERMTYPE2\fP
243 to provide data for the terminfo functions.
244 .SH PORTABILITY
245 Note that it is possible for
246 .B setupterm
247 to expect a different set of capabilities
248 than are actually present in the file.
249 Either the database may have been updated since
250 .B setupterm
251 has been recompiled
252 (resulting in extra unrecognized entries in the file)
253 or the program may have been recompiled more recently
254 than the database was updated
255 (resulting in missing entries).
256 The routine
257 .B setupterm
258 must be prepared for both possibilities \-
259 this is why the numbers and sizes are included.
260 Also, new capabilities must always be added at the end of the lists
261 of boolean, number, and string capabilities.
262 .PP
263 Despite the consistent use of little-endian for numbers and the otherwise
264 self-describing format, it is not wise to count on portability of binary
265 terminfo entries between commercial UNIX versions.
266 The problem is that there
267 are at least three versions of terminfo (under HP\-UX, AIX, and OSF/1) which
268 diverged from System V terminfo after SVr1, and have added extension
269 capabilities to the string table that (in the binary format) collide with
270 System V and XSI Curses extensions.
271 See \fBterminfo\fR(\*n) for detailed
272 discussion of terminfo source compatibility issues.
273 .PP
274 Direct access to the \fBTERMTYPE\fP structure is provided for legacy
275 applications.
276 Portable applications should use the \fBtigetflag\fP and related functions
277 described in \fBcurs_terminfo\fP(3X) for reading terminal capabilities.
278 .PP
279 A small number of terminal descriptions use uppercase characters in
280 their names.
281 If the underlying filesystem ignores the difference between
282 uppercase and lowercase,
283 \fBncurses\fP represents the \*(``first character\*('' of the terminal name used as
284 the intermediate level of a directory tree in (two-character) hexadecimal form.
285 .SH EXAMPLE
286 As an example, here is a description for the Lear-Siegler
287 ADM\-3, a popular though rather stupid early terminal:
288 .NS
289 adm3a|lsi adm3a,
290         am,
291         cols#80, lines#24,
292         bel=^G, clear=\032$<1>, cr=^M, cub1=^H, cud1=^J,
293         cuf1=^L, cup=\\E=%p1%{32}%+%c%p2%{32}%+%c, cuu1=^K,
294         home=^^, ind=^J,
295 .NS
296 .PP
297 and a hexadecimal dump of the compiled terminal description:
298 .NS
299 .ft CW
300 \s-20000  1a 01 10 00 02 00 03 00  82 00 31 00 61 64 6d 33  ........ ..1.adm3
301 0010  61 7c 6c 73 69 20 61 64  6d 33 61 00 00 01 50 00  a|lsi ad m3a...P.
302 0020  ff ff 18 00 ff ff 00 00  02 00 ff ff ff ff 04 00  ........ ........
303 0030  ff ff ff ff ff ff ff ff  0a 00 25 00 27 00 ff ff  ........ ..%.'...
304 0040  29 00 ff ff ff ff 2b 00  ff ff 2d 00 ff ff ff ff  ).....+. ..-.....
305 0050  ff ff ff ff ff ff ff ff  ff ff ff ff ff ff ff ff  ........ ........
306 0060  ff ff ff ff ff ff ff ff  ff ff ff ff ff ff ff ff  ........ ........
307 0070  ff ff ff ff ff ff ff ff  ff ff ff ff ff ff ff ff  ........ ........
308 0080  ff ff ff ff ff ff ff ff  ff ff ff ff ff ff ff ff  ........ ........
309 0090  ff ff ff ff ff ff ff ff  ff ff ff ff ff ff ff ff  ........ ........
310 00a0  ff ff ff ff ff ff ff ff  ff ff ff ff ff ff ff ff  ........ ........
311 00b0  ff ff ff ff ff ff ff ff  ff ff ff ff ff ff ff ff  ........ ........
312 00c0  ff ff ff ff ff ff ff ff  ff ff ff ff ff ff ff ff  ........ ........
313 00d0  ff ff ff ff ff ff ff ff  ff ff ff ff ff ff ff ff  ........ ........
314 00e0  ff ff ff ff ff ff ff ff  ff ff ff ff ff ff ff ff  ........ ........
315 00f0  ff ff ff ff ff ff ff ff  ff ff ff ff ff ff ff ff  ........ ........
316 0100  ff ff ff ff ff ff ff ff  ff ff ff ff ff ff ff ff  ........ ........
317 0110  ff ff ff ff ff ff ff ff  ff ff ff ff ff ff ff ff  ........ ........
318 0120  ff ff ff ff ff ff 2f 00  07 00 0d 00 1a 24 3c 31  ....../. .....$<1
319 0130  3e 00 1b 3d 25 70 31 25  7b 33 32 7d 25 2b 25 63  >..=%p1% {32}%+%c
320 0140  25 70 32 25 7b 33 32 7d  25 2b 25 63 00 0a 00 1e  %p2%{32} %+%c....
321 0150  00 08 00 0c 00 0b 00 0a  00                       ........ .\s+2
322 .ft R
323 .NE
324 .sp
325 .SH LIMITS
326 Some limitations:
327 .bP
328 total compiled entries cannot exceed 4096 bytes in the legacy format.
329 .bP
330 total compiled entries cannot exceed 32768 bytes in the extended format.
331 .bP
332 the name field cannot exceed 128 bytes.
333 .SH FILES
334 \*d/*/* compiled terminal capability data base
335 .SH SEE ALSO
336 \fBcurses\fR(3X), \fBterminfo\fR(\*n).
337 .SH AUTHORS
338 Thomas E. Dickey
339 .br
340 extended terminfo format for ncurses 5.0
341 .br
342 hashed database support for ncurses 5.6
343 .br
344 extended number support for ncurses 6.1
345 .sp
346 Eric S. Raymond
347 .br
348 documented legacy terminfo format, e.g., from pcurses.