duanci6484 2017-11-17 16:01
浏览 719
已采纳

从Go访问const char *类型的C数组

I have a C file with an array of type const char *, lets call it myStringArray[], something like:

const char *myStringArray[] = {
  "NAME_OF_FIRST_THING",
  "NAME_OF_SECOND_THING",
  "NAME_OF_THIRD_THING"}

I need Go to index into that C array, using cgo, and convert an array entry into a Go string. The following code compiles but does not work correctly; you can see from the output that follows, it is indexing along the strings rather than up the array:

myGoString := C.GoString((*C.char) (unsafe.Pointer(uintptr(unsafe.Pointer(C.myStringArray)) + uintptr(index) * unsafe.Sizeof(C.myStringArray))))

...result being this:

NAME_OF_FIRST_THING

FIRST_THING

ING

FYI, the purpose of this is to decode on a server a log file that was created on an embedded platform running C, hence the need to re-use the same logging index files.

I've been stabbing at this randomly for a few hours now without success. Can anyone correct my construction, or provide an alternative?

  • 写回答

1条回答 默认 最新

  • duanjiwei1283 2017-11-17 16:31
    关注

    While you could do the pointer arithmetic yourself, it's safer and more convenient to convert the C array into a Go slice first.

    arraySize := 3
    cStrings := (*[1 << 30]*C.char)(unsafe.Pointer(&C.myStringArray))[:arraySize:arraySize]
    
    for _, cString := range cStrings {
        fmt.Println(C.GoString(cString))
    }
    
    // prints:
    // NAME_OF_FIRST_THING
    // NAME_OF_SECOND_THING
    // NAME_OF_THIRD_THING
    

    Relevant cgo wiki entry: https://github.com/golang/go/wiki/cgo#turning-c-arrays-into-go-slices

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥50 寻找一位有逆向游戏盾sdk 应用程序经验的技术
  • ¥15 请问有用MZmine处理 “Waters SYNAPT G2-Si QTOF质谱仪在MSE模式下采集的非靶向数据” 的分析教程吗
  • ¥50 opencv4nodejs 如何安装
  • ¥15 adb push异常 adb: error: 1409-byte write failed: Invalid argument
  • ¥15 nginx反向代理获取ip,java获取真实ip
  • ¥15 eda:门禁系统设计
  • ¥50 如何使用js去调用vscode-js-debugger的方法去调试网页
  • ¥15 376.1电表主站通信协议下发指令全被否认问题
  • ¥15 物体双站RCS和其组成阵列后的双站RCS关系验证
  • ¥15 复杂网络,变滞后传递熵,FDA