1 /****************************************************************************
2 * Copyright (c) 1998-2008,2010 Free Software Foundation, Inc. *
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: *
12 * The above copyright notice and this permission notice shall be included *
13 * in all copies or substantial portions of the Software. *
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. *
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 *
27 ****************************************************************************/
29 /****************************************************************************
30 * Author: Thomas E. Dickey 1997-on *
31 ****************************************************************************/
34 * This replaces an awk script which translated keys.list into keys.tries by
35 * making the output show the indices into the TERMTYPE Strings array. Doing
36 * it that way lets us cut down on the size of the init_keytry() function.
40 #include <build.priv.h>
42 MODULE_ID("$Id: make_keys.c,v 1.19 2010/06/05 22:08:00 tom Exp $")
46 #define UNKNOWN (unsigned) (SIZEOF(strnames) + SIZEOF(strfnames))
49 lookup(const char *name
)
53 for (n
= 0; strnames
[n
] != 0; n
++) {
54 if (!strcmp(name
, strnames
[n
])) {
60 for (n
= 0; strfnames
[n
] != 0; n
++) {
61 if (!strcmp(name
, strfnames
[n
])) {
67 return found
? n
: UNKNOWN
;
71 make_keys(FILE *ifp
, FILE *ofp
)
79 while (fgets(buffer
, sizeof(buffer
), ifp
) != 0) {
83 to
[sizeof(to
) - 1] = '\0';
84 from
[sizeof(from
) - 1] = '\0';
86 scanned
= sscanf(buffer
, "%255s %255s", to
, from
);
88 unsigned code
= lookup(from
);
91 if (strlen(from
) > maxlen
)
92 maxlen
= (unsigned) strlen(from
);
93 fprintf(ofp
, "\t{ %4u, %-*.*s },\t/* %s */\n",
95 (int) maxlen
, (int) maxlen
,
103 write_list(FILE *ofp
, const char **list
)
106 fprintf(ofp
, "%s\n", *list
++);
110 main(int argc
, char *argv
[])
112 static const char *prefix
[] =
114 "#ifndef NCU_KEYS_H",
115 "#define NCU_KEYS_H 1",
117 "/* This file was generated by MAKE_KEYS */",
122 "const struct tinfo_fkeys _nc_tinfo_fkeys[] = {",
125 static const char *suffix
[] =
129 "#endif /* NCU_KEYS_H */",
133 write_list(stdout
, prefix
);
136 for (n
= 1; n
< argc
; n
++) {
137 FILE *fp
= fopen(argv
[n
], "r");
139 make_keys(fp
, stdout
);
144 make_keys(stdin
, stdout
);
146 write_list(stdout
, suffix
);