Compare commits

..

1 Commits

Author SHA1 Message Date
Donovan Jimenez
b5a0918160 issue #11: calling setlocale at init for TRANSLIT 2014-02-05 14:33:59 -05:00

View File

@ -4,21 +4,23 @@ package iconv
#cgo darwin LDFLAGS: -liconv #cgo darwin LDFLAGS: -liconv
#cgo freebsd LDFLAGS: -liconv #cgo freebsd LDFLAGS: -liconv
#cgo windows LDFLAGS: -liconv #cgo windows LDFLAGS: -liconv
#cgo LDFLAGS: -liconv
#include <stdlib.h> #include <stdlib.h>
#include <iconv.h> #include <iconv.h>
#include <locale.h>
// As of GO 1.6 passing a pointer to Go pointer, will lead to panic // called by init, seems to be necessary for TRANSLIT to work
// Therofore we use this wrapper function, to avoid passing **char directly from go void initLocale() {
size_t call_iconv(iconv_t ctx, char *in, size_t *size_in, char *out, size_t *size_out){ setlocale(LC_ALL, "");
return iconv(ctx, &in, size_in, &out, size_out);
} }
*/ */
import "C" import "C"
import "syscall" import "syscall"
import "unsafe" import "unsafe"
func init() {
C.initLocale()
}
type Converter struct { type Converter struct {
context C.iconv_t context C.iconv_t
open bool open bool
@ -88,7 +90,7 @@ func (this *Converter) Convert(input []byte, output []byte) (bytesRead int, byte
inputPointer := (*C.char)(unsafe.Pointer(&input[0])) inputPointer := (*C.char)(unsafe.Pointer(&input[0]))
outputPointer := (*C.char)(unsafe.Pointer(&output[0])) outputPointer := (*C.char)(unsafe.Pointer(&output[0]))
_, err = C.call_iconv(this.context, inputPointer, &inputLeft, outputPointer, &outputLeft) _, err = C.iconv(this.context, &inputPointer, &inputLeft, &outputPointer, &outputLeft)
// update byte counters // update byte counters
bytesRead = len(input) - int(inputLeft) bytesRead = len(input) - int(inputLeft)
@ -97,13 +99,13 @@ func (this *Converter) Convert(input []byte, output []byte) (bytesRead int, byte
// inputPointer will be nil, outputPointer is generated as above // inputPointer will be nil, outputPointer is generated as above
outputPointer := (*C.char)(unsafe.Pointer(&output[0])) outputPointer := (*C.char)(unsafe.Pointer(&output[0]))
_, err = C.call_iconv(this.context, nil, &inputLeft, outputPointer, &outputLeft) _, err = C.iconv(this.context, nil, &inputLeft, &outputPointer, &outputLeft)
// update write byte counter // update write byte counter
bytesWritten = len(output) - int(outputLeft) bytesWritten = len(output) - int(outputLeft)
} else { } else {
// both input and output are zero length, do a shift state reset // both input and output are zero length, do a shift state reset
_, err = C.call_iconv(this.context, nil, &inputLeft, nil, &outputLeft) _, err = C.iconv(this.context, nil, &inputLeft, nil, &outputLeft)
} }
} else { } else {
err = syscall.EBADF err = syscall.EBADF