Skip to content

Instantly share code, notes, and snippets.

@zchee
Last active June 9, 2024 18:29
Show Gist options
  • Save zchee/b9c99695463d8902cd33 to your computer and use it in GitHub Desktop.
Save zchee/b9c99695463d8902cd33 to your computer and use it in GitHub Desktop.
cgo convert list

See also, http://libraryofalexandria.io/cgo/

Using Go cgo

cgo has a lot of trap.
but Not "C" pkg also directory in $GOROOT/src. IDE's(vim) Goto command not works.

So, Here collect materials.

cgo compiling file extension

C

.c, .s, .S

C++

.cc, .cpp, .cxx

Header

Any .h, .hh, .hpp, .hxx files will not be compiled separately.
but, if these header files are changed, the C and C++ files will be recompiled.

cgo environment variable

Building Go

CC, CXX, CC_FOR_TARGET, CXX_FOR_TARGET

Compiling .go

CGO_CFLAGS, CGO_CPPFLAGS, CGO_CXXFLAGS, CGO_LDFLAGS

cgo convert C-Go string type

string

// Go string to C string; result must be freed with C.free
func C.CString(string) *C.char

// C string to Go string
func C.GoString(*C.char) string

// C string, length to Go string
func C.GoStringN(*C.char, C.int) string

// C pointer, length to Go []byte
func C.GoBytes(unsafe.Pointer, C.int) []byte

C Types in Go

char

type C.char
type C.schar (signed char)
type C.uchar (unsigned char)

short

type C.short
type C.ushort (unsigned short)

int

type C.int
type C.uint (unsigned int)

long

type C.long
type C.ulong (unsigned long)

longlong

type C.longlong (long long)
type C.ulonglong (unsigned long long)

float

type C.float  

double

type C.double

Directly access struct type

As in C.struct_stat

struct

type C.struct_***

union

type C.union_***

enum

type C.enum_***

void*

See also https://golang.org/pkg/unsafe/

func unsafe.Pointer() *ArbitraryType
@muratsplat
Copy link

good stuf

@aleitner
Copy link

thank you!

@HongkaiWen
Copy link

thank you!!!

@zchee
Copy link
Author

zchee commented Sep 13, 2019

:)

@cuiweixie
Copy link

thank you!

@stevesobol
Copy link

THANK YOU THANK YOU THANK YOU

@Techemist
Copy link

Hi,
Thanks for this. I faced with a problem lately. C.char in some platform is signed by default whereas in some others it is unsigned. so I faced with this error when trying to use C.GoString function:
cannot use _Cfunc_myfunc() (type *_Ctype_uchar) as type _Ctype_char in argument to _Cfunc_GoString
It turned out that myfunc() which return char
translated to uchar instead of char. do you know how to force the cgo to deal with it?

@lochv
Copy link

lochv commented Oct 2, 2020

@zchee it possible to convert *net.Conn to *_Ctype_int: go net.Conn to c SOCKET?

@zchee
Copy link
Author

zchee commented Oct 3, 2020

@lochv I don't know yet. This gist created about 3 years ago(?)
Might be helpful you dive to runtime/cgo

@mhh12121
Copy link

Hi,
Thanks for this. I faced with a problem lately. C.char in some platform is signed by default whereas in some others it is unsigned. so I faced with this error when trying to use C.GoString function:
cannot use _Cfunc_myfunc() (type *_Ctype_uchar) as type __Ctype_char in argument to Cfunc_GoString It turned out that myfunc() which return char translated to uchar instead of char. do you know how to force the cgo to deal with it?

damn, I met the same problem....

@matthew-williamson-sd
Copy link

matthew-williamson-sd commented Feb 23, 2021

Hi,
Thanks for this. I faced with a problem lately. C.char in some platform is signed by default whereas in some others it is unsigned. so I faced with this error when trying to use C.GoString function:
cannot use _Cfunc_myfunc() (type *_Ctype_uchar) as type __Ctype_char in argument to Cfunc_GoString It turned out that myfunc() which return char translated to uchar instead of char. do you know how to force the cgo to deal with it?

damn, I met the same problem....

Not sure if this works for everyone but I've been using C.GoBytes to return the byte array and then convert that in go.

foo := C.GoBytes(unsafe.Pointer(buffer), C.int(size))
bar := string(foo)

@ha7sh17
Copy link

ha7sh17 commented Nov 11, 2021

Thank you for listing

@tjad-oivan
Copy link

bool type

C.bool

@isaquecsilva
Copy link

Thank you!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment