前提条件
在本教程中,您将使用fuchsia.examples
创建 FIDL 库教程。此 FIDL 库的代码
可在 //examples/fidl/fuchsia.examples 找到。花一分钟时间
请先检查代码,然后再继续。
概览
本教程详细介绍了如何使用 Rust 中的 FIDL 方法是创建一个可用作“Playground”的单元测试用于 Rust 绑定。
本文档介绍了如何完成以下任务:
示例代码位于您的 Fuchsia 结账部分,
//examples/fidl/rust/fidl_crates/
。如果您想编写所有代码
您可以移除示例代码:
rm -r examples/fidl/rust/fidl_crates/*
编写“hello world”节目
将主函数添加到
examples/fidl/rust/fidl_crates/src/main.rs
:fn main() { println!("Hello, world!"); }
定义
rustc_binary
,然后通过$host_toolchain
创建测试依赖项,这将为主机构建二进制文件。 为此,请将以下代码添加到examples/fidl/rust/fidl_crates/BUILD.gn
:import("//build/rust/rustc_binary.gni") rustc_binary("fidl_crates_bin") { edition = "2021" sources = [ "src/main.rs" ] } group("fidl_crates") { testonly = true deps = [ ":fidl_crates_bin($host_toolchain)" ] }
在 build 中添加示例
fx set core.x64 --with //examples/fidl/rust/fidl_crates
构建示例
fx build
运行二进制文件
out/default/host_x64/fidl_crates_bin
您应该会看到输出的 Hello World 消息。
将 Rust FIDL 绑定添加为依赖项
对于每个 FIDL 库声明(包括编译 FIDL 中的声明),
系统会在原始目标下生成包含相应库的 Rust 绑定代码的 FIDL crate
名称后附加 _rust
。
通过引用生成的 crate,添加对 Rust 绑定的依赖项。全新 rustc_binary
目标应如下所示:
rustc_binary("fidl_crates_bin") {
edition = "2021"
deps = [ "//examples/fidl/fuchsia.examples:fuchsia.examples_rust" ]
sources = [ "src/main.rs" ]
}
(可选)如需查看新生成的绑定,请执行以下操作:
- 使用
fx build
重新构建。 - 切换到生成的文件目录:
out/default/fidling/gen/examples/fidl/fuchsia.examples/fuchsia.examples
。生成的代码位于fidl_fuchsia_examples.rs
。 如果您设置了其他构建输出,则可能需要更改out/default
目录。您可以使用cat .fx-build-dir
检查 build 输出目录。
如需详细了解如何查找生成的绑定代码,请参阅 查看生成的绑定代码。
在项目中使用 FIDL Rust crate
添加测试,创建一个可以玩转生成的 FIDL crate 的位置 模块和占位符测试:
#[cfg(test)]
mod test {
#[test]
fn fidl_crates_usage() {
}
}
然后,您需要通过设置 with_unit_tests
实参来使用测试进行构建:
rustc_binary("fidl_crates_bin") {
edition = "2021"
test_deps = [ "//examples/fidl/fuchsia.examples:fuchsia.examples_rust" ]
with_unit_tests = true
sources = [ "src/main.rs" ]
}
这将生成一个 fidl_crates_bin_test
目标,然后应将该目标添加到
添加到构建组:
group("fidl_crates") {
testonly = true
deps = [
":fidl_crates_bin($host_toolchain)",
":fidl_crates_bin_test($host_toolchain)",
]
}
如需导入 crate,请将以下代码添加到 tests
模块的顶部。
在 Fuchsia 树中,为简洁起见,FIDL crate 通常简称为较短的名称:
use fidl_fuchsia_examples as fex;
使用生成的绑定代码
现在,您可以使用生成的绑定代码编写一些代码。有关 如需了解绑定方面的信息,请参阅 Rust 绑定参考文档。
首先,您也可以使用下面的示例代码。您可以在
fidl_crates_usage
测试:
let flags = fex::FileMode::READ | fex::FileMode::WRITE;
println!("{:?}", flags);
let from_raw = fex::LocationType::from_primitive(1).expect("Could not create LocationType");
assert_eq!(from_raw, fex::LocationType::Museum);
assert_eq!(fex::LocationType::Restaurant.into_primitive(), 3);
let red = fex::Color { id: 0u32, name: "red".to_string() };
println!("{:?}", red);
let int_val = fex::JsonValue::IntValue(1);
let str_val = fex::JsonValue::StringValue("1".to_string());
println!("{:?}", int_val);
assert_ne!(int_val, str_val);
let user = fex::User { age: Some(20), ..Default::default() };
println!("{:?}", user);
assert!(user.age.is_some());
如需重新构建并重新运行测试,请运行以下命令:
fx test -vo fidl_crates_bin_test