-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathwcstring.go
62 lines (53 loc) · 1.38 KB
/
wcstring.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
// +build windows
package lexactivator
import "C"
import (
"bytes"
"encoding/binary"
"unicode/utf16"
"unsafe"
)
const (
maxCArrayLength C.uint = 1000000
maxGoArrayLength C.int = 1000000
)
func goToCString(goString string) *C.ushort {
bytes := []rune(goString)
encodedBytes := utf16.Encode(bytes)
// Ensure the slice is null-terminated
encodedBytes = append(encodedBytes, 0)
cString := (*C.ushort)(unsafe.Pointer(&encodedBytes[0]))
return cString
}
func ctoGoString(cString *C.ushort) string {
encodedBytes := C.GoBytes(unsafe.Pointer(cString), maxGoArrayLength)
goString, _ := decodeUtf16(encodedBytes, binary.LittleEndian)
return goString
}
func wideCtoGoString(cString *C.ushort) string {
var encodedRunes []rune
i := 0
for ; ; i++ {
runeVal := rune(*(*uint16)(unsafe.Pointer(uintptr(unsafe.Pointer(cString)) + uintptr(i)*unsafe.Sizeof(*cString))))
if runeVal == 0 {
break
}
encodedRunes = append(encodedRunes, runeVal)
}
goString := string(encodedRunes)
return goString
}
func getCArray() [maxCArrayLength]C.ushort {
var cArray [maxCArrayLength]C.ushort
return cArray
}
func freeCString(cString *C.ushort) {
// do nothing
}
func decodeUtf16(b []byte, order binary.ByteOrder) (string, error) {
ints := make([]uint16, len(b)/2)
if err := binary.Read(bytes.NewReader(b), order, &ints); err != nil {
return "", err
}
return string(utf16.Decode(ints)), nil
}