dqxmf02844 2019-08-18 08:42
浏览 113
已采纳

如何将go指针作为wasm上下文数据传递?

I'm looking at wasmer go-ext-wasm example code /go-ext-wasm/wasmer/test/imports.go learning about setting context data. I want to pass a pointer as contextData, what's the best way to do this?

//export sum
func sum(context unsafe.Pointer, x int32, y int32) int32 {
    instanceContext := wasm.IntoInstanceContext(context)
    t := *(*int)(instanceContext.Data())
    log.Print("t: ", t)
    return x + y
}

func testInstanceImport(t *testing.T) {
    imports, err := wasm.NewImports().Namespace("env").Append("sum", sum, C.sum)
    assert.NoError(t, err)

    instance, err := wasm.NewInstanceWithImports(getImportedFunctionBytes("examples", "imported_function.wasm"), imports)
    defer instance.Close()
    assert.NoError(t, err)

    bar := int(2)
    barPtr := &bar

    data := unsafe.Pointer(&bar)
    instance.SetContextData(data)
    log.Printf("bar %v, barPtr %v", bar, barPtr)
    add1, exists := instance.Exports["add1"]
    assert.Equal(t, true, exists)

    result, err := add1(1, 2)
    log.Print("Result: ", result)
    assert.Equal(t, wasm.I32(4), result)
    assert.NoError(t, err)
}

Which gives me the expected value of 2 for context in the sum function. However when I change data := unsafe.Pointer(&bar) to data := unsafe.Pointer(&barPtr) I get a: runtime error: cgo argument has Go pointer to Go pointer error.

It works when I run it with GODEBUG=cgocheck=0 Should I be concerned running with this flag? Is what I'm trying to do a bad idea? I have a struct that contains a pointer that I need to pass as contextData, is using the GODEBUG=cgocheck=0 a bad idea?

  • 写回答

1条回答 默认 最新

  • doupao5296 2019-08-19 07:40
    关注

    I found the solution here: cgo: Go pointers in Go memory The Registry Example (Alternative) solves my issue. Thanks.

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

报告相同问题?

悬赏问题

  • ¥15 宇视监控服务器无法登录
  • ¥15 PADS Logic 原理图
  • ¥15 PADS Logic 图标
  • ¥15 电脑和power bi环境都是英文如何将日期层次结构转换成英文
  • ¥15 DruidDataSource一直closing
  • ¥20 气象站点数据求取中~
  • ¥15 如何获取APP内弹出的网址链接
  • ¥15 wifi 图标不见了 不知道怎么办 上不了网 变成小地球了
  • ¥50 STM32单片机传感器读取错误
  • ¥50 power BI 从Mysql服务器导入数据,但连接进去后显示表无数据