mirror of
https://github.com/torvalds/linux.git
synced 2026-03-08 01:24:47 +01:00
Currently, we generate `HAS_` constants as long as the definition exists in the source, regardless if it is cfg-ed out or not. Currently, uses of `#[cfg]` present in both trait and impl, so it is not a problem; however if only the impl side uses `#[cfg]` then `HAS_` constants will incorrectly be true while it shouldnt't. With `syn` support, we can now implement `#[cfg]` handling properly by propagating the `#[cfg]` attributes to the constants. Signed-off-by: Gary Guo <gary@garyguo.net> Reviewed-by: Benno Lossin <lossin@kernel.org> Link: https://patch.msgid.link/20260113170529.2240744-1-gary@kernel.org Signed-off-by: Miguel Ojeda <ojeda@kernel.org>
61 lines
1.3 KiB
Rust
61 lines
1.3 KiB
Rust
// SPDX-License-Identifier: GPL-2.0
|
|
|
|
use proc_macro2::TokenStream;
|
|
use quote::ToTokens;
|
|
use syn::{
|
|
parse::{
|
|
Parse,
|
|
ParseStream, //
|
|
},
|
|
Attribute,
|
|
Error,
|
|
LitStr,
|
|
Result, //
|
|
};
|
|
|
|
/// A string literal that is required to have ASCII value only.
|
|
pub(crate) struct AsciiLitStr(LitStr);
|
|
|
|
impl Parse for AsciiLitStr {
|
|
fn parse(input: ParseStream<'_>) -> Result<Self> {
|
|
let s: LitStr = input.parse()?;
|
|
if !s.value().is_ascii() {
|
|
return Err(Error::new_spanned(s, "expected ASCII-only string literal"));
|
|
}
|
|
Ok(Self(s))
|
|
}
|
|
}
|
|
|
|
impl ToTokens for AsciiLitStr {
|
|
fn to_tokens(&self, ts: &mut TokenStream) {
|
|
self.0.to_tokens(ts);
|
|
}
|
|
}
|
|
|
|
impl AsciiLitStr {
|
|
pub(crate) fn value(&self) -> String {
|
|
self.0.value()
|
|
}
|
|
}
|
|
|
|
pub(crate) fn file() -> String {
|
|
#[cfg(not(CONFIG_RUSTC_HAS_SPAN_FILE))]
|
|
{
|
|
proc_macro::Span::call_site()
|
|
.source_file()
|
|
.path()
|
|
.to_string_lossy()
|
|
.into_owned()
|
|
}
|
|
|
|
#[cfg(CONFIG_RUSTC_HAS_SPAN_FILE)]
|
|
#[allow(clippy::incompatible_msrv)]
|
|
{
|
|
proc_macro::Span::call_site().file()
|
|
}
|
|
}
|
|
|
|
/// Obtain all `#[cfg]` attributes.
|
|
pub(crate) fn gather_cfg_attrs(attr: &[Attribute]) -> impl Iterator<Item = &Attribute> + '_ {
|
|
attr.iter().filter(|a| a.path().is_ident("cfg"))
|
|
}
|