forked from liuzl/gocc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
opencc.go
231 lines (218 loc) · 5.16 KB
/
opencc.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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
// Package gocc is a golang port of OpenCC(Open Chinese Convert 開放中文轉換)
package gocc
import (
"encoding/json"
"fmt"
"io/ioutil"
"os"
"path/filepath"
"reflect"
"runtime"
"strings"
"github.com/liuzl/da"
)
var (
configDir = "config"
dictDir = "dictionary"
)
var defaultDir string
func DefaultDir() string {
if defaultDir == `` {
return defaultDir
}
if runtime.GOOS == "windows" {
defaultDir = `C:\gocc\`
return defaultDir
}
if goPath, ok := os.LookupEnv("GOPATH"); ok {
defaultDir = goPath + "/src/github.com/liuzl/gocc/"
} else {
defaultDir = `/usr/local/share/gocc/`
}
return defaultDir
}
// Group holds a sequence of dicts
type Group struct {
Files []string
Dicts []*da.Dict
}
func (g *Group) String() string {
return fmt.Sprintf("%+v", g.Files)
}
// OpenCC contains the converter
type OpenCC struct {
Conversion string
Description string
DictChains []*Group
}
var conversions = map[string]struct{}{
"hk2s": {}, "s2hk": {}, "s2t": {}, "s2tw": {}, "s2twp": {},
"t2hk": {}, "t2s": {}, "t2tw": {}, "tw2s": {}, "tw2sp": {},
}
// New construct an instance of OpenCC.
//
// Supported conversions: s2t, t2s, s2tw, tw2s, s2hk, hk2s, s2twp, tw2sp, t2tw, t2hk
func New(conversion string, option ...Option) (*OpenCC, error) {
if _, has := conversions[conversion]; !has {
return nil, fmt.Errorf("%s not valid", conversion)
}
opts := defaultOptions
for _, o := range option {
o.apply(&opts)
}
cc := &OpenCC{Conversion: conversion}
err := cc.initDict(&opts)
if err != nil {
return nil, err
}
return cc, nil
}
// Convert string from Simplified Chinese to Traditional Chinese or vice versa
func (cc *OpenCC) Convert(in string) (string, error) {
var token string
for _, group := range cc.DictChains {
r := []rune(in)
var tokens []string
for i := 0; i < len(r); {
s := r[i:]
max := 0
for _, dict := range group.Dicts {
ret, err := dict.PrefixMatch(string(s))
if err != nil {
return "", err
}
if len(ret) > 0 {
o := ""
for k, v := range ret {
if len(k) > max {
max = len(k)
token = v[0]
o = k
}
}
i += len([]rune(o))
break
}
}
if max == 0 { //no match
token = string(r[i])
i++
}
tokens = append(tokens, token)
}
in = strings.Join(tokens, "")
}
return in, nil
}
func (cc *OpenCC) join(root, dir, name string) string {
if root == `` {
return filepath.Join(dir, name)
}
return filepath.Clean(filepath.Join(root, dir, name))
}
func (cc *OpenCC) initDict(opts *options) error {
if cc.Conversion == "" {
return fmt.Errorf("conversion is not set")
}
configFile := cc.join(opts.dir, configDir, cc.Conversion+".json")
rc, err := opts.loader.Open(configFile)
if err != nil {
return err
}
body, err := ioutil.ReadAll(rc)
rc.Close()
if err != nil {
return err
}
var m interface{}
err = json.Unmarshal(body, &m)
if err != nil {
return err
}
config := m.(map[string]interface{})
name, has := config["name"]
if !has {
return fmt.Errorf("name not found in %s", configFile)
}
cc.Description = name.(string)
chain, has := config["conversion_chain"]
if !has {
return fmt.Errorf("conversion_chain not found in %s", configFile)
}
if dictChain, ok := chain.([]interface{}); ok {
for _, v := range dictChain {
if d, ok := v.(map[string]interface{}); ok {
if gdict, has := d["dict"]; has {
if dict, is := gdict.(map[string]interface{}); is {
group, err := cc.addDictChain(dict, opts)
if err != nil {
return err
}
cc.DictChains = append(cc.DictChains, group)
}
} else {
return fmt.Errorf("should have dict inside conversion_chain")
}
} else {
return fmt.Errorf("should be map inside conversion_chain")
}
}
} else {
return fmt.Errorf("format %+v not correct in %s",
reflect.TypeOf(dictChain), configFile)
}
return nil
}
func (cc *OpenCC) addDictChain(d map[string]interface{}, opts *options) (*Group, error) {
t, has := d["type"]
if !has {
return nil, fmt.Errorf("type not found in %+v", d)
}
if typ, ok := t.(string); ok {
ret := &Group{}
switch typ {
case "group":
ds, has := d["dicts"]
if !has {
return nil, fmt.Errorf("no dicts field found")
}
dicts, is := ds.([]interface{})
if !is {
return nil, fmt.Errorf("dicts field invalid")
}
for _, dict := range dicts {
if d, is := dict.(map[string]interface{}); is {
group, err := cc.addDictChain(d, opts)
if err != nil {
return nil, err
}
ret.Files = append(ret.Files, group.Files...)
ret.Dicts = append(ret.Dicts, group.Dicts...)
} else {
return nil, fmt.Errorf("dicts items invalid")
}
}
case "txt":
file, has := d["file"]
if !has {
return nil, fmt.Errorf("no file field found")
}
filename := cc.join(opts.dir, dictDir, file.(string))
rc, err := opts.loader.Open(filename)
if err != nil {
return nil, err
}
daDict, err := da.Build(rc)
rc.Close()
if err != nil {
return nil, err
}
ret.Files = append(ret.Files, file.(string))
ret.Dicts = append(ret.Dicts, daDict)
default:
return nil, fmt.Errorf("type should be txt or group")
}
return ret, nil
}
return nil, fmt.Errorf("type should be string")
}