]> ncurses.scripts.mit.edu Git - ncurses.git/blob - ncurses/tinfo/MKfallback.sh
ncurses 6.1 - patch 20190727
[ncurses.git] / ncurses / tinfo / MKfallback.sh
1 #!/bin/sh
2 ##############################################################################
3 # Copyright (c) 1998-2017,2019 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.22 2019/06/30 10:44:15 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 infocmp_path=$1
49 shift
50
51 case $tic_path in #(vi
52 /*)
53         tic_head=`echo "$tic_path" | sed -e 's,/[^/]*$,,'`
54         PATH=$tic_head:$PATH
55         export PATH
56         ;;
57 esac
58
59 if test $# != 0 ; then
60         tmp_info=tmp_info
61         echo creating temporary terminfo directory... >&2
62
63         TERMINFO=`pwd`/$tmp_info
64         export TERMINFO
65
66         TERMINFO_DIRS=$TERMINFO:$terminfo_dir
67         export TERMINFO_DIRS
68
69         $tic_path -x $terminfo_src >&2
70 else
71         tmp_info=
72 fi
73
74 cat <<EOF
75 /* This file was generated by $0 */
76
77 /*
78  * DO NOT EDIT THIS FILE BY HAND!
79  */
80
81 #include <curses.priv.h>
82
83 EOF
84
85 if [ "$*" ]
86 then
87         cat <<EOF
88 #include <tic.h>
89
90 /* fallback entries for: $* */
91 EOF
92         for x in $*
93         do
94                 echo "/* $x */"
95                 $infocmp_path -E $x | sed -e 's/\<short\>/NCURSES_INT2/g'
96         done
97
98         cat <<EOF
99 static const TERMTYPE2 fallbacks[$#] =
100 {
101 EOF
102         comma=""
103         for x in $*
104         do
105                 echo "$comma /* $x */"
106                 $infocmp_path -e $x
107                 comma=","
108         done
109
110         cat <<EOF
111 };
112
113 EOF
114 fi
115
116 cat <<EOF
117 NCURSES_EXPORT(const TERMTYPE2 *)
118 _nc_fallback2 (const char *name GCC_UNUSED)
119 {
120 EOF
121
122 if [ "$*" ]
123 then
124         cat <<EOF
125     const TERMTYPE2     *tp;
126
127     for (tp = fallbacks;
128          tp < fallbacks + sizeof(fallbacks)/sizeof(TERMTYPE2);
129          tp++) {
130         if (_nc_name_match(tp->term_names, name, "|")) {
131             return(tp);
132         }
133     }
134 EOF
135 else
136         echo "  /* the fallback list is empty */";
137 fi
138
139 cat <<EOF
140     return((const TERMTYPE2 *)0);
141 }
142
143 #if NCURSES_EXT_NUMBERS
144 #undef _nc_fallback
145
146 /*
147  * This entrypoint is used by tack.
148  */
149 NCURSES_EXPORT(const TERMTYPE *)
150 _nc_fallback (const char *name)
151 {
152     const TERMTYPE2 *tp = _nc_fallback2(name);
153     const TERMTYPE *result = 0;
154     if (tp != 0) {
155         static TERMTYPE temp;
156         _nc_export_termtype2(&temp, tp);
157         result = &temp;
158     }
159     return result;
160 }
161 #endif
162 EOF
163
164 if test -n "$tmp_info" ; then
165         echo removing temporary terminfo directory... >&2
166         rm -rf $tmp_info
167 fi