2 # $Id: MKtermsort.sh,v 1.11 2015/07/04 23:59:54 tom Exp $
4 # MKtermsort.sh -- generate indirection vectors for the various sort methods
6 ##############################################################################
7 # Copyright (c) 1998-2008,2015 Free Software Foundation, Inc. #
9 # Permission is hereby granted, free of charge, to any person obtaining a #
10 # copy of this software and associated documentation files (the "Software"), #
11 # to deal in the Software without restriction, including without limitation #
12 # the rights to use, copy, modify, merge, publish, distribute, distribute #
13 # with modifications, sublicense, and/or sell copies of the Software, and to #
14 # permit persons to whom the Software is furnished to do so, subject to the #
15 # following conditions: #
17 # The above copyright notice and this permission notice shall be included in #
18 # all copies or substantial portions of the Software. #
20 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR #
21 # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, #
22 # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL #
23 # THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER #
24 # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING #
25 # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER #
26 # DEALINGS IN THE SOFTWARE. #
28 # Except as contained in this notice, the name(s) of the above copyright #
29 # holders shall not be used in advertising or otherwise to promote the sale, #
30 # use or other dealings in this Software without prior written #
32 ##############################################################################
34 # The output of this script is C source for nine arrays that list three sort
35 # orders for each of the three different classes of terminfo capabilities.
37 # keep the order independent of locale:
38 if test "${LANGUAGE+set}" = set; then LANGUAGE
=C
; export LANGUAGE
; fi
39 if test "${LANG+set}" = set; then LANG
=C
; export LANG
; fi
40 if test "${LC_ALL+set}" = set; then LC_ALL
=C
; export LC_ALL
; fi
41 if test "${LC_MESSAGES+set}" = set; then LC_MESSAGES
=C
; export LC_MESSAGES
; fi
42 if test "${LC_CTYPE+set}" = set; then LC_CTYPE
=C
; export LC_CTYPE
; fi
43 if test "${LC_COLLATE+set}" = set; then LC_COLLATE
=C
; export LC_COLLATE
; fi
46 DATA
=${2-../include/Caps}
49 trap 'rm -f $data' 1 2 5 15
50 sed -e 's/[ ][ ]*/ /g' < $DATA >$data
54 echo " * termsort.c --- sort order arrays for use by infocmp.";
56 echo " * Note: this file is generated using MKtermsort.sh, do not edit by hand.";
59 echo "static const PredIdx bool_terminfo_sort[] = {";
63 $3 == "bool" {printf("%s\t%d\n", $2, i++);}
64 ' |
sort |
$AWK '{print "\t", $2, ",\t/* ", $1, " */";}';
68 echo "static const PredIdx num_terminfo_sort[] = {";
72 $3 == "num" {printf("%s\t%d\n", $2, i++);}
73 ' |
sort |
$AWK '{print "\t", $2, ",\t/* ", $1, " */";}';
77 echo "static const PredIdx str_terminfo_sort[] = {";
81 $3 == "str" {printf("%s\t%d\n", $2, i++);}
82 ' |
sort |
$AWK '{print "\t", $2, ",\t/* ", $1, " */";}';
86 echo "static const PredIdx bool_variable_sort[] = {";
90 $3 == "bool" {printf("%s\t%d\n", $1, i++);}
91 ' |
sort |
$AWK '{print "\t", $2, ",\t/* ", $1, " */";}';
95 echo "static const PredIdx num_variable_sort[] = {";
99 $3 == "num" {printf("%s\t%d\n", $1, i++);}
100 ' |
sort |
$AWK '{print "\t", $2, ",\t/* ", $1, " */";}';
104 echo "static const PredIdx str_variable_sort[] = {";
108 $3 == "str" {printf("%s\t%d\n", $1, i++);}
109 ' |
sort |
$AWK '{print "\t", $2, ",\t/* ", $1, " */";}';
113 echo "static const PredIdx bool_termcap_sort[] = {";
117 $3 == "bool" {printf("%s\t%d\n", $4, i++);}
118 ' |
sort |
$AWK '{print "\t", $2, ",\t/* ", $1, " */";}';
122 echo "static const PredIdx num_termcap_sort[] = {";
126 $3 == "num" {printf("%s\t%d\n", $4, i++);}
127 ' |
sort |
$AWK '{print "\t", $2, ",\t/* ", $1, " */";}';
131 echo "static const PredIdx str_termcap_sort[] = {";
135 $3 == "str" {printf("%s\t%d\n", $4, i++);}
136 ' |
sort |
$AWK '{print "\t", $2, ",\t/* ", $1, " */";}';
140 echo "static const bool bool_from_termcap[] = {";
142 BEGIN { count = 0; valid = 0; }
143 $3 == "bool" && substr($7, 1, 1) == "-" {print "\tFALSE,\t/* ", $2, " */"; count++; }
144 $3 == "bool" && substr($7, 1, 1) == "Y" {print "\tTRUE,\t/* ", $2, " */"; valid = count++; }
145 END { printf "#define OK_bool_from_termcap %d\n", valid; }
150 echo "static const bool num_from_termcap[] = {";
152 BEGIN { count = 0; valid = 0; }
153 $3 == "num" && substr($7, 1, 1) == "-" {print "\tFALSE,\t/* ", $2, " */"; count++; }
154 $3 == "num" && substr($7, 1, 1) == "Y" {print "\tTRUE,\t/* ", $2, " */"; valid = count++; }
155 END { printf "#define OK_num_from_termcap %d\n", valid; }
160 echo "static const bool str_from_termcap[] = {";
162 BEGIN { count = 0; valid = 0; }
163 $3 == "str" && substr($7, 1, 1) == "-" {print "\tFALSE,\t/* ", $2, " */"; count++; }
164 $3 == "str" && substr($7, 1, 1) == "Y" {print "\tTRUE,\t/* ", $2, " */"; valid = count++; }
165 END { printf "#define OK_str_from_termcap %d\n", valid; }