mirror of
https://github.com/servo/servo.git
synced 2025-08-05 21:50:18 +01:00
Auto merge of #20211 - servo:derive-all-the-things, r=emilio
Improve #[derive(ToCss)] <!-- Reviewable:start --> This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/20211) <!-- Reviewable:end -->
This commit is contained in:
commit
785b7c7775
10 changed files with 146 additions and 111 deletions
|
@ -547,9 +547,8 @@ impl Parse for Fallback {
|
||||||
|
|
||||||
/// <https://drafts.csswg.org/css-counter-styles/#descdef-counter-style-symbols>
|
/// <https://drafts.csswg.org/css-counter-styles/#descdef-counter-style-symbols>
|
||||||
#[cfg_attr(feature = "gecko", derive(MallocSizeOf))]
|
#[cfg_attr(feature = "gecko", derive(MallocSizeOf))]
|
||||||
#[css(iterable)]
|
|
||||||
#[derive(Clone, Debug, Eq, PartialEq, ToComputedValue, ToCss)]
|
#[derive(Clone, Debug, Eq, PartialEq, ToComputedValue, ToCss)]
|
||||||
pub struct Symbols(pub Vec<Symbol>);
|
pub struct Symbols(#[css(iterable)] pub Vec<Symbol>);
|
||||||
|
|
||||||
impl Parse for Symbols {
|
impl Parse for Symbols {
|
||||||
fn parse<'i, 't>(context: &ParserContext, input: &mut Parser<'i, 't>) -> Result<Self, ParseError<'i>> {
|
fn parse<'i, 't>(context: &ParserContext, input: &mut Parser<'i, 't>) -> Result<Self, ParseError<'i>> {
|
||||||
|
|
|
@ -25,10 +25,11 @@ pub use gecko::media_queries::{Device, Expression};
|
||||||
|
|
||||||
/// A type that encapsulates a media query list.
|
/// A type that encapsulates a media query list.
|
||||||
#[cfg_attr(feature = "servo", derive(MallocSizeOf))]
|
#[cfg_attr(feature = "servo", derive(MallocSizeOf))]
|
||||||
#[css(comma, iterable)]
|
#[css(comma)]
|
||||||
#[derive(Clone, Debug, ToCss)]
|
#[derive(Clone, Debug, ToCss)]
|
||||||
pub struct MediaList {
|
pub struct MediaList {
|
||||||
/// The list of media queries.
|
/// The list of media queries.
|
||||||
|
#[css(iterable)]
|
||||||
pub media_queries: Vec<MediaQuery>,
|
pub media_queries: Vec<MediaQuery>,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -126,9 +126,7 @@
|
||||||
% endif
|
% endif
|
||||||
% if not allow_empty:
|
% if not allow_empty:
|
||||||
% if separator == "Comma":
|
% if separator == "Comma":
|
||||||
#[css(comma, iterable)]
|
#[css(comma)]
|
||||||
% else:
|
|
||||||
#[css(iterable)]
|
|
||||||
% endif
|
% endif
|
||||||
#[derive(ToCss)]
|
#[derive(ToCss)]
|
||||||
% endif
|
% endif
|
||||||
|
@ -136,6 +134,9 @@
|
||||||
% if allow_empty and allow_empty != "NotInitial":
|
% if allow_empty and allow_empty != "NotInitial":
|
||||||
pub Vec<single_value::T>,
|
pub Vec<single_value::T>,
|
||||||
% else:
|
% else:
|
||||||
|
% if not allow_empty:
|
||||||
|
#[css(iterable)]
|
||||||
|
% endif
|
||||||
pub SmallVec<[single_value::T; 1]>,
|
pub SmallVec<[single_value::T; 1]>,
|
||||||
% endif
|
% endif
|
||||||
);
|
);
|
||||||
|
@ -189,13 +190,16 @@
|
||||||
#[derive(Clone, Debug, MallocSizeOf, PartialEq)]
|
#[derive(Clone, Debug, MallocSizeOf, PartialEq)]
|
||||||
% if not allow_empty:
|
% if not allow_empty:
|
||||||
% if separator == "Comma":
|
% if separator == "Comma":
|
||||||
#[css(comma, iterable)]
|
#[css(comma)]
|
||||||
% else:
|
|
||||||
#[css(iterable)]
|
|
||||||
% endif
|
% endif
|
||||||
#[derive(ToCss)]
|
#[derive(ToCss)]
|
||||||
% endif
|
% endif
|
||||||
pub struct SpecifiedValue(pub Vec<single_value::SpecifiedValue>);
|
pub struct SpecifiedValue(
|
||||||
|
% if not allow_empty:
|
||||||
|
#[css(iterable)]
|
||||||
|
% endif
|
||||||
|
pub Vec<single_value::SpecifiedValue>,
|
||||||
|
);
|
||||||
|
|
||||||
% if allow_empty:
|
% if allow_empty:
|
||||||
impl ToCss for SpecifiedValue {
|
impl ToCss for SpecifiedValue {
|
||||||
|
|
|
@ -176,9 +176,9 @@ impl UrlMatchingFunction {
|
||||||
/// The `@document` rule's condition is written as a comma-separated list of
|
/// The `@document` rule's condition is written as a comma-separated list of
|
||||||
/// URL matching functions, and the condition evaluates to true whenever any
|
/// URL matching functions, and the condition evaluates to true whenever any
|
||||||
/// one of those functions evaluates to true.
|
/// one of those functions evaluates to true.
|
||||||
#[css(comma, iterable)]
|
#[css(comma)]
|
||||||
#[derive(Clone, Debug, ToCss)]
|
#[derive(Clone, Debug, ToCss)]
|
||||||
pub struct DocumentCondition(Vec<UrlMatchingFunction>);
|
pub struct DocumentCondition(#[css(iterable)] Vec<UrlMatchingFunction>);
|
||||||
|
|
||||||
impl DocumentCondition {
|
impl DocumentCondition {
|
||||||
/// Parse a document condition.
|
/// Parse a document condition.
|
||||||
|
|
|
@ -118,9 +118,8 @@ impl ToGeckoFontFeatureValues for PairValues {
|
||||||
}
|
}
|
||||||
|
|
||||||
/// A @font-feature-values block declaration value that keeps a list of values.
|
/// A @font-feature-values block declaration value that keeps a list of values.
|
||||||
#[css(iterable)]
|
|
||||||
#[derive(Clone, Debug, PartialEq, ToCss)]
|
#[derive(Clone, Debug, PartialEq, ToCss)]
|
||||||
pub struct VectorValues(pub Vec<u32>);
|
pub struct VectorValues(#[css(iterable)] pub Vec<u32>);
|
||||||
|
|
||||||
impl Parse for VectorValues {
|
impl Parse for VectorValues {
|
||||||
fn parse<'i, 't>(_context: &ParserContext, input: &mut Parser<'i, 't>)
|
fn parse<'i, 't>(_context: &ParserContext, input: &mut Parser<'i, 't>)
|
||||||
|
|
|
@ -145,9 +145,9 @@ impl KeyframePercentage {
|
||||||
|
|
||||||
/// A keyframes selector is a list of percentages or from/to symbols, which are
|
/// A keyframes selector is a list of percentages or from/to symbols, which are
|
||||||
/// converted at parse time to percentages.
|
/// converted at parse time to percentages.
|
||||||
#[css(comma, iterable)]
|
#[css(comma)]
|
||||||
#[derive(Clone, Debug, Eq, PartialEq, ToCss)]
|
#[derive(Clone, Debug, Eq, PartialEq, ToCss)]
|
||||||
pub struct KeyframeSelector(Vec<KeyframePercentage>);
|
pub struct KeyframeSelector(#[css(iterable)] Vec<KeyframePercentage>);
|
||||||
|
|
||||||
impl KeyframeSelector {
|
impl KeyframeSelector {
|
||||||
/// Return the list of percentages this selector contains.
|
/// Return the list of percentages this selector contains.
|
||||||
|
|
|
@ -369,9 +369,9 @@ pub enum OverflowClipBox {
|
||||||
pub enum WillChange {
|
pub enum WillChange {
|
||||||
/// Expresses no particular intent
|
/// Expresses no particular intent
|
||||||
Auto,
|
Auto,
|
||||||
#[css(comma, iterable)]
|
|
||||||
/// <custom-ident>
|
/// <custom-ident>
|
||||||
AnimateableFeatures(Box<[CustomIdent]>),
|
#[css(comma)]
|
||||||
|
AnimateableFeatures(#[css(iterable)] Box<[CustomIdent]>),
|
||||||
}
|
}
|
||||||
|
|
||||||
impl WillChange {
|
impl WillChange {
|
||||||
|
|
|
@ -92,8 +92,7 @@ pub enum Content {
|
||||||
#[cfg(feature = "gecko")]
|
#[cfg(feature = "gecko")]
|
||||||
MozAltContent,
|
MozAltContent,
|
||||||
/// Content items.
|
/// Content items.
|
||||||
#[css(iterable)]
|
Items(#[css(iterable)] Box<[ContentItem]>),
|
||||||
Items(Box<[ContentItem]>),
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Items for the `content` property.
|
/// Items for the `content` property.
|
||||||
|
|
|
@ -152,8 +152,8 @@ impl From<LengthOrPercentage> for FontSize {
|
||||||
#[derive(Clone, Debug, Eq, Hash, PartialEq, ToCss)]
|
#[derive(Clone, Debug, Eq, Hash, PartialEq, ToCss)]
|
||||||
pub enum FontFamily {
|
pub enum FontFamily {
|
||||||
/// List of `font-family`
|
/// List of `font-family`
|
||||||
#[css(iterable, comma)]
|
#[css(comma)]
|
||||||
Values(FontFamilyList),
|
Values(#[css(iterable)] FontFamilyList),
|
||||||
/// System font
|
/// System font
|
||||||
System(SystemFont),
|
System(SystemFont),
|
||||||
}
|
}
|
||||||
|
@ -718,11 +718,11 @@ pub enum VariantAlternates {
|
||||||
#[css(function)]
|
#[css(function)]
|
||||||
Stylistic(CustomIdent),
|
Stylistic(CustomIdent),
|
||||||
/// Enables display with stylistic sets
|
/// Enables display with stylistic sets
|
||||||
#[css(comma, function, iterable)]
|
#[css(comma, function)]
|
||||||
Styleset(Box<[CustomIdent]>),
|
Styleset(#[css(iterable)] Box<[CustomIdent]>),
|
||||||
/// Enables display of specific character variants
|
/// Enables display of specific character variants
|
||||||
#[css(comma, function, iterable)]
|
#[css(comma, function)]
|
||||||
CharacterVariant(Box<[CustomIdent]>),
|
CharacterVariant(#[css(iterable)] Box<[CustomIdent]>),
|
||||||
/// Enables display of swash glyphs
|
/// Enables display of swash glyphs
|
||||||
#[css(function)]
|
#[css(function)]
|
||||||
Swash(CustomIdent),
|
Swash(CustomIdent),
|
||||||
|
|
|
@ -2,96 +2,27 @@
|
||||||
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||||
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
||||||
|
|
||||||
use cg;
|
use cg::{self, WhereClause};
|
||||||
use darling::util::Override;
|
use darling::util::Override;
|
||||||
use quote::Tokens;
|
use quote::{ToTokens, Tokens};
|
||||||
use syn::{self, Ident};
|
use syn::{self, Data};
|
||||||
use synstructure;
|
use synstructure::{BindingInfo, Structure, VariantInfo};
|
||||||
|
|
||||||
pub fn derive(input: syn::DeriveInput) -> Tokens {
|
pub fn derive(input: syn::DeriveInput) -> Tokens {
|
||||||
let name = &input.ident;
|
let name = &input.ident;
|
||||||
let trait_path = parse_quote!(style_traits::ToCss);
|
let trait_path = parse_quote!(::style_traits::ToCss);
|
||||||
let (impl_generics, ty_generics, mut where_clause) =
|
let (impl_generics, ty_generics, mut where_clause) =
|
||||||
cg::trait_parts(&input, &trait_path);
|
cg::trait_parts(&input, &trait_path);
|
||||||
|
|
||||||
let input_attrs = cg::parse_input_attrs::<CssInputAttrs>(&input);
|
let input_attrs = cg::parse_input_attrs::<CssInputAttrs>(&input);
|
||||||
let s = synstructure::Structure::new(&input);
|
if let Data::Enum(_) = input.data {
|
||||||
|
assert!(input_attrs.function.is_none(), "#[css(function)] is not allowed on enums");
|
||||||
|
assert!(!input_attrs.comma, "#[css(comma)] is not allowed on enums");
|
||||||
|
}
|
||||||
|
let s = Structure::new(&input);
|
||||||
|
|
||||||
let match_body = s.each_variant(|variant| {
|
let match_body = s.each_variant(|variant| {
|
||||||
let bindings = variant.bindings();
|
derive_variant_arm(variant, &mut where_clause)
|
||||||
let identifier = cg::to_css_identifier(variant.ast().ident.as_ref());
|
|
||||||
let ast = variant.ast();
|
|
||||||
let variant_attrs = cg::parse_variant_attrs::<CssVariantAttrs>(&ast);
|
|
||||||
let separator = if variant_attrs.comma { ", " } else { " " };
|
|
||||||
|
|
||||||
if variant_attrs.dimension {
|
|
||||||
assert_eq!(bindings.len(), 1);
|
|
||||||
assert!(
|
|
||||||
variant_attrs.function.is_none() && variant_attrs.keyword.is_none(),
|
|
||||||
"That makes no sense"
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
let mut expr = if let Some(keyword) = variant_attrs.keyword {
|
|
||||||
assert!(bindings.is_empty());
|
|
||||||
let keyword = keyword.to_string();
|
|
||||||
quote! {
|
|
||||||
::std::fmt::Write::write_str(dest, #keyword)
|
|
||||||
}
|
|
||||||
} else if !bindings.is_empty() {
|
|
||||||
let mut expr = quote! {};
|
|
||||||
if variant_attrs.iterable {
|
|
||||||
assert_eq!(bindings.len(), 1);
|
|
||||||
let binding = &bindings[0];
|
|
||||||
expr = quote! {
|
|
||||||
#expr
|
|
||||||
|
|
||||||
for item in #binding.iter() {
|
|
||||||
writer.item(&item)?;
|
|
||||||
}
|
|
||||||
};
|
|
||||||
} else {
|
|
||||||
for binding in bindings {
|
|
||||||
let attrs = cg::parse_field_attrs::<CssFieldAttrs>(&binding.ast());
|
|
||||||
if attrs.skip {
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
if !attrs.ignore_bound {
|
|
||||||
where_clause.add_trait_bound(&binding.ast().ty);
|
|
||||||
}
|
|
||||||
expr = quote! {
|
|
||||||
#expr
|
|
||||||
writer.item(#binding)?;
|
|
||||||
};
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
quote! {{
|
|
||||||
let mut writer = ::style_traits::values::SequenceWriter::new(dest, #separator);
|
|
||||||
#expr
|
|
||||||
Ok(())
|
|
||||||
}}
|
|
||||||
} else {
|
|
||||||
quote! {
|
|
||||||
::std::fmt::Write::write_str(dest, #identifier)
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
if variant_attrs.dimension {
|
|
||||||
expr = quote! {
|
|
||||||
#expr?;
|
|
||||||
::std::fmt::Write::write_str(dest, #identifier)
|
|
||||||
}
|
|
||||||
} else if let Some(function) = variant_attrs.function {
|
|
||||||
let mut identifier = function.explicit().map_or(identifier, |name| name.to_string());
|
|
||||||
identifier.push_str("(");
|
|
||||||
expr = quote! {
|
|
||||||
::std::fmt::Write::write_str(dest, #identifier)?;
|
|
||||||
#expr?;
|
|
||||||
::std::fmt::Write::write_str(dest, ")")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
Some(expr)
|
|
||||||
});
|
});
|
||||||
|
|
||||||
let mut impls = quote! {
|
let mut impls = quote! {
|
||||||
|
@ -128,23 +59,124 @@ pub fn derive(input: syn::DeriveInput) -> Tokens {
|
||||||
impls
|
impls
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fn derive_variant_arm(
|
||||||
|
variant: &VariantInfo,
|
||||||
|
where_clause: &mut WhereClause,
|
||||||
|
) -> Tokens {
|
||||||
|
let bindings = variant.bindings();
|
||||||
|
let identifier = cg::to_css_identifier(variant.ast().ident.as_ref());
|
||||||
|
let ast = variant.ast();
|
||||||
|
let variant_attrs = cg::parse_variant_attrs::<CssVariantAttrs>(&ast);
|
||||||
|
let separator = if variant_attrs.comma { ", " } else { " " };
|
||||||
|
|
||||||
|
if variant_attrs.dimension {
|
||||||
|
assert_eq!(bindings.len(), 1);
|
||||||
|
assert!(
|
||||||
|
variant_attrs.function.is_none() && variant_attrs.keyword.is_none(),
|
||||||
|
"That makes no sense"
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
let mut expr = if let Some(keyword) = variant_attrs.keyword {
|
||||||
|
assert!(bindings.is_empty());
|
||||||
|
let keyword = keyword.to_string();
|
||||||
|
quote! {
|
||||||
|
::std::fmt::Write::write_str(dest, #keyword)
|
||||||
|
}
|
||||||
|
} else if !bindings.is_empty() {
|
||||||
|
derive_variant_fields_expr(bindings, where_clause, separator)
|
||||||
|
} else {
|
||||||
|
quote! {
|
||||||
|
::std::fmt::Write::write_str(dest, #identifier)
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
if variant_attrs.dimension {
|
||||||
|
expr = quote! {
|
||||||
|
#expr?;
|
||||||
|
::std::fmt::Write::write_str(dest, #identifier)
|
||||||
|
}
|
||||||
|
} else if let Some(function) = variant_attrs.function {
|
||||||
|
let mut identifier = function.explicit().map_or(identifier, |name| name);
|
||||||
|
identifier.push_str("(");
|
||||||
|
expr = quote! {
|
||||||
|
::std::fmt::Write::write_str(dest, #identifier)?;
|
||||||
|
#expr?;
|
||||||
|
::std::fmt::Write::write_str(dest, ")")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
expr
|
||||||
|
}
|
||||||
|
|
||||||
|
fn derive_variant_fields_expr(
|
||||||
|
bindings: &[BindingInfo],
|
||||||
|
where_clause: &mut WhereClause,
|
||||||
|
separator: &str,
|
||||||
|
) -> Tokens {
|
||||||
|
let mut iter = bindings.iter().filter_map(|binding| {
|
||||||
|
let attrs = cg::parse_field_attrs::<CssFieldAttrs>(&binding.ast());
|
||||||
|
if attrs.skip {
|
||||||
|
return None;
|
||||||
|
}
|
||||||
|
Some((binding, attrs))
|
||||||
|
}).peekable();
|
||||||
|
|
||||||
|
let (first, attrs) = match iter.next() {
|
||||||
|
Some(pair) => pair,
|
||||||
|
None => return quote! { Ok(()) },
|
||||||
|
};
|
||||||
|
if !attrs.iterable && iter.peek().is_none() {
|
||||||
|
if !attrs.ignore_bound {
|
||||||
|
where_clause.add_trait_bound(&first.ast().ty);
|
||||||
|
}
|
||||||
|
return quote! { ::style_traits::ToCss::to_css(#first, dest) };
|
||||||
|
}
|
||||||
|
|
||||||
|
let mut expr = derive_single_field_expr(first, attrs, where_clause);
|
||||||
|
for (binding, attrs) in iter {
|
||||||
|
derive_single_field_expr(binding, attrs, where_clause).to_tokens(&mut expr)
|
||||||
|
}
|
||||||
|
|
||||||
|
quote! {{
|
||||||
|
let mut writer = ::style_traits::values::SequenceWriter::new(dest, #separator);
|
||||||
|
#expr
|
||||||
|
Ok(())
|
||||||
|
}}
|
||||||
|
}
|
||||||
|
|
||||||
|
fn derive_single_field_expr(
|
||||||
|
field: &BindingInfo,
|
||||||
|
attrs: CssFieldAttrs,
|
||||||
|
where_clause: &mut WhereClause,
|
||||||
|
) -> Tokens {
|
||||||
|
if attrs.iterable {
|
||||||
|
quote! {
|
||||||
|
for item in #field.iter() {
|
||||||
|
writer.item(&item)?;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
if !attrs.ignore_bound {
|
||||||
|
where_clause.add_trait_bound(&field.ast().ty);
|
||||||
|
}
|
||||||
|
quote! { writer.item(#field)?; }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
#[darling(attributes(css), default)]
|
#[darling(attributes(css), default)]
|
||||||
#[derive(Default, FromDeriveInput)]
|
#[derive(Default, FromDeriveInput)]
|
||||||
struct CssInputAttrs {
|
struct CssInputAttrs {
|
||||||
derive_debug: bool,
|
derive_debug: bool,
|
||||||
// Here because structs variants are also their whole type definition.
|
// Here because structs variants are also their whole type definition.
|
||||||
function: Option<Override<Ident>>,
|
function: Option<Override<String>>,
|
||||||
// Here because structs variants are also their whole type definition.
|
// Here because structs variants are also their whole type definition.
|
||||||
comma: bool,
|
comma: bool,
|
||||||
// Here because structs variants are also their whole type definition.
|
|
||||||
iterable: bool,
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#[darling(attributes(css), default)]
|
#[darling(attributes(css), default)]
|
||||||
#[derive(Default, FromVariant)]
|
#[derive(Default, FromVariant)]
|
||||||
pub struct CssVariantAttrs {
|
pub struct CssVariantAttrs {
|
||||||
pub function: Option<Override<Ident>>,
|
pub function: Option<Override<String>>,
|
||||||
pub iterable: bool,
|
|
||||||
pub comma: bool,
|
pub comma: bool,
|
||||||
pub dimension: bool,
|
pub dimension: bool,
|
||||||
pub keyword: Option<String>,
|
pub keyword: Option<String>,
|
||||||
|
@ -155,5 +187,6 @@ pub struct CssVariantAttrs {
|
||||||
#[derive(Default, FromField)]
|
#[derive(Default, FromField)]
|
||||||
struct CssFieldAttrs {
|
struct CssFieldAttrs {
|
||||||
ignore_bound: bool,
|
ignore_bound: bool,
|
||||||
|
iterable: bool,
|
||||||
skip: bool,
|
skip: bool,
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue