summaryrefslogtreecommitdiffstats
path: root/fluent-bit/lib/onigmo/tool/convert-jis-props.sh
diff options
context:
space:
mode:
Diffstat (limited to 'fluent-bit/lib/onigmo/tool/convert-jis-props.sh')
-rwxr-xr-xfluent-bit/lib/onigmo/tool/convert-jis-props.sh19
1 files changed, 19 insertions, 0 deletions
diff --git a/fluent-bit/lib/onigmo/tool/convert-jis-props.sh b/fluent-bit/lib/onigmo/tool/convert-jis-props.sh
new file mode 100755
index 000000000..476a5a532
--- /dev/null
+++ b/fluent-bit/lib/onigmo/tool/convert-jis-props.sh
@@ -0,0 +1,19 @@
+#!/bin/sh
+
+# Convert props.kwd to props.h using GNU gperf.
+#
+# Usage:
+# ./tool/convert-jis-props.sh enc/jis/props.kwd enc/jis/props.h
+
+GPERF_VERSION=`gperf -v | head -n1 | sed -e 's/^GNU gperf \([0-9]\+\)\.\([0-9]\+.*\)$/\1 \2/' | xargs printf '%02d%02d'`
+if [ $GPERF_VERSION -ge '0301' ]; then
+ # static const struct enc_property *onig_jis_property(const char *str, unsigned int len);
+ GPERF_REPLACE='s/\(onig_jis_property([^,]\+, \).\+\( len)\)/\1size_t\2/'
+else
+ GPERF_REPLACE='#'
+fi
+
+JIS_PROPS_OPTIONS='-k1,3 -7 -c -j1 -i1 -t -C -P -t --ignore-case -H onig_jis_property_hash -Q onig_jis_property_pool -N onig_jis_property'
+
+gperf $JIS_PROPS_OPTIONS $1 | sed "$GPERF_REPLACE" | \
+ sed 's/(int)(\(long\|size_t\))&((\([a-zA-Z_0-9 ]*[a-zA-Z_0-9]\) *\*)0)->\([a-zA-Z0-9_]*\),/(char)offsetof(\2, \3),/g' > $2