-
Notifications
You must be signed in to change notification settings - Fork 16
/
radical_collator.go
94 lines (87 loc) · 2.38 KB
/
radical_collator.go
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
82
83
84
85
86
87
88
89
90
91
92
93
94
package main
import (
"fmt"
"unicode"
"unicode/utf8"
"github.com/leo-liu/zhmakeindex/CJK"
)
// 汉字按部首-除部首笔画数排序,汉字按部首分组排在英文字母组后面
type RadicalIndexCollator struct{}
func (_ RadicalIndexCollator) InitGroups(style *OutputStyle) []IndexGroup {
// 分组:符号、数字、字母 A..Z
groups := make([]IndexGroup, 2+26+CJK.MAX_RADICAL)
if style.headings_flag > 0 {
groups[0].name = style.symhead_positive
groups[1].name = style.numhead_positive
for alph, i := 'A', 2; alph <= 'Z'; alph++ {
groups[i].name = string(alph)
i++
}
} else if style.headings_flag < 0 {
groups[0].name = style.symhead_negative
groups[1].name = style.numhead_negative
for alph, i := 'a', 2; alph <= 'z'; alph++ {
groups[i].name = string(alph)
i++
}
}
for r, i := 1, 2+26; r < CJK.MAX_RADICAL+1; r++ {
var radicalName string
if CJK.Radicals[r].Simplified != 0 && style.radical_simplified_flag != 0 {
radicalName = fmt.Sprintf("%c%s%c%s",
CJK.Radicals[r].Origin, style.radical_simplified_prefix, CJK.Radicals[r].Simplified, style.radical_simplified_suffix)
} else {
radicalName = string(CJK.Radicals[r].Origin)
}
groups[i].name = style.radical_prefix + radicalName + style.radical_suffix
i++
}
return groups
}
// 取得分组
func (_ RadicalIndexCollator) Group(entry *IndexEntry) int {
first, _ := utf8.DecodeRuneInString(entry.level[0].key)
first = unicode.ToLower(first)
switch {
case IsNumString(entry.level[0].key):
return 1
case 'a' <= first && first <= 'z':
return 2 + int(first) - 'a'
case CJK.RadicalStrokes[first] != "":
// 首字部首
return 2 + 26 + (CJK.RadicalStrokes[first].Radical() - 1)
default:
// 符号组
return 0
}
}
// 按汉字部首、除部首笔画数序比较两个字符大小
func (_ RadicalIndexCollator) RuneCmp(a, b rune) int {
a_rs, b_rs := CJK.RadicalStrokes[a], CJK.RadicalStrokes[b]
switch {
case a_rs == "" && b_rs == "":
return RuneCmpIgnoreCases(a, b)
case a_rs == "" && b_rs != "":
return -1
case a_rs != "" && b_rs == "":
return 1
case a_rs < b_rs:
return -1
case a_rs > b_rs:
return 1
default:
return int(a - b)
}
}
// 判断是否字母或汉字
func (_ RadicalIndexCollator) IsLetter(r rune) bool {
r = unicode.ToLower(r)
switch {
case 'a' <= r && r <= 'z':
return true
case CJK.RadicalStrokes[r] != "":
return true
default:
return false
}
}