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 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81
|
#!/usr/bin/awk -f
#
# $Id$
#
# Description: a script to generate east asian width table.
#
BEGIN {
prev = -1
comma = 0
ORS = ""
FS = "[;.|# ]"
print "static const struct {\n\tint begin;\n\tint end;\n} " TABLE_NAME "[] = {\n\t"
}
/^#/ {
}
/^[0-9a-fA-F]+;/ {
if ($2 == "W" || $2 == "F") {
v = strtonum( "0x" $1 )
if (prev < 0) {
first = v
} else if (v - prev > 1) {
if (comma) {
print ",\n\t"
}
printf("{ 0x%04x, 0x%04x }", first, prev)
first = v
comma = 1
}
prev = v
} else {
if (prev >= 0) {
if (comma) {
print ",\n\t"
}
printf("{ 0x%04x, 0x%04x }", first, prev)
prev = -1
comma = 1
}
}
}
/^[0-9a-fA-F]+\.\./ {
if ($4 == "W" || $4 == "F") {
vs = strtonum( "0x" $1 )
ve = strtonum( "0x" $3 )
if (prev < 0) {
first = vs
} else if (vs - prev > 1) {
if (comma) {
print ",\n\t"
}
printf("{ 0x%04x, 0x%04x }", first, prev)
first = vs
comma = 1
}
prev = ve
} else {
if (prev >= 0) {
if (comma) {
print ",\n\t"
}
printf("{ 0x%04x, 0x%04x }", first, prev)
prev = -1
comma = 1
}
}
}
END {
if (prev >= 0) {
if (comma) {
print ",\n\t"
}
printf("{ 0x%04x, 0x%04x }", first, prev)
}
print "\n};\n"
}
|