1# vile:awkmode
2function declare_termtype(number,suffix) {
3	printf "typedef struct termtype%s {	/* in-core form of terminfo data */\n", suffix;
4	print  "    char  *term_names;		/* str_table offset of term names */"
5	print  "    char  *str_table;		/* pointer to string table */"
6	print  "    NCURSES_SBOOL  *Booleans;	/* array of boolean values */"
7	printf "    %-5s *Numbers;		/* array of integer values */\n", number;
8	print  "    char  **Strings;		/* array of string offsets */"
9	print  ""
10	print  "#if NCURSES_XNAMES"
11	print  "    char  *ext_str_table;	/* pointer to extended string table */"
12	print  "    char  **ext_Names;		/* corresponding names */"
13	print  ""
14	print  "    unsigned short num_Booleans;/* count total Booleans */";
15	print  "    unsigned short num_Numbers;	/* count total Numbers */";
16	print  "    unsigned short num_Strings;	/* count total Strings */";
17	print  ""
18	print  "    unsigned short ext_Booleans;/* count extensions to Booleans */";
19	print  "    unsigned short ext_Numbers;	/* count extensions to Numbers */";
20	print  "    unsigned short ext_Strings;	/* count extensions to Strings */";
21	print  "#endif /* NCURSES_XNAMES */"
22	print  ""
23	printf "} TERMTYPE%s;\n", suffix;
24}
25BEGIN {
26	lcurl = "{";
27	rcurl = "}";
28	print  "/****************************************************************************"
29	print  " * Copyright 2018-2019,2020 Thomas E. Dickey                                *"
30	print  " * Copyright 1998-2013,2017 Free Software Foundation, Inc.                  *"
31	print  " *                                                                          *"
32	print  " * Permission is hereby granted, free of charge, to any person obtaining a  *"
33	print  " * copy of this software and associated documentation files (the            *"
34	print  " * \"Software\"), to deal in the Software without restriction, including      *"
35	print  " * without limitation the rights to use, copy, modify, merge, publish,      *"
36	print  " * distribute, distribute with modifications, sublicense, and/or sell       *"
37	print  " * copies of the Software, and to permit persons to whom the Software is    *"
38	print  " * furnished to do so, subject to the following conditions:                 *"
39	print  " *                                                                          *"
40	print  " * The above copyright notice and this permission notice shall be included  *"
41	print  " * in all copies or substantial portions of the Software.                   *"
42	print  " *                                                                          *"
43	print  " * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS  *"
44	print  " * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF               *"
45	print  " * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.   *"
46	print  " * IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,   *"
47	print  " * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR    *"
48	print  " * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR    *"
49	print  " * THE USE OR OTHER DEALINGS IN THE SOFTWARE.                               *"
50	print  " *                                                                          *"
51	print  " * Except as contained in this notice, the name(s) of the above copyright   *"
52	print  " * holders shall not be used in advertising or otherwise to promote the     *"
53	print  " * sale, use or other dealings in this Software without prior written       *"
54	print  " * authorization.                                                           *"
55	print  " ****************************************************************************/"
56	print  ""
57	print  "/****************************************************************************/"
58	print  "/* Author: Zeyd M. Ben-Halim <zmbenhal@netcom.com> 1992,1995                */"
59	print  "/*    and: Eric S. Raymond <esr@snark.thyrsus.com>                          */"
60	print  "/*    and: Thomas E. Dickey                        1995-on                  */"
61	print  "/****************************************************************************/"
62	print  ""
63	print  "/* $Id: MKterm.h.awk.in,v 1.78 2020/10/31 23:14:24 tom Exp $ */"
64	print  ""
65	print  "/*"
66	print  "**	term.h -- Definition of struct term"
67	print  "*/"
68	print  ""
69	print  "#ifndef NCURSES_TERM_H_incl"
70	print  "#define NCURSES_TERM_H_incl 1"
71	print  ""
72	print  "#undef  NCURSES_VERSION"
73	print  "#define NCURSES_VERSION \"@NCURSES_MAJOR@.@NCURSES_MINOR@\""
74	print  ""
75	print  "#include <ncurses_dll.h>"
76	print  ""
77	print  "#ifdef __cplusplus"
78	printf "extern \"C\" %s\n", lcurl;
79	print  "#endif"
80	print  ""
81	print  "/* Make this file self-contained by providing defaults for the HAVE_TERMIO[S]_H"
82	print  " * definition (based on the system for which this was configured)."
83	print  " */"
84	print  ""
85	print  "#ifndef __NCURSES_H"
86	print  ""
87	print  "typedef struct screen  SCREEN;"
88	print  ""
89	print  "#if @NCURSES_SP_FUNCS@"
90	print  "#undef  NCURSES_SP_FUNCS"
91	print  "#define NCURSES_SP_FUNCS @NCURSES_PATCH@"
92	print  "#undef  NCURSES_SP_NAME"
93	print  "#define NCURSES_SP_NAME(name) name##_sp"
94	print  ""
95	print  "/* Define the sp-funcs helper function */"
96	print  "#undef  NCURSES_SP_OUTC"
97	print  "#define NCURSES_SP_OUTC NCURSES_SP_NAME(NCURSES_OUTC)"
98	print  "typedef int (*NCURSES_SP_OUTC)(SCREEN*, int);"
99	print  "#endif"
100	print  ""
101	print  "#endif /* __NCURSES_H */"
102	print  ""
103	print  "#undef  NCURSES_CONST"
104	print  "#define NCURSES_CONST @NCURSES_CONST@"
105	print  ""
106	print  "#undef  NCURSES_SBOOL"
107	print  "#define NCURSES_SBOOL @NCURSES_SBOOL@"
108	print  ""
109	print  "#undef  NCURSES_USE_DATABASE"
110	print  "#define NCURSES_USE_DATABASE @NCURSES_USE_DATABASE@"
111	print  ""
112	print  "#undef  NCURSES_USE_TERMCAP"
113	print  "#define NCURSES_USE_TERMCAP @NCURSES_USE_TERMCAP@"
114	print  ""
115	print  "#undef  NCURSES_XNAMES"
116	print  "#define NCURSES_XNAMES @NCURSES_XNAMES@"
117	print  ""
118	print  "/* We will use these symbols to hide differences between"
119	print  " * termios/termio/sgttyb interfaces."
120	print  " */"
121	print  "#undef  TTY"
122	print  "#undef  SET_TTY"
123	print  "#undef  GET_TTY"
124	print  ""
125	print  "/* Assume POSIX termio if we have the header and function */"
126	print  "/* #if HAVE_TERMIOS_H && HAVE_TCGETATTR */"
127	print  "#if @HAVE_TERMIOS_H@ && @HAVE_TCGETATTR@"
128	print  ""
129	print  "#undef  TERMIOS"
130	print  "#define TERMIOS 1"
131	print  ""
132	print  "#include <termios.h>"
133	print  "#define TTY struct termios"
134	print  ""
135	print  "#else /* !HAVE_TERMIOS_H */"
136	print  ""
137	print  "/* #if HAVE_TERMIO_H */"
138	print  "#if @HAVE_TERMIO_H@"
139	print  ""
140	print  "#undef  TERMIOS"
141	print  "#define TERMIOS 1"
142	print  ""
143	print  "#include <termio.h>"
144	print  "#define TTY struct termio"
145	print  ""
146	print  "#else /* !HAVE_TERMIO_H */"
147	print  ""
148	print  "#if (defined(_WIN32) || defined(_WIN64))"
149	print  "#if @EXP_WIN32_DRIVER@"
150	print  "#include <win32_curses.h>"
151	print  "#define TTY struct winconmode"
152	print  "#else"
153	print  "#include <ncurses_mingw.h>"
154	print  "#define TTY struct termios"
155	print  "#endif"
156	print  "#else"
157	print  "#undef TERMIOS"
158	print  "#include <sgtty.h>"
159	print  "#include <sys/ioctl.h>"
160	print  "#define TTY struct sgttyb"
161	print  "#endif /* MINGW32 */"
162	print  "#endif /* HAVE_TERMIO_H */"
163	print  ""
164	print  "#endif /* HAVE_TERMIOS_H */"
165	print  ""
166	print  "#ifdef TERMIOS"
167	print  "#define GET_TTY(fd, buf) tcgetattr(fd, buf)"
168	print  "#define SET_TTY(fd, buf) tcsetattr(fd, TCSADRAIN, buf)"
169	print  "#elif @EXP_WIN32_DRIVER@ && (defined(_WIN32) || defined(_WIN64))"
170	print  "#define GET_TTY(fd, buf) _nc_console_getmode(_nc_console_fd2handle(fd),buf)"
171	print  "#define SET_TTY(fd, buf) _nc_console_setmode(_nc_console_fd2handle(fd),buf)"
172	print  "#else"
173	print  "#define GET_TTY(fd, buf) gtty(fd, buf)"
174	print  "#define SET_TTY(fd, buf) stty(fd, buf)"
175	print  "#endif"
176	print  ""
177	print  "#ifndef	GCC_NORETURN"
178	print  "#define	GCC_NORETURN /* nothing */"
179	print  "#endif"
180	print  ""
181	print  "#define NAMESIZE 256"
182	print  ""
183	print  "/* The cast works because TERMTYPE is the first data in TERMINAL */"
184	print  "#define CUR ((TERMTYPE *)(cur_term))->"
185	print  ""
186}
187
188$2 == "%%-STOP-HERE-%%" {
189	print  ""
190	printf "#define BOOLWRITE %d\n", BoolCount
191	printf "#define NUMWRITE  %d\n", NumberCount
192	printf "#define STRWRITE  %d\n", StringCount
193	print  ""
194	print  "/* older synonyms for some capabilities */"
195	print  "#define beehive_glitch	no_esc_ctlc"
196	print  "#define teleray_glitch	dest_tabs_magic_smso"
197	print  ""
198	print  "/* HPUX-11 uses this name rather than the standard one */"
199	print  "#ifndef micro_char_size"
200	print  "#define micro_char_size micro_col_size"
201	print  "#endif"
202	print  ""
203	print  "#ifdef __INTERNAL_CAPS_VISIBLE"
204}
205
206/^#/ { next; }
207
208/^used_by/ { next ; }
209/^userdef/ { next ; }
210
211$1 == "acs_chars" {
212	acsindex = StringCount;
213}
214
215$3 == "bool" {
216	printf "#define %-30s CUR Booleans[%d]\n", $1, BoolCount++
217}
218
219$3 == "num" {
220	printf "#define %-30s CUR Numbers[%d]\n", $1, NumberCount++
221}
222
223$3 == "str" {
224	printf "#define %-30s CUR Strings[%d]\n", $1, StringCount++
225}
226
227END {
228	print  "#endif /* __INTERNAL_CAPS_VISIBLE */"
229	print  ""
230	print  ""
231	print  "/*"
232	print  " * Predefined terminfo array sizes"
233	print  " */"
234	printf "#define BOOLCOUNT %d\n", BoolCount
235	printf "#define NUMCOUNT  %d\n", NumberCount
236	printf "#define STRCOUNT  %d\n", StringCount
237	print  ""
238	print  "/* used by code for comparing entries */"
239	print  "#define acs_chars_index	", acsindex
240	print  ""
241	declare_termtype("short","");
242	print  ""
243	print  "/*"
244	print  " * The only reason these structures are visible is for read-only use."
245	print  " * Programs which modify the data are not, never were, portable across"
246	print  " * curses implementations."
247	print  " */"
248	print  "#ifdef NCURSES_INTERNALS"
249	print  ""
250	if (@NCURSES_EXT_COLORS@) {
251	declare_termtype("int","2");
252	} else {
253	print  "typedef TERMTYPE TERMTYPE2;"
254	}
255	print  ""
256	print  "typedef struct term {		/* describe an actual terminal */"
257	print  "    TERMTYPE	type;		/* terminal type description */"
258	print  "    short	Filedes;	/* file description being written to */"
259	print  "    TTY		Ottyb;		/* original state of the terminal */"
260	print  "    TTY		Nttyb;		/* current state of the terminal */"
261	print  "    int		_baudrate;	/* used to compute padding */"
262	print  "    char *	_termname;	/* used for termname() */"
263	if (@NCURSES_EXT_COLORS@) {
264	print  "    TERMTYPE2	type2;		/* extended terminal type description */"
265	}
266	print  "} TERMINAL;"
267	print  "#else"
268	print  "typedef struct term TERMINAL;"
269	print  "#endif /* NCURSES_INTERNALS */"
270	print  ""
271	print  ""
272	print  "#if @BROKEN_LINKER@ && !@cf_cv_enable_reentrant@"
273	print  "extern NCURSES_EXPORT_VAR(TERMINAL *) cur_term;"
274	print  "#elif @cf_cv_enable_reentrant@"
275	print  "NCURSES_WRAPPED_VAR(TERMINAL *, cur_term);"
276	print  "#define cur_term   NCURSES_PUBLIC_VAR(cur_term())"
277	print  "#else"
278	print  "extern NCURSES_EXPORT_VAR(TERMINAL *) cur_term;"
279	print  "#endif"
280	print  ""
281	print  "#if @BROKEN_LINKER@ || @cf_cv_enable_reentrant@"
282	print  "NCURSES_WRAPPED_VAR(NCURSES_CONST char * const *, boolnames);"
283	print  "NCURSES_WRAPPED_VAR(NCURSES_CONST char * const *, boolcodes);"
284	print  "NCURSES_WRAPPED_VAR(NCURSES_CONST char * const *, boolfnames);"
285	print  "NCURSES_WRAPPED_VAR(NCURSES_CONST char * const *, numnames);"
286	print  "NCURSES_WRAPPED_VAR(NCURSES_CONST char * const *, numcodes);"
287	print  "NCURSES_WRAPPED_VAR(NCURSES_CONST char * const *, numfnames);"
288	print  "NCURSES_WRAPPED_VAR(NCURSES_CONST char * const *, strnames);"
289	print  "NCURSES_WRAPPED_VAR(NCURSES_CONST char * const *, strcodes);"
290	print  "NCURSES_WRAPPED_VAR(NCURSES_CONST char * const *, strfnames);"
291	print  ""
292	print  "#define boolnames  NCURSES_PUBLIC_VAR(boolnames())"
293	print  "#define boolcodes  NCURSES_PUBLIC_VAR(boolcodes())"
294	print  "#define boolfnames NCURSES_PUBLIC_VAR(boolfnames())"
295	print  "#define numnames   NCURSES_PUBLIC_VAR(numnames())"
296	print  "#define numcodes   NCURSES_PUBLIC_VAR(numcodes())"
297	print  "#define numfnames  NCURSES_PUBLIC_VAR(numfnames())"
298	print  "#define strnames   NCURSES_PUBLIC_VAR(strnames())"
299	print  "#define strcodes   NCURSES_PUBLIC_VAR(strcodes())"
300	print  "#define strfnames  NCURSES_PUBLIC_VAR(strfnames())"
301	print  ""
302	print  "#else"
303	print  ""
304	print  "extern NCURSES_EXPORT_VAR(NCURSES_CONST char * const ) boolnames[];"
305	print  "extern NCURSES_EXPORT_VAR(NCURSES_CONST char * const ) boolcodes[];"
306	print  "extern NCURSES_EXPORT_VAR(NCURSES_CONST char * const ) boolfnames[];"
307	print  "extern NCURSES_EXPORT_VAR(NCURSES_CONST char * const ) numnames[];"
308	print  "extern NCURSES_EXPORT_VAR(NCURSES_CONST char * const ) numcodes[];"
309	print  "extern NCURSES_EXPORT_VAR(NCURSES_CONST char * const ) numfnames[];"
310	print  "extern NCURSES_EXPORT_VAR(NCURSES_CONST char * const ) strnames[];"
311	print  "extern NCURSES_EXPORT_VAR(NCURSES_CONST char * const ) strcodes[];"
312	print  "extern NCURSES_EXPORT_VAR(NCURSES_CONST char * const ) strfnames[];"
313	print  ""
314	print  "#endif"
315	print  ""
316	print  "/*"
317	print  " * These entrypoints are used only by the ncurses utilities such as tic."
318	print  " */"
319	print  "#ifdef NCURSES_INTERNALS"
320	print  ""
321	print  "extern NCURSES_EXPORT(int) _nc_set_tty_mode (TTY *buf);"
322	print  "extern NCURSES_EXPORT(int) _nc_read_entry2 (const char * const, char * const, TERMTYPE2 *const);"
323	print  "extern NCURSES_EXPORT(int) _nc_read_file_entry (const char *const, TERMTYPE2 *);"
324	print  "extern NCURSES_EXPORT(int) _nc_read_termtype (TERMTYPE2 *, char *, int);"
325	print  "extern NCURSES_EXPORT(char *) _nc_first_name (const char *const);"
326	print  "extern NCURSES_EXPORT(int) _nc_name_match (const char *const, const char *const, const char *const);"
327	print  "extern NCURSES_EXPORT(char *) _nc_tiparm(int, const char *, ...);"
328	print  ""
329	print  "#endif /* NCURSES_INTERNALS */"
330	print  ""
331	print  ""
332	print  "/*"
333	print  " * These entrypoints are used by tack 1.07."
334	print  " */"
335	print  "extern NCURSES_EXPORT(const TERMTYPE *) _nc_fallback (const char *);"
336	print  "extern NCURSES_EXPORT(int) _nc_read_entry (const char * const, char * const, TERMTYPE *const);"
337	print  ""
338	print  "/*"
339	print  " * Normal entry points"
340	print  " */"
341	print  "extern NCURSES_EXPORT(TERMINAL *) set_curterm (TERMINAL *);"
342	print  "extern NCURSES_EXPORT(int) del_curterm (TERMINAL *);"
343	print  ""
344	print  "/* miscellaneous entry points */"
345	print  "extern NCURSES_EXPORT(int) restartterm (NCURSES_CONST char *, int, int *);"
346	print  "extern NCURSES_EXPORT(int) setupterm (const char *,int,int *);"
347	print  ""
348	print  "/* terminfo entry points, also declared in curses.h */"
349	print  "#if !defined(__NCURSES_H)"
350	print  "extern NCURSES_EXPORT(char *) tigetstr (const char *);"
351	print  "extern NCURSES_EXPORT_VAR(char) ttytype[];"
352	print  "extern NCURSES_EXPORT(int) putp (const char *);"
353	print  "extern NCURSES_EXPORT(int) tigetflag (const char *);"
354	print  "extern NCURSES_EXPORT(int) tigetnum (const char *);"
355	print  ""
356	print  "#if @NCURSES_TPARM_VARARGS@ /* NCURSES_TPARM_VARARGS */"
357	print  "extern NCURSES_EXPORT(char *) tparm (const char *, ...);	/* special */"
358	print  "#else"
359	print  "extern NCURSES_EXPORT(char *) tparm (const char *, long,long,long,long,long,long,long,long,long);	/* special */"
360	print  "#endif"
361	print  ""
362	print  "extern NCURSES_EXPORT(char *) tiparm (const char *, ...);		/* special */"
363	print  ""
364	print  "#endif /* __NCURSES_H */"
365	print  ""
366	print  "/* termcap database emulation (XPG4 uses const only for 2nd param of tgetent) */"
367	print  "#if !defined(NCURSES_TERMCAP_H_incl)"
368	print  "extern NCURSES_EXPORT(char *) tgetstr (const char *, char **);"
369	print  "extern NCURSES_EXPORT(char *) tgoto (const char *, int, int);"
370	print  "extern NCURSES_EXPORT(int) tgetent (char *, const char *);"
371	print  "extern NCURSES_EXPORT(int) tgetflag (const char *);"
372	print  "extern NCURSES_EXPORT(int) tgetnum (const char *);"
373	print  "extern NCURSES_EXPORT(int) tputs (const char *, int, int (*)(int));"
374	print  "#endif /* NCURSES_TERMCAP_H_incl */"
375	print  ""
376	print  "/*"
377	print  " * Include curses.h before term.h to enable these extensions."
378	print  " */"
379	print  "#if defined(NCURSES_SP_FUNCS) && (NCURSES_SP_FUNCS != 0)"
380	print  ""
381	print  "extern NCURSES_EXPORT(char *)  NCURSES_SP_NAME(tigetstr) (SCREEN*, const char *);"
382	print  "extern NCURSES_EXPORT(int)     NCURSES_SP_NAME(putp) (SCREEN*, const char *);"
383	print  "extern NCURSES_EXPORT(int)     NCURSES_SP_NAME(tigetflag) (SCREEN*, const char *);"
384	print  "extern NCURSES_EXPORT(int)     NCURSES_SP_NAME(tigetnum) (SCREEN*, const char *);"
385	print  ""
386	print  "#if @NCURSES_TPARM_VARARGS@ /* NCURSES_TPARM_VARARGS */"
387	print  "extern NCURSES_EXPORT(char *)  NCURSES_SP_NAME(tparm) (SCREEN*, const char *, ...);	/* special */"
388	print  "#else"
389	print  "extern NCURSES_EXPORT(char *)  NCURSES_SP_NAME(tparm) (SCREEN*, const char *, long,long,long,long,long,long,long,long,long);	/* special */"
390	print  "#endif"
391	print  ""
392	print  "/* termcap database emulation (XPG4 uses const only for 2nd param of tgetent) */"
393	print  "extern NCURSES_EXPORT(char *)  NCURSES_SP_NAME(tgetstr) (SCREEN*, const char *, char **);"
394	print  "extern NCURSES_EXPORT(char *)  NCURSES_SP_NAME(tgoto) (SCREEN*, const char *, int, int);"
395	print  "extern NCURSES_EXPORT(int)     NCURSES_SP_NAME(tgetent) (SCREEN*, char *, const char *);"
396	print  "extern NCURSES_EXPORT(int)     NCURSES_SP_NAME(tgetflag) (SCREEN*, const char *);"
397	print  "extern NCURSES_EXPORT(int)     NCURSES_SP_NAME(tgetnum) (SCREEN*, const char *);"
398	print  "extern NCURSES_EXPORT(int)     NCURSES_SP_NAME(tputs) (SCREEN*, const char *, int, NCURSES_SP_OUTC);"
399	print  ""
400	print  "extern NCURSES_EXPORT(TERMINAL *) NCURSES_SP_NAME(set_curterm) (SCREEN*, TERMINAL *);"
401	print  "extern NCURSES_EXPORT(int)     NCURSES_SP_NAME(del_curterm) (SCREEN*, TERMINAL *);"
402	print  ""
403	print  "extern NCURSES_EXPORT(int)     NCURSES_SP_NAME(restartterm) (SCREEN*, NCURSES_CONST char *, int, int *);"
404	print  "#endif /* NCURSES_SP_FUNCS */"
405	print  ""
406	print  "/*"
407	print  " * Debugging features."
408	print  " */"
409	print  "extern NCURSES_EXPORT(void)    exit_terminfo(int) GCC_NORETURN;"
410	print  ""
411	print  "#ifdef __cplusplus"
412	printf "%s\n", rcurl;
413	print  "#endif"
414	print  ""
415	print  "#endif /* NCURSES_TERM_H_incl */"
416}
417