diff options
author | Thomas Voss <mail@thomasvoss.com> | 2024-04-18 00:20:31 +0200 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2024-04-18 00:20:31 +0200 |
commit | 5d2bbdfe3191049bbd4bb237a31f34fdf62f347c (patch) | |
tree | f4a2278fc69729f8cb8da41647dfdeab2ba4a329 /gen | |
parent | 868a47df64f580102a985d6a69c31f680c5f8a90 (diff) |
Add uprop_get_jt()
Diffstat (limited to 'gen')
-rwxr-xr-x | gen/data-files | 1 | ||||
-rwxr-xr-x | gen/prop/jt | 62 |
2 files changed, 63 insertions, 0 deletions
diff --git a/gen/data-files b/gen/data-files index 568cdb5..9222c10 100755 --- a/gen/data-files +++ b/gen/data-files @@ -21,6 +21,7 @@ readonly PATHS=' extracted/DerivedBinaryProperties extracted/DerivedDecompositionType extracted/DerivedEastAsianWidth + extracted/DerivedJoiningType extracted/DerivedLineBreak extracted/DerivedNumericType extracted/DerivedNumericValues diff --git a/gen/prop/jt b/gen/prop/jt new file mode 100755 index 0000000..d8ca9ff --- /dev/null +++ b/gen/prop/jt @@ -0,0 +1,62 @@ +#!/bin/sh + +set -e +cd "${0%/*}/../.." +exec >lib/unicode/prop/uprop_get_jt.c + +gawk ' +BEGIN { + FS = "[ ;]+" + + print "/* This file is autogenerated by gen/prop/jt; DO NOT EDIT. */" + print "" + print "#include \"_bsearch.h\"" + print "#include \"macros.h\"" + print "#include \"rune.h\"" + print "#include \"unicode/prop.h\"" + print "" +} + +/^[A-F0-9]/ { + n = split($1, a, /\.\./) + lo = strtonum("0X" a[1]) + hi = strtonum("0X" a[n]) + + for (i = lo; i <= hi; i++) + props[i] = "JT_" $2 +} + +END { + print "static constexpr enum uprop_jt lookup_lat1[] = {" + for (i = 0; i < 0x100; i++) { + if (i % 8 == 0) + printf "\t" + printf "%s%s", (props[i] ? props[i] : "JT_U") ",", \ + i % 8 == 7 ? "\n" : " " + } + print "};" + print "" + print "static const struct {" + print "\trune lo, hi;" + print "\tenum uprop_jt val;" + print "} lookup[] = {" + + for (i = 0x100; i <= 0x10FFFF; i++) { + if (!props[i]) + continue + for (lo = i; props[lo] == props[i + 1]; i++) + ; + printf "\t{RUNE_C(0x%06X), RUNE_C(0x%06X), %s},\n", lo, i, props[i] + } + + print "};" + print "" + print "_MLIB_DEFINE_BSEARCH(enum uprop_jt, lookup, JT_U)" + print "" + print "enum uprop_jt" + print "uprop_get_jt(rune ch)" + print "{" + print "\treturn ch < lengthof(lookup_lat1) ? lookup_lat1[ch] : mlib_lookup(ch);" + print "}" +} +' data/DerivedJoiningType | sed 's/\s*$//' |