]> ncurses.scripts.mit.edu Git - ncurses.git/blob - ncurses/tinfo/MKfallback.sh
ncurses 6.1 - patch 20180923
[ncurses.git] / ncurses / tinfo / MKfallback.sh
1 #!/bin/sh
2 ##############################################################################
3 # Copyright (c) 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 "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: MKfallback.sh,v 1.21 2017/04/12 00:50:50 tom Exp $
30 #
31 # MKfallback.sh -- create fallback table for entry reads
32 #
33 # This script generates source code for a custom version of read_entry.c
34 # that (instead of reading capabilities for an argument terminal type
35 # from an on-disk terminfo tree) tries to match the type with one of a
36 # specified list of types generated in.
37 #
38
39 terminfo_dir=$1
40 shift
41
42 terminfo_src=$1
43 shift
44
45 tic_path=$1
46 shift
47
48 case $tic_path in #(vi
49 /*)
50         tic_head=`echo "$tic_path" | sed -e 's,/[^/]*$,,'`
51         PATH=$tic_head:$PATH
52         export PATH
53         ;;
54 esac
55
56 if test $# != 0 ; then
57         tmp_info=tmp_info
58         echo creating temporary terminfo directory... >&2
59
60         TERMINFO=`pwd`/$tmp_info
61         export TERMINFO
62
63         TERMINFO_DIRS=$TERMINFO:$terminfo_dir
64         export TERMINFO_DIRS
65
66         $tic_path -x $terminfo_src >&2
67 else
68         tmp_info=
69 fi
70
71 cat <<EOF
72 /* This file was generated by $0 */
73
74 /*
75  * DO NOT EDIT THIS FILE BY HAND!
76  */
77
78 #include <curses.priv.h>
79
80 EOF
81
82 if [ "$*" ]
83 then
84         cat <<EOF
85 #include <tic.h>
86
87 /* fallback entries for: $* */
88 EOF
89         for x in $*
90         do
91                 echo "/* $x */"
92                 infocmp -E $x | sed -e 's/\<short\>/NCURSES_INT2/g'
93         done
94
95         cat <<EOF
96 static const TERMTYPE2 fallbacks[$#] =
97 {
98 EOF
99         comma=""
100         for x in $*
101         do
102                 echo "$comma /* $x */"
103                 infocmp -e $x
104                 comma=","
105         done
106
107         cat <<EOF
108 };
109
110 EOF
111 fi
112
113 cat <<EOF
114 NCURSES_EXPORT(const TERMTYPE2 *)
115 _nc_fallback2 (const char *name GCC_UNUSED)
116 {
117 EOF
118
119 if [ "$*" ]
120 then
121         cat <<EOF
122     const TERMTYPE2     *tp;
123
124     for (tp = fallbacks;
125          tp < fallbacks + sizeof(fallbacks)/sizeof(TERMTYPE2);
126          tp++) {
127         if (_nc_name_match(tp->term_names, name, "|")) {
128             return(tp);
129         }
130     }
131 EOF
132 else
133         echo "  /* the fallback list is empty */";
134 fi
135
136 cat <<EOF
137     return((const TERMTYPE2 *)0);
138 }
139
140 #if NCURSES_EXT_NUMBERS
141 #undef _nc_fallback
142
143 /*
144  * This entrypoint is used by tack.
145  */
146 NCURSES_EXPORT(const TERMTYPE *)
147 _nc_fallback (const char *name)
148 {
149     const TERMTYPE2 *tp = _nc_fallback2(name);
150     const TERMTYPE *result = 0;
151     if (tp != 0) {
152         static TERMTYPE temp;
153         _nc_export_termtype2(&temp, tp);
154         result = &temp;
155     }
156     return result;
157 }
158 #endif
159 EOF
160
161 if test -n "$tmp_info" ; then
162         echo removing temporary terminfo directory... >&2
163         rm -rf $tmp_info
164 fi