gpt4 book ai didi

rust - 我可以创建自己的条件编译属性吗?

转载 作者:行者123 更新时间:2023-12-03 11:25:55 25 4
gpt4 key购买 nike

在我的 crate 中有几种做某事的方法,一些执行速度快,一些二进制文件小,一些有其他优点,所以我为所有这些方法提供了用户界面。未使用的函数将被编译器优化掉。我 crate 中的内部函数也必须使用这些接口(interface),我希望它们在编译时尊重用户的选择。

target_os这样的条件编译属性,它存储了一个值,比如linux或者windows。我如何创建这样的属性,例如 prefer_method,以便我和用户可以像以下代码片段一样使用它?

我的箱子:

#[cfg(not(any(
not(prefer_method),
prefer_method = "fast",
prefer_method = "small"
)))]
compile_error("invalid `prefer_method` value");

pub fn bla() {
#[cfg(prefer_method = "fast")]
foo_fast();

#[cfg(prefer_method = "small")]
foo_small();

#[cfg(not(prefer_method))]
foo_default();
}

pub fn foo_fast() {
// Fast execution.
}

pub fn foo_small() {
// Small binary file.
}

pub fn foo_default() {
// Medium size, medium fast.
}

用户包:

#[prefer_method = "small"]
extern crate my_crate;

fn f() {
// Uses the `foo_small` function, the other `foo_*` functions will not end up in the binary.
my_crate::bla();

// But the user can also call any function, which of course will also end up in the binary.
my_crate::foo_default();
}

我知道有 --cfg 属性,但 AFAIK 这些仅表示 bool 标志,而不是枚举值,这允许在只有一个枚举值有效时设置多个标志。

最佳答案

首先,--cfg 标志支持使用语法 --cfg 'prefer_method="fast"' 的键值对。这将允许您编写如下代码:

#[cfg(prefer_method = "fast")]
fn foo_fast() { }

您还可以设置这些 cfg 选项 from a build script .例如:

// build.rs
fn main() {
println!("cargo:rustc-cfg=prefer_method=\"method_a\"");
}
// src/main.rs
#[cfg(prefer_method = "method_a")]
fn main() {
println!("It's A");
}

#[cfg(prefer_method = "method_b")]
fn main() {
println!("It's B");
}

#[cfg(not(any(prefer_method = "method_a", prefer_method = "method_b")))]
fn main() {
println!("No preferred method");
}

上面的代码将生成打印“It's A”的可执行文件。

没有像您建议的那样指定 cfg 设置的语法。向您的 crate 用户公开这些选项的最好方法是通过 Cargo features .

例如:

# Library Cargo.toml
# ...
[features]
method_a = []
method_b = []
// build.rs
fn main() {
// prefer method A if both method A and B are selected
if cfg!(feature = "method_a") {
println!("cargo:rustc-cfg=prefer_method=\"method_a\"");
} else if cfg!(feature = "method_b") {
println!("cargo:rustc-cfg=prefer_method=\"method_b\"");
}
}
# User Cargo.toml
# ...
[dependencies.my_crate]
version = "..."
features = ["method_a"]

但是,在这种情况下,我建议直接在您的代码中使用 Cargo 功能(即 #[cfg(feature = "fast")]),而不是添加构建脚本,因为cargo 功能和添加的 rustc-cfg 之间存在一对一的对应关系。

关于rust - 我可以创建自己的条件编译属性吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60287822/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com