python调用golang 数组,在Golang中访问C数组

I have two files, module.go and test.py. My goal is to speed up some calculations that is done in python, but have an issue accessing array of integers in go.

module.go

package main

import "C"

//export Example

func Example(testArray []C.int) C.int {

return testArray[2]

}

func main() {}

and simple test file in python:

from ctypes import *

# Load compiled go module

lib = cdll.LoadLibrary("./gomodule.so")

# We are passing an array of 256 elements and recieving integer

lib.Example.argtypes = [c_int * 256]

lib.Example.restype = c_int

pyarr = [x for x in range(256)]

# Make C array from py array

arr = (c_int * len(pyarr))(*pyarr)

print lib.Example(arr)

After compiling go module with go build -buildmode=c-shared -o gomodule.so module.go and fire up python file I got:

panic: runtime error: invalid memory address or nil pointer dereference

[signal SIGSEGV: segmentation violation code=0x1 addr=0x12 pc=0x7fb18b6e688c]

goroutine 17 [running, locked to thread]:

main.Example(...)

/home/metro/go/src/github.com/golubaca/carinago/module.go:7

main._cgoexpwrap_53c1c00d0ad3_Example(0xa, 0x7fff33a2eac0, 0x7fff33a2ea70, 0x722a921de6cae100)

_cgo_gotypes.go:47 +0x1c

Aborted (core dumped)

I get that C array is different from Go, but can't find any tutorial how to access it's values without panic.

解决方案

This is the idiomatic, efficient Go solution (avoid reflection).

module.go:

package main

import "C"

import "unsafe"

//export Example

func Example(cArray *C.int, cSize C.int, i C.int) C.int {

gSlice := (*[1 << 30]C.int)(unsafe.Pointer(cArray))[:cSize:cSize]

return gSlice[i]

}

func main() {}

test.py:

from ctypes import *

# Load compiled go module

lib = cdll.LoadLibrary("./gomodule.so")

# We are passing an array of 256 elements and receiving an integer

lib.Example.argtypes = [c_int * 256]

lib.Example.restype = c_int

pyarr = [x for x in range(256)]

# Make C array from py array

arr = (c_int * len(pyarr))(*pyarr)

print lib.Example(arr, len(arr), 4)

Output:

$ go build -buildmode=c-shared -o gomodule.so module.go

$ python test.py

4

$

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值