7个版本

0.0.7 2021年8月9日
0.0.6 2021年8月9日
0.0.3 2021年7月18日

#128 in FFI

MIT/Apache

2.5MB
67K SLoC

C 33K SLoC // 0.2% comments • Rust 包仓库 GNU Style Assembly 14K SLoC // 0.2% comments • Rust 包仓库 M4 9K SLoC // 0.2% comments • Rust 包仓库 Shell 8K SLoC // 0.2% comments • Rust 包仓库 Rust 2K SLoC // 0.0% comments • Rust 包仓库 Bitbake 435 SLoC // 0.1% comments • Rust 包仓库 Automake 247 SLoC // 0.1% comments • Rust 包仓库 Python 199 SLoC • Rust 包仓库 Perl 170 SLoC // 0.4% comments • Rust 包仓库 C++ 127 SLoC // 0.1% comments • Rust 包仓库 Visual Studio Project 125 SLoC // 0.0% comments • Rust 包仓库 Visual Studio Solution 32 SLoC • Rust 包仓库

libffi-rs:libffi的Rust绑定

GitHub Workflow Status Crates.io License: MIT License: Apache 2.0

C库libffi提供了两个主要功能:动态调用函数的汇编,以及创建可以像普通C函数一样调用的闭包。在Rust中,后者意味着我们可以将Rust lambda(或任何实现Fn/FnMut的对象)转换为普通C函数指针,我们可以将其作为回调传递给C。

用法

构建libffi将构建lifbffi-sys,这将反过来构建来自github的libffi C库,这要求您首先有一个正常工作的make、C编译器、automake和autoconf。它在crates.io上,因此您可以在Cargo.toml中添加

[dependencies]
libffi = "1.0.1"

此包依赖于libffi-sys,该包默认尝试构建自己的C libffi库版本。为了使用系统中的C libffi,请在您的Cargo.toml中启用此包的system功能

[features]
libffi = { version = "1.0.1", features = ["system"] }

有关如何找到C libffi的更多信息,请参阅libffi-sys文档

此包支持Rust版本1.36及以后版本。

示例

在此示例中,我们将包含自由变量的Rust lambda转换为普通C代码指针。下面fun的类型是extern "C" fn(u64, u64) -> u64

use libffi::high::Closure2;

let x = 5u64;
let f = |y: u64, z: u64| x + y + z;

let closure = Closure2::new(&f);
let fun     = closure.code_ptr();

assert_eq!(18, fun(6, 7));

依赖项