duanrong0738 2017-11-02 12:08
浏览 212
已采纳

如何使用切片作为参数从Go调用Rust函数?

I want to call some external functions written in Rust from Go with a reference to a slice.

I have the following Rust code:

extern crate libc;

#[no_mangle]
pub extern "C" fn callme(data: &mut [libc::c_double]) -> i32 {
    data.len() as i32
}

This function is made available for the cgo compiler through this C-style header file:

#IFNDEF BOGUSLIB_H
#DEFINE BOGUSLIB_H

extern int callme(double* data);    

#ENDIF

I can now call this function from Go with the Rust crate compiled as a cdylib:

//#cgo CFLAGS: -Ipath/to/libfolder
//#cgo LDFLAGS: -Lpath/to/libfolder -lboguslib
//#include <boguslib.h>
import "C"
import (
   "unsafe"
   . "fmt"  
)

func CallmeExternal() {
   data := make([]float64, 1, 1)
   data[0] = 1.0
   ptr := (*C.double)(unsafe.Pointer(&data[0]))
   size := C.callme(ptr)

   printf("size %v",size)
}

The Go code uses the unsafe pointer trick to access the backing array, since a slice is defined as follows

type Slice struct {
   data *byte
   uint32 len
   uint32 cap
}

When I execute the code above, the length of the passed reference is incredibly large. How do I access the actual data, and what is at this moment being returned?

  • 写回答

1条回答 默认 最新

  • dongqi4085 2017-11-02 12:31
    关注

    According to The Rust FFI Omnibus as provided by @matthieu-m, I have successfully rewritten the code. The function signature must accept the types understood by the target language.

    The Rust function signature changed to:

    #[no_mangle]
    pub extern "C" fn callme(slice: *const libc::c_double, len: libc::size_t) -> libc::c_int {
        let data = slice::from_raw_parts(slice, len as usize);
        data.len() as i32
    }
    

    The declaration in the header file as follows:

    // skip include guards
    #include <stdio.h>
    
    extern int callme(double* slice, size_t len);
    

    And the call from Go has now changed as well

    func CallmeExternal() {
       data := make([]float64, 2, 2)
       data[0] = 1.0
       ptr := (*C.double)(unsafe.Pointer(&data[0]))
       len := C.size_t(len(data))
       size := C.callme(ptr, len)
    
       printf("size %v",size)
    }
    

    This returns 2.

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

报告相同问题?

悬赏问题

  • ¥15 如何让企业微信机器人实现消息汇总整合
  • ¥50 关于#ui#的问题:做yolov8的ui界面出现的问题
  • ¥15 如何用Python爬取各高校教师公开的教育和工作经历
  • ¥15 TLE9879QXA40 电机驱动
  • ¥20 对于工程问题的非线性数学模型进行线性化
  • ¥15 Mirare PLUS 进行密钥认证?(详解)
  • ¥15 物体双站RCS和其组成阵列后的双站RCS关系验证
  • ¥20 想用ollama做一个自己的AI数据库
  • ¥15 关于qualoth编辑及缝合服装领子的问题解决方案探寻
  • ¥15 请问怎么才能复现这样的图呀