]> ncurses.scripts.mit.edu Git - ncurses.git/blob - man/term.5
ncurses 6.4 - patch 20231007
[ncurses.git] / man / term.5
1 .\"***************************************************************************
2 .\" Copyright 2018-2021,2023 Thomas E. Dickey                                *
3 .\" Copyright 1998-2016,2017 Free Software Foundation, Inc.                  *
4 .\"                                                                          *
5 .\" Permission is hereby granted, free of charge, to any person obtaining a  *
6 .\" copy of this software and associated documentation files (the            *
7 .\" "Software"), to deal in the Software without restriction, including      *
8 .\" without limitation the rights to use, copy, modify, merge, publish,      *
9 .\" distribute, distribute with modifications, sublicense, and/or sell       *
10 .\" copies of the Software, and to permit persons to whom the Software is    *
11 .\" furnished to do so, subject to the following conditions:                 *
12 .\"                                                                          *
13 .\" The above copyright notice and this permission notice shall be included  *
14 .\" in all copies or substantial portions of the Software.                   *
15 .\"                                                                          *
16 .\" THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS  *
17 .\" OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF               *
18 .\" MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.   *
19 .\" IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,   *
20 .\" DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR    *
21 .\" OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR    *
22 .\" THE USE OR OTHER DEALINGS IN THE SOFTWARE.                               *
23 .\"                                                                          *
24 .\" Except as contained in this notice, the name(s) of the above copyright   *
25 .\" holders shall not be used in advertising or otherwise to promote the     *
26 .\" sale, use or other dealings in this Software without prior written       *
27 .\" authorization.                                                           *
28 .\"***************************************************************************
29 .\"
30 .\" $Id: term.5,v 1.59 2023/10/07 21:19:07 tom Exp $
31 .TH term 5 2023-10-07 "ncurses 6.4" "File formats"
32 .ie \n(.g \{\
33 .ds `` \(lq
34 .ds '' \(rq
35 .ds ^  \(ha
36 .\}
37 .el \{\
38 .ie t .ds `` ``
39 .el   .ds `` ""
40 .ie t .ds '' ''
41 .el   .ds '' ""
42 .ds       ^  ^
43 .\}
44 .
45 .de bP
46 .ie n  .IP \(bu 4
47 .el    .IP \(bu 2
48 ..
49 .
50 .ds n 5
51 .ds d @TERMINFO@
52 .SH NAME
53 term \-
54 compiled \fIterminfo\fR terminal description
55 .SH SYNOPSIS
56 .B term
57 .SH DESCRIPTION
58 .SS STORAGE LOCATION
59 Compiled terminfo descriptions are placed under the directory \fB\*d\fP.
60 Two configurations are supported (when building the \fBncurses\fP libraries):
61 .TP 5
62 .B directory tree
63 A two-level scheme is used to avoid a linear search
64 of a huge \s-1UNIX\s+1 system directory: \fB\*d/c/name\fP where
65 .I name
66 is the name of the terminal, and
67 .I c
68 is the first character of
69 .IR name .
70 Thus,
71 .I act4
72 can be found in the file \fB\*d/a/act4\fP.
73 Synonyms for the same terminal are implemented by multiple
74 links to the same compiled file.
75 .TP 5
76 .B hashed database
77 Using Berkeley database, two types of records are stored:
78 the terminfo data in the same format as stored in a directory tree with
79 the terminfo's primary name as a key,
80 and records containing only aliases pointing to the primary name.
81 .IP
82 If built to write hashed databases,
83 \fBncurses\fP can still read terminfo databases organized as a directory tree,
84 but cannot write entries into the directory tree.
85 It can write (or rewrite) entries in the hashed database.
86 .IP
87 \fBncurses\fP distinguishes the two cases in the TERMINFO and TERMINFO_DIRS
88 environment variable by assuming a directory tree for entries that
89 correspond to an existing directory,
90 and hashed database otherwise.
91 .SS LEGACY STORAGE FORMAT
92 The format has been chosen so that it will be the same on all hardware.
93 An 8 or more bit byte is assumed, but no assumptions about byte ordering
94 or sign extension are made.
95 .PP
96 The compiled file is created with the \fB@TIC@\fP program,
97 and read by the routine \fBsetupterm\fP(3X).
98 The file is divided into six parts:
99 .RS 5
100 .TP 3
101 a) \fIheader\fP,
102 .TP 3
103 b) \fIterminal names\fP,
104 .TP 3
105 c) \fIboolean flags\fP,
106 .TP 3
107 d) \fInumbers\fP,
108 .TP 3
109 e) \fIstrings\fP, and
110 .TP 3
111 f) \fIstring table\fP.
112 .RE
113 .PP
114 The \fIheader\fP section begins the file.
115 This section contains six short integers in the format
116 described below.
117 These integers are
118 .RS 5
119 .TP 5
120 (1) the \fImagic number\fP (octal 0432);
121 .TP 5
122 (2) the size, in bytes, of the \fIterminal names\fP section;
123 .TP 5
124 (3) the number of bytes in the \fIboolean flags\fP section;
125 .TP 5
126 (4) the number of short integers in the \fInumbers\fP section;
127 .TP 5
128 (5) the number of offsets (short integers) in the \fIstrings\fP section;
129 .TP 5
130 (6) the size, in bytes, of the \fIstring table\fP.
131 .RE
132 .PP
133 The capabilities in the
134 \fIboolean flags\fP,
135 \fInumbers\fP, and
136 \fIstrings\fP
137 sections are in the same order as the file <term.h>.
138 .PP
139 Short integers are signed, in the range \-32768 to 32767.
140 They are stored as two 8-bit bytes.
141 The first byte contains the least significant 8 bits of the value,
142 and the second byte contains the most significant 8 bits.
143 (Thus, the value represented is 256*second+first.)
144 This format corresponds to the hardware of the \s-1VAX\s+1
145 and \s-1PDP\s+1-11 (that is, little-endian machines).
146 Machines where this does not correspond to the hardware must read the
147 integers as two bytes and compute the little-endian value.
148 .PP
149 Numbers in a terminal description,
150 whether they are entries in the \fInumbers\fP or \fIstrings\fP table,
151 are positive integers.
152 Boolean flags are treated as positive one-byte integers.
153 In each case, those positive integers represent a terminal capability.
154 The terminal compiler @TIC@ uses negative integers to handle the cases where
155 a capability is not available:
156 .bP
157 If a capability is absent from this terminal,
158 @TIC@ stores a \-1 in the corresponding table.
159 .IP
160 The integer value \-1 is represented by two bytes 0377, 0377.
161 .br
162 Absent boolean values are represented by the byte 0 (false).
163 .bP
164 If a capability has been canceled from this terminal,
165 @TIC@ stores a \-2 in the corresponding table.
166 .IP
167 The integer value \-2 is represented by two bytes 0377, 0376.
168 .br
169 The boolean value \-2 is represented by the byte 0376.
170 .br
171 .bP
172 Other negative values are illegal.
173 .PP
174 The \fIterminal names\fP section comes after the \fIheader\fP.
175 It contains the first line of the terminfo description,
176 listing the various names for the terminal,
177 separated by the \*(``|\*('' character.
178 The \fIterminal names\fP section is terminated
179 with an \s-1ASCII NUL\s+1 character.
180 .PP
181 The \fIboolean flags\fP section has one byte for each flag.
182 Boolean capabilities are either 1 or 0 (true or false)
183 according to whether the terminal supports the given capability or not.
184 .PP
185 Between the \fIboolean flags\fP section and the \fInumber\fP section,
186 a null byte will be inserted, if necessary,
187 to ensure that the \fInumber\fP section begins on an even byte
188 This is a relic of the PDP\-11's word-addressed architecture,
189 originally designed to avoid traps induced
190 by addressing a word on an odd byte boundary.
191 All short integers are aligned on a short word boundary.
192 .PP
193 The \fInumbers\fP section is similar to the \fIboolean flags\fP section.
194 Each capability takes up two bytes,
195 and is stored as a little-endian short integer.
196 .PP
197 The \fIstrings\fP section is also similar.
198 Each capability is stored as a short integer.
199 The capability value is an index into the \fIstring table\fP.
200 .PP
201 The \fIstring table\fP is the last section.
202 It contains all of the values of string capabilities referenced in
203 the \fIstrings\fP section.
204 Each string is null-terminated.
205 Special characters in \*^X or \ec notation are stored in their
206 interpreted form, not the printing representation.
207 Padding information $<nn> and parameter information %x are
208 stored intact in uninterpreted form.
209 .SS EXTENDED STORAGE FORMAT
210 The previous section describes the conventional terminfo binary format.
211 With some minor variations of the offsets (see PORTABILITY),
212 the same binary format is used in all modern UNIX systems.
213 Each system uses a predefined set of boolean, number or string capabilities.
214 .PP
215 The \fBncurses\fP libraries and applications support
216 extended terminfo binary format,
217 allowing users to define capabilities which are loaded at runtime.
218 This
219 extension is made possible by using the fact that the other implementations
220 stop reading the terminfo data when they have reached the end of the size given
221 in the header.
222 \fBncurses\fP checks the size,
223 and if it exceeds that due to the predefined data,
224 continues to parse according to its own scheme.
225 .PP
226 First, it reads the extended header (5 short integers):
227 .RS 5
228 .TP 5
229 (1)
230 count of extended boolean capabilities
231 .TP 5
232 (2)
233 count of extended numeric capabilities
234 .TP 5
235 (3)
236 count of extended string capabilities
237 .TP 5
238 (4)
239 count of the items in extended string table
240 .TP 5
241 (5)
242 size of the extended string table in bytes
243 .RE
244 .PP
245 The count- and size-values for the extended string table
246 include the extended capability \fInames\fP as well as
247 extended capability \fIvalues\fP.
248 .PP
249 Using the counts and sizes, \fBncurses\fP allocates arrays and reads data
250 for the extended capabilities in the same order as the header information.
251 .PP
252 The extended string table contains values for string capabilities.
253 After the end of these values, it contains the names for each of
254 the extended capabilities in order, e.g., booleans, then numbers and
255 finally strings.
256 .PP
257 Applications which manipulate terminal data can use the definitions
258 described in \fBterm_variables\fP(3X) which associate the long capability
259 names with members of a \fBTERMTYPE\fP structure.
260 .
261 .SS EXTENDED NUMBER FORMAT
262 On occasion, 16-bit signed integers are not large enough.
263 With \fBncurses\fP 6.1, a new format was introduced by making a few changes
264 to the legacy format:
265 .bP
266 a different magic number (octal 01036)
267 .bP
268 changing the type for the \fInumber\fP array from signed 16-bit integers
269 to signed 32-bit integers.
270 .PP
271 To maintain compatibility, the library presents the same data structures
272 to direct users of the \fBTERMTYPE\fP structure as in previous formats.
273 However, that cannot provide callers with the extended numbers.
274 The library uses a similar but hidden data structure \fBTERMTYPE2\fP
275 to provide data for the terminfo functions.
276 .SH PORTABILITY
277 .SS setupterm
278 Note that it is possible for
279 .B setupterm
280 to expect a different set of capabilities
281 than are actually present in the file.
282 Either the database may have been updated since
283 .B setupterm
284 was recompiled
285 (resulting in extra unrecognized entries in the file)
286 or the program may have been recompiled more recently
287 than the database was updated
288 (resulting in missing entries).
289 The routine
290 .B setupterm
291 must be prepared for both possibilities \-
292 this is why the numbers and sizes are included.
293 Also, new capabilities must always be added at the end of the lists
294 of boolean, number, and string capabilities.
295 .SS Binary format
296 X/Open Curses does not specify a format for the terminfo database.
297 UNIX System V curses used a directory-tree of binary files,
298 one per terminal description.
299 .PP
300 Despite the consistent use of little-endian for numbers and the otherwise
301 self-describing format, it is not wise to count on portability of binary
302 terminfo entries between commercial UNIX versions.
303 The problem is that there
304 are at least three versions of terminfo (under HP\-UX, AIX, and OSF/1) which
305 diverged from System V terminfo after SVr1, and have added extension
306 capabilities to the string table that (in the binary format) collide with
307 System V and XSI Curses extensions.
308 See \fBterminfo\fP(\*n) for detailed
309 discussion of terminfo source compatibility issues.
310 .PP
311 This implementation is by default compatible with the binary
312 terminfo format used by Solaris curses,
313 except in a few less-used details
314 where it was found that the latter did not match X/Open Curses.
315 The format used by the other Unix versions
316 can be matched by building ncurses
317 with different configuration options.
318 .SS Magic codes
319 The magic number in a binary terminfo file is the first 16-bits (two bytes).
320 Besides making it more reliable for the library to check that a file
321 is terminfo,
322 utilities such as \fBfile\fP(1) also use that to tell what the file-format is.
323 System V defined more than one magic number,
324 with 0433, 0435 as screen-dumps (see \fBscr_dump\fP(5)).
325 This implementation uses 01036 as a continuation of that sequence,
326 but with a different high-order byte to avoid confusion.
327 .SS The TERMTYPE structure
328 Direct access to the \fBTERMTYPE\fP structure is provided for legacy
329 applications.
330 Portable applications should use the \fBtigetflag\fP and related functions
331 described in \fBcurs_terminfo\fP(3X) for reading terminal capabilities.
332 .SS Mixed-case terminal names
333 A small number of terminal descriptions use uppercase characters in
334 their names.
335 If the underlying filesystem ignores the difference between
336 uppercase and lowercase,
337 \fBncurses\fP represents the \*(``first character\*(''
338 of the terminal name used as
339 the intermediate level of a directory tree in (two-character) hexadecimal form.
340 .SH EXAMPLE
341 As an example, here is a description for the Lear-Siegler
342 ADM\-3, a popular though rather stupid early terminal:
343 .PP
344 .RS 4
345 .EX
346 adm3a|lsi adm3a,
347         am,
348         cols#80, lines#24,
349         bel=\*^G, clear=\e032$<1>, cr=\*^M, cub1=\*^H, cud1=\*^J,
350         cuf1=\*^L, cup=\eE=%p1%{32}%+%c%p2%{32}%+%c, cuu1=\*^K,
351         home=\*^\*^, ind=\*^J,
352 .EE
353 .RE
354 .PP
355 and a hexadecimal dump of the compiled terminal description:
356 .PP
357 .ie n .in -2n
358 .el   .in +4n
359 .TS
360 lp-1f(\*(CW).
361 0000  1a 01 10 00 02 00 03 00  82 00 31 00 61 64 6d 33  ........ ..1.adm3
362 0010  61 7c 6c 73 69 20 61 64  6d 33 61 00 00 01 50 00  a|lsi ad m3a...P.
363 0020  ff ff 18 00 ff ff 00 00  02 00 ff ff ff ff 04 00  ........ ........
364 0030  ff ff ff ff ff ff ff ff  0a 00 25 00 27 00 ff ff  ........ ..%.'...
365 0040  29 00 ff ff ff ff 2b 00  ff ff 2d 00 ff ff ff ff  ).....+. ..-.....
366 0050  ff ff ff ff ff ff ff ff  ff ff ff ff ff ff ff ff  ........ ........
367 0060  ff ff ff ff ff ff ff ff  ff ff ff ff ff ff ff ff  ........ ........
368 0070  ff ff ff ff ff ff ff ff  ff ff ff ff ff ff ff ff  ........ ........
369 0080  ff ff ff ff ff ff ff ff  ff ff ff ff ff ff ff ff  ........ ........
370 0090  ff ff ff ff ff ff ff ff  ff ff ff ff ff ff ff ff  ........ ........
371 00a0  ff ff ff ff ff ff ff ff  ff ff ff ff ff ff ff ff  ........ ........
372 00b0  ff ff ff ff ff ff ff ff  ff ff ff ff ff ff ff ff  ........ ........
373 00c0  ff ff ff ff ff ff ff ff  ff ff ff ff ff ff ff ff  ........ ........
374 00d0  ff ff ff ff ff ff ff ff  ff ff ff ff ff ff ff ff  ........ ........
375 00e0  ff ff ff ff ff ff ff ff  ff ff ff ff ff ff ff ff  ........ ........
376 00f0  ff ff ff ff ff ff ff ff  ff ff ff ff ff ff ff ff  ........ ........
377 0100  ff ff ff ff ff ff ff ff  ff ff ff ff ff ff ff ff  ........ ........
378 0110  ff ff ff ff ff ff ff ff  ff ff ff ff ff ff ff ff  ........ ........
379 0120  ff ff ff ff ff ff 2f 00  07 00 0d 00 1a 24 3c 31  ....../. .....$<1
380 0130  3e 00 1b 3d 25 70 31 25  7b 33 32 7d 25 2b 25 63  >..=%p1% {32}%+%c
381 0140  25 70 32 25 7b 33 32 7d  25 2b 25 63 00 0a 00 1e  %p2%{32} %+%c....
382 0150  00 08 00 0c 00 0b 00 0a  00                       ........ .
383 .TE
384 .in
385 .SH LIMITS
386 Some limitations:
387 .bP
388 total compiled entries cannot exceed 4096 bytes in the legacy format.
389 .bP
390 total compiled entries cannot exceed 32768 bytes in the extended format.
391 .bP
392 the name field cannot exceed 128 bytes.
393 .PP
394 Compiled entries are limited to 32768 bytes because offsets into the
395 \fIstrings table\fP use two-byte integers.
396 The legacy format could have supported 32768-byte entries,
397 but was limited a virtual memory page's 4096 bytes.
398 .SH FILES
399 \*d/*/* compiled terminal capability database
400 .SH AUTHORS
401 Thomas E. Dickey
402 .br
403 extended terminfo format for ncurses 5.0
404 .br
405 hashed database support for ncurses 5.6
406 .br
407 extended number support for ncurses 6.1
408 .sp
409 Eric S. Raymond
410 .br
411 documented legacy terminfo format, e.g., from \fIpcurses\fP.
412 .SH SEE ALSO
413 \fB\%curses\fP(3X),
414 \fB\%curs_terminfo\fP(3X),
415 \fB\%terminfo\fP(\*n)