diff options
author | Thomas Voss <mail@thomasvoss.com> | 2024-04-16 13:48:52 +0200 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2024-04-16 13:48:52 +0200 |
commit | 426f25eeb71aae2e15bcce601a65fd77b71d3e88 (patch) | |
tree | 8d6e62d0b53ab0afe0f16fda8a2fd689e29814d5 /gen | |
parent | b3902aa52b091a895ca377642c9222ca972da703 (diff) |
Add uprop_get_vo()
Diffstat (limited to 'gen')
-rwxr-xr-x | gen/data-files | 1 | ||||
-rwxr-xr-x | gen/prop/vo | 66 |
2 files changed, 67 insertions, 0 deletions
diff --git a/gen/data-files b/gen/data-files index a762333..8fcaf22 100755 --- a/gen/data-files +++ b/gen/data-files @@ -27,6 +27,7 @@ PropList Scripts SpecialCasing UnicodeData +VerticalOrientation ' for path in $PATHS diff --git a/gen/prop/vo b/gen/prop/vo new file mode 100755 index 0000000..b390c67 --- /dev/null +++ b/gen/prop/vo @@ -0,0 +1,66 @@ +#!/bin/sh + +set -e +cd "${0%/*}/../.." +exec >lib/unicode/prop/uprop_get_vo.c + +gawk ' +BEGIN { + FS = "( *#.*| +; +)" + + print "/* This file is autogenerated by gen/prop/vo; DO NOT EDIT. */" + print "" + print "#include \"_bsearch.h\"" + print "#include \"macros.h\"" + print "#include \"rune.h\"" + print "#include \"unicode/prop.h\"" + print "" +} + +/^[^#]/ { + n = split($1, a, /\.\./) + lo = strtonum("0X" a[1]) + hi = strtonum("0X" a[n]) + + for (i = lo; i <= hi; i++) { + gsub(/^; /, "", $2) + props[i] = "VO_" toupper($2) + } +} + +END { + print "static constexpr enum uprop_vo lookup_lat1[] = {" + for (i = 0; i < 0x100; i++) { + if (i % 8 == 0) + printf "\t" + printf "%-5s%s", (props[i] ? props[i] : "VO_R") ",", \ + i % 8 == 7 ? "\n" : " " + } + print "};" + print "" + print "static const struct {" + print "\trune lo, hi;" + print "\tenum uprop_vo val;" + print "} lookup[] = {" + + for (i = 0x100; i <= 0x10FFFF; i++) { + if (!props[i]) + continue + lo = i + while (props[lo] == props[i + 1]) + i++ + if (props[i] != "VO_R") + printf "\t{RUNE_C(0x%06X), RUNE_C(0x%06X), %s},\n", lo, i, props[i] + } + + print "};" + print "" + print "_MLIB_DEFINE_BSEARCH(enum uprop_vo, lookup, VO_R)" + print "" + print "enum uprop_vo" + print "uprop_get_vo(rune ch)" + print "{" + print "\treturn ch < lengthof(lookup_lat1) ? lookup_lat1[ch] : mlib_lookup(ch);" + print "}" +} +' data/VerticalOrientation | sed 's/\s*$//' |