-
Notifications
You must be signed in to change notification settings - Fork 9
/
aspell.go
215 lines (191 loc) · 5.97 KB
/
aspell.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
// Package aspell provides simplified bindings to GNU Aspell spell checking library.
package aspell
/*
#cgo LDFLAGS: -laspell
#cgo openbsd LDFLAGS: -L/usr/local/lib -laspell
#cgo openbsd CFLAGS: -I/usr/local/include
#include <stdlib.h>
#include "aspell.h"
*/
import "C"
import (
"errors"
"unsafe"
)
// Speller is a type that encapsulates Aspell internals.
type Speller struct {
config *C.AspellConfig
speller *C.AspellSpeller
}
// NewSpeller creates a new speller instance with configuration options
// given as a map. At least the language option should be specified
// (see example below).
//
// The returned value is a speller struct. The second returned value
// contains error data in case of error or nil if NewSpeller succeeded.
//
// In the most common case you would like to pass the language option
// which accepts two letter ISO 639 language code and an optional
// two letter ISO 3166 country code after a dash or underscore:
//
// opts := map[string] string {
// "lang": "en_US", // American English
// }
// speller, err := aspell.NewSpeller(opts)
// if err != nil {
// panic("Aspell error: " + err.Error())
// }
// defer speller.Delete()
//
// See available options at http://aspell.net/man-html/The-Options.html
//
// Because aspell package is a binding to Aspell C library, memory
// allocated by NewSpeller() call has to be disposed explicitly.
// This is why the above example contains a deferred call to Delete().
func NewSpeller(options map[string]string) (Speller, error) {
var s Speller
// Pass configuration options
s.config = C.new_aspell_config()
if _, hasEnc := options["encoding"]; !hasEnc {
options["encoding"] = "utf-8"
}
for k, v := range options {
optName := C.CString(k)
optValue := C.CString(v)
res := C.aspell_config_replace(s.config, optName, optValue)
C.free(unsafe.Pointer(optName))
C.free(unsafe.Pointer(optValue))
if res == 0 {
msg := C.aspell_config_error_message(s.config)
err := errors.New(C.GoString(msg))
C.free(unsafe.Pointer(msg))
return s, err
}
}
// Attempt to initialize the speller
var probErr *C.AspellCanHaveError
probErr = C.new_aspell_speller(s.config)
C.delete_aspell_config(s.config)
if C.aspell_error_number(probErr) != 0 {
msg := C.aspell_error_message(probErr)
err := errors.New(C.GoString(msg))
C.free(unsafe.Pointer(msg))
C.delete_aspell_can_have_error(probErr)
return s, err
}
// Successful speller initialization
s.speller = C.to_aspell_speller(probErr)
s.config = C.aspell_speller_config(s.speller)
return s, nil
}
// Config returns current Aspell configuration option value for the speller.
// It returns nil in case of error.
// See available options at http://aspell.net/man-html/The-Options.html
func (s Speller) Config(name string) string {
cName := C.CString(name)
cVal := C.aspell_config_retrieve(s.config, cName)
val := C.GoString(cVal)
C.free(unsafe.Pointer(cName))
C.free(unsafe.Pointer(cVal))
return val
}
// Check looks the word up in the spell checker dictionary
// and returns true if the word is found there or false
// otherwise.
func (s Speller) Check(word string) bool {
cword := C.CString(word)
defer C.free(unsafe.Pointer(cword))
res := C.aspell_speller_check(s.speller, cword, -1)
return res != 0
}
// Delete frees memory allocated by Aspell for the speller.
func (s Speller) Delete() {
// For some reason this breaks everything
// if s.speller != nil {
// C.delete_aspell_speller(s.speller)
// }
// s.config is deleted automatically
}
// wordListToSlice converts Aspell word list into Go slice.
func wordListToSlice(list *C.AspellWordList) []string {
if list == nil {
return nil
}
count := int(C.aspell_word_list_size(list))
result := make([]string, count)
elems := C.aspell_word_list_elements(list)
for i := 0; i < count; i++ {
word := C.aspell_string_enumeration_next(elems)
if word == nil {
break
}
result[i] = C.GoString(word)
}
C.delete_aspell_string_enumeration(elems)
return result
}
// Suggest returns a slice of possible suggestions for the given word.
// Nil is returned on error.
func (s Speller) Suggest(word string) []string {
cword := C.CString(word)
defer C.free(unsafe.Pointer(cword))
suggestions := C.aspell_speller_suggest(s.speller, cword, -1)
return wordListToSlice(suggestions)
}
// Replace saves a replacement pair to the spell checker so that it would
// get higher probability on next Suggest call.
// Returns true on success or false on error.
func (s Speller) Replace(misspelled, correct string) bool {
cmis := C.CString(misspelled)
defer C.free(unsafe.Pointer(cmis))
ccor := C.CString(correct)
defer C.free(unsafe.Pointer(ccor))
ret := C.aspell_speller_store_replacement(s.speller, cmis, -1, ccor, -1)
return ret != -1
}
// MainWordList returns the main word list used by the speller.
func (s Speller) MainWordList() ([]string, error) {
list := C.aspell_speller_main_word_list(s.speller)
if list == nil {
return nil, errors.New("Failed getting the main word list")
}
return wordListToSlice(list), nil
}
// Dict represents Aspell dictionary info.
type Dict struct {
Name string
Code string
Jargon string
Size string
Module string
}
// Dicts returns the list of available aspell dictionaries.
func Dicts() []Dict {
var result []Dict
config := C.new_aspell_config()
dlist := C.get_aspell_dict_info_list(config)
C.delete_aspell_config(config)
dels := C.aspell_dict_info_list_elements(dlist)
for {
entry := C.aspell_dict_info_enumeration_next(dels)
if entry == nil {
break
}
result = append(result, Dict{
Name: C.GoString(entry.name),
Code: C.GoString(entry.code),
Jargon: C.GoString(entry.jargon),
Size: C.GoString(entry.size_str),
Module: C.GoString(entry.module.name),
})
}
C.delete_aspell_dict_info_enumeration(dels)
return result
}
// AddToPersonal adds word to dynamic personal dictionary
func (s Speller) AddToPersonal(word string) int {
cword := C.CString(word)
defer C.free(unsafe.Pointer(cword))
res := C.aspell_speller_add_to_personal(s.speller, cword, -1)
return int(res)
}