aboutsummaryrefslogtreecommitdiff
path: root/gen/prop/hst
blob: 3cb241d651de14d5f913d87c212dd6d26d7fc21e (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
54
55
#!/bin/sh

set -e
cd "${0%/*}/../.."
exec >lib/unicode/prop/uprop_get_hst.c

gawk '
BEGIN {
	FS = "( *#.*| +; +)"

	print "/* This file is autogenerated by gen/prop/hst; DO NOT EDIT. */"
	print ""
	print "#include \"_bsearch.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] = "HST_" toupper($2)
	}
}

END {
	print "static const struct {"
	print "\trune lo, hi;"
	print "\tenum uprop_hst val;"
	print "} lookup[] = {"

	for (i = 0x1100; i <= 0x10FFFF; i++) {
		if (!props[i])
			continue
		lo = i
		while (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_hst, lookup, HST_NA)"
	print ""
	print "enum uprop_hst"
	print "uprop_get_hst(rune ch)"
	print "{"
	print "\treturn ch < lookup[0].lo ? HST_NA : mlib_lookup(ch);"
	print "}"
}
' data/HangulSyllableType | sed 's/\s*$//'