1
0
mirror of https://github.com/golang/go synced 2024-11-21 23:24:41 -07:00

unicode: sort tables.go

Makes tables.go output consistent across maketable runs.
(It was already inconsistent across architectures; the new
map iteration order just make it inconsistent across runs.)

R=r
CC=golang-dev
https://golang.org/cl/5303046
This commit is contained in:
Russ Cox 2011-10-19 16:02:22 -04:00
parent c0523e1db9
commit b4d6b71e16
2 changed files with 3573 additions and 3565 deletions

View File

@ -269,22 +269,29 @@ func (char *Char) letterValue(s string, cas string) int {
} }
func allCategories() []string { func allCategories() []string {
a := make([]string, len(category)) a := make([]string, 0, len(category))
i := 0
for k := range category { for k := range category {
a[i] = k a = append(a, k)
i++
} }
sort.Strings(a)
return a return a
} }
func all(scripts map[string][]Script) []string { func all(scripts map[string][]Script) []string {
a := make([]string, len(scripts)) a := make([]string, 0, len(scripts))
i := 0
for k := range scripts { for k := range scripts {
a[i] = k a = append(a, k)
i++
} }
sort.Strings(a)
return a
}
func allCatFold(m map[string]map[int]bool) []string {
a := make([]string, 0, len(m))
for k := range m {
a = append(a, k)
}
sort.Strings(a)
return a return a
} }
@ -411,7 +418,7 @@ func printCategories() {
if *tablelist == "all" { if *tablelist == "all" {
fmt.Println("// Categories is the set of Unicode data tables.") fmt.Println("// Categories is the set of Unicode data tables.")
fmt.Println("var Categories = map[string] *RangeTable {") fmt.Println("var Categories = map[string] *RangeTable {")
for k := range category { for _, k := range allCategories() {
fmt.Printf("\t%q: %s,\n", k, k) fmt.Printf("\t%q: %s,\n", k, k)
} }
fmt.Print("}\n\n") fmt.Print("}\n\n")
@ -724,7 +731,7 @@ func printScriptOrProperty(doProps bool) {
fmt.Println("// Scripts is the set of Unicode script tables.") fmt.Println("// Scripts is the set of Unicode script tables.")
fmt.Println("var Scripts = map[string] *RangeTable{") fmt.Println("var Scripts = map[string] *RangeTable{")
} }
for k := range table { for _, k := range all(table) {
fmt.Printf("\t%q: %s,\n", k, k) fmt.Printf("\t%q: %s,\n", k, k)
} }
fmt.Print("}\n\n") fmt.Print("}\n\n")
@ -1247,11 +1254,12 @@ func printCatFold(name string, m map[string]map[int]bool) {
fmt.Print(comment[name]) fmt.Print(comment[name])
fmt.Printf("var %s = map[string]*RangeTable{\n", name) fmt.Printf("var %s = map[string]*RangeTable{\n", name)
for name := range m { for _, name := range allCatFold(m) {
fmt.Printf("\t%q: fold%s,\n", name, name) fmt.Printf("\t%q: fold%s,\n", name, name)
} }
fmt.Printf("}\n\n") fmt.Printf("}\n\n")
for name, class := range m { for _, name := range allCatFold(m) {
class := m[name]
dumpRange( dumpRange(
fmt.Sprintf("var fold%s = &RangeTable{\n", name), fmt.Sprintf("var fold%s = &RangeTable{\n", name),
func(code int) bool { return class[code] }) func(code int) bool { return class[code] })

File diff suppressed because it is too large Load Diff