blob: 5d0cae1444f065a6b8649adad51ddfe408032dd9 [file] [log] [blame]
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301#!/bin/sh
2##############################################################################
micky3879b9f5e72025-07-08 18:04:53 -04003# Copyright 2019,2020 Thomas E. Dickey #
4# Copyright 1998-2014,2017 Free Software Foundation, Inc. #
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05305# #
6# Permission is hereby granted, free of charge, to any person obtaining a #
7# copy of this software and associated documentation files (the "Software"), #
8# to deal in the Software without restriction, including without limitation #
9# the rights to use, copy, modify, merge, publish, distribute, distribute #
10# with modifications, sublicense, and/or sell copies of the Software, and to #
11# permit persons to whom the Software is furnished to do so, subject to the #
12# following conditions: #
13# #
14# The above copyright notice and this permission notice shall be included in #
15# all copies or substantial portions of the Software. #
16# #
17# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR #
18# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, #
19# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL #
20# THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER #
21# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING #
22# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER #
23# DEALINGS IN THE SOFTWARE. #
24# #
25# Except as contained in this notice, the name(s) of the above copyright #
26# holders shall not be used in advertising or otherwise to promote the sale, #
27# use or other dealings in this Software without prior written #
28# authorization. #
29##############################################################################
micky3879b9f5e72025-07-08 18:04:53 -040030# $Id: MKparametrized.sh,v 1.10 2020/02/02 23:34:34 tom Exp $
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053031#
32# MKparametrized.sh -- generate indirection vectors for various sort methods
33#
34# The output of this script is C source for an array specifying whether
35# termcap strings should undergo parameter and padding translation.
36#
micky3879b9f5e72025-07-08 18:04:53 -040037[ $# = 0 ] && set - Caps
38
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053039cat <<EOF
micky3879b9f5e72025-07-08 18:04:53 -040040#ifndef PARAMETRIZED_H
41#define PARAMETRIZED_H 1
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053042/*
43 * parametrized.h --- is a termcap capability parametrized?
44 *
45 * Note: this file is generated using MKparametrized.sh, do not edit by hand.
46 * A value of -1 in the table means suppress both pad and % translations.
47 * A value of 0 in the table means do pad but not % translations.
48 * A value of 1 in the table means do both pad and % translations.
49 */
50
51static short const parametrized[] = {
52EOF
53
54# We detect whether % translations should be done by looking for #[0-9] in the
55# description field. We presently suppress padding translation only for the
56# XENIX acs_* capabilities. Maybe someday we'll dedicate a flag field for
57# this, that would be cleaner....
58
micky3879b9f5e72025-07-08 18:04:53 -040059cat "$@" | ${AWK-awk} '
60
61/^#/ { next ; }
62/^capalias/ { next ; }
63/^infoalias/ { next ; }
64/^used_by/ { next ; }
65/^userdef/ { next ; }
66
Steve Kondikae271bc2015-11-15 02:50:53 +010067$3 != "str" {next;}
68$1 ~ /^acs_/ {print "-1,\t/* ", $2, " */"; count++; next;}
69$1 ~ /^label_format/ {print "-1,\t/* ", $2, " */"; count++; next;}
70$0 ~ /#[0-9]/ {print "1,\t/* ", $2, " */"; count++; next;}
71 {print "0,\t/* ", $2, " */"; count++;}
72END {printf("} /* %d entries */;\n\n", count);}
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053073'
74
micky3879b9f5e72025-07-08 18:04:53 -040075echo "#endif /* PARAMETRIZED_H */"