Rust与C接口交互

Rust 对于与其他编程语言的互操作性有着出色的支持。这意味着:

  • 从其他语言调用 Rust 函数。
  • 从 Rust 调用用其他语言编写的函数。

调用C接口库

以windows下Dll库为例。

C库准备

先通过VS生成一个Dll库,对应的C头文件:

c 复制代码
#ifdef CEXPORTLIB_EXPORTS
#define DLL_API __declspec(dllexport)
#else
#define DLL_API __declspec(dllimport)
#endif
#ifdef __cplusplus
extern "C" {
#endif
    typedef struct {
        double real;
        double imag;
    }Complex;
    Complex DLL_API add(Complex first, Complex second);
    //Complex DLL_API add(const Complex& first, const Complex& second);
    void DLL_API add_self(Complex& first, const Complex& second);
#ifdef __cplusplus
}
#endif

Rust侧调用

1、build脚本

在Cargo.toml中增加build项:

c 复制代码
[package]
...
build = "build.rs"

在根目录(Cargo.toml同一层)增加build.rs(里面main与main.rs中的main没任何关系)

rust 复制代码
// build.rs
fn main() {
    // println!("cargo::rustc-link-lib=dylib=stdc++"); // This line may be unnecessary for some environment.
    println!("cargo::rustc-link-search=./x64/Debug"); // lib所在目录
}

2、rust中声明C库中的接口与结构

#[repr©]用于向 Rust 编译器指定这个 struct 总是使用和 C 代码相同的规则来组织内部成员的内存布局。

rust 复制代码
// c_handle.rs
#[repr(C)]
#[derive(Debug)]
pub struct Complex {
    pub real: f64,
    pub imag: f64,
}
#[link(name = "c_export_lib", kind = "dylib")]
unsafe extern "C" {
    // 此种方式会转移所有权,调用后first与second都无法再访问
    // pub fn add(first: Complex, second: Complex) -> Complex;
    // 此种方式不会转移所有权
    pub fn add(first: *const Complex, second: *const Complex) -> Complex;
    pub fn add_self(first: *mut Complex, second: *const Complex) -> ();
}

3、rust中调用接口

rust 复制代码
  let a = c_handle::Complex { real: 1.0, imag: 2.0 };
  let b = c_handle::Complex { real: 3.0, imag: 4.0 };
  // let c = unsafe { c_handle::add(a, b) }; // 此种方式后面不能在访问a、b
  let c = unsafe { c_handle::add(&a, &b) };
  println!("{:?} + {:?} = {:?}", a, b, c);  
  let mut d = c_handle::Complex { real: 2.0, imag: 2.0 };
  unsafe {
    c_handle::add_self(&mut d, &b);
  }
  println!("{:?}", d);

导出C兼容接口

生成C兼容的接口库,用于其他语言调用;先生成库工程:cargo new r_export --lib

1、toml配置

修改cargo.toml增加库说明

rust 复制代码
[package]
build = "build.rs"

[lib]
crate-type = ["cdylib"]

[dependencies]

[build-dependencies]
cbindgen = "0.29.0"

2、对外接口

通过pub与extern声明对外兼容接口:

rust 复制代码
#[repr(C)]
pub struct Point {
    pub x: i32,
    pub y: i32,
}
#[unsafe(no_mangle)]
pub extern "C" fn create_point(x: i32, y: i32) -> Point {
    Point { x, y }
}
#[unsafe(no_mangle)]
pub unsafe extern "C" fn free_point(point: *mut Point) {
    unsafe {
        drop(Box::from_raw(point));
    }
}
#[unsafe(no_mangle)]
pub extern "C" fn hello_world()
{
    println!("hello world");
}

3、编写build.rs

在build脚本中设定导出(如头文件等)

rust 复制代码
// build.rs
use std::env;

fn main() {
    let crate_dir = env::var("CARGO_MANIFEST_DIR").unwrap();

    cbindgen::Builder::new()
        .with_crate(crate_dir)
        .generate()
        .expect("Unable to generate bindings")
        .write_to_file("r_export.h");
}

编译成功后,会自动生成C头文件r_export.h,以及dll库。

相关推荐
望酹江月2 小时前
HNU-RFID与传感器原理实验
c语言·单片机
计算机安禾3 小时前
【C语言程序设计】第39篇:预处理器与宏定义
c语言·开发语言·c++·vscode·算法·visual studio code·visual studio
Java水解3 小时前
Rust异步缓存系统的设计与实现
后端·rust
本喵是FW4 小时前
C语言手记3
c语言·开发语言
GISer_Jing4 小时前
阿里开源纯前端浏览器自动化 PageAgent,[特殊字符] 浏览器自动化变天啦?
前端·人工智能·自动化·aigc·交互
HABuo4 小时前
【linux线程(一)】线程概念、线程控制详细剖析
linux·运维·服务器·c语言·c++·ubuntu·centos
C羊驼6 小时前
C语言学习笔记(十一):数据在内存中的存储
c语言·经验分享·笔记·学习
爱学习的程序媛6 小时前
【Web前端】前端用户体验优化全攻略
前端·ui·交互·web·ux·用户体验
承渊政道6 小时前
【优选算法】(实战体验滑动窗口的奇妙之旅)
c语言·c++·笔记·学习·算法·leetcode·visual studio
C羊驼6 小时前
C语言学习笔记(十):操作符
c语言·开发语言·经验分享·笔记·学习