|
|
use std::sync::OnceLock; |
|
|
|
|
|
use proc_macro::TokenStream; |
|
|
use proc_macro2::{Ident, Span}; |
|
|
use quote::{ToTokens, quote, quote_spanned}; |
|
|
use regex::Regex; |
|
|
use syn::{ |
|
|
Error, Expr, ExprLit, Fields, FieldsUnnamed, Generics, Item, ItemEnum, ItemStruct, Lit, LitStr, |
|
|
Meta, MetaNameValue, Result, Token, |
|
|
parse::{Parse, ParseStream}, |
|
|
parse_macro_input, parse_quote, |
|
|
spanned::Spanned, |
|
|
}; |
|
|
use turbo_tasks_macros_shared::{ |
|
|
get_register_value_type_ident, get_value_type_ident, get_value_type_init_ident, |
|
|
}; |
|
|
|
|
|
enum IntoMode { |
|
|
None, |
|
|
New, |
|
|
Shared, |
|
|
} |
|
|
|
|
|
impl Parse for IntoMode { |
|
|
fn parse(input: ParseStream) -> Result<Self> { |
|
|
let ident = input.parse::<LitStr>()?; |
|
|
Self::try_from(ident) |
|
|
} |
|
|
} |
|
|
|
|
|
impl TryFrom<LitStr> for IntoMode { |
|
|
type Error = Error; |
|
|
|
|
|
fn try_from(lit: LitStr) -> std::result::Result<Self, Self::Error> { |
|
|
match lit.value().as_str() { |
|
|
"none" => Ok(IntoMode::None), |
|
|
"new" => Ok(IntoMode::New), |
|
|
"shared" => Ok(IntoMode::Shared), |
|
|
_ => Err(Error::new_spanned( |
|
|
&lit, |
|
|
"expected \"none\", \"new\" or \"shared\"", |
|
|
)), |
|
|
} |
|
|
} |
|
|
} |
|
|
|
|
|
enum CellMode { |
|
|
New, |
|
|
Shared, |
|
|
} |
|
|
|
|
|
impl Parse for CellMode { |
|
|
fn parse(input: ParseStream) -> Result<Self> { |
|
|
let ident = input.parse::<LitStr>()?; |
|
|
Self::try_from(ident) |
|
|
} |
|
|
} |
|
|
|
|
|
impl TryFrom<LitStr> for CellMode { |
|
|
type Error = Error; |
|
|
|
|
|
fn try_from(lit: LitStr) -> std::result::Result<Self, Self::Error> { |
|
|
match lit.value().as_str() { |
|
|
"new" => Ok(CellMode::New), |
|
|
"shared" => Ok(CellMode::Shared), |
|
|
_ => Err(Error::new_spanned(&lit, "expected \"new\" or \"shared\"")), |
|
|
} |
|
|
} |
|
|
} |
|
|
|
|
|
enum SerializationMode { |
|
|
None, |
|
|
Auto, |
|
|
Custom, |
|
|
} |
|
|
|
|
|
impl Parse for SerializationMode { |
|
|
fn parse(input: ParseStream) -> Result<Self> { |
|
|
let ident = input.parse::<LitStr>()?; |
|
|
Self::try_from(ident) |
|
|
} |
|
|
} |
|
|
|
|
|
impl TryFrom<LitStr> for SerializationMode { |
|
|
type Error = Error; |
|
|
|
|
|
fn try_from(lit: LitStr) -> std::result::Result<Self, Self::Error> { |
|
|
match lit.value().as_str() { |
|
|
"none" => Ok(SerializationMode::None), |
|
|
"auto" => Ok(SerializationMode::Auto), |
|
|
"custom" => Ok(SerializationMode::Custom), |
|
|
_ => Err(Error::new_spanned( |
|
|
&lit, |
|
|
"expected \"none\", \"auto\", or \"custom\"", |
|
|
)), |
|
|
} |
|
|
} |
|
|
} |
|
|
|
|
|
struct ValueArguments { |
|
|
serialization_mode: SerializationMode, |
|
|
into_mode: IntoMode, |
|
|
cell_mode: CellMode, |
|
|
manual_eq: bool, |
|
|
transparent: bool, |
|
|
|
|
|
operation: Option<Span>, |
|
|
} |
|
|
|
|
|
impl Parse for ValueArguments { |
|
|
fn parse(input: ParseStream) -> Result<Self> { |
|
|
let mut result = ValueArguments { |
|
|
serialization_mode: SerializationMode::Auto, |
|
|
into_mode: IntoMode::None, |
|
|
cell_mode: CellMode::Shared, |
|
|
manual_eq: false, |
|
|
transparent: false, |
|
|
operation: None, |
|
|
}; |
|
|
let punctuated = input.parse_terminated(Meta::parse, Token![,])?; |
|
|
for meta in punctuated { |
|
|
match ( |
|
|
meta.path() |
|
|
.get_ident() |
|
|
.map(ToString::to_string) |
|
|
.as_deref() |
|
|
.unwrap_or_default(), |
|
|
meta, |
|
|
) { |
|
|
("shared", Meta::Path(_)) => { |
|
|
result.into_mode = IntoMode::Shared; |
|
|
result.cell_mode = CellMode::Shared; |
|
|
} |
|
|
( |
|
|
"into", |
|
|
Meta::NameValue(MetaNameValue { |
|
|
value: |
|
|
Expr::Lit(ExprLit { |
|
|
lit: Lit::Str(str), .. |
|
|
}), |
|
|
.. |
|
|
}), |
|
|
) => { |
|
|
result.into_mode = IntoMode::try_from(str)?; |
|
|
} |
|
|
( |
|
|
"serialization", |
|
|
Meta::NameValue(MetaNameValue { |
|
|
value: |
|
|
Expr::Lit(ExprLit { |
|
|
lit: Lit::Str(str), .. |
|
|
}), |
|
|
.. |
|
|
}), |
|
|
) => { |
|
|
result.serialization_mode = SerializationMode::try_from(str)?; |
|
|
} |
|
|
( |
|
|
"cell", |
|
|
Meta::NameValue(MetaNameValue { |
|
|
value: |
|
|
Expr::Lit(ExprLit { |
|
|
lit: Lit::Str(str), .. |
|
|
}), |
|
|
.. |
|
|
}), |
|
|
) => { |
|
|
result.cell_mode = CellMode::try_from(str)?; |
|
|
} |
|
|
( |
|
|
"eq", |
|
|
Meta::NameValue(MetaNameValue { |
|
|
value: |
|
|
Expr::Lit(ExprLit { |
|
|
lit: Lit::Str(str), .. |
|
|
}), |
|
|
.. |
|
|
}), |
|
|
) => { |
|
|
result.manual_eq = if str.value() == "manual" { |
|
|
true |
|
|
} else { |
|
|
return Err(Error::new_spanned(&str, "expected \"manual\"")); |
|
|
}; |
|
|
} |
|
|
("transparent", Meta::Path(_)) => { |
|
|
result.transparent = true; |
|
|
} |
|
|
("operation", Meta::Path(path)) => { |
|
|
result.operation = Some(path.span()); |
|
|
} |
|
|
(_, meta) => { |
|
|
return Err(Error::new_spanned( |
|
|
&meta, |
|
|
format!( |
|
|
"unexpected {meta:?}, expected \"shared\", \"into\", \ |
|
|
\"serialization\", \"cell\", \"eq\", \"transparent\", or \ |
|
|
\"operation\"" |
|
|
), |
|
|
)); |
|
|
} |
|
|
} |
|
|
} |
|
|
|
|
|
Ok(result) |
|
|
} |
|
|
} |
|
|
|
|
|
pub fn value(args: TokenStream, input: TokenStream) -> TokenStream { |
|
|
let mut item = parse_macro_input!(input as Item); |
|
|
let ValueArguments { |
|
|
serialization_mode, |
|
|
into_mode, |
|
|
cell_mode, |
|
|
manual_eq, |
|
|
transparent, |
|
|
operation, |
|
|
} = parse_macro_input!(args as ValueArguments); |
|
|
|
|
|
let mut inner_type = None; |
|
|
if transparent { |
|
|
if let Item::Struct(ItemStruct { |
|
|
attrs, |
|
|
fields: Fields::Unnamed(FieldsUnnamed { unnamed, .. }), |
|
|
.. |
|
|
}) = &mut item |
|
|
&& unnamed.len() == 1 |
|
|
{ |
|
|
let field = unnamed.iter().next().unwrap(); |
|
|
inner_type = Some(field.ty.clone()); |
|
|
|
|
|
|
|
|
let inner_type_string = inner_type.to_token_stream().to_string(); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static WHITESPACE_RE: OnceLock<Regex> = OnceLock::new(); |
|
|
|
|
|
|
|
|
let whitespace_re = WHITESPACE_RE |
|
|
.get_or_init(|| Regex::new(r"\b \B|\B \b|\B \B").expect("WHITESPACE_RE is valid")); |
|
|
let inner_type_string = whitespace_re.replace_all(&inner_type_string, ""); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
let doc_str = format!( |
|
|
"\n\nThis is a [transparent value type][turbo_tasks::value#transparent] wrapping \ |
|
|
[`{inner_type_string}`].", |
|
|
); |
|
|
|
|
|
attrs.push(parse_quote! { |
|
|
#[doc = #doc_str] |
|
|
}); |
|
|
} |
|
|
if inner_type.is_none() { |
|
|
item.span() |
|
|
.unwrap() |
|
|
.error( |
|
|
"#[turbo_tasks::value(transparent)] is only valid with single-item unit \ |
|
|
structs", |
|
|
) |
|
|
.emit(); |
|
|
} |
|
|
} |
|
|
|
|
|
let ident = match &item { |
|
|
Item::Enum(ItemEnum { ident, .. }) => ident, |
|
|
Item::Struct(ItemStruct { ident, .. }) => ident, |
|
|
_ => { |
|
|
item.span().unwrap().error("unsupported syntax").emit(); |
|
|
|
|
|
return quote! { |
|
|
#item |
|
|
} |
|
|
.into(); |
|
|
} |
|
|
}; |
|
|
|
|
|
let cell_mode = match cell_mode { |
|
|
CellMode::New => quote! { |
|
|
turbo_tasks::VcCellNewMode<#ident> |
|
|
}, |
|
|
CellMode::Shared => quote! { |
|
|
turbo_tasks::VcCellSharedMode<#ident> |
|
|
}, |
|
|
}; |
|
|
|
|
|
let (cell_prefix, cell_access_content, read) = if let Some(inner_type) = &inner_type { |
|
|
( |
|
|
quote! { pub }, |
|
|
quote! { |
|
|
content.0 |
|
|
}, |
|
|
quote! { |
|
|
turbo_tasks::VcTransparentRead::<#ident, #inner_type, #ident> |
|
|
}, |
|
|
) |
|
|
} else { |
|
|
( |
|
|
if let IntoMode::New | IntoMode::Shared = into_mode { |
|
|
quote! { pub } |
|
|
} else { |
|
|
quote! {} |
|
|
}, |
|
|
quote! { content }, |
|
|
quote! { |
|
|
turbo_tasks::VcDefaultRead::<#ident> |
|
|
}, |
|
|
) |
|
|
}; |
|
|
|
|
|
let cell_struct = quote! { |
|
|
|
|
|
|
|
|
|
|
|
#cell_prefix fn cell(self) -> turbo_tasks::Vc<Self> { |
|
|
let content = self; |
|
|
turbo_tasks::Vc::cell_private(#cell_access_content) |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#cell_prefix fn resolved_cell(self) -> turbo_tasks::ResolvedVc<Self> { |
|
|
let content = self; |
|
|
turbo_tasks::ResolvedVc::cell_private(#cell_access_content) |
|
|
} |
|
|
}; |
|
|
|
|
|
let into = if let IntoMode::New | IntoMode::Shared = into_mode { |
|
|
quote! { |
|
|
impl ::std::convert::From<#ident> for turbo_tasks::Vc<#ident> { |
|
|
fn from(value: #ident) -> Self { |
|
|
value.cell() |
|
|
} |
|
|
} |
|
|
} |
|
|
} else { |
|
|
quote! {} |
|
|
}; |
|
|
|
|
|
let mut struct_attributes = vec![quote! { |
|
|
#[derive( |
|
|
turbo_tasks::ShrinkToFit, |
|
|
turbo_tasks::trace::TraceRawVcs, |
|
|
turbo_tasks::NonLocalValue, |
|
|
)] |
|
|
#[shrink_to_fit(crate = "turbo_tasks::macro_helpers::shrink_to_fit")] |
|
|
}]; |
|
|
match serialization_mode { |
|
|
SerializationMode::Auto => struct_attributes.push(quote! { |
|
|
#[derive( |
|
|
turbo_tasks::macro_helpers::serde::Serialize, |
|
|
turbo_tasks::macro_helpers::serde::Deserialize, |
|
|
)] |
|
|
#[serde(crate = "turbo_tasks::macro_helpers::serde")] |
|
|
}), |
|
|
SerializationMode::None | SerializationMode::Custom => {} |
|
|
}; |
|
|
if inner_type.is_some() { |
|
|
|
|
|
struct_attributes.push(quote! { |
|
|
#[repr(transparent)] |
|
|
}); |
|
|
} else { |
|
|
struct_attributes.push(quote! { |
|
|
#[derive( |
|
|
turbo_tasks::debug::ValueDebugFormat, |
|
|
turbo_tasks::debug::internal::ValueDebug, |
|
|
)] |
|
|
}); |
|
|
} |
|
|
if !manual_eq { |
|
|
struct_attributes.push(quote! { |
|
|
#[derive(PartialEq, Eq)] |
|
|
}); |
|
|
} |
|
|
if let Some(span) = operation { |
|
|
struct_attributes.push(quote_spanned! { |
|
|
span => |
|
|
#[derive(turbo_tasks::OperationValue)] |
|
|
}); |
|
|
} |
|
|
|
|
|
let new_value_type = match serialization_mode { |
|
|
SerializationMode::None => quote! { |
|
|
turbo_tasks::ValueType::new::<#ident>() |
|
|
}, |
|
|
SerializationMode::Auto | SerializationMode::Custom => { |
|
|
quote! { |
|
|
turbo_tasks::ValueType::new_with_any_serialization::<#ident>() |
|
|
} |
|
|
} |
|
|
}; |
|
|
|
|
|
let value_debug_impl = if inner_type.is_some() { |
|
|
|
|
|
|
|
|
quote! { |
|
|
#[turbo_tasks::value_impl] |
|
|
impl turbo_tasks::debug::ValueDebug for #ident { |
|
|
#[turbo_tasks::function] |
|
|
async fn dbg(&self) -> anyhow::Result<turbo_tasks::Vc<turbo_tasks::debug::ValueDebugString>> { |
|
|
use turbo_tasks::debug::ValueDebugFormat; |
|
|
(&self.0).value_debug_format(usize::MAX).try_to_value_debug_string().await |
|
|
} |
|
|
|
|
|
#[turbo_tasks::function] |
|
|
async fn dbg_depth(&self, depth: usize) -> anyhow::Result<turbo_tasks::Vc<turbo_tasks::debug::ValueDebugString>> { |
|
|
use turbo_tasks::debug::ValueDebugFormat; |
|
|
(&self.0).value_debug_format(depth).try_to_value_debug_string().await |
|
|
} |
|
|
} |
|
|
} |
|
|
} else { |
|
|
quote! {} |
|
|
}; |
|
|
|
|
|
let value_type_and_register_code = value_type_and_register( |
|
|
ident, |
|
|
quote! { #ident }, |
|
|
None, |
|
|
read, |
|
|
cell_mode, |
|
|
new_value_type, |
|
|
); |
|
|
|
|
|
let expanded = quote! { |
|
|
#(#struct_attributes)* |
|
|
#item |
|
|
|
|
|
impl #ident { |
|
|
#cell_struct |
|
|
} |
|
|
|
|
|
#into |
|
|
|
|
|
#value_type_and_register_code |
|
|
|
|
|
#value_debug_impl |
|
|
}; |
|
|
|
|
|
expanded.into() |
|
|
} |
|
|
|
|
|
pub fn value_type_and_register( |
|
|
ident: &Ident, |
|
|
ty: proc_macro2::TokenStream, |
|
|
generics: Option<&Generics>, |
|
|
read: proc_macro2::TokenStream, |
|
|
cell_mode: proc_macro2::TokenStream, |
|
|
new_value_type: proc_macro2::TokenStream, |
|
|
) -> proc_macro2::TokenStream { |
|
|
let value_type_init_ident = get_value_type_init_ident(ident); |
|
|
let value_type_ident = get_value_type_ident(ident); |
|
|
let register_value_type_ident = get_register_value_type_ident(ident); |
|
|
|
|
|
let (impl_generics, where_clause) = if let Some(generics) = generics { |
|
|
let (impl_generics, _, where_clause) = generics.split_for_impl(); |
|
|
(quote! { #impl_generics }, quote! { #where_clause }) |
|
|
} else { |
|
|
(quote!(), quote!()) |
|
|
}; |
|
|
|
|
|
quote! { |
|
|
#[doc(hidden)] |
|
|
static #value_type_init_ident: turbo_tasks::macro_helpers::OnceCell< |
|
|
turbo_tasks::ValueType, |
|
|
> = turbo_tasks::macro_helpers::OnceCell::new(); |
|
|
#[doc(hidden)] |
|
|
pub(crate) static #value_type_ident: turbo_tasks::macro_helpers::Lazy<&turbo_tasks::ValueType> = |
|
|
turbo_tasks::macro_helpers::Lazy::new(|| { |
|
|
#value_type_init_ident.get_or_init(|| { |
|
|
panic!( |
|
|
concat!( |
|
|
stringify!(#value_type_ident), |
|
|
" has not been initialized (this should happen via the generated register function)" |
|
|
) |
|
|
) |
|
|
}) |
|
|
}); |
|
|
|
|
|
|
|
|
#[doc(hidden)] |
|
|
#[allow(non_snake_case)] |
|
|
pub(crate) fn #register_value_type_ident( |
|
|
global_name: &'static str, |
|
|
init: impl FnOnce(&mut turbo_tasks::ValueType), |
|
|
register_traits: impl FnOnce(turbo_tasks::ValueTypeId), |
|
|
) { |
|
|
#value_type_init_ident.get_or_init(|| { |
|
|
let mut value = #new_value_type; |
|
|
init(&mut value); |
|
|
value |
|
|
}).register(global_name, register_traits); |
|
|
} |
|
|
|
|
|
unsafe impl #impl_generics turbo_tasks::VcValueType for #ty #where_clause { |
|
|
type Read = #read; |
|
|
type CellMode = #cell_mode; |
|
|
|
|
|
fn get_value_type_id() -> turbo_tasks::ValueTypeId { |
|
|
static ident: turbo_tasks::macro_helpers::Lazy<turbo_tasks::ValueTypeId> = |
|
|
turbo_tasks::macro_helpers::Lazy::new(|| { |
|
|
turbo_tasks::registry::get_value_type_id(*#value_type_ident) |
|
|
}); |
|
|
|
|
|
*ident |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
|