File: enumstr.sh

package info (click to toggle)
universal-ctags 6.2.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 37,612 kB
  • sloc: ansic: 158,498; sh: 8,621; lisp: 7,742; vhdl: 6,518; cpp: 2,583; perl: 2,578; python: 2,324; javascript: 2,054; cs: 1,193; lex: 1,015; sql: 897; makefile: 787; ruby: 764; php: 755; cobol: 741; f90: 566; ada: 559; asm: 509; yacc: 465; fortran: 412; xml: 405; objc: 289; tcl: 280; java: 173; erlang: 65; pascal: 58; ml: 49; awk: 44; haskell: 42
file content (125 lines) | stat: -rwxr-xr-x 3,140 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
#!/bin/sh
#
# enumstr.sh - a tool generating a function mapping enumerator to its
# string representation
#
# Copyright (C) 2019 Masatake YAMATO
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.
#
# Usage:
#
#  ./enumstr.sh <input-file> <enum-name> <funname> [PREFIX_FOR_TRIMMING] [--use-lower-bits-as-is]
#
# Example:
#
#   bash ./misc/enumstr.sh parsers/jscript.c eTokenType tokenTypeName
#
column_width=20

INPUT_FILE=$1
ENUM_NAME=$2
FUNNAME=$3
shift 3

print_usage()
{
	echo Usage:
	echo
	echo "  $0 <input-file> <enum-name> <funname> [PREFIX_FOR_TRIMMING] [OPTIONS]"
	echo "  $0 --help|-h"
	echo
	echo Options:
	echo
	echo "  --use-lower-bits-as-is"
	echo "  --extern"
	echo
	echo Example:
	echo
	echo '  $ bash ./misc/enumstr.sh parsers/jscript.c eTokenType tokenTypeName'
	exit $1
}

if [ -z "$INPUT_FILE" ] || [ -z "$ENUM_NAME" ] || [ -z "$FUNNAME" ] || \
	   [ "$INPUT_FILE" = '-h' ] || [ "$ENUM_NAME" = '-h' ] || [ "$FUNNAME" = '-h' ] || \
	   [ "$INPUT_FILE" = '--help' ] || [ "$ENUM_NAME" = '--help' ] || [ "$FUNNAME" = '--help' ]; then
	print_usage 1 1>&2
fi

USE_LOWER_BITS_AS_IS=
SCOPE='static'

while [ $# -gt 0 ]; do
	case "$1" in
		--help|-h)
			print_usage 0
			;;
		--use-lower-bits-as-is)
			USE_LOWER_BITS_AS_IS=$1
			shift 1
			;;
		--extern)
			SCOPE=extern
			shift 1
			;;
		-*)
			echo "Unknown option: $1" 1>&2
			exit 1
			;;
		*)
			PREFIX_FOR_TRIMMING=$1
			shift 1
			;;
	esac
done

printf '%s const char *'"%s"'(enum '%s' e)\n' "$SCOPE" "$FUNNAME" "$ENUM_NAME"
printf '{ /* Generated by misc/enumstr.sh with cmdline:\n'
echo "     $0 $INPUT_FILE $ENUM_NAME $FUNNAME $PREFIX_FOR_TRIMMING $USE_LOWER_BITS_AS_IS */"
echo '	switch (e)'
echo '	{'
./ctags --quiet --options=NONE --sort=no -o - --languages=C --kinds-C=e --map-C=+.h -x --_xformat="%N enum:%s" $INPUT_FILE | grep $ENUM_NAME | while read N S; do
	n=$N
	if [ -n "$PREFIX_FOR_TRIMMING" ]; then
		n=${N#$PREFIX_FOR_TRIMMING}
	fi
	printf "		case %${column_width}s: return %s;\n" "$N" "\"$n\""
done

if [ -n "$USE_LOWER_BITS_AS_IS" ]; then
	printf '		default: %'"$((${column_width} + 3))s;\n" "break"
else
	printf '		default: %'"$((${column_width} - 3))s return %s;\n" ' ' "\"UNKNOWN\""
fi
echo '	}'
if [ -n "$USE_LOWER_BITS_AS_IS" ]; then
echo '	static char buf[3];'
echo '	if (isprint (e))'
echo '	{'
echo '		buf[0] = e;'
echo "		buf[1] = '\0';"
echo '	}'
echo "	else if (e == '\\n')"
echo '	{'
echo "		buf[0] = '\\\';"
echo "		buf[1] = 'n';"
echo "		buf[2] = '\0';"
echo '	}'
echo '	else'
echo '	{'
echo "		buf[0] = '\0';"
echo '	}'
echo '	return buf;'
fi
echo '}'