1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
//! Used for parsing and serializing the [`@property`] syntax string.
//!
//! <https://drafts.css-houdini.org/css-properties-values-api-1/#parsing-syntax>
use std::fmt::{self, Debug};
use std::{borrow::Cow, fmt::Write};
use crate::parser::{Parse, ParserContext};
use crate::values::CustomIdent;
use cssparser::{Parser as CSSParser, ParserInput as CSSParserInput};
use style_traits::{
CssWriter, ParseError as StyleParseError, PropertySyntaxParseError as ParseError,
StyleParseErrorKind, ToCss,
};
use self::data_type::{DataType, DependentDataTypes};
mod ascii;
pub mod data_type;
/// <https://drafts.css-houdini.org/css-properties-values-api-1/#parsing-syntax>
#[derive(Debug, Clone, Default, MallocSizeOf, PartialEq)]
pub struct Descriptor {
/// The parsed components, if any.
/// TODO: Could be a Box<[]> if that supported const construction.
pub components: Vec<Component>,
/// The specified css syntax, if any.
specified: Option<Box<str>>,
}
impl Descriptor {
/// Returns the universal descriptor.
pub const fn universal() -> Self {
Self {
components: Vec::new(),
specified: None,
}
}
/// Returns whether this is the universal syntax descriptor.
#[inline]
pub fn is_universal(&self) -> bool {
self.components.is_empty()
}
/// Returns the specified string, if any.
#[inline]
pub fn specified_string(&self) -> Option<&str> {
self.specified.as_deref()
}
/// Parse a syntax descriptor.
/// https://drafts.css-houdini.org/css-properties-values-api-1/#consume-a-syntax-definition
pub fn from_str(css: &str, save_specified: bool) -> Result<Self, ParseError> {
// 1. Strip leading and trailing ASCII whitespace from string.
let input = ascii::trim_ascii_whitespace(css);
// 2. If string's length is 0, return failure.
if input.is_empty() {
return Err(ParseError::EmptyInput);
}
let specified = if save_specified {
Some(Box::from(css))
} else {
None
};
// 3. If string's length is 1, and the only code point in string is U+002A
// ASTERISK (*), return the universal syntax descriptor.
if input.len() == 1 && input.as_bytes()[0] == b'*' {
return Ok(Self {
components: Default::default(),
specified,
});
}
// 4. Let stream be an input stream created from the code points of string,
// preprocessed as specified in [css-syntax-3]. Let descriptor be an
// initially empty list of syntax components.
//
// NOTE(emilio): Instead of preprocessing we cheat and treat new-lines and
// nulls in the parser specially.
let mut components = vec![];
{
let mut parser = Parser::new(input, &mut components);
// 5. Repeatedly consume the next input code point from stream.
parser.parse()?;
}
Ok(Self {
components,
specified,
})
}
/// Returns the dependent types this syntax might contain.
pub fn dependent_types(&self) -> DependentDataTypes {
let mut types = DependentDataTypes::empty();
for component in self.components.iter() {
let t = match &component.name {
ComponentName::DataType(ref t) => t,
ComponentName::Ident(_) => continue,
};
types.insert(t.dependent_types());
}
types
}
}
impl ToCss for Descriptor {
fn to_css<W>(&self, dest: &mut CssWriter<W>) -> fmt::Result
where
W: Write,
{
if let Some(ref specified) = self.specified {
return specified.to_css(dest);
}
if self.is_universal() {
return dest.write_char('*');
}
let mut first = true;
for component in &*self.components {
if !first {
dest.write_str(" | ")?;
}
component.to_css(dest)?;
first = false;
}
Ok(())
}
}
impl Parse for Descriptor {
/// Parse a syntax descriptor.
fn parse<'i>(
_: &ParserContext,
parser: &mut CSSParser<'i, '_>,
) -> Result<Self, StyleParseError<'i>> {
let input = parser.expect_string()?;
Descriptor::from_str(input.as_ref(), /* save_specified = */ true)
.map_err(|err| parser.new_custom_error(StyleParseErrorKind::PropertySyntaxField(err)))
}
}
/// <https://drafts.css-houdini.org/css-properties-values-api-1/#multipliers>
#[derive(Clone, Copy, Debug, MallocSizeOf, PartialEq, ToComputedValue, ToResolvedValue, ToShmem)]
pub enum Multiplier {
/// Indicates a space-separated list.
Space,
/// Indicates a comma-separated list.
Comma,
}
impl ToCss for Multiplier {
fn to_css<W>(&self, dest: &mut CssWriter<W>) -> fmt::Result
where
W: Write,
{
dest.write_char(match *self {
Multiplier::Space => '+',
Multiplier::Comma => '#',
})
}
}
/// <https://drafts.css-houdini.org/css-properties-values-api-1/#syntax-component>
#[derive(Clone, Debug, MallocSizeOf, PartialEq)]
pub struct Component {
name: ComponentName,
multiplier: Option<Multiplier>,
}
impl Component {
/// Returns the component's name.
#[inline]
pub fn name(&self) -> &ComponentName {
&self.name
}
/// Returns the component's multiplier, if one exists.
#[inline]
pub fn multiplier(&self) -> Option<Multiplier> {
self.multiplier
}
/// If the component is premultiplied, return the un-premultiplied component.
#[inline]
pub fn unpremultiplied(&self) -> Cow<Self> {
match self.name.unpremultiply() {
Some(component) => {
debug_assert!(
self.multiplier.is_none(),
"Shouldn't have parsed a multiplier for a pre-multiplied data type name",
);
Cow::Owned(component)
},
None => Cow::Borrowed(self),
}
}
}
impl ToCss for Component {
fn to_css<W>(&self, dest: &mut CssWriter<W>) -> fmt::Result
where
W: Write,
{
self.name().to_css(dest)?;
self.multiplier().to_css(dest)
}
}
/// <https://drafts.css-houdini.org/css-properties-values-api-1/#syntax-component-name>
#[derive(Clone, Debug, MallocSizeOf, PartialEq, ToCss)]
pub enum ComponentName {
/// <https://drafts.css-houdini.org/css-properties-values-api-1/#data-type-name>
DataType(DataType),
/// <https://drafts.csswg.org/css-values-4/#custom-idents>
Ident(CustomIdent),
}
impl ComponentName {
fn unpremultiply(&self) -> Option<Component> {
match *self {
ComponentName::DataType(ref t) => t.unpremultiply(),
ComponentName::Ident(..) => None,
}
}
/// <https://drafts.css-houdini.org/css-properties-values-api-1/#pre-multiplied-data-type-name>
fn is_pre_multiplied(&self) -> bool {
self.unpremultiply().is_some()
}
}
struct Parser<'a> {
input: &'a str,
position: usize,
output: &'a mut Vec<Component>,
}
/// <https://drafts.csswg.org/css-syntax-3/#letter>
fn is_letter(byte: u8) -> bool {
match byte {
b'A'..=b'Z' | b'a'..=b'z' => true,
_ => false,
}
}
/// <https://drafts.csswg.org/css-syntax-3/#non-ascii-code-point>
fn is_non_ascii(byte: u8) -> bool {
byte >= 0x80
}
/// <https://drafts.csswg.org/css-syntax-3/#name-start-code-point>
fn is_name_start(byte: u8) -> bool {
is_letter(byte) || is_non_ascii(byte) || byte == b'_'
}
impl<'a> Parser<'a> {
fn new(input: &'a str, output: &'a mut Vec<Component>) -> Self {
Self {
input,
position: 0,
output,
}
}
fn peek(&self) -> Option<u8> {
self.input.as_bytes().get(self.position).cloned()
}
fn parse(&mut self) -> Result<(), ParseError> {
// 5. Repeatedly consume the next input code point from stream:
loop {
let component = self.parse_component()?;
self.output.push(component);
self.skip_whitespace();
let byte = match self.peek() {
None => return Ok(()),
Some(b) => b,
};
if byte != b'|' {
return Err(ParseError::ExpectedPipeBetweenComponents);
}
self.position += 1;
}
}
fn skip_whitespace(&mut self) {
loop {
match self.peek() {
Some(c) if c.is_ascii_whitespace() => self.position += 1,
_ => return,
}
}
}
/// <https://drafts.css-houdini.org/css-properties-values-api-1/#consume-data-type-name>
fn parse_data_type_name(&mut self) -> Result<DataType, ParseError> {
let start = self.position;
loop {
let byte = match self.peek() {
Some(b) => b,
None => return Err(ParseError::UnclosedDataTypeName),
};
if byte != b'>' {
self.position += 1;
continue;
}
let ty = match DataType::from_str(&self.input[start..self.position]) {
Some(ty) => ty,
None => return Err(ParseError::UnknownDataTypeName),
};
self.position += 1;
return Ok(ty);
}
}
fn parse_name(&mut self) -> Result<ComponentName, ParseError> {
let b = match self.peek() {
Some(b) => b,
None => return Err(ParseError::UnexpectedEOF),
};
if b == b'<' {
self.position += 1;
return Ok(ComponentName::DataType(self.parse_data_type_name()?));
}
if b != b'\\' && !is_name_start(b) {
return Err(ParseError::InvalidNameStart);
}
let input = &self.input[self.position..];
let mut input = CSSParserInput::new(input);
let mut input = CSSParser::new(&mut input);
let name = match CustomIdent::parse(&mut input, &[]) {
Ok(name) => name,
Err(_) => return Err(ParseError::InvalidName),
};
self.position += input.position().byte_index();
return Ok(ComponentName::Ident(name));
}
fn parse_multiplier(&mut self) -> Option<Multiplier> {
let multiplier = match self.peek()? {
b'+' => Multiplier::Space,
b'#' => Multiplier::Comma,
_ => return None,
};
self.position += 1;
Some(multiplier)
}
/// <https://drafts.css-houdini.org/css-properties-values-api-1/#consume-a-syntax-component>
fn parse_component(&mut self) -> Result<Component, ParseError> {
// Consume as much whitespace as possible from stream.
self.skip_whitespace();
let name = self.parse_name()?;
let multiplier = if name.is_pre_multiplied() {
None
} else {
self.parse_multiplier()
};
Ok(Component { name, multiplier })
}
}