blob: 9448dbc8893e96288ef20ffea9fff07ff604d056 (
plain) (
blame)
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
|
#!/bin/sh
set -e
cd "${0%/*}/../.."
exec >lib/unicode/prop/uprop_get_suc.c
gawk '
BEGIN {
FS = ";"
print "/* This file is autogenerated by gen/prop/suc; DO NOT EDIT. */"
print ""
print "#include \"_bsearch.h\""
print "#include \"macros.h\""
print "#include \"rune.h\""
print "#include \"unicode/prop.h\""
print ""
}
length($13) > 0 {
map[strtonum("0X" $1)] = strtonum("0X" $13)
}
END {
print "static constexpr rune lookup_lat1[] = {"
for (i = 0; i < 0x100; i++) {
if (i % 8 == 0)
printf "\t"
printf "0x%03X,%s", map[i] ? map[i] : i, i % 8 == 7 ? "\n" : " "
}
print "};"
print ""
print "static const struct {"
print "\trune k, v;"
print "} lookup[] = {"
for (i = 0x100; i <= 0x10FFFF; i++) {
if (!map[i])
continue
printf "\t{RUNE_C(0x%06X), RUNE_C(0x%06X)},\n", i, map[i]
}
print "};"
print ""
print "_MLIB_DEFINE_BSEARCH_KV(rune, lookup, ch)"
print ""
print "rune"
print "uprop_get_suc(rune ch)"
print "{"
print "\treturn ch < lengthof(lookup_lat1) ? lookup_lat1[ch] : mlib_lookup_kv(ch);"
print "}"
}
' data/UnicodeData
|