Commit 8b6274eb authored by Rob Pike's avatar Rob Pike

add scripts tables to the unicode package

R=rsc
DELTA=1479  (1422 added, 1 deleted, 56 changed)
OCL=33993
CL=33997
parent 4ed666e2
......@@ -16,24 +16,30 @@ import (
"os";
"strconv";
"strings";
"regexp";
"unicode";
)
var dataUrl = flag.String("data", "", "full URL for UnicodeData.txt; defaults to --url/UnicodeData.txt");
var url = flag.String("url",
"http://www.unicode.org/Public/5.1.0/ucd/UnicodeData.txt",
"URL of Unicode database")
var tables = flag.String("tables",
"http://www.unicode.org/Public/5.1.0/ucd/",
"URL of Unicode database directory")
var tablelist = flag.String("tables",
"all",
"comma-separated list of which tables to generate; default is all; can be letter");
"comma-separated list of which tables to generate; can be letter");
var scriptlist = flag.String("scripts",
"all",
"comma-separated list of which script tables to generate");
var test = flag.Bool("test",
false,
"test existing tables; can be used to compare web data with package data");
var scriptRe *regexp.Regexp
var die = log.New(os.Stderr, nil, "", log.Lexit|log.Lshortfile);
var category = map[string] bool{ "letter":true } // Nd Lu etc. letter is a special case
// Data has form:
// UnicodeData.txt has form:
// 0037;DIGIT SEVEN;Nd;0;EN;;7;7;7;N;;;;;
// 007A;LATIN SMALL LETTER Z;Ll;0;L;;;;;N;;;005A;;005A
// See http://www.unicode.org/Public/5.1.0/ucd/UCD.html for full explanation
......@@ -87,11 +93,28 @@ type Char struct {
titleCase uint32;
}
// Scripts.txt has form:
// A673 ; Cyrillic # Po SLAVONIC ASTERISK
// A67C..A67D ; Cyrillic # Mn [2] COMBINING CYRILLIC KAVYKA..COMBINING CYRILLIC PAYEROK
// See http://www.unicode.org/Public/5.1.0/ucd/UCD.html for full explanation
type Script struct {
lo, hi uint32; // range of code points
script string;
}
func main() {
flag.Parse();
printCategories();
printScripts();
}
var chars = make([]Char, MaxChar)
var scripts = make(map[string] []Script)
var lastChar uint32 = 0;
func parse(line string) {
func parseCategory(line string) {
field := strings.Split(line, ";", -1);
if len(field) != NumField {
die.Logf("%5s: %d fields (expected %d)\n", line, len(field), NumField);
......@@ -169,6 +192,16 @@ func allCategories() []string {
return a;
}
func allScripts() []string {
a := make([]string, len(scripts));
i := 0;
for k := range scripts {
a[i] = k;
i++;
}
return a;
}
// Extract the version number from the URL
func version() string {
// Break on slashes and look for the first numeric field
......@@ -190,35 +223,39 @@ func letterOp(code int) bool {
return false
}
func main() {
flag.Parse();
resp, _, err := http.Get(*url);
func printCategories() {
if *tablelist == "" {
return
}
if *dataUrl == "" {
flag.Set("data", *url + "UnicodeData.txt");
}
resp, _, err := http.Get(*dataUrl);
if err != nil {
die.Log(err);
}
if resp.StatusCode != 200 {
die.Log("bad GET status", resp.StatusCode);
die.Log("bad GET status for UnicodeData.txt", resp.StatusCode);
}
input := bufio.NewReader(resp.Body);
for {
line, err := input.ReadString('\n', false);
line, err := input.ReadString('\n');
if err != nil {
if err == os.EOF {
break;
}
die.Log(err);
}
parse(line);
parseCategory(line[0:len(line)-1]);
}
resp.Body.Close();
// Find out which categories to dump
list := strings.Split(*tables, ",", 0);
if *tables == "all" {
list = allCategories();
list := strings.Split(*tablelist, ",", 0);
if *tablelist == "all" {
list = allCategories()
}
if *test {
fullTest(list);
fullCategoryTest(list);
return
}
fmt.Printf(
......@@ -226,16 +263,16 @@ func main() {
"// maketables --tables=%s --url=%s\n"
"// DO NOT EDIT\n\n"
"package unicode\n\n",
*tables,
*tablelist,
*url
);
fmt.Println("// Version is the Unicode edition from which the tables are derived.");
fmt.Printf("const Version = %q\n\n", version());
if *tables == "all" {
fmt.Println("// Tables is the set of Unicode data tables.");
fmt.Println("var Tables = map[string] []Range {");
if *tablelist == "all" {
fmt.Println("// Categories is the set of Unicode data tables.");
fmt.Println("var Categories = map[string] []Range {");
for k, _ := range category {
fmt.Printf("\t%q: %s,\n", k, k);
}
......@@ -284,7 +321,7 @@ func main() {
}
dumpRange(
fmt.Sprintf(
"// %s is the set of Unicode characters in category %s\n"
"// %s is the set of Unicode characters in category %s.\n"
"var %s = _%s\n"
"var _%s = []Range {\n",
name, name, name, name, name
......@@ -296,10 +333,10 @@ func main() {
}
type Op func(code int) bool
const format = "\tRange{0x%04x, 0x%04x, %d},\n";
func dumpRange(header string, inCategory Op, trailer string) {
fmt.Print(header);
const format = "\tRange{0x%04x, 0x%04x, %d},\n";
next := 0;
// one Range for each iteration
for {
......@@ -348,12 +385,12 @@ func dumpRange(header string, inCategory Op, trailer string) {
fmt.Print(trailer);
}
func fullTest(list []string) {
func fullCategoryTest(list []string) {
for _, name := range list {
if _, ok := category[name]; !ok {
die.Log("unknown category", name);
}
r, ok := unicode.Tables[name];
r, ok := unicode.Categories[name];
if !ok {
die.Log("unknown table", name);
}
......@@ -378,3 +415,147 @@ func verifyRange(name string, inCategory Op, table []unicode.Range) {
}
}
}
func parseScript(line string) {
comment := strings.Index(line, "#");
if comment >= 0 {
line = line[0:comment]
}
line = strings.TrimSpaceASCII(line);
if len(line) == 0 {
return
}
field := strings.Split(line, ";", -1);
if len(field) != 2 {
die.Logf("%s: %d fields (expected 2)\n", line, len(field));
}
matches := scriptRe.MatchStrings(line);
if len(matches) != 4 {
die.Logf("%s: %d matches (expected 3)\n", line, len(matches));
}
lo, err := strconv.Btoui64(matches[1], 16);
if err != nil {
die.Log("%.5s...:", err)
}
hi := lo;
if len(matches[2]) > 2 { // ignore leading ..
hi, err = strconv.Btoui64(matches[2][2:len(matches[2])], 16);
if err != nil {
die.Log("%.5s...:", err)
}
}
name := matches[3];
s, ok := scripts[name];
if len(s) == cap(s) {
ns := make([]Script, len(s), len(s)+100);
for i, sc := range s {
ns[i] = sc
}
s = ns;
}
s = s[0:len(s)+1];
s[len(s)-1] = Script{ uint32(lo), uint32(hi), name };
scripts[name] = s;
}
func printScripts() {
var err os.Error;
scriptRe, err = regexp.Compile(`([0-9A-F]+)(\.\.[0-9A-F]+)? +; ([A-Za-z_]+)`);
if err != nil {
die.Log("re error:", err)
}
resp, _, err := http.Get(*url + "Scripts.txt");
if err != nil {
die.Log(err);
}
if resp.StatusCode != 200 {
die.Log("bad GET status for Scripts.txt", resp.Status);
}
input := bufio.NewReader(resp.Body);
for {
line, err := input.ReadString('\n');
if err != nil {
if err == os.EOF {
break;
}
die.Log(err);
}
parseScript(line[0:len(line)-1]);
}
resp.Body.Close();
// Find out which scripts to dump
list := strings.Split(*scriptlist, ",", 0);
if *scriptlist == "all" {
list = allScripts();
}
if *test {
fullScriptTest(list);
return;
}
fmt.Printf(
"// Generated by running\n"
"// maketables --scripts=%s --url=%s\n"
"// DO NOT EDIT\n\n",
*scriptlist,
*url
);
if *scriptlist == "all" {
fmt.Println("// Scripts is the set of Unicode script tables.");
fmt.Println("var Scripts = map[string] []Range {");
for k, _ := range scripts {
fmt.Printf("\t%q: %s,\n", k, k);
}
fmt.Printf("}\n\n");
}
for _, name := range list {
fmt.Printf(
"// %s is the set of Unicode characters in script %s.\n"
"var %s = _%s\n"
"var _%s = []Range {\n",
name, name, name, name, name
);
ranges := foldAdjacent(scripts[name]);
for _, s := range ranges {
fmt.Printf(format, s.Lo, s.Hi, s.Stride);
}
fmt.Printf("}\n\n");
}
}
// The script tables have a lot of adjacent elements. Fold them together.
func foldAdjacent(r []Script) []unicode.Range {
s := make([]unicode.Range, 0, len(r));
j := 0;
for i := 0; i < len(r); i++ {
if j>0 && int(r[i].lo) == s[j-1].Hi+1 {
s[j-1].Hi = int(r[i].hi);
} else {
s = s[0:j+1];
s[j] = unicode.Range{int(r[i].lo), int(r[i].hi), 1};
j++;
}
}
return s;
}
func fullScriptTest(list []string) {
for _, name := range list {
if _, ok := scripts[name]; !ok {
die.Log("unknown script", name);
}
r, ok := unicode.Scripts[name];
if !ok {
die.Log("unknown table", name);
}
for _, script := range scripts[name] {
for r := script.lo; r <= script.hi; r++ {
if !unicode.Is(unicode.Scripts[name], int(r)) {
fmt.Fprintf(os.Stderr, "U+%04X: not in script %s\n", r, name);
}
}
}
}
}
// Copyright 2009 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package unicode
import "testing"
type T struct {
rune int;
script string;
}
// Hand-chosen tests from Unicode 5.1.0, mostly to discover when new
// scripts and categories arise.
var inTest = []T {
T{0x06e2, "Arabic"},
T{0x0567, "Armenian"},
T{0x1b37, "Balinese"},
T{0x09c2, "Bengali"},
T{0x3115, "Bopomofo"},
T{0x282d, "Braille"},
T{0x1a1a, "Buginese"},
T{0x1747, "Buhid"},
T{0x156d, "Canadian_Aboriginal"},
T{0x102a9, "Carian"},
T{0xaa4d, "Cham"},
T{0x13c2, "Cherokee"},
T{0x0020, "Common"},
T{0x1d4a5, "Common"},
T{0x2cfc, "Coptic"},
T{0x12420, "Cuneiform"},
T{0x1080c, "Cypriot"},
T{0xa663, "Cyrillic"},
T{0x10430, "Deseret"},
T{0x094a, "Devanagari"},
T{0x1271, "Ethiopic"},
T{0x10fc, "Georgian"},
T{0x2c40, "Glagolitic"},
T{0x10347, "Gothic"},
T{0x03ae, "Greek"},
T{0x0abf, "Gujarati"},
T{0x0a24, "Gurmukhi"},
T{0x3028, "Han"},
T{0x11b8, "Hangul"},
T{0x1727, "Hanunoo"},
T{0x05a0, "Hebrew"},
T{0x3058, "Hiragana"},
T{0x20e6, "Inherited"},
T{0x0cbd, "Kannada"},
T{0x30a6, "Katakana"},
T{0xa928, "Kayah_Li"},
T{0x10a11, "Kharoshthi"},
T{0x17c6, "Khmer"},
T{0x0eaa, "Lao"},
T{0x1d79, "Latin"},
T{0x1c10, "Lepcha"},
T{0x1930, "Limbu"},
T{0x1003c, "Linear_B"},
T{0x10290, "Lycian"},
T{0x10930, "Lydian"},
T{0x0d42, "Malayalam"},
T{0x1822, "Mongolian"},
T{0x104c, "Myanmar"},
T{0x19c3, "New_Tai_Lue"},
T{0x07f8, "Nko"},
T{0x169b, "Ogham"},
T{0x1c6a, "Ol_Chiki"},
T{0x10310, "Old_Italic"},
T{0x103c9, "Old_Persian"},
T{0x0b3e, "Oriya"},
T{0x10491, "Osmanya"},
T{0xa860, "Phags_Pa"},
T{0x10918, "Phoenician"},
T{0xa949, "Rejang"},
T{0x16c0, "Runic"},
T{0xa892, "Saurashtra"},
T{0x10463, "Shavian"},
T{0x0dbd, "Sinhala"},
T{0x1ba3, "Sundanese"},
T{0xa803, "Syloti_Nagri"},
T{0x070f, "Syriac"},
T{0x170f, "Tagalog"},
T{0x176f, "Tagbanwa"},
T{0x1972, "Tai_Le"},
T{0x0bbf, "Tamil"},
T{0x0c55, "Telugu"},
T{0x07a7, "Thaana"},
T{0x0e46, "Thai"},
T{0x0f36, "Tibetan"},
T{0x2d55, "Tifinagh"},
T{0x10388, "Ugaritic"},
T{0xa60e, "Vai"},
T{0xa216, "Yi"},
}
var outTest = []T { // not really worth being thorough
T{0x20, "Telugu"}
}
var inCategoryTest = []T {
T{0x0081, "Cc"},
T{0x17b4, "Cf"},
T{0xf0000, "Co"},
T{0xdb80, "Cs"},
T{0x0236, "Ll"},
T{0x1d9d, "Lm"},
T{0x07cf, "Lo"},
T{0x1f8a, "Lt"},
T{0x03ff, "Lu"},
T{0x0bc1, "Mc"},
T{0x20df, "Me"},
T{0x07f0, "Mn"},
T{0x1bb2, "Nd"},
T{0x10147, "Nl"},
T{0x2478, "No"},
T{0xfe33, "Pc"},
T{0x2011, "Pd"},
T{0x301e, "Pe"},
T{0x2e03, "Pf"},
T{0x2e02, "Pi"},
T{0x0022, "Po"},
T{0x2770, "Ps"},
T{0x00a4, "Sc"},
T{0xa711, "Sk"},
T{0x25f9, "Sm"},
T{0x2108, "So"},
T{0x2028, "Zl"},
T{0x2029, "Zp"},
T{0x202f, "Zs"},
T{0x04aa, "letter"},
}
func TestScripts(t *testing.T) {
for i, test := range inTest {
if !Is(Scripts[test.script], test.rune) {
t.Errorf("IsScript(%#x, %s) = false, want true\n", test.rune, test.script);
}
}
for i, test := range outTest {
if Is(Scripts[test.script], test.rune) {
t.Errorf("IsScript(%#x, %s) = true, want false\n", test.rune, test.script);
}
}
tested := make(map[string] bool);
for k := range Scripts {
tested[k] = true
}
for _, test := range inTest {
tested[test.script] = false, false
}
for k := range tested {
t.Error("not tested:", k)
}
}
func TestCategories(t *testing.T) {
for i, test := range inCategoryTest {
if !Is(Categories[test.script], test.rune) {
t.Errorf("IsCategory(%#x, %s) = false, want true\n", test.rune, test.script);
}
}
tested := make(map[string] bool);
for k := range Categories {
tested[k] = true
}
for _, test := range inCategoryTest {
tested[test.script] = false, false
}
for k := range tested {
t.Error("not tested:", k)
}
}
This diff is collapsed.
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment