普通网友 2018-09-03 21:41
浏览 846
已采纳

如何通过CGO从C函数中的内部void *返回[] byte?

I am wrapping an C function with the following definition:

int parser_shift(parser* parser, void* buffer, int length);

It removes up to length bytes from internal buffer of unparsed bytes, storing them in the given buffer.

Now I wish to wrap it into a Go function with the following definition:

func (p *Parser) Shift() []byte {
    var buffer []byte
    // TODO:

    return buffer
}

What is the right way of writing to finish the TODO in above with CGO?

I tried the following way, however it crashed with error: Error in "/path/to/my/program': free(): invalid next size (fast): 0x00007f8fe0000aa0:

var buffer []byte
bufStr := C.CString(string(buffer))
defer C.free(unsafe.Pointer(bufStr))
C.parser_shift(p.Cparser, unsafe.Pointer(bufStr), C.int(8192))
buffer = []byte(C.GoString(bufStr))
return buffer
  • 写回答

1条回答 默认 最新

  • duanjing4623 2018-09-04 05:58
    关注

    Assuming that your parser_shift function returns the number of bytes actually stored in the buffer, you can do something like this:

    func (p *Parser) Shift() []byte {
        var buffer [8192]byte
        parsed := int(C.parser_shift(p.Cparser, unsafe.Pointer(&buffer[0]), C.int(len(buffer))))
        return buffer[:parsed]
    }
    

    There is no need to convert to or from string, just pass it the memory that you want it to write to.

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

报告相同问题?

悬赏问题

  • ¥15 PADS Logic 原理图
  • ¥15 PADS Logic 图标
  • ¥15 电脑和power bi环境都是英文如何将日期层次结构转换成英文
  • ¥20 气象站点数据求取中~
  • ¥15 如何获取APP内弹出的网址链接
  • ¥15 wifi 图标不见了 不知道怎么办 上不了网 变成小地球了
  • ¥50 STM32单片机传感器读取错误
  • ¥15 (关键词-阻抗匹配,HFSS,RFID标签天线)
  • ¥15 机器人轨迹规划相关问题
  • ¥15 word样式右侧翻页键消失