xref: /openbsd-src/lib/libcurses/tic.h (revision c6cdd5a60f0c1900bb7d19253bf0adf2ce035032)
1 /*	$OpenBSD: tic.h,v 1.7 1999/11/28 17:59:28 millert Exp $	*/
2 
3 /****************************************************************************
4  * Copyright (c) 1998 Free Software Foundation, Inc.                        *
5  *                                                                          *
6  * Permission is hereby granted, free of charge, to any person obtaining a  *
7  * copy of this software and associated documentation files (the            *
8  * "Software"), to deal in the Software without restriction, including      *
9  * without limitation the rights to use, copy, modify, merge, publish,      *
10  * distribute, distribute with modifications, sublicense, and/or sell       *
11  * copies of the Software, and to permit persons to whom the Software is    *
12  * furnished to do so, subject to the following conditions:                 *
13  *                                                                          *
14  * The above copyright notice and this permission notice shall be included  *
15  * in all copies or substantial portions of the Software.                   *
16  *                                                                          *
17  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS  *
18  * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF               *
19  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.   *
20  * IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,   *
21  * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR    *
22  * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR    *
23  * THE USE OR OTHER DEALINGS IN THE SOFTWARE.                               *
24  *                                                                          *
25  * Except as contained in this notice, the name(s) of the above copyright   *
26  * holders shall not be used in advertising or otherwise to promote the     *
27  * sale, use or other dealings in this Software without prior written       *
28  * authorization.                                                           *
29  ****************************************************************************/
30 
31 /****************************************************************************
32  *  Author: Zeyd M. Ben-Halim <zmbenhal@netcom.com> 1992,1995               *
33  *     and: Eric S. Raymond <esr@snark.thyrsus.com>                         *
34  ****************************************************************************/
35 
36 /*
37  *	tic.h - Global variables and structures for the terminfo
38  *			compiler.
39  *
40  */
41 
42 #ifndef __TIC_H
43 #define __TIC_H
44 
45 #ifdef __cplusplus
46 extern "C" {
47 #endif
48 
49 #include <curses.h>	/* for the _tracef() prototype, ERR/OK, bool defs */
50 
51 /*
52 ** The format of compiled terminfo files is as follows:
53 **
54 **		Header (12 bytes), containing information given below
55 **		Names Section, containing the names of the terminal
56 **		Boolean Section, containing the values of all of the
57 **				boolean capabilities
58 **				A null byte may be inserted here to make
59 **				sure that the Number Section begins on an
60 **				even word boundary.
61 **		Number Section, containing the values of all of the numeric
62 **				capabilities, each as a short integer
63 **		String Section, containing short integer offsets into the
64 **				String Table, one per string capability
65 **		String Table, containing the actual characters of the string
66 **				capabilities.
67 **
68 **	NOTE that all short integers in the file are stored using VAX/PDP-style
69 **	byte-order, i.e., least-significant byte first.
70 **
71 **	There is no structure definition here because it would only confuse
72 **	matters.  Terminfo format is a raw byte layout, not a structure
73 **	dump.  If you happen to be on a little-endian machine with 16-bit
74 **	shorts that requires no padding between short members in a struct,
75 **	then there is a natural C structure that captures the header, but
76 **	not very helpfully.
77 */
78 
79 #define MAGIC		0432	/* first two bytes of a compiled entry */
80 
81 /*
82  * The "maximum" here is misleading; XSI guarantees minimum values, which a
83  * given implementation may exceed.
84  */
85 #define MAX_NAME_SIZE	512	/* maximum legal name field size (XSI:127) */
86 #define MAX_ENTRY_SIZE	4096	/* maximum legal entry size */
87 
88 /* The maximum size of individual name or alias is guaranteed in XSI to
89  * be 14, since that corresponds to the older filename lengths.  Newer
90  * systems allow longer aliases, though not many terminal descriptions
91  * are written to use them.
92  */
93 #if HAVE_LONG_FILE_NAMES
94 #define MAX_ALIAS	32	/* POSIX minimum for PATH_MAX */
95 #else
96 #define MAX_ALIAS	14	/* SVr3 filename length */
97 #endif
98 
99 /* location of user's personal info directory */
100 #define PRIVATE_INFO	"%s/.terminfo"	/* plug getenv("HOME") into %s */
101 
102 #ifdef TRACE
103 #define DEBUG(n, a)	if (_nc_tracing & (1 << (n - 1))) _tracef a
104 #else
105 #define DEBUG(n, a)	/*nothing*/
106 #endif
107 
108 extern unsigned _nc_tracing;
109 extern void _nc_tracef(char *, ...) GCC_PRINTFLIKE(1,2);
110 extern const char *_nc_visbuf(const char *);
111 
112 /*
113  * These are the types of tokens returned by the scanner.  The first
114  * three are also used in the hash table of capability names.  The scanner
115  * returns one of these values after loading the specifics into the global
116  * structure curr_token.
117  */
118 
119 #define BOOLEAN 0		/* Boolean capability */
120 #define NUMBER 1		/* Numeric capability */
121 #define STRING 2		/* String-valued capability */
122 #define CANCEL 3		/* Capability to be cancelled in following tc's */
123 #define NAMES  4		/* The names for a terminal type */
124 #define UNDEF  5		/* Undefined */
125 
126 #define NO_PUSHBACK	-1	/* used in pushtype to indicate no pushback */
127 
128 	/*
129 	 *	The global structure in which the specific parts of a
130 	 *	scanned token are returned.
131 	 *
132 	 */
133 
134 struct token
135 {
136 	char	*tk_name;		/* name of capability */
137 	int	tk_valnumber;	/* value of capability (if a number) */
138 	char	*tk_valstring;	/* value of capability (if a string) */
139 };
140 
141 extern	struct token	_nc_curr_token;
142 
143 	/*
144 	 * List of keynames with their corresponding code.
145 	 */
146 struct kn {
147 	const char *name;
148 	int code;
149 };
150 
151 extern const struct kn _nc_key_names[];
152 
153 	/*
154 	 * Offsets to string capabilities, with the corresponding functionkey
155 	 * codes.
156 	 */
157 struct tinfo_fkeys {
158 	unsigned offset;
159 	chtype code;
160 	};
161 
162 #if	BROKEN_LINKER
163 
164 #define	_nc_tinfo_fkeys	_nc_tinfo_fkeysf()
165 extern struct tinfo_fkeys *_nc_tinfo_fkeysf(void);
166 
167 #else
168 
169 extern struct tinfo_fkeys _nc_tinfo_fkeys[];
170 
171 #endif
172 
173 	/*
174 	 * The file comp_captab.c contains an array of these structures, one
175 	 * per possible capability.  These are indexed by a hash table array of
176 	 * pointers to the same structures for use by the parser.
177 	 */
178 
179 struct name_table_entry
180 {
181 	const char *nte_name;	/* name to hash on */
182 	int	nte_type;	/* BOOLEAN, NUMBER or STRING */
183 	short	nte_index;	/* index of associated variable in its array */
184 	short	nte_link;	/* index in table of next hash, or -1 */
185 };
186 
187 struct alias
188 {
189 	const char	*from;
190 	const char	*to;
191 	const char	*source;
192 };
193 
194 extern const struct name_table_entry * const _nc_info_hash_table[];
195 extern const struct name_table_entry * const _nc_cap_hash_table[];
196 
197 extern const struct alias _nc_capalias_table[];
198 extern const struct alias _nc_infoalias_table[];
199 
200 extern const struct name_table_entry	*_nc_get_table(bool);
201 extern const struct name_table_entry	* const *_nc_get_hash_table(bool);
202 
203 #define NOTFOUND	((struct name_table_entry *) 0)
204 
205 /* out-of-band values for representing absent capabilities */
206 #define ABSENT_BOOLEAN		-1
207 #define ABSENT_NUMERIC		-1
208 #define ABSENT_STRING		(char *)0
209 
210 /* out-of-band values for representing cancels */
211 #define CANCELLED_BOOLEAN	(char)(-2)
212 #define CANCELLED_NUMERIC	-2
213 #define CANCELLED_STRING	(char *)-1
214 
215 #define VALID_BOOLEAN(s) ((s) >= 0)
216 #define VALID_NUMERIC(s) ((s) >= 0)
217 #define VALID_STRING(s) ((s) != CANCELLED_STRING && (s) != ABSENT_STRING)
218 
219 /* termcap entries longer than this may break old binaries */
220 #define MAX_TERMCAP_LENGTH	1023
221 
222 /* this is a documented limitation of terminfo */
223 #define MAX_TERMINFO_LENGTH	4096
224 
225 #ifndef TERMINFO
226 #define TERMINFO "/usr/share/terminfo"
227 #endif
228 
229 /* comp_hash.c: name lookup */
230 struct name_table_entry	const *_nc_find_entry(const char *,
231 				    const struct name_table_entry *const *);
232 struct name_table_entry const *_nc_find_type_entry(const char *,
233 					 int,
234 					 const struct name_table_entry *);
235 
236 /* comp_scan.c: lexical analysis */
237 extern int  _nc_get_token(void);
238 extern void _nc_push_token(int);
239 extern void _nc_reset_input(FILE *, char *);
240 extern void _nc_panic_mode(char);
241 extern int _nc_curr_line;
242 extern int _nc_curr_col;
243 extern long _nc_curr_file_pos;
244 extern long _nc_comment_start, _nc_comment_end;
245 extern int _nc_syntax;
246 extern long _nc_start_line;
247 #define SYN_TERMINFO	0
248 #define SYN_TERMCAP	1
249 
250 /* comp_error.c: warning & abort messages */
251 extern void _nc_set_source(const char *const name);
252 extern void _nc_get_type(char *name);
253 extern void _nc_set_type(const char *const name);
254 extern void _nc_syserr_abort(const char *const,...) GCC_PRINTFLIKE(1,2) GCC_NORETURN;
255 extern void _nc_err_abort(const char *const,...) GCC_PRINTFLIKE(1,2) GCC_NORETURN;
256 extern void _nc_warning(const char *const,...) GCC_PRINTFLIKE(1,2);
257 extern bool _nc_suppress_warnings;
258 
259 /* comp_expand.c: expand string into readable form */
260 extern char *_nc_tic_expand(const char *, bool, int);
261 
262 /* comp_scan.c: decode string from readable form */
263 extern char _nc_trans_string(char *);
264 
265 /* captoinfo.c: capability conversion */
266 extern char *_nc_captoinfo(const char *, const char *, int const);
267 extern char *_nc_infotocap(const char *, const char *, int const);
268 
269 /* lib_tputs.c */
270 extern int _nc_nulls_sent;		/* Add one for every null sent */
271 
272 /* comp_main.c: compiler main */
273 extern const char *_nc_progname;
274 
275 /* read_entry.c */
276 extern const char *_nc_tic_dir(const char *);
277 
278 /* write_entry.c */
279 extern int _nc_tic_written(void);
280 
281 #ifdef __cplusplus
282 }
283 #endif
284 
285 #endif /* __TIC_H */
286