]> ncurses.scripts.mit.edu Git - ncurses.git/blob - ncurses/tinfo/MKcaptab.awk
ncurses 5.6 - patch 20070303
[ncurses.git] / ncurses / tinfo / MKcaptab.awk
1 #!/bin/sh
2 ##############################################################################
3 # Copyright (c) 1998-2000,2006 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 "Software"), #
7 # to deal in the Software without restriction, including without limitation  #
8 # the rights to use, copy, modify, merge, publish, distribute, distribute    #
9 # with modifications, sublicense, and/or sell copies of the Software, and to #
10 # permit persons to whom the Software is furnished to do so, subject to the  #
11 # following conditions:                                                      #
12 #                                                                            #
13 # The above copyright notice and this permission notice shall be included in #
14 # all copies or substantial portions of the Software.                        #
15 #                                                                            #
16 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR #
17 # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,   #
18 # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL    #
19 # THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER      #
20 # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING    #
21 # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER        #
22 # 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 sale, #
26 # use or other dealings in this Software without prior written               #
27 # authorization.                                                             #
28 ##############################################################################
29 # $Id: MKcaptab.awk,v 1.13 2006/04/22 21:46:17 tom Exp $
30 AWK=${1-awk}
31 DATA=${2-../include/Caps}
32
33 cat <<'EOF'
34 /*
35  *      comp_captab.c -- The names of the capabilities indexed via a hash
36  *                       table for the compiler.
37  *
38  */
39
40 #include <ncurses_cfg.h>
41 #include <curses.priv.h>
42 #include <tic.h>
43 #include <term.h>
44
45 EOF
46
47 ./make_hash 1 info <$DATA
48 ./make_hash 3 cap  <$DATA
49
50 cat <<'EOF'
51 const struct alias _nc_capalias_table[] =
52 {
53 EOF
54
55 $AWK <$DATA '
56 $1 == "capalias"        {
57                     if ($3 == "IGNORE")
58                         to = "(char *)NULL";
59                     else
60                         to = "\"" $3 "\"";
61                     printf "\t{\"%s\", %s, \"%s\"},\t /* %s */\n",
62                                 $2, to, $4, $5
63                 }
64 '
65
66 cat <<'EOF'
67         {(char *)NULL, (char *)NULL, (char *)NULL}
68 };
69
70 const struct alias _nc_infoalias_table[] =
71 {
72 EOF
73
74 $AWK <$DATA '
75 $1 == "infoalias"       {
76                     if ($3 == "IGNORE")
77                         to = "(char *)NULL";
78                     else
79                         to = "\"" $3 "\"";
80                     printf "\t{\"%s\", %s, \"%s\"},\t /* %s */\n",
81                                 $2, to, $4, $5
82                 }
83 '
84
85 cat <<'EOF'
86         {(char *)NULL, (char *)NULL, (char *)NULL}
87 };
88
89 NCURSES_EXPORT(const struct name_table_entry *) _nc_get_table (bool termcap)
90 {
91         return termcap ? _nc_cap_table: _nc_info_table ;
92 }
93
94 NCURSES_EXPORT(const struct name_table_entry * const *) _nc_get_hash_table (bool termcap)
95 {
96         return termcap ? _nc_cap_hash_table: _nc_info_hash_table ;
97 }
98 EOF